-
Notifications
You must be signed in to change notification settings - Fork 15.9k
[PAC][AArch64] Lower ptrauth constants in data #94240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,6 +43,8 @@ | |
| #include "llvm/CodeGen/TargetRegisterInfo.h" | ||
| #include "llvm/IR/DataLayout.h" | ||
| #include "llvm/IR/DebugInfoMetadata.h" | ||
| #include "llvm/IR/DiagnosticInfo.h" | ||
| #include "llvm/IR/DiagnosticPrinter.h" | ||
| #include "llvm/MC/MCAsmInfo.h" | ||
| #include "llvm/MC/MCContext.h" | ||
| #include "llvm/MC/MCInst.h" | ||
|
|
@@ -90,6 +92,8 @@ class AArch64AsmPrinter : public AsmPrinter { | |
| return MCInstLowering.lowerOperand(MO, MCOp); | ||
| } | ||
|
|
||
| const MCExpr *lowerConstantPtrAuth(const ConstantPtrAuth &CPA) override; | ||
|
|
||
| void emitStartOfAsmFile(Module &M) override; | ||
| void emitJumpTableInfo() override; | ||
| std::tuple<const MCSymbol *, uint64_t, const MCSymbol *, | ||
|
|
@@ -1575,6 +1579,50 @@ void AArch64AsmPrinter::emitPtrauthBranch(const MachineInstr *MI) { | |
| assert(STI->getInstrInfo()->getInstSizeInBytes(*MI) >= InstsEmitted * 4); | ||
| } | ||
|
|
||
| const MCExpr * | ||
| AArch64AsmPrinter::lowerConstantPtrAuth(const ConstantPtrAuth &CPA) { | ||
| MCContext &Ctx = OutContext; | ||
|
|
||
| // Figure out the base symbol and the addend, if any. | ||
| APInt Offset(64, 0); | ||
| const Value *BaseGV = CPA.getPointer()->stripAndAccumulateConstantOffsets( | ||
| getDataLayout(), Offset, /*AllowNonInbounds=*/true); | ||
|
|
||
| auto *BaseGVB = dyn_cast<GlobalValue>(BaseGV); | ||
|
|
||
| // If we can't understand the referenced ConstantExpr, there's nothing | ||
| // else we can do: emit an error. | ||
| if (!BaseGVB) { | ||
| BaseGV->getContext().emitError( | ||
| "cannot resolve target base/addend of ptrauth constant"); | ||
| return nullptr; | ||
| } | ||
|
|
||
| // If there is an addend, turn that into the appropriate MCExpr. | ||
| const MCExpr *Sym = MCSymbolRefExpr::create(getSymbol(BaseGVB), Ctx); | ||
| if (Offset.sgt(0)) | ||
| Sym = MCBinaryExpr::createAdd( | ||
| Sym, MCConstantExpr::create(Offset.getSExtValue(), Ctx), Ctx); | ||
| else if (Offset.slt(0)) | ||
| Sym = MCBinaryExpr::createSub( | ||
| Sym, MCConstantExpr::create((-Offset).getSExtValue(), Ctx), Ctx); | ||
|
|
||
| uint64_t KeyID = CPA.getKey()->getZExtValue(); | ||
| // We later rely on valid KeyID value in AArch64PACKeyIDToString call from | ||
| // AArch64AuthMCExpr::printImpl, so fail fast. | ||
| if (KeyID > AArch64PACKey::LAST) | ||
| report_fatal_error("invalid AArch64 PAC Key ID '" + Twine(KeyID) + "'"); | ||
|
|
||
| uint64_t Disc = CPA.getDiscriminator()->getZExtValue(); | ||
| if (!isUInt<16>(Disc)) | ||
| report_fatal_error("invalid AArch64 PAC Discriminator '" + Twine(Disc) + | ||
| "'"); | ||
|
||
|
|
||
| // Finally build the complete @AUTH expr. | ||
| return AArch64AuthMCExpr::create(Sym, Disc, AArch64PACKey::ID(KeyID), | ||
| CPA.hasAddressDiscriminator(), Ctx); | ||
| } | ||
|
|
||
| // Simple pseudo-instructions have their lowering (with expansion to real | ||
| // instructions) auto-generated. | ||
| #include "AArch64GenMCPseudoLowering.inc" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,176 @@ | ||
| ; RUN: rm -rf %t && split-file %s %t && cd %t | ||
|
|
||
| ;--- ok.ll | ||
|
|
||
| ; RUN: llc < ok.ll -mtriple arm64e-apple-darwin \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-MACHO | ||
| ; RUN: llc < ok.ll -mtriple aarch64-elf -mattr=+pauth \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ELF | ||
|
|
||
| ; RUN: llc < ok.ll -mtriple arm64e-apple-darwin \ | ||
| ; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-MACHO | ||
| ; RUN: llc < ok.ll -mtriple aarch64-elf -mattr=+pauth \ | ||
| ; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ELF | ||
|
|
||
| @g = external global i32 | ||
|
|
||
| @g_weak = extern_weak global i32 | ||
|
|
||
| @g_strong_def = constant i32 42 | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g.ref.ia.0 | ||
| ; CHECK-ELF-NEXT: .p2align 4 | ||
| ; CHECK-ELF-NEXT: g.ref.ia.0: | ||
| ; CHECK-ELF-NEXT: .xword 5 | ||
| ; CHECK-ELF-NEXT: .xword g@AUTH(ia,0) | ||
| ; CHECK-ELF-NEXT: .xword 6 | ||
|
|
||
| ; CHECK-MACHO-LABEL: .section __DATA,__const | ||
| ; CHECK-MACHO-NEXT: .globl _g.ref.ia.0 | ||
| ; CHECK-MACHO-NEXT: .p2align 4 | ||
| ; CHECK-MACHO-NEXT: _g.ref.ia.0: | ||
| ; CHECK-MACHO-NEXT: .quad 5 | ||
| ; CHECK-MACHO-NEXT: .quad _g@AUTH(ia,0) | ||
| ; CHECK-MACHO-NEXT: .quad 6 | ||
|
|
||
| @g.ref.ia.0 = constant { i64, ptr, i64 } { i64 5, ptr ptrauth (ptr @g, i32 0), i64 6 } | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g.ref.ia.42 | ||
| ; CHECK-ELF-NEXT: .p2align 3 | ||
| ; CHECK-ELF-NEXT: g.ref.ia.42: | ||
| ; CHECK-ELF-NEXT: .xword g@AUTH(ia,42) | ||
|
|
||
| ; CHECK-MACHO-LABEL: .globl _g.ref.ia.42 | ||
| ; CHECK-MACHO-NEXT: .p2align 3 | ||
| ; CHECK-MACHO-NEXT: _g.ref.ia.42: | ||
| ; CHECK-MACHO-NEXT: .quad _g@AUTH(ia,42) | ||
|
|
||
| @g.ref.ia.42 = constant ptr ptrauth (ptr @g, i32 0, i64 42) | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g.ref.ib.0 | ||
| ; CHECK-ELF-NEXT: .p2align 4 | ||
| ; CHECK-ELF-NEXT: g.ref.ib.0: | ||
| ; CHECK-ELF-NEXT: .xword 5 | ||
| ; CHECK-ELF-NEXT: .xword g@AUTH(ib,0) | ||
| ; CHECK-ELF-NEXT: .xword 6 | ||
|
|
||
| ; CHECK-MACHO-LABEL: .globl _g.ref.ib.0 | ||
| ; CHECK-MACHO-NEXT: .p2align 4 | ||
| ; CHECK-MACHO-NEXT: _g.ref.ib.0: | ||
| ; CHECK-MACHO-NEXT: .quad 5 | ||
| ; CHECK-MACHO-NEXT: .quad _g@AUTH(ib,0) | ||
| ; CHECK-MACHO-NEXT: .quad 6 | ||
|
|
||
| @g.ref.ib.0 = constant { i64, ptr, i64 } { i64 5, ptr ptrauth (ptr @g, i32 1, i64 0), i64 6 } | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g.ref.da.42.addr | ||
| ; CHECK-ELF-NEXT: .p2align 3 | ||
| ; CHECK-ELF-NEXT: g.ref.da.42.addr: | ||
| ; CHECK-ELF-NEXT: .xword g@AUTH(da,42,addr) | ||
|
|
||
| ; CHECK-MACHO-LABEL: .globl _g.ref.da.42.addr | ||
| ; CHECK-MACHO-NEXT: .p2align 3 | ||
| ; CHECK-MACHO-NEXT: _g.ref.da.42.addr: | ||
| ; CHECK-MACHO-NEXT: .quad _g@AUTH(da,42,addr) | ||
|
|
||
| @g.ref.da.42.addr = constant ptr ptrauth (ptr @g, i32 2, i64 42, ptr @g.ref.da.42.addr) | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g.offset.ref.da.0 | ||
| ; CHECK-ELF-NEXT: .p2align 3 | ||
| ; CHECK-ELF-NEXT: g.offset.ref.da.0: | ||
| ; CHECK-ELF-NEXT: .xword (g+16)@AUTH(da,0) | ||
|
|
||
| ; CHECK-MACHO-LABEL: .globl _g.offset.ref.da.0 | ||
| ; CHECK-MACHO-NEXT: .p2align 3 | ||
| ; CHECK-MACHO-NEXT: _g.offset.ref.da.0: | ||
| ; CHECK-MACHO-NEXT: .quad (_g+16)@AUTH(da,0) | ||
|
|
||
| @g.offset.ref.da.0 = constant ptr ptrauth (i8* getelementptr (i8, ptr @g, i64 16), i32 2) | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g.big_offset.ref.da.0 | ||
| ; CHECK-ELF-NEXT: .p2align 3 | ||
| ; CHECK-ELF-NEXT: g.big_offset.ref.da.0: | ||
| ; CHECK-ELF-NEXT: .xword (g+2147549185)@AUTH(da,0) | ||
|
|
||
| ; CHECK-MACHO-LABEL: .globl _g.big_offset.ref.da.0 | ||
| ; CHECK-MACHO-NEXT: .p2align 3 | ||
| ; CHECK-MACHO-NEXT: _g.big_offset.ref.da.0: | ||
| ; CHECK-MACHO-NEXT: .quad (_g+2147549185)@AUTH(da,0) | ||
|
|
||
| @g.big_offset.ref.da.0 = constant ptr ptrauth (i8* getelementptr (i8, ptr @g, i64 add (i64 2147483648, i64 65537)), i32 2) | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g.weird_ref.da.0 | ||
| ; CHECK-ELF-NEXT: .p2align 3 | ||
| ; CHECK-ELF-NEXT: g.weird_ref.da.0: | ||
| ; CHECK-ELF-NEXT: .xword (g+16)@AUTH(da,0) | ||
|
|
||
| ; CHECK-MACHO-LABEL: .globl _g.weird_ref.da.0 | ||
| ; CHECK-MACHO-NEXT: .p2align 3 | ||
| ; CHECK-MACHO-NEXT: _g.weird_ref.da.0: | ||
| ; CHECK-MACHO-NEXT: .quad (_g+16)@AUTH(da,0) | ||
|
|
||
| @g.weird_ref.da.0 = constant i64 ptrtoint (ptr inttoptr (i64 ptrtoint (ptr ptrauth (i8* getelementptr (i8, ptr @g, i64 16), i32 2) to i64) to ptr) to i64) | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g_weak.ref.ia.42 | ||
| ; CHECK-ELF-NEXT: .p2align 3 | ||
| ; CHECK-ELF-NEXT: g_weak.ref.ia.42: | ||
| ; CHECK-ELF-NEXT: .xword g_weak@AUTH(ia,42) | ||
|
|
||
| ; CHECK-MACHO-LABEL: .globl _g_weak.ref.ia.42 | ||
| ; CHECK-MACHO-NEXT: .p2align 3 | ||
| ; CHECK-MACHO-NEXT: _g_weak.ref.ia.42: | ||
| ; CHECK-MACHO-NEXT: .quad _g_weak@AUTH(ia,42) | ||
|
|
||
| @g_weak.ref.ia.42 = constant ptr ptrauth (ptr @g_weak, i32 0, i64 42) | ||
|
|
||
| ; CHECK-ELF-LABEL: .globl g_strong_def.ref.da.0 | ||
| ; CHECK-ELF-NEXT: .p2align 3 | ||
| ; CHECK-ELF-NEXT: g_strong_def.ref.da.0: | ||
| ; CHECK-ELF-NEXT: .xword g_strong_def@AUTH(da,0) | ||
|
|
||
| ; CHECK-MACHO-LABEL: .globl _g_strong_def.ref.da.0 | ||
| ; CHECK-MACHO-NEXT: .p2align 3 | ||
| ; CHECK-MACHO-NEXT: _g_strong_def.ref.da.0: | ||
| ; CHECK-MACHO-NEXT: .quad _g_strong_def@AUTH(da,0) | ||
|
|
||
| @g_strong_def.ref.da.0 = constant ptr ptrauth (ptr @g_strong_def, i32 2) | ||
|
|
||
| ;--- err-key.ll | ||
|
|
||
| ; RUN: not --crash llc < err-key.ll -mtriple arm64e-apple-darwin 2>&1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ERR-KEY | ||
| ; RUN: not --crash llc < err-key.ll -mtriple aarch64-elf -mattr=+pauth 2>&1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ERR-KEY | ||
|
|
||
| ; RUN: not --crash llc < err-key.ll -mtriple arm64e-apple-darwin \ | ||
| ; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 2>&1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ERR-KEY | ||
| ; RUN: not --crash llc < err-key.ll -mtriple aarch64-elf -mattr=+pauth \ | ||
| ; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 2>&1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ERR-KEY | ||
|
|
||
| ; CHECK-ERR-KEY: LLVM ERROR: invalid AArch64 PAC Key ID '4' | ||
|
|
||
| @g = external global i32 | ||
| @g.ref.4.0 = constant ptr ptrauth (ptr @g, i32 4, i64 0) | ||
|
|
||
| ;--- err-disc.ll | ||
|
|
||
| ; RUN: not --crash llc < err-disc.ll -mtriple arm64e-apple-darwin 2>&1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ERR-DISC | ||
| ; RUN: not --crash llc < err-disc.ll -mtriple aarch64-elf -mattr=+pauth 2>&1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ERR-DISC | ||
|
|
||
| ; RUN: not --crash llc < err-disc.ll -mtriple arm64e-apple-darwin \ | ||
| ; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 2>&1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ERR-DISC | ||
| ; RUN: not --crash llc < err-disc.ll -mtriple aarch64-elf -mattr=+pauth \ | ||
| ; RUN: -global-isel -verify-machineinstrs -global-isel-abort=1 2>&1 \ | ||
| ; RUN: | FileCheck %s --check-prefix=CHECK-ERR-DISC | ||
|
|
||
| ; CHECK-ERR-DISC: LLVM ERROR: invalid AArch64 PAC Discriminator '65536' | ||
|
|
||
| @g = external global i32 | ||
| @g.ref.ia.65536 = constant ptr ptrauth (ptr @g, i32 0, i64 65536) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: This comment doesn't add anything over the function prototype
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, deleted the comment, see 9633e04