/external/oprofile/agents/jvmti/ |
D | libjvmti_oprofile.c | 115 jmethodID method, jint code_size, void const * code_addr, in cb_compiled_method_load() argument 172 method_signature, code_addr, code_size); in cb_compiled_method_load() 183 (uint64_t)(uintptr_t) code_addr, in cb_compiled_method_load() 184 code_addr, code_size)) { in cb_compiled_method_load() 191 if (op_write_debug_line_info(agent_hdl, code_addr, map_length, in cb_compiled_method_load() 208 jmethodID method, void const * code_addr) in cb_compiled_method_unload() argument 215 fprintf(stderr, "unload: addr=%p\n", code_addr); in cb_compiled_method_unload() 216 if (op_unload_native_code(agent_hdl, (uint64_t)(uintptr_t) code_addr)) in cb_compiled_method_unload() 222 char const * name, void const * code_addr, jint code_size) in cb_dynamic_code_generated() argument 228 name, code_addr, code_size); in cb_dynamic_code_generated() [all …]
|
/external/oprofile/agents/jvmpi/ |
D | jvmpi_oprofile.cpp | 86 void * code_addr = event->u.compiled_method_load.code_addr; in compiled_method_load() local 124 << ", addr=" << code_addr << ", size=" in compiled_method_load() 135 if (op_write_native_code(agent_hdl, buf, (uint64_t) code_addr, in compiled_method_load() 136 code_addr, code_size)) in compiled_method_load() 142 void * code_addr = event->u.compiled_method_load.code_addr; in compiled_method_unload() local 145 << (unsigned long long) (uintptr_t) code_addr in compiled_method_unload() 148 if (op_unload_native_code(agent_hdl, (uint64_t)code_addr)) in compiled_method_unload()
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
D | r300_fragprog.c | 74 uint32_t code_addr = code->code_addr[3 - (code->config & 3) + n]; in r300FragmentProgramDump() local 75 unsigned int alu_offset = ((code_addr & R300_ALU_START_MASK) >> R300_ALU_START_SHIFT) + in r300FragmentProgramDump() 77 unsigned int alu_end = ((code_addr & R300_ALU_SIZE_MASK) >> R300_ALU_SIZE_SHIFT) + in r300FragmentProgramDump() 79 int tex_offset = (code_addr & R300_TEX_START_MASK) >> R300_TEX_START_SHIFT; in r300FragmentProgramDump() 80 int tex_end = (code_addr & R300_TEX_SIZE_MASK) >> R300_TEX_SIZE_SHIFT; in r300FragmentProgramDump() 84 alu_offset, tex_offset, alu_end, tex_end, code_addr); in r300FragmentProgramDump()
|
D | r300_fragprog_emit.c | 348 code->code_addr[emit->current_node] = in finish_node() 541 code->code_addr[shift + i] = code->code_addr[i]; in r300BuildFragmentProgramHwCode() 543 code->code_addr[i] = 0; in r300BuildFragmentProgramHwCode()
|
D | radeon_code.h | 221 uint32_t code_addr[4]; /* US_CODE_ADDR */ member
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | r300_fragprog.c | 74 uint32_t code_addr = code->code_addr[3 - (code->config & 3) + n]; in r300FragmentProgramDump() local 75 unsigned int alu_offset = ((code_addr & R300_ALU_START_MASK) >> R300_ALU_START_SHIFT) + in r300FragmentProgramDump() 77 unsigned int alu_end = ((code_addr & R300_ALU_SIZE_MASK) >> R300_ALU_SIZE_SHIFT) + in r300FragmentProgramDump() 79 int tex_offset = (code_addr & R300_TEX_START_MASK) >> R300_TEX_START_SHIFT; in r300FragmentProgramDump() 80 int tex_end = (code_addr & R300_TEX_SIZE_MASK) >> R300_TEX_SIZE_SHIFT; in r300FragmentProgramDump() 84 alu_offset, tex_offset, alu_end, tex_end, code_addr); in r300FragmentProgramDump()
|
D | r300_fragprog_emit.c | 348 code->code_addr[emit->current_node] = in finish_node() 541 code->code_addr[shift + i] = code->code_addr[i]; in r300BuildFragmentProgramHwCode() 543 code->code_addr[i] = 0; in r300BuildFragmentProgramHwCode()
|
D | radeon_code.h | 221 uint32_t code_addr[4]; /* US_CODE_ADDR */ member
|
/external/oprofile/libopagent/ |
D | jitdump.h | 70 u64 code_addr; member 95 u64 code_addr; member
|
D | opagent.c | 241 rec.code_addr = (u64) (uintptr_t) code; in op_write_native_code() 302 rec.code_addr = (uint64_t)(uintptr_t)code; in op_write_debug_line_info()
|
/external/oprofile/opjitconv/ |
D | debug_line.c | 308 unsigned long code_addr) in emit_lineno_info() argument 324 unsigned long last_vma = code_addr; in emit_lineno_info() 330 emit_lne_set_address(b, (void const *)code_addr); in emit_lineno_info() 375 unsigned long code_addr) in add_debug_line() argument 396 emit_lineno_info(b, line, nr_entry, code_addr); in add_debug_line() 470 rec->nr_entry, rec->code_addr); in init_debug_line_info()
|
D | parse_dump.c | 35 end = rec->code_addr ? ptr + size : NULL; in parse_code_load() 46 entry->code = rec->code_addr ? ptr : NULL; in parse_code_load()
|
/external/chromium_org/third_party/android_platform/development/scripts/ |
D | stack_core.py | 193 frame, code_addr, area, symbol_present, symbol_name = match.group( 204 trace_lines.append((code_addr, "", area)) 208 info = symbol.SymbolInformation(area, code_addr, more_info) 224 trace_lines.append((code_addr,
|
/external/chromium_org/v8/src/third_party/kernel/tools/perf/util/ |
D | jitdump.h | 47 uint64_t code_addr; member 71 uint64_t code_addr; member
|
/external/lldb/source/Core/ |
D | Address.cpp | 324 addr_t code_addr = GetLoadAddress (target); in GetCallableLoadAddress() local 327 return target->GetCallableLoadAddress (code_addr, GetAddressClass()); in GetCallableLoadAddress() 328 return code_addr; in GetCallableLoadAddress() 346 addr_t code_addr = GetLoadAddress (target); in GetOpcodeLoadAddress() local 347 if (code_addr != LLDB_INVALID_ADDRESS) in GetOpcodeLoadAddress() 348 code_addr = target->GetOpcodeLoadAddress (code_addr, GetAddressClass()); in GetOpcodeLoadAddress() 349 return code_addr; in GetOpcodeLoadAddress()
|
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/ |
D | module_integrity_verifier_win.cc | 141 uint8_t* code_addr, in AddrIsInCodeSection() argument 143 return (code_addr <= address && address < code_addr + code_size); in AddrIsInCodeSection()
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCTrampolineHandler.cpp | 352 lldb::addr_t code_addr = desc_ptr + start_offset + voffset; in SetUpRegion() local 353 m_descriptors.push_back (VTableDescriptor(flags, code_addr)); in SetUpRegion() 355 if (m_code_start_addr == 0 || code_addr < m_code_start_addr) in SetUpRegion() 356 m_code_start_addr = code_addr; in SetUpRegion() 357 if (code_addr > m_code_end_addr) in SetUpRegion() 358 m_code_end_addr = code_addr; in SetUpRegion()
|
/external/chromium_org/v8/src/ |
D | perf-jit.cc | 98 code_load.code_addr = reinterpret_cast<uint64_t>(code_pointer); in LogRecordedBuffer()
|
/external/lldb/source/Target/ |
D | Target.cpp | 1900 addr_t code_addr = load_addr; in GetCallableLoadAddress() local 1917 if ((code_addr & 1ull) == 0) in GetCallableLoadAddress() 1920 if (code_addr & 2ull) in GetCallableLoadAddress() 1923 code_addr |= 1ull; in GetCallableLoadAddress() 1929 code_addr |= 1ull; in GetCallableLoadAddress() 1939 return code_addr; in GetCallableLoadAddress()
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
D | r300_fs.c | 352 OUT_CB_TABLE(code->code_addr, 4); in r300_emit_fs_code_to_buffer()
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_fs.c | 352 OUT_CB_TABLE(code->code_addr, 4); in r300_emit_fs_code_to_buffer()
|