Home
last modified time | relevance | path

Searched refs:PushUint32 (Results 1 – 7 of 7) sorted by relevance

/art/compiler/debug/dwarf/
Dheaders.h50 writer.PushUint32(0); // Length placeholder. in WriteCIE()
51 writer.PushUint32((format == DW_EH_FRAME_FORMAT) ? 0 : 0xFFFFFFFF); // CIE id. in WriteCIE()
95 writer.PushUint32(0); // Length placeholder. in WriteFDE()
98 writer.PushUint32(cie_pointer); in WriteFDE()
102 writer.PushUint32(cie_pointer); in WriteFDE()
116 writer.PushUint32(code_address); in WriteFDE()
117 writer.PushUint32(code_size); in WriteFDE()
136 writer.PushUint32(0); // Length placeholder. in WriteDebugInfoCU()
138 writer.PushUint32(debug_abbrev_offset); in WriteDebugInfoCU()
169 writer.PushUint32(0); // Section-length placeholder. in WriteDebugLineTable()
[all …]
Dwriter.h48 void PushUint32(uint32_t value) { in PushUint32() function
55 void PushUint32(int value) { in PushUint32() function
57 PushUint32(static_cast<uint32_t>(value)); in PushUint32()
60 void PushUint32(uint64_t value) { in PushUint32() function
62 PushUint32(static_cast<uint32_t>(value)); in PushUint32()
89 PushUint32(static_cast<uint32_t>(value)); in PushInt32()
Ddebug_info_entry_writer.h91 this->PushUint32(value); in WriteAddr()
119 this->PushUint32(value); in WriteData4()
129 this->PushUint32(offset); in WriteSecOffset()
158 this->PushUint32(cu_offset); in WriteRef4()
173 this->PushUint32(dchecked_integral_cast<uint32_t>(debug_str_offset)); in WriteStrp()
179 this->PushUint32(debug_str->size()); in WriteStrp()
Ddebug_line_opcode_writer.h136 this->PushUint32(absolute_address); in SetAddress()
Ddebug_frame_opcode_writer.h62 this->PushUint32(delta); in AdvancePC()
/art/compiler/debug/
Delf_debug_loc_writer.h267 debug_loc.PushUint32(variable_location.low_pc); in WriteDebugLocEntry()
268 debug_loc.PushUint32(variable_location.high_pc); in WriteDebugLocEntry()
282 debug_loc.PushUint32(0); in WriteDebugLocEntry()
283 debug_loc.PushUint32(0); in WriteDebugLocEntry()
301 debug_ranges.PushUint32(low_pc); in WriteDebugLocEntry()
302 debug_ranges.PushUint32(high_pc); in WriteDebugLocEntry()
310 debug_ranges.PushUint32(0); in WriteDebugLocEntry()
311 debug_ranges.PushUint32(0); in WriteDebugLocEntry()
Delf_debug_frame_writer.h263 header.PushUint32(dchecked_integral_cast<uint32_t>(binary_search_table.size()/2)); in WriteCFISection()