Home
last modified time | relevance | path

Searched refs:mov_w (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/ia32/
Dcodegen-ia32.cc400 __ mov_w(eax, Operand(src, 0)); in CreateMemMoveFunction() local
401 __ mov_w(Operand(dst, 0), eax); in CreateMemMoveFunction() local
405 __ mov_w(eax, Operand(src, 0)); in CreateMemMoveFunction() local
407 __ mov_w(Operand(dst, 0), eax); in CreateMemMoveFunction() local
Dassembler-ia32.h590 void mov_w(Register dst, Operand src);
591 void mov_w(Operand dst, int16_t src) { mov_w(dst, Immediate(src)); } in mov_w() function
592 void mov_w(Operand dst, const Immediate& src);
593 void mov_w(Operand dst, Register src);
Dassembler-ia32.cc583 void Assembler::mov_w(Register dst, Operand src) { in mov_w() function in v8::internal::Assembler
590 void Assembler::mov_w(Operand dst, Register src) { in mov_w() function in v8::internal::Assembler
597 void Assembler::mov_w(Operand dst, const Immediate& src) { in mov_w() function in v8::internal::Assembler
/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc1595 __ mov_w(operand, i.InputInt16(index)); in AssembleArchInstruction() local
1597 __ mov_w(operand, i.InputRegister(index)); in AssembleArchInstruction() local
3777 ASSEMBLE_ATOMIC_BINOP(inst, mov_w, cmpxchg_w); \ in AssembleArchInstruction()
3782 ASSEMBLE_ATOMIC_BINOP(inst, mov_w, cmpxchg_w); \ in AssembleArchInstruction()
3788 ASSEMBLE_ATOMIC_BINOP(inst, mov_w, cmpxchg_w); \ in AssembleArchInstruction()
/external/v8/src/wasm/baseline/ia32/
Dliftoff-assembler-ia32.h334 mov_w(dst_op, src.gp()); in Store()