Home
last modified time | relevance | path

Searched refs:is_gp_pair (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/wasm/baseline/
Dliftoff-register.h172 (reg.is_gp_pair() && in from_liftoff_code()
229 constexpr bool is_gp_pair() const { in is_gp_pair() function
244 return is_gp_pair() ? LiftoffRegister(low_gp()) : LiftoffRegister(low_fp()); in low()
250 return is_gp_pair() ? LiftoffRegister(high_gp()) in high()
255 DCHECK(is_gp_pair()); in low_gp()
261 DCHECK(is_gp_pair()); in high_gp()
295 : is_gp_pair() ? kGpRegPair : is_gp() ? kGpReg : kFpReg; in reg_class()
299 DCHECK_EQ(is_gp_pair(), other.is_gp_pair());
304 DCHECK_EQ(is_gp_pair(), other.is_gp_pair());
322 if (reg.is_gp_pair()) {
Dliftoff-assembler.cc165 if (src.is_gp_pair()) { in MoveRegister()
198 if (dst.is_gp_pair()) { in LoadConstant()
219 if (dst.is_gp_pair()) { in LoadStackSlot()
370 if (it->is_gp_pair() == src.is_gp_pair() && in Lookup()
736 const bool is_gp_pair = kNeedI64RegPair && type == kWasmI64; in PrepareStackTransfers() local
737 const int num_lowered_params = is_gp_pair ? 2 : 1; in PrepareStackTransfers()
744 is_gp_pair && lowered_idx == 0 ? kHighWord : kLowWord; in PrepareStackTransfers()
750 RegClass rc = is_gp_pair ? kGpReg : reg_class_for(type); in PrepareStackTransfers()
755 if (is_gp_pair) { in PrepareStackTransfers()
914 if (kNeedI64RegPair && dst.is_gp_pair()) { in Move()
Dliftoff-compiler.cc1323 amount.is_gp_pair() ? amount.low_gp() : amount.gp()); \ in BinOp()
/external/v8/src/wasm/
Dwasm-debug.cc703 if (reg.is_gp_pair()) { in GetValue()
/external/v8/src/wasm/baseline/ia32/
Dliftoff-assembler-ia32.h332 DCHECK_EQ(type.value_type() == kWasmI64, dst.is_gp_pair()); in Load()
406 DCHECK_EQ(type.value_type() == kWasmI64, src.is_gp_pair()); in Store()
477 DCHECK_EQ(type.value_type() == kWasmI64, dst.is_gp_pair()); in AtomicLoad()
/external/v8/src/wasm/baseline/mips/
Dliftoff-assembler-mips.h919 DCHECK(pair.is_gp_pair()); in IsRegInRegPair()
/external/v8/src/wasm/baseline/arm/
Dliftoff-assembler-arm.h564 DCHECK_IMPLIES(type.value_type() == kWasmI64, dst.is_gp_pair());