/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCDwarf.h | 484 class MCCFIInstruction { 530 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int64_t O, SMLoc Loc, 537 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2, SMLoc Loc) in MCCFIInstruction() function 542 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int64_t O, unsigned AS, in MCCFIInstruction() function 549 MCCFIInstruction(OpType Op, MCSymbol *L, MCSymbol *CfiLabel, SMLoc Loc) in MCCFIInstruction() function 558 static MCCFIInstruction cfiDefCfa(MCSymbol *L, unsigned Register, 560 return MCCFIInstruction(OpDefCfa, L, Register, Offset, Loc); 565 static MCCFIInstruction createDefCfaRegister(MCSymbol *L, unsigned Register, 567 return MCCFIInstruction(OpDefCfaRegister, L, Register, INT64_C(0), Loc); 573 static MCCFIInstruction cfiDefCfaOffset(MCSymbol *L, int64_t Offset, [all …]
|
H A D | MCAsmInfo.h | 26 class MCCFIInstruction; variable 504 std::vector<MCCFIInstruction> InitialFrameState; 825 void addInitialFrameState(const MCCFIInstruction &Inst); 827 const std::vector<MCCFIInstruction> &getInitialFrameState() const { in getInitialFrameState()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | CFIInstrInserter.cpp | 182 const std::vector<MCCFIInstruction> &Instrs = MF->getFrameInstructions(); in calculateOutgoingCFAInfo() 193 const MCCFIInstruction &CFI = Instrs[CFIIndex]; in calculateOutgoingCFAInfo() 195 case MCCFIInstruction::OpDefCfaRegister: in calculateOutgoingCFAInfo() 198 case MCCFIInstruction::OpDefCfaOffset: in calculateOutgoingCFAInfo() 201 case MCCFIInstruction::OpAdjustCfaOffset: in calculateOutgoingCFAInfo() 204 case MCCFIInstruction::OpDefCfa: in calculateOutgoingCFAInfo() 208 case MCCFIInstruction::OpOffset: in calculateOutgoingCFAInfo() 211 case MCCFIInstruction::OpRegister: in calculateOutgoingCFAInfo() 214 case MCCFIInstruction::OpRelOffset: in calculateOutgoingCFAInfo() 217 case MCCFIInstruction::OpRestore: in calculateOutgoingCFAInfo() [all …]
|
H A D | MachineOperand.cpp | 664 static void printCFI(raw_ostream &OS, const MCCFIInstruction &CFI, in printCFI() 667 case MCCFIInstruction::OpSameValue: in printCFI() 673 case MCCFIInstruction::OpRememberState: in printCFI() 678 case MCCFIInstruction::OpRestoreState: in printCFI() 683 case MCCFIInstruction::OpOffset: in printCFI() 690 case MCCFIInstruction::OpDefCfaRegister: in printCFI() 696 case MCCFIInstruction::OpDefCfaOffset: in printCFI() 702 case MCCFIInstruction::OpDefCfa: in printCFI() 709 case MCCFIInstruction::OpLLVMDefAspaceCfa: in printCFI() 717 case MCCFIInstruction::OpRelOffset: in printCFI() [all …]
|
H A D | CFIFixup.cpp | 216 MF.addFrameInst(MCCFIInstruction::createRememberState(nullptr)); in runOnMachineFunction() 221 CFIIndex = MF.addFrameInst(MCCFIInstruction::createRestoreState(nullptr)); in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinterDwarf.cpp | 206 void AsmPrinter::emitCFIInstruction(const MCCFIInstruction &Inst) const { in emitCFIInstruction() 211 case MCCFIInstruction::OpDefCfaOffset: in emitCFIInstruction() 214 case MCCFIInstruction::OpAdjustCfaOffset: in emitCFIInstruction() 217 case MCCFIInstruction::OpDefCfa: in emitCFIInstruction() 220 case MCCFIInstruction::OpDefCfaRegister: in emitCFIInstruction() 223 case MCCFIInstruction::OpLLVMDefAspaceCfa: in emitCFIInstruction() 227 case MCCFIInstruction::OpOffset: in emitCFIInstruction() 230 case MCCFIInstruction::OpRegister: in emitCFIInstruction() 233 case MCCFIInstruction::OpWindowSave: in emitCFIInstruction() 236 case MCCFIInstruction::OpNegateRAState: in emitCFIInstruction() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCStreamer.cpp | 450 for (const MCCFIInstruction& Inst : MAI->getInitialFrameState()) { in emitCFIStartProc() 451 if (Inst.getOperation() == MCCFIInstruction::OpDefCfa || in emitCFIStartProc() 452 Inst.getOperation() == MCCFIInstruction::OpDefCfaRegister || in emitCFIStartProc() 453 Inst.getOperation() == MCCFIInstruction::OpLLVMDefAspaceCfa) { in emitCFIStartProc() 488 MCCFIInstruction Instruction = in emitCFIDefCfa() 489 MCCFIInstruction::cfiDefCfa(Label, Register, Offset, Loc); in emitCFIDefCfa() 499 MCCFIInstruction Instruction = in emitCFIDefCfaOffset() 500 MCCFIInstruction::cfiDefCfaOffset(Label, Offset); in emitCFIDefCfaOffset() 509 MCCFIInstruction Instruction = in emitCFIAdjustCfaOffset() 510 MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment, Loc); in emitCFIAdjustCfaOffset() [all …]
|
H A D | MCDwarf.cpp | 1317 void emitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs, 1319 void emitCFIInstruction(const MCCFIInstruction &Instr); 1328 void FrameEmitterImpl::emitCFIInstruction(const MCCFIInstruction &Instr) { in emitCFIInstruction() 1333 case MCCFIInstruction::OpRegister: { in emitCFIInstruction() 1345 case MCCFIInstruction::OpWindowSave: in emitCFIInstruction() 1349 case MCCFIInstruction::OpNegateRAState: in emitCFIInstruction() 1353 case MCCFIInstruction::OpUndefined: { in emitCFIInstruction() 1359 case MCCFIInstruction::OpAdjustCfaOffset: in emitCFIInstruction() 1360 case MCCFIInstruction::OpDefCfaOffset: { in emitCFIInstruction() 1362 Instr.getOperation() == MCCFIInstruction::OpAdjustCfaOffset; in emitCFIInstruction() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/ |
H A D | MSP430FrameLowering.cpp | 48 const MCCFIInstruction &CFIInst, in BuildCFI() 75 MCCFIInstruction::createOffset(nullptr, DwarfReg, Offset)); in emitCalleeSavedFrameMoves() 78 MCCFIInstruction::createRestore(nullptr, DwarfReg)); in emitCalleeSavedFrameMoves() 117 MCCFIInstruction::cfiDefCfaOffset(nullptr, -2 * stackGrowth), in emitPrologue() 124 MCCFIInstruction::createOffset(nullptr, DwarfFramePtr, 2 * stackGrowth), in emitPrologue() 135 MCCFIInstruction::createDefCfaRegister(nullptr, DwarfFramePtr), in emitPrologue() 155 MCCFIInstruction::cfiDefCfaOffset(nullptr, -StackOffset), in emitPrologue() 185 MCCFIInstruction::cfiDefCfaOffset(nullptr, StackSize - stackGrowth), in emitPrologue() 227 MCCFIInstruction::cfiDefCfa(nullptr, DwarfStackPtr, 2), in emitEpilogue() 233 MCCFIInstruction::createRestore(nullptr, DwarfFramePtr), in emitEpilogue() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/ |
H A D | MSP430MCTargetDesc.cpp | 56 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa( in createMSP430MCAsmInfo() 61 MCCFIInstruction Inst2 = MCCFIInstruction::createOffset( in createMSP430MCAsmInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/ |
H A D | SparcMCTargetDesc.cpp | 53 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, Reg, 0); in createSparcMCAsmInfo() 63 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, Reg, 2047); in createSparcV9MCAsmInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64AsmBackend.cpp | 604 ArrayRef<MCCFIInstruction> Instrs = FI->Instructions; in generateCompactUnwindEncoding() 617 const MCCFIInstruction &Inst = Instrs[i]; in generateCompactUnwindEncoding() 623 case MCCFIInstruction::OpDefCfa: { in generateCompactUnwindEncoding() 638 const MCCFIInstruction &LRPush = Instrs[++i]; in generateCompactUnwindEncoding() 639 if (LRPush.getOperation() != MCCFIInstruction::OpOffset) in generateCompactUnwindEncoding() 641 const MCCFIInstruction &FPPush = Instrs[++i]; in generateCompactUnwindEncoding() 642 if (FPPush.getOperation() != MCCFIInstruction::OpOffset) in generateCompactUnwindEncoding() 663 case MCCFIInstruction::OpDefCfaOffset: { in generateCompactUnwindEncoding() 669 case MCCFIInstruction::OpOffset: { in generateCompactUnwindEncoding() 680 const MCCFIInstruction &Inst2 = Instrs[++i]; in generateCompactUnwindEncoding() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/ |
H A D | M68kMCTargetDesc.cpp | 84 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa( in createM68kMCAsmInfo() 89 Inst = MCCFIInstruction::createOffset( in createM68kMCAsmInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kFrameLowering.cpp | 263 MCCFIInstruction::createGnuArgsSize(nullptr, Amount)); in eliminateCallFramePseudoInstr() 278 MCCFIInstruction::createAdjustCfaOffset(nullptr, -InternalAmt)); in eliminateCallFramePseudoInstr() 309 MCCFIInstruction::createAdjustCfaOffset(nullptr, CfaAdjustment)); in eliminateCallFramePseudoInstr() 441 const MCCFIInstruction &CFIInst) const { in BuildCFI() 467 MCCFIInstruction::createOffset(nullptr, DwarfReg, Offset)); in emitPrologueCalleeSavedFrameMoves() 556 MCCFIInstruction::cfiDefCfaOffset(nullptr, 2 * stackGrowth)); in emitPrologue() 562 MCCFIInstruction::createOffset(nullptr, DwarfFramePtr, in emitPrologue() 571 MCCFIInstruction::createDefCfaRegister(nullptr, DwarfFramePtr)); in emitPrologue() 596 MCCFIInstruction::cfiDefCfaOffset(nullptr, StackOffset)); in emitPrologue() 647 MCCFIInstruction::cfiDefCfaOffset(nullptr, -StackSize + stackGrowth)); in emitPrologue()
|
H A D | M68kFrameLowering.h | 23 class MCCFIInstruction; variable 58 const DebugLoc &DL, const MCCFIInstruction &CFIInst) const;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/ |
H A D | ARCMCTargetDesc.cpp | 61 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, ARC::SP, 0); in createARCMCAsmInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/MCTargetDesc/ |
H A D | VEMCTargetDesc.cpp | 40 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, Reg, 0); in createVEMCAsmInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/ |
H A D | XCoreMCTargetDesc.cpp | 64 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, XCore::SP, 0); in createXCoreMCAsmInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/ |
H A D | CSKYMCTargetDesc.cpp | 47 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, Reg, 0); in createCSKYMCAsmInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86FrameLowering.cpp | 433 MCCFIInstruction CI = CIs[PI->getOperand(0).getCFIIndex()]; in mergeSPUpdates() 434 if (CI.getOperation() == MCCFIInstruction::OpDefCfaOffset || in mergeSPUpdates() 435 CI.getOperation() == MCCFIInstruction::OpAdjustCfaOffset) in mergeSPUpdates() 447 const MCCFIInstruction &CFIInst, in BuildCFI() 452 if (CFIInst.getOperation() == MCCFIInstruction::OpAdjustCfaOffset) in BuildCFI() 478 MCCFIInstruction::createOffset(nullptr, DwarfReg, -Offset)); in emitCalleeSavedFrameMovesFullCFA() 521 MCCFIInstruction::createEscape(nullptr, CfaExpr.str()), in emitCalleeSavedFrameMoves() 525 MCCFIInstruction::createOffset(nullptr, DwarfReg, Offset)); in emitCalleeSavedFrameMoves() 529 MCCFIInstruction::createRestore(nullptr, DwarfReg)); in emitCalleeSavedFrameMoves() 553 MCCFIInstruction::createEscape(nullptr, DefCfaExpr.str()), in emitCalleeSavedFrameMoves() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/ |
H A D | XtensaFrameLowering.cpp | 62 MF.addFrameInst(MCCFIInstruction::cfiDefCfaOffset(nullptr, StackSize)); in emitPrologue() 102 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset( in emitPrologue() 118 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createDefCfaRegister( in emitPrologue()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | Mips16FrameLowering.cpp | 64 MF.addFrameInst(MCCFIInstruction::cfiDefCfaOffset(nullptr, StackSize)); in emitPrologue() 78 MCCFIInstruction::createOffset(nullptr, DReg, Offset)); in emitPrologue()
|
H A D | MipsSEFrameLowering.cpp | 437 MF.addFrameInst(MCCFIInstruction::cfiDefCfaOffset(nullptr, StackSize)); in emitPrologue() 470 MCCFIInstruction::createOffset(nullptr, Reg0, Offset)); in emitPrologue() 475 MCCFIInstruction::createOffset(nullptr, Reg1, Offset + 4)); in emitPrologue() 486 MCCFIInstruction::createOffset(nullptr, Reg0, Offset)); in emitPrologue() 491 MCCFIInstruction::createOffset(nullptr, Reg1, Offset + 4)); in emitPrologue() 496 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset( in emitPrologue() 519 MCCFIInstruction::createOffset(nullptr, Reg, Offset)); in emitPrologue() 532 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createDefCfaRegister( in emitPrologue()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsMCTargetDesc.cpp | 90 MCCFIInstruction Inst = MCCFIInstruction::createDefCfaRegister(nullptr, SP); in createMipsMCAsmInfo()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/ |
H A D | LoongArchMCTargetDesc.cpp | 69 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, SP, 0); in createLoongArchMCAsmInfo()
|