Home
last modified time | relevance | path

Searched refs:MCCFIInstruction (Results 1 – 25 of 63) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h484 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 DMCAsmInfo.h26 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 DCFIInstrInserter.cpp182 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 DMachineOperand.cpp664 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 DCFIFixup.cpp216 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 DAsmPrinterDwarf.cpp206 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 DMCStreamer.cpp450 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 DMCDwarf.cpp1317 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 DMSP430FrameLowering.cpp48 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 DMSP430MCTargetDesc.cpp56 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa( in createMSP430MCAsmInfo()
61 MCCFIInstruction Inst2 = MCCFIInstruction::createOffset( in createMSP430MCAsmInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCTargetDesc.cpp53 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 DAArch64AsmBackend.cpp604 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 DM68kMCTargetDesc.cpp84 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa( in createM68kMCAsmInfo()
89 Inst = MCCFIInstruction::createOffset( in createM68kMCAsmInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kFrameLowering.cpp263 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 DM68kFrameLowering.h23 class MCCFIInstruction; variable
58 const DebugLoc &DL, const MCCFIInstruction &CFIInst) const;
/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/MCTargetDesc/
H A DARCMCTargetDesc.cpp61 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, ARC::SP, 0); in createARCMCAsmInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/MCTargetDesc/
H A DVEMCTargetDesc.cpp40 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, Reg, 0); in createVEMCAsmInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreMCTargetDesc.cpp64 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, XCore::SP, 0); in createXCoreMCAsmInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYMCTargetDesc.cpp47 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, Reg, 0); in createCSKYMCAsmInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp433 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 DXtensaFrameLowering.cpp62 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 DMips16FrameLowering.cpp64 MF.addFrameInst(MCCFIInstruction::cfiDefCfaOffset(nullptr, StackSize)); in emitPrologue()
78 MCCFIInstruction::createOffset(nullptr, DReg, Offset)); in emitPrologue()
H A DMipsSEFrameLowering.cpp437 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 DMipsMCTargetDesc.cpp90 MCCFIInstruction Inst = MCCFIInstruction::createDefCfaRegister(nullptr, SP); in createMipsMCAsmInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchMCTargetDesc.cpp69 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, SP, 0); in createLoongArchMCAsmInfo()

123