• Home
  • Raw
  • Download

Lines Matching refs:MCCFIInstruction

1365   void emitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs,
1367 void emitCFIInstruction(const MCCFIInstruction &Instr);
1376 void FrameEmitterImpl::emitCFIInstruction(const MCCFIInstruction &Instr) { in emitCFIInstruction()
1381 case MCCFIInstruction::OpRegister: { in emitCFIInstruction()
1393 case MCCFIInstruction::OpWindowSave: in emitCFIInstruction()
1397 case MCCFIInstruction::OpNegateRAState: in emitCFIInstruction()
1401 case MCCFIInstruction::OpUndefined: { in emitCFIInstruction()
1407 case MCCFIInstruction::OpAdjustCfaOffset: in emitCFIInstruction()
1408 case MCCFIInstruction::OpDefCfaOffset: { in emitCFIInstruction()
1410 Instr.getOperation() == MCCFIInstruction::OpAdjustCfaOffset; in emitCFIInstruction()
1423 case MCCFIInstruction::OpDefCfa: { in emitCFIInstruction()
1434 case MCCFIInstruction::OpDefCfaRegister: { in emitCFIInstruction()
1443 case MCCFIInstruction::OpOffset: in emitCFIInstruction()
1444 case MCCFIInstruction::OpRelOffset: { in emitCFIInstruction()
1446 Instr.getOperation() == MCCFIInstruction::OpRelOffset; in emitCFIInstruction()
1471 case MCCFIInstruction::OpRememberState: in emitCFIInstruction()
1474 case MCCFIInstruction::OpRestoreState: in emitCFIInstruction()
1477 case MCCFIInstruction::OpSameValue: { in emitCFIInstruction()
1483 case MCCFIInstruction::OpRestore: { in emitCFIInstruction()
1495 case MCCFIInstruction::OpGnuArgsSize: in emitCFIInstruction()
1500 case MCCFIInstruction::OpEscape: in emitCFIInstruction()
1508 void FrameEmitterImpl::emitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs, in emitCFIInstructions()
1510 for (const MCCFIInstruction &Instr : Instrs) { in emitCFIInstructions()
1719 const std::vector<MCCFIInstruction> &Instructions = in EmitCIE()