This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ad45fb5af4e AMDGPU: Fix not respecting byval alignment in call frame setup new 3d765ce4b7f [AArch64] Add Tiny Code Model for AArch64
The 1 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: bindings/go/llvm/target.go | 1 + docs/CommandGuide/lli.rst | 1 + include/llvm-c/TargetMachine.h | 1 + include/llvm/CodeGen/CommandFlags.inc | 3 +- include/llvm/Support/CodeGen.h | 2 +- include/llvm/Target/CodeGenCWrappers.h | 4 + lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp | 69 ++-- lib/Target/AArch64/AArch64FrameLowering.cpp | 1 + lib/Target/AArch64/AArch64ISelLowering.cpp | 32 +- lib/Target/AArch64/AArch64ISelLowering.h | 3 + lib/Target/AArch64/AArch64InstrInfo.cpp | 3 + lib/Target/AArch64/AArch64InstrInfo.td | 8 +- lib/Target/AArch64/AArch64InstructionSelector.cpp | 3 + lib/Target/AArch64/AArch64Subtarget.cpp | 4 +- lib/Target/AArch64/AArch64TargetMachine.cpp | 14 +- lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp | 33 +- .../AArch64/MCTargetDesc/AArch64AsmBackend.cpp | 9 + .../MCTargetDesc/AArch64ELFObjectWriter.cpp | 4 +- lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp | 2 + lib/Target/ARM/ARMFrameLowering.cpp | 2 + lib/Target/ARM/ARMISelLowering.cpp | 2 + lib/Target/X86/X86Subtarget.cpp | 2 + ...-cmodel-large.mir => select-gv-cmodel-tiny.mir} | 22 +- test/CodeGen/AArch64/arm64-tls-dynamics.ll | 6 + test/CodeGen/AArch64/arm64-tls-execs.ll | 34 ++ test/CodeGen/AArch64/blockaddress.ll | 6 + test/CodeGen/AArch64/code-model-tiny-abs.ll | 54 +++ test/CodeGen/AArch64/extern-weak.ll | 9 + test/CodeGen/AArch64/fpimm.ll | 19 +- test/CodeGen/AArch64/jump-table.ll | 5 + test/CodeGen/AArch64/literal_pools_float.ll | 11 + test/CodeGen/AArch64/tiny_model.ll | 421 +++++++++++++++++++++ test/CodeGen/AArch64/tiny_supported.ll | 13 + test/MC/AArch64/basic-a64-diagnostics.s | 8 + 34 files changed, 746 insertions(+), 65 deletions(-) copy test/CodeGen/AArch64/GlobalISel/{select-gv-cmodel-large.mir => select-gv-cmod [...] create mode 100644 test/CodeGen/AArch64/code-model-tiny-abs.ll create mode 100644 test/CodeGen/AArch64/tiny_model.ll create mode 100644 test/CodeGen/AArch64/tiny_supported.ll