Lines Matching refs:Opcode
172 uint8_t Opcode = Op.getCode(); in printCompactDWARFExpr() local
173 switch (Opcode) { in printCompactDWARFExpr()
226 if (Opcode >= dwarf::DW_OP_reg0 && Opcode <= dwarf::DW_OP_reg31) { in printCompactDWARFExpr()
229 uint64_t DwarfRegNum = Opcode - dwarf::DW_OP_reg0; in printCompactDWARFExpr()
235 } else if (Opcode >= dwarf::DW_OP_breg0 && in printCompactDWARFExpr()
236 Opcode <= dwarf::DW_OP_breg31) { in printCompactDWARFExpr()
237 int DwarfRegNum = Opcode - dwarf::DW_OP_breg0; in printCompactDWARFExpr()
249 OS << "<unknown op " << dwarf::OperationEncodingString(Opcode) << " (" in printCompactDWARFExpr()
250 << (int)Opcode << ")>"; in printCompactDWARFExpr()
278 DIDumpOptions DumpOpts, uint8_t Opcode, in prettyPrintRegisterOp() argument
286 if (Opcode == DW_OP_bregx || Opcode == DW_OP_regx || in prettyPrintRegisterOp()
287 Opcode == DW_OP_regval_type) in prettyPrintRegisterOp()
289 else if (Opcode >= DW_OP_breg0 && Opcode < DW_OP_bregx) in prettyPrintRegisterOp()
290 DwarfRegNum = Opcode - DW_OP_breg0; in prettyPrintRegisterOp()
292 DwarfRegNum = Opcode - DW_OP_reg0; in prettyPrintRegisterOp()
296 if ((Opcode >= DW_OP_breg0 && Opcode <= DW_OP_breg31) || in prettyPrintRegisterOp()
297 Opcode == DW_OP_bregx) in prettyPrintRegisterOp()
302 if (Opcode == DW_OP_regval_type) in prettyPrintRegisterOp()