Home
last modified time | relevance | path

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

123

/third_party/node/deps/v8/src/debug/
Ddebug.cc114 BreakLocation BreakLocation::FromFrame(Handle<DebugInfo> debug_info, in FromFrame() argument
116 if (debug_info->CanBreakAtEntry()) { in FromFrame()
122 BreakIterator it(debug_info); in FromFrame()
123 it.SkipTo(BreakIndexFromCodeOffset(debug_info, abstract_code, offset)); in FromFrame()
128 Handle<DebugInfo> debug_info, std::vector<BreakLocation>& break_locations, in CheckBreakPointsForLocations() argument
131 debug_info->GetBreakPointCount(isolate_)); in CheckBreakPointsForLocations()
137 debug_info, &break_locations[i], &location_has_break_points); in CheckBreakPointsForLocations()
157 Handle<DebugInfo> debug_info, JavaScriptFrame* frame, in AllAtCurrentStatement() argument
159 DCHECK(!debug_info->CanBreakAtEntry()); in AllAtCurrentStatement()
166 BreakIterator it(debug_info); in AllAtCurrentStatement()
[all …]
Ddebug.h66 static BreakLocation FromFrame(Handle<DebugInfo> debug_info,
69 static void AllAtCurrentStatement(Handle<DebugInfo> debug_info,
81 bool HasBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info) const;
111 static int BreakIndexFromCodeOffset(Handle<DebugInfo> debug_info,
130 explicit BreakIterator(Handle<DebugInfo> debug_info);
170 DebugInfoListNode(Isolate* isolate, DebugInfo debug_info);
175 Handle<DebugInfo> debug_info() { return Handle<DebugInfo>(debug_info_); } in debug_info() function
267 MaybeHandle<FixedArray> GetHitBreakPoints(Handle<DebugInfo> debug_info,
349 void ApplySideEffectChecks(Handle<DebugInfo> debug_info);
350 void ClearSideEffectChecks(Handle<DebugInfo> debug_info);
[all …]
Ddebug-wasm-objects.cc43 auto debug_info = instance->module_object().native_module()->GetDebugInfo(); in GetNameFromImportsAndExportsOrNull() local
47 auto import_name_ref = debug_info->GetImportName(kind, index); in GetNameFromImportsAndExportsOrNull()
61 auto export_name_ref = debug_info->GetExportName(kind, index); in GetNameFromImportsAndExportsOrNull()
422 auto debug_info = frame->native_module()->GetDebugInfo(); in Create() local
424 int count = debug_info->GetNumLocals(frame->pc()); in Create()
425 auto function = debug_info->GetFunctionAtAddress(frame->pc()); in Create()
432 debug_info->GetLocalValue(i, frame->pc(), frame->fp(), in Create()
474 auto debug_info = in Create() local
476 int count = debug_info->GetStackDepth(frame->pc()); in Create()
483 debug_info->GetStackValue(i, frame->pc(), frame->fp(), in Create()
/third_party/elfutils/tests/
Drun-debuginfod-section.sh85 testrun ${abs_top_builddir}/debuginfod/debuginfod-find -vvv section $BUILDID .debug_info
89 testrun ${abs_top_builddir}/debuginfod/debuginfod-find -vvv section $RPM_BUILDID .debug_info
93 tempfiles ${BUILDID}.debug_info
94 …py F/prog.debug -O binary --only-section=.debug_info --set-section-flags .debug_info=alloc $BUILDI…
95 cmp ${BUILDID}.debug_info ${DEBUGINFOD_CACHE_PATH}/${BUILDID}/section-.debug_info
108 tempfiles DEBUGFILE.debug_info
109 …copy $DEBUGFILE -O binary --only-section=.debug_info --set-section-flags .debug_info=alloc DEBUGFI…
110 testrun diff -u DEBUGFILE.debug_info ${DEBUGINFOD_CACHE_PATH}/${RPM_BUILDID}/section-.debug_info
124 rm -f ${DEBUGINFOD_CACHE_PATH}/${RPM_BUILDID}/section-.debug_info
126 rm -f ${DEBUGINFOD_CACHE_PATH}/${BUILDID}/section-.debug_info
[all …]
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 ... -elf_bpf 2 3 4RELOCATION RECORDS FOR [.debug_info]: 5OFFSET TYPE VALUE 60000000000000006 R_BPF_64_32 .debug_abbrev ...
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
Ddebug-ranges-no-lowpc.s1 .section .debug_info
Dtestfile-sizes4.s1 .section .debug_info
Dtestfile-macros-0xff.s25 .section .debug_info,"",@progbits
/third_party/node/deps/v8/src/objects/
Ddebug-objects.cc106 bool DebugInfo::ClearBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info, in ClearBreakPoint() argument
108 DCHECK(debug_info->HasBreakInfo()); in ClearBreakPoint()
109 for (int i = 0; i < debug_info->break_points().length(); i++) { in ClearBreakPoint()
110 if (debug_info->break_points().get(i).IsUndefined(isolate)) continue; in ClearBreakPoint()
112 BreakPointInfo::cast(debug_info->break_points().get(i)), isolate); in ClearBreakPoint()
121 void DebugInfo::SetBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info, in SetBreakPoint() argument
124 DCHECK(debug_info->HasBreakInfo()); in SetBreakPoint()
126 debug_info->GetBreakPointInfo(isolate, source_position), isolate); in SetBreakPoint()
137 for (int i = 0; i < debug_info->break_points().length(); i++) { in SetBreakPoint()
138 if (debug_info->break_points().get(i).IsUndefined(isolate)) { in SetBreakPoint()
[all …]
Ddebug-objects.h77 static bool ClearBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info,
80 static void SetBreakPoint(Isolate* isolate, Handle<DebugInfo> debug_info,
87 Handle<DebugInfo> debug_info,
167 int GetStatementPosition(Handle<DebugInfo> debug_info);
Dshared-function-info.cc752 DebugInfo debug_info = shared->GetDebugInfo(); in InstallDebugBytecode() local
753 debug_info.set_original_bytecode_array(*original_bytecode_array, in InstallDebugBytecode()
755 debug_info.set_debug_bytecode_array(*debug_bytecode_array, kReleaseStore); in InstallDebugBytecode()
766 DebugInfo debug_info = shared.GetDebugInfo(); in UninstallDebugBytecode() local
767 BytecodeArray original_bytecode_array = debug_info.OriginalBytecodeArray(); in UninstallDebugBytecode()
770 debug_info.set_original_bytecode_array( in UninstallDebugBytecode()
772 debug_info.set_debug_bytecode_array(ReadOnlyRoots(isolate).undefined_value(), in UninstallDebugBytecode()
Dshared-function-info-inl.h885 auto debug_info = script_or_debug_info(kAcquireLoad); in GetDebugInfo() local
886 DCHECK(debug_info.IsDebugInfo()); in GetDebugInfo()
887 return DebugInfo::cast(debug_info); in GetDebugInfo()
890 void SharedFunctionInfo::SetDebugInfo(DebugInfo debug_info) { in SetDebugInfo() argument
892 DCHECK_EQ(debug_info.script(), script_or_debug_info(kAcquireLoad)); in SetDebugInfo()
893 set_script_or_debug_info(debug_info, kReleaseStore); in SetDebugInfo()
/third_party/node/deps/v8/src/diagnostics/
Dperf-jit.cc335 PerfJitCodeDebugInfo debug_info; in LogWriteDebugInfo() local
336 uint32_t size = sizeof(debug_info); in LogWriteDebugInfo()
364 debug_info.event_ = PerfJitCodeLoad::kDebugInfo; in LogWriteDebugInfo()
365 debug_info.time_stamp_ = GetTimestamp(); in LogWriteDebugInfo()
366 debug_info.address_ = code->InstructionStart(); in LogWriteDebugInfo()
367 debug_info.entry_count_ = entry_count; in LogWriteDebugInfo()
373 debug_info.size_ = size + padding; in LogWriteDebugInfo()
374 LogWriteBytes(reinterpret_cast<const char*>(&debug_info), sizeof(debug_info)); in LogWriteDebugInfo()
436 PerfJitCodeDebugInfo debug_info; in LogWriteDebugInfo() local
438 debug_info.event_ = PerfJitCodeLoad::kDebugInfo; in LogWriteDebugInfo()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFUnit.cpp256 const DWARFDataExtractor &debug_info, in extract() argument
266 Length = debug_info.getRelocatedValue(4, offset_ptr, nullptr, &Err); in extract()
269 Length = debug_info.getU64(offset_ptr, &Err); in extract()
272 FormParams.Version = debug_info.getU16(offset_ptr, &Err); in extract()
274 UnitType = debug_info.getU8(offset_ptr, &Err); in extract()
275 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract()
276 AbbrOffset = debug_info.getRelocatedValue( in extract()
279 AbbrOffset = debug_info.getRelocatedValue( in extract()
281 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract()
301 TypeHash = debug_info.getU64(offset_ptr, &Err); in extract()
[all …]
/third_party/node/deps/v8/src/debug/wasm/gdb-server/
Dwasm-module-debug.cc242 DebugInfo* debug_info = native_module->GetDebugInfo(); in GetWasmLocal() local
244 debug_info->GetNumLocals(frame_it.frame()->pc())) > index) { in GetWasmLocal()
245 wasm::WasmValue wasm_value = debug_info->GetLocalValue( in GetWasmLocal()
275 DebugInfo* debug_info = native_module->GetDebugInfo(); in GetWasmStackValue() local
277 debug_info->GetStackDepth(frame_it.frame()->pc())) > index) { in GetWasmStackValue()
278 WasmValue wasm_value = debug_info->GetStackValue( in GetWasmStackValue()
/third_party/node/deps/v8/src/compiler/
Dcode-assembler.cc109 AssemblerDebugInfo debug_info = {msg, file, line}; in SetInitialDebugInformation() local
111 raw_assembler_->SetInitialDebugInformation(debug_info); in SetInitialDebugInformation()
556 void CodeAssembler::Bind(Label* label, AssemblerDebugInfo debug_info) { in Bind() argument
557 return label->Bind(debug_info); in Bind()
1384 AssemblerDebugInfo debug_info() const { return debug_info_; } in debug_info() function in v8::internal::compiler::CodeAssemblerVariable::Impl
1385 void set_debug_info(AssemblerDebugInfo debug_info) { in set_debug_info() argument
1386 debug_info_ = debug_info; in set_debug_info()
1422 AssemblerDebugInfo debug_info, in CodeAssemblerVariable() argument
1427 impl_->set_debug_info(debug_info); in CodeAssemblerVariable()
1432 AssemblerDebugInfo debug_info, in CodeAssemblerVariable() argument
[all …]
Dschedule.h64 void set_debug_info(AssemblerDebugInfo debug_info) { in NON_EXPORTED_BASE()
65 debug_info_ = debug_info; in NON_EXPORTED_BASE()
67 AssemblerDebugInfo debug_info() const { return debug_info_; } in NON_EXPORTED_BASE()
/third_party/node/deps/v8/src/snapshot/
Dcode-serializer.cc185 Handle<DebugInfo> debug_info; in SerializeObjectImpl() local
205 debug_info = handle(raw_debug_info, isolate()); in SerializeObjectImpl()
211 if (!debug_info.is_null()) { in SerializeObjectImpl()
214 sfi.set_script_or_debug_info(*debug_info, kReleaseStore); in SerializeObjectImpl()
216 sfi.SetActiveBytecodeArray(debug_info->DebugBytecodeArray()); in SerializeObjectImpl()
/third_party/node/deps/v8/src/runtime/
Druntime-wasm.cc564 auto* debug_info = instance->module_object().native_module()->GetDebugInfo(); in RUNTIME_FUNCTION() local
603 if (debug_info->IsStepping(frame)) { in RUNTIME_FUNCTION()
604 debug_info->ClearStepping(isolate); in RUNTIME_FUNCTION()
617 debug_info->ClearStepping(isolate); in RUNTIME_FUNCTION()
636 debug_info->ClearStepping(frame); in RUNTIME_FUNCTION()
/third_party/python/Lib/test/
Dtest_time.py826 debug_info = {'value': value, 'rounding': decimal_rnd}
831 self.fail("Error on timestamp conversion: %s" % debug_info)
834 debug_info)
842 debug_info = {'value': value, 'rounding': time_rnd}
843 with self.assertRaises(OverflowError, msg=debug_info):
/third_party/musl/ldso/linux/
Ddynlink.c5801 struct dso_debug_info *debug_info = malloc(sizeof(struct dso_debug_info)); in add_dso_info_to_debug_map() local
5802 if (debug_info == NULL) { in add_dso_info_to_debug_map()
5807 debug_info->loadmap = so->loadmap; in add_dso_info_to_debug_map()
5809 debug_info->base = so->base; in add_dso_info_to_debug_map()
5811 debug_info->name = so->name; in add_dso_info_to_debug_map()
5812 debug_info->dynv = so->dynv; in add_dso_info_to_debug_map()
5814 debug_info->prev = NULL; in add_dso_info_to_debug_map()
5815 debug_info->next = NULL; in add_dso_info_to_debug_map()
5816 debug.head = debug_tail = debug_info; in add_dso_info_to_debug_map()
5818 debug_info->prev = debug_tail; in add_dso_info_to_debug_map()
[all …]
/third_party/musl/porting/linux/user/ldso/
Ddynlink.c5804 struct dso_debug_info *debug_info = malloc(sizeof(struct dso_debug_info)); in add_dso_info_to_debug_map() local
5805 if (debug_info == NULL) { in add_dso_info_to_debug_map()
5810 debug_info->loadmap = so->loadmap; in add_dso_info_to_debug_map()
5812 debug_info->base = so->base; in add_dso_info_to_debug_map()
5814 debug_info->name = so->name; in add_dso_info_to_debug_map()
5815 debug_info->dynv = so->dynv; in add_dso_info_to_debug_map()
5817 debug_info->prev = NULL; in add_dso_info_to_debug_map()
5818 debug_info->next = NULL; in add_dso_info_to_debug_map()
5819 debug.head = debug_tail = debug_info; in add_dso_info_to_debug_map()
5821 debug_info->prev = debug_tail; in add_dso_info_to_debug_map()
[all …]

123