Home
last modified time | relevance | path

Searched refs:instruction_address (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/google-breakpad/src/processor/
H A Dstackwalk_common.cc283 uint64_t instruction_address = frame->ReturnAddress(); in PrintFrameHeader() local
293 instruction_address - frame->source_line_base); in PrintFrameHeader()
295 printf(" + 0x%" PRIx64, instruction_address - frame->function_base); in PrintFrameHeader()
299 instruction_address - frame->module->base_address()); in PrintFrameHeader()
302 printf("0x%" PRIx64, instruction_address); in PrintFrameHeader()
965 uint64_t instruction_address = frame->ReturnAddress(); in PrintStackMachineReadable() local
981 instruction_address - frame->source_line_base); in PrintStackMachineReadable()
987 instruction_address - frame->function_base); in PrintStackMachineReadable()
995 instruction_address - frame->module->base_address()); in PrintStackMachineReadable()
1004 instruction_address); in PrintStackMachineReadable()
/aosp_15_r20/external/mesa3d/bin/
H A Dflamegraph_map_lp_jit.py110 instruction_address = address - symbol[0]
111 index = bisect_left(instructions, instruction_address, key=instruction_address_key)
112 if index < len(instructions) and instructions[index].address == instruction_address:
/aosp_15_r20/external/perfetto/src/trace_processor/importers/perf/
H A Dspe_record_parser.cc143 if (!inflight_record_.instruction_address) { in ParseSpeRecord()
148 const auto& inst = *inflight_record_.instruction_address; in ParseSpeRecord()
225 inflight_record_.instruction_address = in ReadAddressPacket()
H A Dspe_record_parser.h55 std::optional<spe::InstructionVirtualAddress> instruction_address; member
/aosp_15_r20/external/vixl/src/aarch32/
H A Ddisasm-aarch32.h2706 const uint32_t* DecodeA32At(const uint32_t* instruction_address) { in DecodeA32At() argument
2707 DecodeA32(*instruction_address); in DecodeA32At()
2708 return instruction_address + 1; in DecodeA32At()
2712 const uint16_t* DecodeT32At(const uint16_t* instruction_address,
H A Ddisasm-aarch32.cc67215 const uint16_t* instruction_address, const uint16_t* buffer_end) { in DecodeT32At() argument
67216 uint32_t instruction = *instruction_address++ << 16; in DecodeT32At()
67219 if (instruction_address >= buffer_end) { in DecodeT32At()
67221 return instruction_address; in DecodeT32At()
67223 instruction |= *instruction_address++; in DecodeT32At()
67227 return instruction_address; in DecodeT32At()