Home
last modified time | relevance | path

Searched refs:DexRegisterMap (Results 1 – 12 of 12) sorted by relevance

/art/compiler/optimizing/
Dstack_map_test.cc83 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map); in TEST()
171 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map); in TEST()
210 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map); in TEST()
243 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map); in TEST()
276 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map); in TEST()
341 DexRegisterMap map(code_info.GetDexRegisterMapOf(stack_map)); in TEST()
392 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map); in TEST()
441 DexRegisterMap dex_registers0 = ci.GetDexRegisterMapOf(sm0); in TEST()
448 DexRegisterMap dex_registers1 = ci.GetDexRegisterMapOf(sm1); in TEST()
455 DexRegisterMap dex_registers2 = ci.GetDexRegisterMapOf(sm2); in TEST()
[all …]
Dstack_map_stream.cc289 DexRegisterMap map = code_info.GetInlineDexRegisterMapOf(stack_map, inline_info); in CreateDexRegisterMap()
/art/runtime/
Dstack_map.h59 class DexRegisterMap {
65 DexRegisterMap(size_t count, DexRegisterLocation value) : count_(count), regs_small_{} { in DexRegisterMap() function
347 ALWAYS_INLINE DexRegisterMap GetDexRegisterMapOf(StackMap stack_map) const { in GetDexRegisterMapOf()
349 DexRegisterMap map(number_of_dex_registers_, DexRegisterLocation::Invalid()); in GetDexRegisterMapOf()
353 return DexRegisterMap(0, DexRegisterLocation::None()); in GetDexRegisterMapOf()
356 ALWAYS_INLINE DexRegisterMap GetInlineDexRegisterMapOf(StackMap stack_map, in GetInlineDexRegisterMapOf()
368 DexRegisterMap map(last - first, DexRegisterLocation::Invalid()); in GetInlineDexRegisterMapOf()
372 return DexRegisterMap(0, DexRegisterLocation::None()); in GetInlineDexRegisterMapOf()
440 /*out*/ DexRegisterMap* map) const;
Ddex_register_location.h85 friend class DexRegisterMap; // Allow creation of uninitialized array of locations. variable
Dcheck_reference_map_visitor.h82 DexRegisterMap dex_register_map = code_info.GetDexRegisterMapOf(stack_map); in CheckOptimizedMethod()
Dquick_exception_handler.cc255 DexRegisterMap catch_vreg_map = code_info.GetDexRegisterMapOf(catch_stack_map); in SetCatchEnvironmentForOptimizedHandler()
266 DexRegisterMap throw_vreg_map = code_info.GetDexRegisterMapOf(throw_stack_map); in SetCatchEnvironmentForOptimizedHandler()
466 DexRegisterMap vreg_map = IsInInlinedFrame() in HandleOptimizingDeoptimization()
Dstack_map.cc167 /*out*/ DexRegisterMap* map) const { in DecodeDexRegisterMap()
248 void DexRegisterMap::Dump(VariableIndentationOutputStream* vios) const { in Dump()
Dstack.cc287 DexRegisterMap dex_register_map = IsInInlinedFrame() in GetVRegFromOptimizedCode()
Dthread.cc3960 DexRegisterMap dex_register_map; in VisitQuickFramePrecise()
/art/compiler/debug/
Delf_debug_loc_writer.h82 const std::vector<DexRegisterMap>& dex_register_maps, in GetVariableLocations()
141 DexRegisterMap dex_register_map = dex_register_maps[stack_map_index]; in GetVariableLocations()
168 const std::vector<DexRegisterMap>& dex_register_maps, in WriteDebugLocEntry()
Delf_debug_info_writer.h192 std::vector<DexRegisterMap> dex_reg_maps; in Write()
454 const std::vector<DexRegisterMap>& dex_register_maps,
/art/runtime/jit/
Djit.cc505 DexRegisterMap vreg_map = code_info.GetDexRegisterMapOf(stack_map); in PrepareForOsr()