This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 4390f003b33 AMDGPU/GlobalISel: Fix broken tests new 9025db3ce7c [CodeExtractor] Restore outputs after creating exit stubs new e3696113b63 Implementation of asm-goto support in LLVM new f38b0f184c9 [X86] Add FPCW as an implicit use on floating point load in [...]
The 3 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: docs/LangRef.rst | 80 +++++++ include/llvm-c/Core.h | 1 + include/llvm/Analysis/SparsePropagation.h | 8 +- include/llvm/Bitcode/LLVMBitCodes.h | 2 + include/llvm/CodeGen/GlobalISel/IRTranslator.h | 2 + include/llvm/CodeGen/ISDOpcodes.h | 3 + include/llvm/CodeGen/MachineInstr.h | 5 +- include/llvm/CodeGen/SelectionDAGISel.h | 2 +- include/llvm/IR/CallSite.h | 107 ++++----- include/llvm/IR/IRBuilder.h | 36 +++ include/llvm/IR/InstVisitor.h | 13 +- include/llvm/IR/InstrTypes.h | 9 +- include/llvm/IR/Instruction.def | 139 ++++++------ include/llvm/IR/Instruction.h | 14 ++ include/llvm/IR/Instructions.h | 243 +++++++++++++++++++++ include/llvm/Support/TargetOpcodes.def | 1 + include/llvm/Target/Target.td | 9 + lib/Analysis/ValueTracking.cpp | 1 + lib/AsmParser/LLLexer.cpp | 1 + lib/AsmParser/LLParser.cpp | 127 +++++++++++ lib/AsmParser/LLParser.h | 1 + lib/AsmParser/LLToken.h | 1 + lib/Bitcode/Reader/BitcodeReader.cpp | 68 ++++++ lib/Bitcode/Writer/BitcodeWriter.cpp | 35 +++ lib/Bitcode/Writer/ValueEnumerator.cpp | 6 +- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 1 + lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp | 13 +- lib/CodeGen/CodeGenPrepare.cpp | 10 + lib/CodeGen/GlobalISel/IRTranslator.cpp | 6 + lib/CodeGen/IndirectBrExpandPass.cpp | 8 +- lib/CodeGen/SelectionDAG/InstrEmitter.cpp | 10 +- lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp | 4 + lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp | 3 +- lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp | 4 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 41 +++- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 2 + lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 1 + lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 8 +- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 6 +- lib/CodeGen/TargetLoweringBase.cpp | 1 + lib/IR/AsmWriter.cpp | 45 ++++ lib/IR/Instruction.cpp | 11 +- lib/IR/Instructions.cpp | 83 +++++++ lib/IR/Value.cpp | 3 +- lib/IR/Verifier.cpp | 21 ++ lib/Target/AMDGPU/AMDGPUISelLowering.cpp | 1 + lib/Target/AMDGPU/SIISelLowering.cpp | 3 +- lib/Target/AMDGPU/SIInstrInfo.cpp | 3 +- lib/Target/ARM/ARMISelDAGToDAG.cpp | 3 +- lib/Target/AVR/AVRInstrInfo.cpp | 3 +- lib/Target/Hexagon/HexagonISelLowering.cpp | 6 +- lib/Target/Hexagon/HexagonMachineScheduler.cpp | 2 + lib/Target/MSP430/MSP430InstrInfo.cpp | 3 +- lib/Target/Mips/MipsInstrInfo.cpp | 3 +- lib/Target/PowerPC/PPCRegisterInfo.cpp | 3 +- lib/Target/RISCV/RISCVInstrInfo.cpp | 3 +- lib/Target/Sparc/SparcISelDAGToDAG.cpp | 5 +- lib/Target/X86/X86AsmPrinter.cpp | 5 + lib/Target/X86/X86FloatingPoint.cpp | 3 +- lib/Target/X86/X86InstrFPStack.td | 14 +- lib/Transforms/InstCombine/InstCombineCalls.cpp | 57 +++-- lib/Transforms/InstCombine/InstCombineInternal.h | 1 + .../InstCombine/InstructionCombining.cpp | 4 +- lib/Transforms/Scalar/GVN.cpp | 17 +- lib/Transforms/Scalar/JumpThreading.cpp | 11 +- lib/Transforms/Scalar/SCCP.cpp | 13 ++ lib/Transforms/Utils/BasicBlockUtils.cpp | 2 + lib/Transforms/Utils/BreakCriticalEdges.cpp | 4 + lib/Transforms/Utils/CodeExtractor.cpp | 79 ++++--- lib/Transforms/Utils/InlineFunction.cpp | 8 + lib/Transforms/Utils/Local.cpp | 12 + lib/Transforms/Utils/LoopSimplify.cpp | 16 +- lib/Transforms/Utils/LoopUtils.cpp | 3 + lib/Transforms/Utils/SimplifyCFG.cpp | 13 +- test/Bitcode/callbr.ll | 14 ++ test/Bitcode/callbr.ll.bc | Bin 0 -> 1036 bytes test/CodeGen/MIR/X86/memory-operands.mir | 2 +- test/CodeGen/X86/callbr-asm-blockplacement.ll | 106 +++++++++ test/CodeGen/X86/callbr-asm-branch-folding.ll | 151 +++++++++++++ test/CodeGen/X86/callbr-asm-destinations.ll | 15 ++ test/CodeGen/X86/callbr-asm-errors.ll | 18 ++ test/CodeGen/X86/callbr-asm-outputs.ll | 18 ++ test/CodeGen/X86/callbr-asm.ll | 133 +++++++++++ test/CodeGen/X86/pr34080.ll | 2 +- test/CodeGen/X86/pr40529.ll | 2 +- test/Transforms/GVN/callbr-loadpre-critedge.ll | 49 +++++ test/Transforms/GVN/callbr-scalarpre-critedge.ll | 43 ++++ test/Transforms/JumpThreading/callbr-edge-split.ll | 58 +++++ .../MergeFunc/call-and-invoke-with-ranges.ll | 15 +- test/Transforms/MergeFunc/inline-asm.ll | 6 +- tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | 1 + unittests/Transforms/Utils/CodeExtractorTest.cpp | 43 +++- utils/vim/syntax/llvm.vim | 2 +- 93 files changed, 1903 insertions(+), 270 deletions(-) create mode 100644 test/Bitcode/callbr.ll create mode 100644 test/Bitcode/callbr.ll.bc create mode 100644 test/CodeGen/X86/callbr-asm-blockplacement.ll create mode 100644 test/CodeGen/X86/callbr-asm-branch-folding.ll create mode 100644 test/CodeGen/X86/callbr-asm-destinations.ll create mode 100644 test/CodeGen/X86/callbr-asm-errors.ll create mode 100644 test/CodeGen/X86/callbr-asm-outputs.ll create mode 100644 test/CodeGen/X86/callbr-asm.ll create mode 100644 test/Transforms/GVN/callbr-loadpre-critedge.ll create mode 100644 test/Transforms/GVN/callbr-scalarpre-critedge.ll create mode 100644 test/Transforms/JumpThreading/callbr-edge-split.ll