Home
last modified time | relevance | path

Searched refs:FramePointer (Results 1 – 8 of 8) sorted by relevance

/freebsd-src/sys/kern/
H A Dkern_ubsan.c286 …idVtable, bool FromUnrecoverableHandler, unsigned long ProgramCounter, unsigned long FramePointer);
340 …table, bool *FromUnrecoverableHandler, unsigned long *ProgramCounter, unsigned long *FramePointer);
555 …Vtable, bool *FromUnrecoverableHandler, unsigned long *ProgramCounter, unsigned long *FramePointer) in HandleCFIBadType() argument
576 …lid", *FromUnrecoverableHandler ? "unrecoverable" : "recoverable", *ProgramCounter, *FramePointer); in HandleCFIBadType()
775 …lidVtable, bool FromUnrecoverableHandler, unsigned long ProgramCounter, unsigned long FramePointer) in __ubsan_handle_cfi_bad_type() argument
780 …(false, pData, ulVtable, &bValidVtable, &FromUnrecoverableHandler, &ProgramCounter, &FramePointer); in __ubsan_handle_cfi_bad_type()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCRegisterInfo.cpp794 Register &FramePointer) const { in prepareDynamicAlloca()
828 BuildMI(MBB, II, dl, TII.get(PPC::ADDI8), FramePointer) in prepareDynamicAlloca()
832 BuildMI(MBB, II, dl, TII.get(PPC::ADDI), FramePointer) in prepareDynamicAlloca()
836 BuildMI(MBB, II, dl, TII.get(PPC::LD), FramePointer) in prepareDynamicAlloca()
840 BuildMI(MBB, II, dl, TII.get(PPC::LWZ), FramePointer) in prepareDynamicAlloca()
895 Register FramePointer = MI.getOperand(0).getReg(); in lowerPrepareProbedAlloca() local
900 // RegAllocator might allocate FramePointer and NegSizeReg in the same phyreg. in lowerPrepareProbedAlloca()
901 if (FramePointer == NegSizeReg) { in lowerPrepareProbedAlloca()
902 assert(KillNegSizeReg && "FramePointer is a def and NegSizeReg is an use, " in lowerPrepareProbedAlloca()
904 // FramePointer i in lowerPrepareProbedAlloca()
[all...]
H A DPPCRegisterInfo.h122 Register &FramePointer) const;
H A DPPCISelLowering.cpp12691 // PREPARE_PROBED_ALLOCA to get the future result of actual FramePointer and in EmitInstrWithCustomInserter()
12741 Register FramePointer = MRI.createVirtualRegister(isPPC64 ? G8RC : GPRC); in EmitInstrWithCustomInserter()
12745 // PREPARE_PROBED_ALLOCA pseudo instruction to get actual FramePointer and in EmitInstrWithCustomInserter()
12758 BuildMI(*MBB, {MI}, DL, TII->get(ProbeOpc), FramePointer) in EmitInstrWithCustomInserter()
12801 .addReg(FramePointer) in EmitInstrWithCustomInserter()
12824 .addReg(FramePointer) in EmitInstrWithCustomInserter()
12548 Register FramePointer = MRI.createVirtualRegister(isPPC64 ? G8RC : GPRC); emitProbedAlloca() local
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DAutoUpgrade.cpp5442 StringRef FramePointer;
5446 FramePointer = A.getValueAsString() == "true" ? "all" : "none";
5451 if (FramePointer != "all")
5452 FramePointer = "non-leaf";
5455 if (!FramePointer.empty())
5456 B.addAttribute("frame-pointer", FramePointer);
5324 StringRef FramePointer; UpgradeAttributes() local
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.def66 ENUM_CODEGENOPT(FramePointer, FramePointerKind, 2, FramePointerKind::None) /// frame-pointer: all,non-leaf,reserved,none
/freebsd-src/contrib/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc84 DWORD FramePointer;
/freebsd-src/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7825 MarshallingInfoEnum<CodeGenOpts<"FramePointer">, "None">;