Searched refs:GetInstanceOperand (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/wasm/baseline/arm64/ |
D | liftoff-assembler-arm64.h | 54 inline MemOperand GetInstanceOperand() { in GetInstanceOperand() function 182 Ldr(dst, liftoff::GetInstanceOperand()); in LoadFromInstance() 192 Str(instance, liftoff::GetInstanceOperand()); in SpillInstance() 196 Ldr(dst, liftoff::GetInstanceOperand()); in FillInstanceInto()
|
/external/v8/src/wasm/baseline/mips64/ |
D | liftoff-assembler-mips64.h | 29 inline MemOperand GetInstanceOperand() { return MemOperand(fp, -16); } in GetInstanceOperand() function 256 ld(dst, liftoff::GetInstanceOperand()); in LoadFromInstance() 266 sd(instance, liftoff::GetInstanceOperand()); in SpillInstance() 270 ld(dst, liftoff::GetInstanceOperand()); in FillInstanceInto()
|
/external/v8/src/wasm/baseline/mips/ |
D | liftoff-assembler-mips.h | 34 inline MemOperand GetInstanceOperand() { return MemOperand(fp, -8); } in GetInstanceOperand() function 291 lw(dst, liftoff::GetInstanceOperand()); in LoadFromInstance() 297 sw(instance, liftoff::GetInstanceOperand()); in SpillInstance() 301 lw(dst, liftoff::GetInstanceOperand()); in FillInstanceInto()
|
/external/v8/src/wasm/baseline/x64/ |
D | liftoff-assembler-x64.h | 49 inline Operand GetInstanceOperand() { return Operand(rbp, -16); } in GetInstanceOperand() function 187 movp(dst, liftoff::GetInstanceOperand()); in LoadFromInstance() 197 movp(liftoff::GetInstanceOperand(), instance); in SpillInstance() 201 movp(dst, liftoff::GetInstanceOperand()); in FillInstanceInto()
|
/external/v8/src/wasm/baseline/ia32/ |
D | liftoff-assembler-ia32.h | 43 inline Operand GetInstanceOperand() { return Operand(ebp, -8); } in GetInstanceOperand() function 209 mov(dst, liftoff::GetInstanceOperand()); in LoadFromInstance() 215 mov(liftoff::GetInstanceOperand(), instance); in SpillInstance() 219 mov(dst, liftoff::GetInstanceOperand()); in FillInstanceInto()
|