Home | History | Annotate | Download | only in m_debuginfo

Lines Matching defs:op_code

339    UChar op_code = ML_(cur_step_UChar)(data);
340 if (0) VG_(printf)("dwarf2: ext OPC: %d\n", op_code);
342 switch (op_code) {
372 (Int)op_code);
380 (Int)op_code, (Addr)adr);
697 UChar op_code = ML_(cur_step_UChar)(&data);
699 if (0) VG_(printf)("dwarf2: OPC: %d\n", op_code);
701 if (op_code >= info.li_opcode_base) {
702 op_code -= info.li_opcode_base;
703 Word adv = (op_code / info.li_line_range)
709 adv = (op_code % info.li_line_range) + info.li_line_base;
717 (Int)op_code, advAddr, state_machine_regs.address,
746 else { /* ! (op_code >= info.li_opcode_base) */
748 switch (op_code) {
872 (op_code-1) * sizeof(UChar)));
877 VG_(printf)(" Unknown opcode %d\n", (Int)op_code);
880 } /* switch (op_code) */
882 } /* if (op_code >= info.li_opcode_base) */