Lines Matching refs:Opcode

124   Opcode = Data.getU8(&Offset);  in extract()
126 Desc = getOpDesc(Opcode); in extract()
228 DIDumpOptions DumpOpts, uint8_t Opcode, in prettyPrintRegisterOp() argument
237 if (Opcode == DW_OP_bregx || Opcode == DW_OP_regx || in prettyPrintRegisterOp()
238 Opcode == DW_OP_regval_type) in prettyPrintRegisterOp()
240 else if (Opcode >= DW_OP_breg0 && Opcode < DW_OP_bregx) in prettyPrintRegisterOp()
241 DwarfRegNum = Opcode - DW_OP_breg0; in prettyPrintRegisterOp()
243 DwarfRegNum = Opcode - DW_OP_reg0; in prettyPrintRegisterOp()
247 if ((Opcode >= DW_OP_breg0 && Opcode <= DW_OP_breg31) || in prettyPrintRegisterOp()
248 Opcode == DW_OP_bregx) in prettyPrintRegisterOp()
253 if (Opcode == DW_OP_regval_type) in prettyPrintRegisterOp()
271 StringRef Name = OperationEncodingString(Opcode); in print()
275 if ((Opcode >= DW_OP_breg0 && Opcode <= DW_OP_breg31) || in print()
276 (Opcode >= DW_OP_reg0 && Opcode <= DW_OP_reg31) || in print()
277 Opcode == DW_OP_bregx || Opcode == DW_OP_regx || in print()
278 Opcode == DW_OP_regval_type) in print()
279 if (prettyPrintRegisterOp(U, OS, DumpOpts, Opcode, Operands, RegInfo, isEH)) in print()
293 if (Opcode == DW_OP_convert && Operands[Operand] == 0) in print()
316 else if (Opcode != DW_OP_entry_value && in print()
317 Opcode != DW_OP_GNU_entry_value) in print()
372 if (Opcode == DW_OP_convert && Operands[Operand] == 0) in verify()
414 uint8_t Opcode = Op.getCode(); in printCompactDWARFExpr() local
415 switch (Opcode) { in printCompactDWARFExpr()
465 if (Opcode >= dwarf::DW_OP_reg0 && Opcode <= dwarf::DW_OP_reg31) { in printCompactDWARFExpr()
468 uint64_t DwarfRegNum = Opcode - dwarf::DW_OP_reg0; in printCompactDWARFExpr()
476 } else if (Opcode >= dwarf::DW_OP_breg0 && in printCompactDWARFExpr()
477 Opcode <= dwarf::DW_OP_breg31) { in printCompactDWARFExpr()
478 int DwarfRegNum = Opcode - dwarf::DW_OP_breg0; in printCompactDWARFExpr()
492 OS << "<unknown op " << dwarf::OperationEncodingString(Opcode) << " (" in printCompactDWARFExpr()
493 << (int)Opcode << ")>"; in printCompactDWARFExpr()