Home
last modified time | relevance | path

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

/art/compiler/dex/
Dmir_optimization.cc265 if (num_non_special_compiler_temps_ >= remaining_me_temps) { in GetNumAvailableVRTemps()
268 return remaining_me_temps - num_non_special_compiler_temps_; in GetNumAvailableVRTemps()
343 compiler_temp->v_reg = GetFirstNonSpecialTempVR() + num_non_special_compiler_temps_; in GetNewCompilerTemp()
344 num_non_special_compiler_temps_++; in GetNewCompilerTemp()
362 compiler_temp->v_reg = GetFirstNonSpecialTempVR() + num_non_special_compiler_temps_; in GetNewCompilerTemp()
363 num_non_special_compiler_temps_++; in GetNewCompilerTemp()
386 num_non_special_compiler_temps_++; in GetNewCompilerTemp()
433 DCHECK_LE(used_temps, num_non_special_compiler_temps_); in RemoveLastCompilerTemp()
434 num_non_special_compiler_temps_ -= used_temps; in RemoveLastCompilerTemp()
438 GetFirstNonSpecialTempVR() + num_non_special_compiler_temps_); in RemoveLastCompilerTemp()
Dmir_graph.h949 return num_non_special_compiler_temps_; in GetNumNonSpecialCompilerTemps()
1452 …size_t num_non_special_compiler_temps_; // Keeps track of allocated non-special compiler temps. T… variable
Dmir_graph.cc130 num_non_special_compiler_temps_(0), in MIRGraph()