Home
last modified time | relevance | path

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

/aosp_15_r20/art/compiler/
H A Dexception_test.cc84 StackMapStream stack_maps(&allocator, kRuntimeISA); in SetUp() local
85 stack_maps.BeginMethod(/* frame_size_in_bytes= */ 4 * sizeof(void*), in SetUp()
91 stack_maps.BeginStackMapEntry(kDexPc, native_pc_offset); in SetUp()
92 stack_maps.EndStackMapEntry(); in SetUp()
93 stack_maps.EndMethod(code_size); in SetUp()
94 ScopedArenaVector<uint8_t> stack_map = stack_maps.Encode(); in SetUp()
/aosp_15_r20/art/compiler/debug/
H A Delf_debug_loc_writer.h98 std::map<uint32_t, uint32_t> stack_maps; // low_pc -> stack_map_index. in GetVariableLocations() local
115 stack_maps.emplace(low_pc, s); in GetVariableLocations()
119 for (auto it = stack_maps.begin(); it != stack_maps.end(); it++) { in GetVariableLocations()
125 const uint32_t high_pc = next_it != stack_maps.end() in GetVariableLocations()
/aosp_15_r20/art/oatdump/
H A Doatdump.cc1550 std::unordered_map<uint32_t, std::vector<StackMap>> stack_maps; in DumpCode() local
1552 stack_maps[it.GetNativePcOffset(instruction_set_)].push_back(it); in DumpCode()
1559 auto it = stack_maps.find(offset); in DumpCode()
1560 if (it != stack_maps.end()) { in DumpCode()
1565 stack_maps.erase(it); in DumpCode()
1568 DCHECK_EQ(stack_maps.size(), 0u); // Check that all stack maps have been printed. in DumpCode()