Home
last modified time | relevance | path

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

/art/compiler/
Dexception_test.cc80 StackMapStream stack_maps(&allocator, kRuntimeISA); in SetUp() local
81 stack_maps.BeginMethod(4 * sizeof(void*), 0u, 0u, 0u); in SetUp()
82 stack_maps.BeginStackMapEntry(kDexPc, native_pc_offset); in SetUp()
83 stack_maps.EndStackMapEntry(); in SetUp()
84 stack_maps.EndMethod(code_size); in SetUp()
85 ScopedArenaVector<uint8_t> stack_map = stack_maps.Encode(); in SetUp()
/art/compiler/debug/
Delf_debug_loc_writer.h94 std::map<uint32_t, uint32_t> stack_maps; // low_pc -> stack_map_index. in GetVariableLocations() local
111 stack_maps.emplace(low_pc, s); in GetVariableLocations()
115 for (auto it = stack_maps.begin(); it != stack_maps.end(); it++) { in GetVariableLocations()
121 const uint32_t high_pc = next_it != stack_maps.end() in GetVariableLocations()
/art/oatdump/
Doatdump.cc1523 std::unordered_map<uint32_t, std::vector<StackMap>> stack_maps; in DumpCode() local
1525 stack_maps[it.GetNativePcOffset(instruction_set_)].push_back(it); in DumpCode()
1532 auto it = stack_maps.find(offset); in DumpCode()
1533 if (it != stack_maps.end()) { in DumpCode()
1538 stack_maps.erase(it); in DumpCode()
1541 DCHECK_EQ(stack_maps.size(), 0u); // Check that all stack maps have been printed. in DumpCode()