Lines Matching refs:Opcode
118 Opcode = Data.getU8(&Offset); in extract()
120 Desc = getOpDesc(Opcode); in extract()
191 static bool prettyPrintRegisterOp(raw_ostream &OS, uint8_t Opcode, in prettyPrintRegisterOp() argument
200 if (Opcode == DW_OP_bregx || Opcode == DW_OP_regx) in prettyPrintRegisterOp()
202 else if (Opcode >= DW_OP_breg0 && Opcode < DW_OP_bregx) in prettyPrintRegisterOp()
203 DwarfRegNum = Opcode - DW_OP_breg0; in prettyPrintRegisterOp()
205 DwarfRegNum = Opcode - DW_OP_reg0; in prettyPrintRegisterOp()
210 if ((Opcode >= DW_OP_breg0 && Opcode <= DW_OP_breg31) || in prettyPrintRegisterOp()
211 Opcode == DW_OP_bregx) in prettyPrintRegisterOp()
231 StringRef Name = OperationEncodingString(Opcode); in print()
235 if ((Opcode >= DW_OP_breg0 && Opcode <= DW_OP_breg31) || in print()
236 (Opcode >= DW_OP_reg0 && Opcode <= DW_OP_reg31) || in print()
237 Opcode == DW_OP_bregx || Opcode == DW_OP_regx) in print()
238 if (prettyPrintRegisterOp(OS, Opcode, Operands, RegInfo, isEH)) in print()