Searched refs:opcode (Results 1 - 3 of 3) sorted by relevance
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/ |
H A D | dwarf_op.cpp | 54 uint8_t opcode;
in Decode() local 55 memory_->ReadU8(addr, &opcode, true);
in Decode() 56 switch (opcode) {
in Decode() 281 OpLit(opcode);
in Decode() 316 OpReg(opcode, regs);
in Decode() 355 OpBReg(opcode, addr, regs);
in Decode() 374 DFXLOGE("DWARF OpNop opcode: %{public}x", opcode);
in Decode() 375 OpNop(opcode);
in Decode() 378 DFXLOGE("DWARF Unexpected opcode in Decode() [all...] |
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/ |
H A D | dwarf_op.h | 335 inline void OpLit(uint8_t opcode) in OpLit() argument 337 stack_.push_front(opcode - DW_OP_lit0); in OpLit() 341 inline void OpReg(uint8_t opcode, DfxRegs& regs) in OpReg() argument 343 auto reg = static_cast<UnsignedType>(opcode - DW_OP_reg0); in OpReg() 364 inline void OpBReg(uint8_t opcode, AddressType& exprPtr, DfxRegs& regs) in OpBReg() argument 366 auto reg = static_cast<uint32_t>(opcode - DW_OP_breg0); in OpBReg() 390 inline void OpNop(uint8_t opcode) in OpNop() argument
|
/base/hiviewdfx/hitrace/tools/hitrace_converter/ |
H A D | parse_functions.py | 315 opcode = parse_int_field(one_event, "opcode", False)
317 return "%s: %s: tag: %d, DB: 0x%x, size: %d, IS: %d, LBA: %d, opcode: 0x%x" \
318 % (command_str, dev_name, tag, doorbell, transfer_len, intr, lba, opcode)
329 opcode = parse_int_field(one_event, "opcode", False)
335 return "%s: %s: tag: %d, DB: 0x%x, size: %d, IS: %d, LBA: %d, opcode: 0x%x (%s), group_id: 0x%x" \
337 transfer_len, intr, lba, opcode, opcode_map.get(opcode, ""), group_id)
753 PRINT_FMT_UFSHCD_COMMAND_HM = '"%s: %s: tag: %u, DB: 0x%x, size: %d, IS: %u, LBA: %llu, opcode [all...] |
Completed in 3 milliseconds