Searched refs:instruction_address (Results 1 – 3 of 3) sorted by relevance
266 uint64_t instruction_address = frame->ReturnAddress(); in PrintStack() local277 instruction_address - frame->source_line_base); in PrintStack()279 printf(" + 0x%" PRIx64, instruction_address - frame->function_base); in PrintStack()283 instruction_address - frame->module->base_address()); in PrintStack()286 printf("0x%" PRIx64, instruction_address); in PrintStack()631 uint64_t instruction_address = frame->ReturnAddress(); in PrintStackMachineReadable() local647 instruction_address - frame->source_line_base); in PrintStackMachineReadable()653 instruction_address - frame->function_base); in PrintStackMachineReadable()661 instruction_address - frame->module->base_address()); in PrintStackMachineReadable()670 instruction_address); in PrintStackMachineReadable()
2706 const uint32_t* DecodeA32At(const uint32_t* instruction_address) { in DecodeA32At() argument2707 DecodeA32(*instruction_address); in DecodeA32At()2708 return instruction_address + 1; in DecodeA32At()2712 const uint16_t* DecodeT32At(const uint16_t* instruction_address,
67215 const uint16_t* instruction_address, const uint16_t* buffer_end) { in DecodeT32At() argument67216 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()