Searched refs:is_ref (Results 1 – 6 of 6) sorted by relevance
/art/compiler/dex/quick/arm64/ |
D | target_arm64.cc | 791 bool is_ref) { in GetNextReg() argument 804 DCHECK(!is_ref); in GetNextReg() 818 DCHECK(!(is_wide && is_ref)); in GetNextReg() 819 result = (is_wide || is_ref) ? RegStorage::Solo64(res_reg) : RegStorage::Solo32(res_reg); in GetNextReg()
|
D | codegen_arm64.h | 32 virtual RegStorage GetNextReg(bool is_double_or_float, bool is_wide, bool is_ref) = 0; 40 virtual RegStorage GetNextReg(bool is_double_or_float, bool is_wide, bool is_ref);
|
/art/compiler/dex/ |
D | vreg_analysis.cc | 62 bool MIRGraph::SetRef(int index, bool is_ref) { in SetRef() argument 64 if (is_ref && !reg_location_[index].defined) { in SetRef()
|
D | mir_graph.h | 953 bool SetRef(int index, bool is_ref);
|
/art/compiler/dex/quick/x86/ |
D | codegen_x86.h | 31 virtual RegStorage GetNextReg(bool is_double_or_float, bool is_wide, bool is_ref) = 0; 39 virtual RegStorage GetNextReg(bool is_double_or_float, bool is_wide, bool is_ref);
|
D | target_x86.cc | 2377 bool is_ref) { in GetNextReg() argument 2393 is_ref ? kRef : (is_wide ? kWide : kNotWide)); in GetNextReg()
|