/aosp_15_r20/external/pytorch/test/edge/ |
H A D | selected_operators.yaml | 15 debug_info: 21 debug_info: 27 debug_info: 33 debug_info: 39 debug_info: 45 debug_info: 51 debug_info: 57 debug_info: 63 debug_info: 69 debug_info: [all …]
|
/aosp_15_r20/external/emboss/compiler/front_end/ |
H A D | glue_test.py | 58 main_module, debug_info, errors = glue.parse_module( 65 self.assertEqual(debug_info, debug_info2) 69 ir, debug_info, errors = glue.parse_emboss_file( 77 self.assertFalse(file_name in debug_info.modules) 82 ir, debug_info, errors = glue.parse_emboss_file( 84 self.assertTrue(debug_info.modules[file_name].source_code) 91 ir, debug_info, errors = glue.parse_emboss_file( 96 self.assertTrue(debug_info.modules[file_name].source_code) 103 ir, debug_info, errors = glue.parse_emboss_file( 108 self.assertTrue(debug_info.modules[file_name].source_code) [all …]
|
H A D | glue.py | 41 _IrDebugInfo = collections.namedtuple("IrDebugInfo", ["ir", "debug_info", 145 debug_info = _cached_modules[source_code, file_name] 146 ir = ir_data_utils.copy(debug_info.ir) 148 debug_info = ModuleDebugInfo(file_name) 149 debug_info.source_code = source_code 152 return _IrDebugInfo(None, debug_info, errors) 153 debug_info.tokens = tokens 158 debug_info, 160 debug_info.parse_tree = parse_result.parse_tree 164 debug_info.used_productions = used_productions [all …]
|
/aosp_15_r20/art/tools/jfuzz/ |
H A D | run_jfuzz_test.py | 45 def GetExecutionModeRunner(dexer, debug_info, device, mode): argument 50 debug_info: boolean, if True include debugging info 59 return TestRunnerRIOnHost(debug_info) 61 return TestRunnerArtIntOnHost(dexer, debug_info) 63 return TestRunnerArtOptOnHost(dexer, debug_info) 65 return TestRunnerArtIntOnTarget(dexer, debug_info, device) 67 return TestRunnerArtOptOnTarget(dexer, debug_info, device) 120 def __init__(self, dexer, debug_info): argument 125 debug_info: boolean, if True include debugging info 128 self._debug_info = debug_info [all …]
|
/aosp_15_r20/external/pytorch/c10/util/ |
H A D | ThreadLocalDebugInfo.cpp | 10 #define debug_info (tls_debug_info.get()) macro 14 ThreadLocalDebugInfo* cur = debug_info.get(); in get() 26 return debug_info; in current() 32 debug_info = std::move(info); in _forceCurrentDebugInfo() 39 auto prev_info = debug_info; in _push() 40 debug_info = std::make_shared<ThreadLocalDebugInfo>(); in _push() 41 debug_info->parent_info_ = prev_info; in _push() 42 debug_info->kind_ = kind; in _push() 43 debug_info->info_ = std::move(info); in _push() 49 debug_info && debug_info->kind_ == kind, in _pop() [all …]
|
/aosp_15_r20/external/elfutils/tests/ |
H A D | run-debuginfod-section.sh | 85 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 …]
|
H A D | run-elfgetzdata.sh | 97 3: .debug_info, ELF compressed, size: aa 108 3: .debug_info, ELF compressed, size: aa 119 3: .debug_info, ELF compressed, size: aa 132 4: .debug_info, ELF compressed, size: 7e 144 4: .debug_info, ELF compressed, size: 7e 156 4: .debug_info, ELF compressed, size: 7e 239 3: .debug_info, ELF compressed, size: 9a 250 3: .debug_info, ELF compressed, size: 9a 261 3: .debug_info, ELF compressed, size: 9a 274 4: .debug_info, ELF compressed, size: 6e [all …]
|
/aosp_15_r20/art/compiler/debug/ |
H A D | elf_debug_writer.cc | 48 const DebugInfo& debug_info) { in WriteDebugInfo() argument 50 WriteDebugSymbols(builder, /* mini-debug-info= */ false, debug_info); in WriteDebugInfo() 53 WriteCFISection(builder, debug_info.compiled_methods); in WriteDebugInfo() 57 for (const MethodDebugInfo& mi : debug_info.compiled_methods) { in WriteDebugInfo() 101 // Write .debug_info section. in WriteDebugInfo() 121 const DebugInfo& debug_info) { in MakeMiniDebugInfoInternal() argument 134 if (!debug_info.Empty()) { in MakeMiniDebugInfoInternal() 135 WriteDebugSymbols(builder.get(), /* mini-debug-info= */ true, debug_info); in MakeMiniDebugInfoInternal() 137 if (!debug_info.compiled_methods.empty()) { in MakeMiniDebugInfoInternal() 138 WriteCFISection(builder.get(), debug_info.compiled_methods); in MakeMiniDebugInfoInternal() [all …]
|
H A D | elf_symtab_writer.h | 26 #include "debug/debug_info.h" 91 const DebugInfo& debug_info) { in WriteDebugSymbols() argument 97 if (debug_info.Empty()) { in WriteDebugSymbols() 104 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols() 118 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols() 127 if (kGenerateSortedSymbol && debug_info.compiled_methods.size() >= kSortedSymbolMinCount) { in WriteDebugSymbols() 135 for (const MethodDebugInfo& info : debug_info.compiled_methods) { in WriteDebugSymbols() 161 if (!debug_info.dex_files.empty() && builder->GetDex()->Exists()) { in WriteDebugSymbols() 163 for (auto it : debug_info.dex_files) { in WriteDebugSymbols()
|
/aosp_15_r20/system/extras/simpleperf/ |
H A D | JITDebugReader.cpp | 275 std::vector<JITDebugInfo> debug_info; in FlushDebugInfo() local 277 debug_info.emplace_back(debug_info_q_.top()); in FlushDebugInfo() 280 return debug_info_callback_(debug_info, false); in FlushDebugInfo() 290 std::vector<JITDebugInfo> debug_info; in ReadAllProcesses() local 293 if (!ReadProcess(process, &debug_info)) { in ReadAllProcesses() 303 if (!AddDebugInfo(std::move(debug_info), true)) { in ReadAllProcesses() 315 std::vector<JITDebugInfo> debug_info; in ReadProcess() local 316 return ReadProcess(it->second, &debug_info) && AddDebugInfo(std::move(debug_info), false); in ReadProcess() 321 bool JITDebugReader::ReadProcess(Process& process, std::vector<JITDebugInfo>* debug_info) { in ReadProcess() argument 338 return ReadDebugInfo(process, jit_descriptor, debug_info) && in ReadProcess() [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/core/util/ |
H A D | gpu_solvers.h | 247 const std::string& debug_info, 251 const std::string& debug_info, 256 const std::string& debug_info); 569 const std::string& debug_info, bool on_host) 570 : ScratchSpace(context, TensorShape({size}), debug_info, on_host) {} 573 const std::string& debug_info, bool on_host) 574 : context_(context), debug_info_(debug_info), on_host_(on_host) { 602 const std::string& debug_info() const { return debug_info_; } 623 const std::string& debug_info) 624 : ScratchSpace<int>(context, size, debug_info, /* on_host */ true) {} [all …]
|
/aosp_15_r20/external/autotest/client/cros/ |
H A D | gpio.py | 95 debug_info = temp_handle.read() 97 debug_info = debug_info.strip() 99 debug_info = value + '\n' + debug_info 100 if debug_info: 101 debug_info = '\nInformation: ' + debug_info 104 (exit_status, command, debug_info))
|
/aosp_15_r20/external/tensorflow/tensorflow/c/eager/ |
H A D | c_api_debug_test.cc | 31 TFE_TensorDebugInfo* debug_info = TFE_TensorHandleTensorDebugInfo(h, status); in TEST() local 34 ASSERT_EQ(0, TFE_TensorDebugInfoOnDeviceNumDims(debug_info)); in TEST() 36 TFE_DeleteTensorDebugInfo(debug_info); in TEST() 50 TFE_TensorDebugInfo* debug_info = TFE_TensorHandleTensorDebugInfo(h, status); variable 53 ASSERT_EQ(2, TFE_TensorDebugInfoOnDeviceNumDims(debug_info)); 55 EXPECT_EQ(3, TFE_TensorDebugInfoOnDeviceDim(debug_info, 0)); 56 EXPECT_EQ(2, TFE_TensorDebugInfoOnDeviceDim(debug_info, 1)); 58 TFE_DeleteTensorDebugInfo(debug_info);
|
/aosp_15_r20/external/pytorch/tools/code_analyzer/ |
H A D | gen_operators_yaml.py | 36 # debug_info: 44 # debug_info: 184 # formats them as a string, and places the string into output as a top level debug_info 205 output["debug_info"] = [json.dumps(model_dict)] 357 "debug_info": [options.model_name], 371 "debug_info": [options.model_name], 385 "debug_info": [options.model_name], 399 "debug_info": [options.model_name], 415 "debug_info": [options.model_name], 429 "debug_info": [options.model_name], [all …]
|
/aosp_15_r20/external/pytorch/torchgen/selective_build/ |
H A D | selector.py | 25 # It includes information about the build's selectivity, the debug_info 79 "debug_info", 96 debug_info = None 97 if "debug_info" in data: 98 di_list = data["debug_info"] 101 debug_info = tuple(str(x) for x in di_list) 133 debug_info, 280 ret["debug_info"] = sorted(self._debug_info) 326 debug_info = merge_debug_info(lhs._debug_info, rhs._debug_info) 339 debug_info,
|
H A D | operator.py | 61 "debug_info", 83 debug_info: tuple[str, ...] | None = None 84 if "debug_info" in op_info: 85 di_list = op_info["debug_info"] 87 debug_info = tuple(str(x) for x in di_list) 94 _debug_info=debug_info, 116 ret["debug_info"] = self._debug_info
|
/aosp_15_r20/art/dex2oat/linker/ |
H A D | elf_writer_quick.cc | 50 const debug::DebugInfo& debug_info) in DebugInfoTask() argument 58 debug_info_(debug_info) {} in DebugInfoTask() 103 std::unique_ptr<ThreadPool> PrepareDebugInfo(const debug::DebugInfo& debug_info) override; 111 void WriteDebugInfo(const debug::DebugInfo& debug_info) override; 251 const debug::DebugInfo& debug_info) { in PrepareDebugInfo() argument 265 debug_info); in PrepareDebugInfo() 273 void ElfWriterQuick<ElfTypes>::WriteDebugInfo(const debug::DebugInfo& debug_info) { in WriteDebugInfo() argument 278 thread_pool = PrepareDebugInfo(debug_info); in WriteDebugInfo() 283 if (!debug_info.Empty() && compiler_options_.GetGenerateDebugInfo()) { in WriteDebugInfo() 285 debug::WriteDebugInfo(builder_.get(), debug_info); in WriteDebugInfo()
|
/aosp_15_r20/external/perfetto/src/trace_processor/util/ |
H A D | profile_builder.cc | 167 if (debug_info.has_functions) { in ComputeMainBinaryScore() 170 if (debug_info.has_filenames) { in ComputeMainBinaryScore() 173 if (debug_info.has_line_numbers) { in ComputeMainBinaryScore() 176 if (debug_info.has_inline_frames) { in ComputeMainBinaryScore() 487 GetMapping(mapping_id).debug_info.has_inline_frames = true; in GetLinesForSymbolSetId() 488 GetMapping(mapping_id).debug_info.has_line_numbers = true; in GetLinesForSymbolSetId() 515 GetMapping(mapping_id).debug_info.has_functions = true; in WriteFunctionIfNeeded() 518 GetMapping(mapping_id).debug_info.has_filenames = true; in WriteFunctionIfNeeded() 571 GetMapping(mapping_id).debug_info.has_functions = true; in WriteFunctionIfNeeded() 623 m->set_has_functions(mapping.debug_info.has_functions); in WriteMapping() [all …]
|
/aosp_15_r20/external/cronet/base/debug/ |
H A D | dwarf_line_no.cc | 626 // `wanted_abbreviation_code`. This is called when parsing a DIE in .debug_info. 677 // This reads through a .debug_info compile unit entry to try and extract 681 // The .debug_info sections are a packed set of bytes whose format is defined 683 // a struct and .debug_info has a header that tells which struct it is followed 686 // The control flow is to find the .debug_abbrev entry for each .debug_info 688 // .debug_info entry. A successful parse calculates the address range that the 689 // .debug_info entry covers. When that is retrieved, `pc` can be compared to 690 // the range and a corresponding .debug_info can be found. 692 // The `debug_info_start` be the start of the whole .debug_info section or an 708 // Open .debug_info and .debug_abbrev as both are needed to find the in GetCompileUnitName() [all …]
|
/aosp_15_r20/system/core/init/libprefetch/prefetch/src/tracer/ |
H A D | mem.rs | 393 // The fields of the debug_info are populated when build_records_file is called (after lines 395 debug_info: DebugInfo, field 434 debug_info: DebugInfo { in create_with_configs() 537 // reset debug_info in case build_records_file was called twice. in build_records_file() 538 self.debug_info = DebugInfo::default(); in build_records_file() 543 // transferring it to `self.debug_info.privileged_paths` later. We can avoid this step in build_records_file() 544 // if we directly update `self.debug_info.privileged_paths`. To do so, we need to refactor in build_records_file() 547 // `self.debug_info.privileged_paths`. in build_records_file() 619 self.debug_info.privileged_paths.append(&mut privileged_paths); in build_records_file() 626 self.debug_info.missing_files.insert( in build_records_file() [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/ |
H A D | xla_debug_info_manager_test.cc | 82 DebugMetadata debug_info; in RegisterProgram() local 84 debug_info.module = std::make_shared<HloModule>(module_name, config); in RegisterProgram() 85 debug_info.buffer_assignment = nullptr; in RegisterProgram() 86 ModuleIdentifier unique_id = debug_info.module->unique_id(); in RegisterProgram() 87 debug_info.unique_id = unique_id; in RegisterProgram() 88 xla_debug_info_manager_.RegisterModule(unique_id, debug_info.module, in RegisterProgram() 89 debug_info.buffer_assignment); in RegisterProgram() 90 external_references_.push_back(std::move(debug_info)); in RegisterProgram()
|
/aosp_15_r20/external/bazelbuild-rules_python/python/private/ |
H A D | python.bzl | 47 * `debug_info`: {type}`None | dict` extra information to be passed 51 debug_info = { 55 debug_info = None 158 if debug_info: 159 debug_info["toolchains_registered"].append({ 201 debug_info = debug_info, 266 if py.debug_info != None: 269 debug_info = json.encode_indent(py.debug_info), 859 exports_files(["debug_info.json"]) 864 repo_ctx.file("debug_info.json", repo_ctx.attr.debug_info) [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFUnit.h | 75 /// Parse a unit header from \p debug_info starting at \p offset_ptr. 79 bool extract(DWARFContext &Context, const DWARFDataExtractor &debug_info, 122 /// .debug_info and .debug_types, or from .debug_info.dwo and .debug_types.dwo. 141 /// Read units from a .debug_info or .debug_types section. Calls made 142 /// before finishedInfoUnits() are assumed to be for .debug_info sections, 147 /// Read units from a .debug_info.dwo or .debug_types.dwo section. Calls 148 /// made before finishedInfoUnits() are assumed to be for .debug_info.dwo 161 /// Returns number of units from all .debug_info[.dwo] sections. 167 /// Indicate that parsing .debug_info[.dwo] is done, and remaining units 553 /// Size in bytes of the .debug_info data associated with this compile unit.
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFUnit.h | 72 /// Parse a unit header from \p debug_info starting at \p offset_ptr. 73 bool extract(DWARFContext &Context, const DWARFDataExtractor &debug_info, 113 /// .debug_info and .debug_types, or from .debug_info.dwo and .debug_types.dwo. 129 /// Read units from a .debug_info or .debug_types section. Calls made 130 /// before finishedInfoUnits() are assumed to be for .debug_info sections, 135 /// Read units from a .debug_info.dwo or .debug_types.dwo section. Calls 136 /// made before finishedInfoUnits() are assumed to be for .debug_info.dwo 149 /// Returns number of units from all .debug_info[.dwo] sections. 155 /// Indicate that parsing .debug_info[.dwo] is done, and remaining units 525 /// Size in bytes of the .debug_info data associated with this compile unit.
|
/aosp_15_r20/external/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFUnit.cpp | 77 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()
|