Searched refs:stack_maps (Results 1 – 3 of 3) sorted by relevance
80 StackMapStream stack_maps(&allocator, kRuntimeISA); in SetUp() local81 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()
94 std::map<uint32_t, uint32_t> stack_maps; // low_pc -> stack_map_index. in GetVariableLocations() local111 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()
1523 std::unordered_map<uint32_t, std::vector<StackMap>> stack_maps; in DumpCode() local1525 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()