Home
last modified time | relevance | path

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

12345678910>>...15

/external/v8/src/debug/
Ddebug.cc99 BreakLocation BreakLocation::FromFrame(Handle<DebugInfo> debug_info, in FromFrame() argument
101 if (debug_info->CanBreakAtEntry()) { in FromFrame()
107 BreakIterator it(debug_info); in FromFrame()
108 it.SkipTo(BreakIndexFromCodeOffset(debug_info, abstract_code, offset)); in FromFrame()
113 Handle<DebugInfo> debug_info, JavaScriptFrame* frame, in AllAtCurrentStatement() argument
115 DCHECK(!debug_info->CanBreakAtEntry()); in AllAtCurrentStatement()
122 BreakIterator it(debug_info); in AllAtCurrentStatement()
123 it.SkipTo(BreakIndexFromCodeOffset(debug_info, abstract_code, offset)); in AllAtCurrentStatement()
126 for (BreakIterator it(debug_info); !it.Done(); it.Next()) { in AllAtCurrentStatement()
145 int BreakLocation::BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info, in BreakIndexFromCodeOffset() argument
[all …]
Ddebug.h67 static BreakLocation FromFrame(Handle<DebugInfo> debug_info,
70 static void AllAtCurrentStatement(Handle<DebugInfo> debug_info,
89 bool HasBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info) const;
115 static int BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info,
133 explicit BreakIterator(Handle<DebugInfo> debug_info);
173 DebugInfoListNode(Isolate* isolate, DebugInfo* debug_info);
178 Handle<DebugInfo> debug_info() { return Handle<DebugInfo>(debug_info_); } in debug_info() function
252 MaybeHandle<FixedArray> GetHitBreakPoints(Handle<DebugInfo> debug_info,
324 void ApplySideEffectChecks(Handle<DebugInfo> debug_info);
325 void ClearSideEffectChecks(Handle<DebugInfo> debug_info);
[all …]
/external/v8/src/wasm/
Dwasm-debug.cc68 Handle<WasmDebugInfo> debug_info, in GetLocalName() argument
72 if (!debug_info->has_locals_names()) { in GetLocalName()
74 debug_info->wasm_instance()->module_object(), isolate); in GetLocalName()
76 debug_info->set_locals_names(*locals_names); in GetLocalName()
79 Handle<FixedArray> locals_names(debug_info->locals_names(), isolate); in GetLocalName()
132 static Vector<const byte> GetBytes(WasmDebugInfo* debug_info) { in GetBytes() argument
136 debug_info->wasm_instance()->module_object()->native_module(); in GetBytes()
142 InterpreterHandle(Isolate* isolate, WasmDebugInfo* debug_info) in InterpreterHandle() argument
144 module_(debug_info->wasm_instance()->module_object()->module()), in InterpreterHandle()
145 interpreter_(isolate, module_, GetBytes(debug_info), in InterpreterHandle()
[all …]
/external/tensorflow/tensorflow/c/eager/
Dc_api_debug_test.cc26 TFE_TensorDebugInfo* debug_info = TFE_TensorHandleTensorDebugInfo(h, status); in TEST() local
29 ASSERT_EQ(0, TFE_TensorDebugInfoOnDeviceNumDims(debug_info)); in TEST()
31 TFE_DeleteTensorDebugInfo(debug_info); in TEST()
39 TFE_TensorDebugInfo* debug_info = TFE_TensorHandleTensorDebugInfo(h, status); variable
42 ASSERT_EQ(2, TFE_TensorDebugInfoOnDeviceNumDims(debug_info));
44 EXPECT_EQ(3, TFE_TensorDebugInfoOnDeviceDim(debug_info, 0));
45 EXPECT_EQ(2, TFE_TensorDebugInfoOnDeviceDim(debug_info, 1));
47 TFE_DeleteTensorDebugInfo(debug_info);
Dc_api_debug.cc149 TFE_TensorDebugInfo* debug_info) { in TFE_DeleteTensorDebugInfo() argument
150 delete debug_info; in TFE_DeleteTensorDebugInfo()
154 TFE_TensorDebugInfo* debug_info) { in TFE_TensorDebugInfoOnDeviceNumDims() argument
155 return debug_info->dev_dims.size(); in TFE_TensorDebugInfoOnDeviceNumDims()
159 TFE_TensorDebugInfo* debug_info, int dim_index) { in TFE_TensorDebugInfoOnDeviceDim() argument
160 return debug_info->dev_dims[dim_index]; in TFE_TensorDebugInfoOnDeviceDim()
/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/tensorflow/tensorflow/core/kernels/
Dcuda_solvers.h167 const string& debug_info, bool on_host);
169 ScratchSpace<Scalar> GetScratchSpace(int64 size, const string& debug_info,
174 const string& debug_info);
339 ScratchSpace(OpKernelContext* context, int64 size, const string& debug_info,
341 : ScratchSpace(context, TensorShape({size}), debug_info, on_host) {}
344 const string& debug_info, bool on_host)
345 : context_(context), debug_info_(debug_info), on_host_(on_host) {
373 const string& debug_info() const { return debug_info_; }
393 HostLapackInfo(OpKernelContext* context, int64 size, const string& debug_info)
394 : ScratchSpace<int>(context, size, debug_info, /* on_host */ true){};
[all …]
/external/v8/src/objects/
Ddebug-objects.cc87 bool DebugInfo::ClearBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info, in ClearBreakPoint() argument
89 DCHECK(debug_info->HasBreakInfo()); in ClearBreakPoint()
90 for (int i = 0; i < debug_info->break_points()->length(); i++) { in ClearBreakPoint()
91 if (debug_info->break_points()->get(i)->IsUndefined(isolate)) continue; in ClearBreakPoint()
93 BreakPointInfo::cast(debug_info->break_points()->get(i)), isolate); in ClearBreakPoint()
102 void DebugInfo::SetBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info, in SetBreakPoint() argument
105 DCHECK(debug_info->HasBreakInfo()); in SetBreakPoint()
107 debug_info->GetBreakPointInfo(isolate, source_position), isolate); in SetBreakPoint()
118 for (int i = 0; i < debug_info->break_points()->length(); i++) { in SetBreakPoint()
119 if (debug_info->break_points()->get(i)->IsUndefined(isolate)) { in SetBreakPoint()
[all …]
/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/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
Dsplit-dwarf-cross-unit-reference.ll36 ; * no relocations are emitted for the debug_info.dwo section no matter what
37 ; * one debug_info->debug_info relocation in debug_info no matter what (for
39 ; * debug_info uses relocations and ref_addr no matter what
40 ; * debug_info.dwo uses relocations for types as well as abstract subprograms
42 ; * debug_info.dwo contains duplicate types, abstract subprograms and abstract
45 ; DWO: .debug_info.dwo contents:
46 ; CHECK-NOT: .rel{{a?}}.debug_info.dwo
47 ; CHECK: RELOCATION RECORDS FOR [.rel{{a?}}.debug_info]:
49 ; Expect one relocation in debug_info, from the inlined f1 in foo to its
51 ; CHECK: R_X86_64_32 .debug_info
[all …]
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/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Ddwarf-headers.ll40 ; SINGLE-4: .debug_info contents:
50 ; O-4: .debug_info contents:
54 ; DWO-4: .debug_info.dwo contents:
64 ; SINGLE-5: .debug_info contents:
68 ; FIXME: V5 wants type units in .debug_info not .debug_types.
75 ; O-5: .debug_info contents:
80 ; DWO-5: .debug_info.dwo contents:
85 ; FIXME: V5 wants type units in .debug_info.dwo not .debug_types.dwo.
/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/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
Dtestfile-bpf-reloc.expect.bz2
/external/v8/src/
Dperf-jit.cc338 PerfJitCodeDebugInfo debug_info; in LogWriteDebugInfo() local
340 debug_info.event_ = PerfJitCodeLoad::kDebugInfo; in LogWriteDebugInfo()
341 debug_info.time_stamp_ = GetTimestamp(); in LogWriteDebugInfo()
342 debug_info.address_ = code->InstructionStart(); in LogWriteDebugInfo()
343 debug_info.entry_count_ = entry_count; in LogWriteDebugInfo()
345 uint32_t size = sizeof(debug_info); in LogWriteDebugInfo()
360 debug_info.size_ = size + padding; in LogWriteDebugInfo()
361 LogWriteBytes(reinterpret_cast<const char*>(&debug_info), sizeof(debug_info)); in LogWriteDebugInfo()
/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/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/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/
Dinvalid-relocations.test18 Name: .debug_info
23 Name: .rel.debug_info
25 Info: .debug_info
Ddwarfdump-dump-flags.test8 ; DUMP_ALL: .debug_info
11 ; DUMP_INFO: .debug_info
15 ; DUMP_RANGES-NOT: .debug_info
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dwarfdump/X86/
Dverify_debug_info2.s3 # CHECK: The length for this unit is too large for the .debug_info provided.
5 ## Check we do not crash when trying to parse truncated .debug_info.
6 .section .debug_info,"",@progbits
/external/llvm/test/DebugInfo/
Ddwarfdump-dump-flags.test8 ; DUMP_ALL: .debug_info
11 ; DUMP_INFO: .debug_info
14 ; DUMP_RANGES-NOT: .debug_info

12345678910>>...15