Home
last modified time | relevance | path

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

/art/compiler/
Dexception_test.cc79 StackMapStream stack_maps(&allocator, kRuntimeISA); in SetUp() local
80 stack_maps.BeginMethod(4 * sizeof(void*), 0u, 0u, 0u); in SetUp()
81 stack_maps.BeginStackMapEntry(kDexPc, native_pc_offset); in SetUp()
82 stack_maps.EndStackMapEntry(); in SetUp()
83 stack_maps.EndMethod(); in SetUp()
84 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()