Home
last modified time | relevance | path

Searched refs:is_ref (Results 1 – 6 of 6) sorted by relevance

/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc791 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()
Dcodegen_arm64.h32 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/
Dvreg_analysis.cc62 bool MIRGraph::SetRef(int index, bool is_ref) { in SetRef() argument
64 if (is_ref && !reg_location_[index].defined) { in SetRef()
Dmir_graph.h953 bool SetRef(int index, bool is_ref);
/art/compiler/dex/quick/x86/
Dcodegen_x86.h31 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);
Dtarget_x86.cc2377 bool is_ref) { in GetNextReg() argument
2393 is_ref ? kRef : (is_wide ? kWide : kNotWide)); in GetNextReg()