This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1d359ed [WebAssembly] Handle debug information and virtual registers [...] new 3ed44cd GlobalISel: support irtranslation of icmp instructions. new 7d7a23e Replace a few more "fall through" comments with LLVM_FALLTHROUGH
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: examples/BrainF/BrainF.cpp | 4 +- include/llvm/CodeGen/GlobalISel/IRTranslator.h | 4 +- include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 8 ++ include/llvm/CodeGen/MachineInstrBuilder.h | 5 + include/llvm/CodeGen/MachineOperand.h | 16 ++- include/llvm/IR/InstrTypes.h | 2 + include/llvm/Target/GenericOpcodes.td | 7 ++ include/llvm/Target/TargetOpcodes.def | 3 + lib/Analysis/BasicAliasAnalysis.cpp | 2 +- lib/Analysis/MemoryDependenceAnalysis.cpp | 2 +- lib/Analysis/ScalarEvolution.cpp | 12 ++- lib/Analysis/TargetLibraryInfo.cpp | 1 + lib/Analysis/ValueTracking.cpp | 5 +- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 +- lib/CodeGen/AsmPrinter/DIE.cpp | 32 +++--- lib/CodeGen/GlobalISel/IRTranslator.cpp | 14 +++ lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 11 ++ lib/CodeGen/MIRParser/MILexer.cpp | 2 + lib/CodeGen/MIRParser/MILexer.h | 2 + lib/CodeGen/MIRParser/MIParser.cpp | 62 +++++++++++ lib/CodeGen/MIRPrinter.cpp | 6 ++ lib/CodeGen/MachineInstr.cpp | 10 +- lib/CodeGen/RegAllocFast.cpp | 8 +- lib/CodeGen/RegisterCoalescer.cpp | 4 +- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 +- lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 4 +- lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 2 +- lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 14 +-- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 3 +- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 4 +- lib/Fuzzer/FuzzerMutate.cpp | 2 +- lib/IR/AsmWriter.cpp | 39 +------ lib/IR/Function.cpp | 6 +- lib/IR/Instructions.cpp | 32 ++++++ lib/MC/MCObjectFileInfo.cpp | 1 + lib/Support/CommandLine.cpp | 6 +- lib/Support/FoldingSet.cpp | 4 +- lib/Support/raw_ostream.cpp | 8 +- lib/TableGen/TGLexer.cpp | 2 +- lib/Target/AArch64/AArch64ConditionalCompares.cpp | 2 +- lib/Target/AArch64/AArch64ISelLowering.cpp | 2 +- lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp | 10 +- lib/Target/ARM/ARMExpandPseudoInsts.cpp | 1 + lib/Target/ARM/ARMFastISel.cpp | 1 + lib/Target/ARM/ARMISelLowering.cpp | 4 +- lib/Target/ARM/Disassembler/ARMDisassembler.cpp | 6 +- lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp | 4 +- lib/Target/Hexagon/HexagonRDFOpt.cpp | 2 +- lib/Target/Hexagon/HexagonSplitDouble.cpp | 1 + lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 2 +- lib/Target/NVPTX/NVPTXAsmPrinter.cpp | 2 +- lib/Target/Sparc/SparcInstrInfo.cpp | 26 ++--- lib/Target/SystemZ/SystemZISelDAGToDAG.cpp | 4 +- lib/Target/X86/InstPrinter/X86InstComments.cpp | 118 ++++++++++++++------- lib/Target/X86/X86FastISel.cpp | 4 +- lib/Target/X86/X86ISelDAGToDAG.cpp | 2 +- lib/Target/X86/X86ISelLowering.cpp | 6 +- lib/Target/X86/X86WinAllocaExpander.cpp | 1 + lib/Target/XCore/XCoreAsmPrinter.cpp | 2 +- lib/Transforms/IPO/FunctionAttrs.cpp | 3 +- lib/Transforms/IPO/MergeFunctions.cpp | 1 + lib/Transforms/InstCombine/InstCombineCalls.cpp | 2 +- lib/Transforms/InstCombine/InstCombineCompares.cpp | 15 +-- lib/Transforms/InstCombine/InstCombineShifts.cpp | 2 +- .../InstCombine/InstructionCombining.cpp | 2 +- lib/Transforms/ObjCARC/PtrState.cpp | 4 +- .../AArch64/GlobalISel/arm64-irtranslator.ll | 12 +++ tools/llvm-config/llvm-config.cpp | 2 +- tools/llvm-mc/Disassembler.cpp | 2 +- utils/TableGen/IntrinsicEmitter.cpp | 8 +- 70 files changed, 407 insertions(+), 199 deletions(-)