Searched refs:MCCFIInstruction (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCDwarf.h281 class MCCFIInstruction { class in namespace:llvm
297 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V) : function in class:llvm::MCCFIInstruction
303 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2) : function in class:llvm::MCCFIInstruction
309 static MCCFIInstruction
311 return MCCFIInstruction(OpOffset, L, Register, Offset, "");
314 static MCCFIInstruction
316 return MCCFIInstruction(OpDefCfaRegister, L, Register, 0, "");
319 static MCCFIInstruction createDefCfaOffset(MCSymbol *L, int Offset) {
320 return MCCFIInstruction(OpDefCfaOffset, L, 0, -Offset, "");
323 static MCCFIInstruction
[all...]
/external/llvm/lib/MC/
H A DMCStreamer.cpp265 MCCFIInstruction Instruction =
266 MCCFIInstruction::createDefCfa(Label, Register, Offset);
273 MCCFIInstruction Instruction =
274 MCCFIInstruction::createDefCfaOffset(Label, Offset);
281 MCCFIInstruction Instruction =
282 MCCFIInstruction::createAdjustCfaOffset(Label, Adjustment);
289 MCCFIInstruction Instruction =
290 MCCFIInstruction::createDefCfaRegister(Label, Register);
297 MCCFIInstruction Instruction =
298 MCCFIInstruction
[all...]
H A DMCDwarf.cpp915 const std::vector<MCCFIInstruction> &Instrs,
918 const MCCFIInstruction &Instr);
969 const MCCFIInstruction &Instr) {
974 case MCCFIInstruction::OpRegister: {
987 case MCCFIInstruction::OpUndefined: {
997 case MCCFIInstruction::OpAdjustCfaOffset:
998 case MCCFIInstruction::OpDefCfaOffset: {
1000 Instr.getOperation() == MCCFIInstruction::OpAdjustCfaOffset;
1017 case MCCFIInstruction::OpDefCfa: {
1035 case MCCFIInstruction
[all...]

Completed in 291 milliseconds