Home
last modified time | relevance | path

Searched refs:dbg_abbrev (Results 1 – 3 of 3) sorted by relevance

/art/compiler/
Delf_writer_quick.cc984 std::vector<uint8_t>* dbg_abbrev, in FillInCFIInformation() argument
991 dbg_abbrev->push_back(1); in FillInCFIInformation()
992 dbg_abbrev->push_back(DW_TAG_compile_unit); in FillInCFIInformation()
995 dbg_abbrev->push_back(DW_CHILDREN_yes); in FillInCFIInformation()
998 dbg_abbrev->push_back(DW_AT_language); in FillInCFIInformation()
999 dbg_abbrev->push_back(DW_FORM_data1); in FillInCFIInformation()
1002 dbg_abbrev->push_back(DW_AT_low_pc); in FillInCFIInformation()
1003 dbg_abbrev->push_back(DW_FORM_addr); in FillInCFIInformation()
1006 dbg_abbrev->push_back(DW_AT_high_pc); in FillInCFIInformation()
1007 dbg_abbrev->push_back(DW_FORM_addr); in FillInCFIInformation()
[all …]
Delf_writer_quick.h306 std::vector<uint8_t>* dbg_abbrev, std::vector<uint8_t>* dbg_str);
/art/runtime/
Delf_file.cc1461 static DebugAbbrev* Create(const byte* dbg_abbrev, size_t dbg_abbrev_size) { in Create() argument
1463 const byte* last = dbg_abbrev + dbg_abbrev_size; in Create()
1464 while (dbg_abbrev < last) { in Create()
1465 std::unique_ptr<DebugTag> tag(DebugTag::Create(&dbg_abbrev)); in Create()
1571 static bool FixupDebugSections(const byte* dbg_abbrev, size_t dbg_abbrev_size, in FixupDebugSections() argument
1575 std::unique_ptr<DebugAbbrev> abbrev(DebugAbbrev::Create(dbg_abbrev, dbg_abbrev_size)); in FixupDebugSections()