Home
last modified time | relevance | path

Searched refs:debug_info (Results 1 – 25 of 146) sorted by relevance

123456

/external/v8/src/wasm/
Dwasm-debug.cc26 InterpreterHandle* GetInterpreterHandle(WasmDebugInfo* debug_info);
39 InterpreterHandle(Isolate* isolate, WasmDebugInfo* debug_info) in InterpreterHandle() argument
40 : instance_(debug_info->wasm_instance()->compiled_module()->module()), in InterpreterHandle()
41 interpreter_(GetBytesEnv(&instance_, debug_info), &allocator_), in InterpreterHandle()
43 if (debug_info->wasm_instance()->has_memory_buffer()) { in InterpreterHandle()
44 JSArrayBuffer* mem_buffer = debug_info->wasm_instance()->memory_buffer(); in InterpreterHandle()
56 WasmDebugInfo* debug_info) { in GetBytesEnv() argument
60 debug_info->wasm_instance()->compiled_module()->module_bytes(); in GetBytesEnv()
188 DCHECK_EQ(this, GetInterpreterHandle(instance_obj->debug_info())); in GetInstanceObject()
284 Isolate* isolate, Handle<WasmDebugInfo> debug_info) { in GetOrCreateInterpreterHandle() argument
[all …]
/external/v8/src/debug/
Ddebug.cc57 BreakLocation BreakLocation::FromFrame(Handle<DebugInfo> debug_info, in FromFrame() argument
63 auto it = BreakIterator::GetIterator(debug_info, abstract_code); in FromFrame()
64 it->SkipTo(BreakIndexFromCodeOffset(debug_info, abstract_code, offset)); in FromFrame()
68 void BreakLocation::AllAtCurrentStatement(Handle<DebugInfo> debug_info, in AllAtCurrentStatement() argument
77 auto it = BreakIterator::GetIterator(debug_info, abstract_code); in AllAtCurrentStatement()
78 it->SkipTo(BreakIndexFromCodeOffset(debug_info, abstract_code, offset)); in AllAtCurrentStatement()
81 for (auto it = BreakIterator::GetIterator(debug_info, abstract_code); in AllAtCurrentStatement()
89 int BreakLocation::BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info, in BreakIndexFromCodeOffset() argument
96 for (auto it = BreakIterator::GetIterator(debug_info, abstract_code); in BreakIndexFromCodeOffset()
109 bool BreakLocation::HasBreakPoint(Handle<DebugInfo> debug_info) const { in HasBreakPoint()
[all …]
Ddebug.h70 static BreakLocation FromFrame(Handle<DebugInfo> debug_info,
73 static void AllAtCurrentStatement(Handle<DebugInfo> debug_info,
87 bool HasBreakPoint(Handle<DebugInfo> debug_info) const;
101 static int BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info,
120 Handle<DebugInfo> debug_info, Handle<AbstractCode> abstract_code);
142 explicit BreakIterator(Handle<DebugInfo> debug_info);
160 explicit CodeBreakIterator(Handle<DebugInfo> debug_info);
192 explicit BytecodeArrayBreakIterator(Handle<DebugInfo> debug_info);
218 explicit DebugInfoListNode(DebugInfo* debug_info);
223 Handle<DebugInfo> debug_info() { return Handle<DebugInfo>(debug_info_); } in debug_info() function
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dcuda_solvers.h164 const string& debug_info, bool on_host);
166 ScratchSpace<Scalar> GetScratchSpace(int64 size, const string& debug_info,
171 const string& debug_info);
330 ScratchSpace(OpKernelContext* context, int64 size, const string& debug_info,
332 : ScratchSpace(context, TensorShape({size}), debug_info, on_host) {}
335 const string& debug_info, bool on_host)
336 : context_(context), debug_info_(debug_info), on_host_(on_host) {
364 const string& debug_info() const { return debug_info_; }
384 HostLapackInfo(OpKernelContext* context, int64 size, const string& debug_info)
385 : ScratchSpace<int>(context, size, debug_info, /* on_host */ true){};
[all …]
/external/autotest/client/cros/
Dgpio.py93 debug_info = temp_handle.read()
95 debug_info = debug_info.strip()
97 debug_info = value + '\n' + debug_info
98 if debug_info:
99 debug_info = '\nInformation: ' + debug_info
102 (exit_status, command, debug_info))
/external/vboot_reference/tests/
Dvboot_display_tests.c31 static char debug_info[4096]; variable
85 *debug_info = 0; in ResetMocks()
92 strncpy(debug_info, info_str, sizeof(debug_info)); in VbExDisplayDebugInfo()
93 debug_info[sizeof(debug_info) - 1] = '\0'; in VbExDisplayDebugInfo()
140 TEST_NEQ(*debug_info, '\0', "Some debug info was displayed"); in DebugInfoTest()
176 TEST_EQ(*debug_info, '\0', "DisplayKey q = does nothing"); in DisplayKeyTest()
181 TEST_NEQ(*debug_info, '\0', "DisplayKey tab = display"); in DisplayKeyTest()
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFCompileUnit.cpp24 bool DWARFCompileUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) { in extract() argument
29 if (debug_info.isValidOffset(*offset_ptr)) { in extract()
32 Length = debug_info.getU32(offset_ptr); in extract()
33 Version = debug_info.getU16(offset_ptr); in extract()
34 abbrOffset = debug_info.getU32(offset_ptr); in extract()
35 AddrSize = debug_info.getU8(offset_ptr); in extract()
37 bool lengthOK = debug_info.isValidOffset(getNextCompileUnitOffset()-1); in extract()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFTypeUnit.cpp16 bool DWARFTypeUnit::extractImpl(DataExtractor debug_info, in extractImpl() argument
18 if (!DWARFUnit::extractImpl(debug_info, offset_ptr)) in extractImpl()
20 TypeHash = debug_info.getU64(offset_ptr); in extractImpl()
21 TypeOffset = debug_info.getU32(offset_ptr); in extractImpl()
DDWARFUnit.cpp77 bool DWARFUnit::extractImpl(DataExtractor debug_info, uint32_t *offset_ptr) { in extractImpl() argument
78 Length = debug_info.getU32(offset_ptr); in extractImpl()
79 Version = debug_info.getU16(offset_ptr); in extractImpl()
80 uint64_t AbbrOffset = debug_info.getU32(offset_ptr); in extractImpl()
92 AddrSize = debug_info.getU8(offset_ptr); in extractImpl()
94 bool LengthOK = debug_info.isValidOffset(getNextUnitOffset() - 1); in extractImpl()
105 bool DWARFUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) { in extract() argument
110 if (debug_info.isValidOffset(*offset_ptr)) { in extract()
111 if (extractImpl(debug_info, offset_ptr)) in extract()
/external/v8/src/
Dperf-jit.cc291 PerfJitCodeDebugInfo debug_info; in LogWriteDebugInfo() local
293 debug_info.event_ = PerfJitCodeLoad::kDebugInfo; in LogWriteDebugInfo()
294 debug_info.time_stamp_ = GetTimestamp(); in LogWriteDebugInfo()
295 debug_info.address_ = reinterpret_cast<uint64_t>(code->instruction_start()); in LogWriteDebugInfo()
296 debug_info.entry_count_ = entry_count; in LogWriteDebugInfo()
298 uint32_t size = sizeof(debug_info); in LogWriteDebugInfo()
315 debug_info.size_ = size + padding; in LogWriteDebugInfo()
316 LogWriteBytes(reinterpret_cast<const char*>(&debug_info), sizeof(debug_info)); in LogWriteDebugInfo()
/external/elfutils/tests/
Drun-elfgetzdata.sh74 3: .debug_info, ELF compressed, size: aa
85 3: .debug_info, ELF compressed, size: aa
98 4: .debug_info, ELF compressed, size: 7e
110 4: .debug_info, ELF compressed, size: 7e
170 3: .debug_info, ELF compressed, size: 9a
181 3: .debug_info, ELF compressed, size: 9a
194 4: .debug_info, ELF compressed, size: 6e
206 4: .debug_info, ELF compressed, size: 6e
Drun-elfputzdata.sh52 Lets compress 29 .debug_info, size: 960
90 Lets compress 29 .debug_info, size: 960
127 Lets compress 25 .debug_info, size: 3468
163 Lets compress 25 .debug_info, size: 3468
204 Lets compress 27 .debug_info, size: 363
243 Lets compress 27 .debug_info, size: 363
287 Lets compress 29 .debug_info, size: 319
328 Lets compress 29 .debug_info, size: 319
Drun-readelf-z.sh78 [ 3] .debug_info PROGBITS 0000000000000000 0000029e 0000007b 0 C 0 0 1
101 [ 4] .debug_info PROGBITS 0000000000000000 00000300 00000065 0 C 0 0 1
168 [ 3] .debug_info PROGBITS 00000000 0001f1 00006f 0 C 0 0 1
191 [ 4] .debug_info PROGBITS 00000000 000253 000058 0 C 0 0 1
/external/llvm/test/DebugInfo/X86/
Ddbg-asm.s13 # CHECK-COFF: Section {{.*}} .debug_info {
18 # CHECK-COFF: 0x6 IMAGE_REL_I386_SECREL .debug_info
23 # CHECK-ELF: Section {{.*}} .rel.debug_info {
28 # CHECK-ELF: 0x6 R_386_32 .debug_info
/external/autotest/server/site_tests/network_WiFi_CliqueConnectDisconnect/
Dnetwork_WiFi_CliqueConnectDisconnect.py21 dut_pool, assoc_params_list, tries, debug_info, argument
55 'debug_info': debug_info }
60 logging.debug('Debug info: %s', debug_info)
/external/autotest/server/site_tests/network_WiFi_CliqueLongConnect/
Dnetwork_WiFi_CliqueLongConnect.py21 dut_pool, assoc_params_list, tries, debug_info, argument
53 'debug_info': debug_info }
58 logging.debug('Debug info: %s', debug_info)
/external/llvm/test/DebugInfo/
Ddwarfdump-dump-flags.test8 ; DUMP_ALL: .debug_info
11 ; DUMP_INFO: .debug_info
14 ; DUMP_RANGES-NOT: .debug_info
Ddwarfdump-type-units.test6 FOO: debug_info contents:
18 BAR: debug_info contents:
31 TYPES-NOT: debug_info contents:
/external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/
Dnetwork_WiFi_ChaosConnectDisconnect.py20 host, assoc_params, client, tries, debug_info=None): argument
79 (pprint.pformat(results), assoc_params, debug_info,
82 logging.debug('Debug info: %s', debug_info)
/external/autotest/server/cros/chaos_lib/
Dchaos_analyzer.py82 debug_info = self._parse_debug_info(line)
83 if debug_info:
84 self._meta_info.update(debug_info)
93 debug_info = line.replace('\'', '')
96 for part in debug_info.split(','):
/external/llvm/test/tools/llvm-dwp/X86/
Dcompress.test6 …lt from this input which produces DWARF long enough to be compressed in the .[z]debug_info section:
15 CHECK: .debug_info.dwo contents:
/external/autotest/server/site_tests/network_WiFi_ChaosLongConnect/
Dnetwork_WiFi_ChaosLongConnect.py21 assoc_params, client, debug_info=None, argument
69 assoc_params, debug_info, client.wifi_mac))
/external/llvm/test/tools/sanstats/
Delf.test67 - Name: .debug_info
71 - Name: .rela.debug_info
75 Info: .debug_info
192 Section: .debug_info
/external/llvm/test/DebugInfo/Sparc/
Dgnu-window-save.ll5 ; are performed correctly in debug_info.
9 ; SPARC64: .debug_info
25 ; SPARC32: .debug_info
/external/syslinux/mbr/i386/
Dmbr.ld60 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }

123456