Lines Matching refs:MCCFIInstruction
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()
1375 case MCCFIInstruction::OpDefCfa: { in emitCFIInstruction()
1386 case MCCFIInstruction::OpDefCfaRegister: { in emitCFIInstruction()
1396 case MCCFIInstruction::OpLLVMDefAspaceCfa: { in emitCFIInstruction()
1408 case MCCFIInstruction::OpOffset: in emitCFIInstruction()
1409 case MCCFIInstruction::OpRelOffset: { in emitCFIInstruction()
1411 Instr.getOperation() == MCCFIInstruction::OpRelOffset; in emitCFIInstruction()
1436 case MCCFIInstruction::OpRememberState: in emitCFIInstruction()
1439 case MCCFIInstruction::OpRestoreState: in emitCFIInstruction()
1442 case MCCFIInstruction::OpSameValue: { in emitCFIInstruction()
1448 case MCCFIInstruction::OpRestore: { in emitCFIInstruction()
1460 case MCCFIInstruction::OpGnuArgsSize: in emitCFIInstruction()
1465 case MCCFIInstruction::OpEscape: in emitCFIInstruction()
1468 case MCCFIInstruction::OpLabel: in emitCFIInstruction()
1476 void FrameEmitterImpl::emitCFIInstructions(ArrayRef<MCCFIInstruction> Instrs, in emitCFIInstructions()
1478 for (const MCCFIInstruction &Instr : Instrs) { in emitCFIInstructions()
1689 const std::vector<MCCFIInstruction> &Instructions = in EmitCIE()