Home | History | Annotate | Download | only in ia32

Lines Matching full:asm_instr

286 #define ASSEMBLE_CHECKED_LOAD_FLOAT(asm_instr, OutOfLineLoadNaN,              \
299 __ asm_instr(result, i.MemoryOperand(2)); \
348 __ asm_instr(result_, Operand(buffer_reg_, index1_, times_1, 0)); \
350 __ asm_instr(result_, \
377 __ asm_instr(result, Operand(buffer, index1, times_1, index2)); \
385 __ asm_instr(result, Operand(index1, buffer + index2, rmode_buffer)); \
391 #define ASSEMBLE_CHECKED_LOAD_INTEGER(asm_instr) \
403 __ asm_instr(result, i.MemoryOperand(2)); \
453 __ asm_instr(result_, Operand(buffer_reg_, index1_, times_1, 0)); \
455 __ asm_instr(result_, \
481 __ asm_instr(result, Operand(buffer, index1, times_1, index2)); \
489 __ asm_instr(result, Operand(index1, buffer + index2, rmode_buffer)); \
495 #define ASSEMBLE_CHECKED_STORE_FLOAT(asm_instr) \
507 __ asm_instr(i.MemoryOperand(3), value); \
556 __ asm_instr(Operand(buffer_reg_, index1_, times_1, 0), value_); \
558 __ asm_instr(Operand(index1_, buffer_int_, rmode_buffer_), \
581 __ asm_instr(Operand(buffer, index1, times_1, index2), value); \
589 __ asm_instr(Operand(index1, buffer + index2, rmode_buffer), value); \
595 #define ASSEMBLE_CHECKED_STORE_INTEGER_IMPL(asm_instr, Value) \
606 __ asm_instr(i.MemoryOperand(3), value); \
655 __ asm_instr(Operand(buffer_reg_, index1_, times_1, 0), value_); \
657 __ asm_instr(Operand(index1_, buffer_int_, rmode_buffer_), \
680 __ asm_instr(Operand(buffer, index1, times_1, index2), value); \
688 __ asm_instr(Operand(index1, buffer + index2, rmode_buffer), value); \
694 #define ASSEMBLE_CHECKED_STORE_INTEGER(asm_instr) \
698 ASSEMBLE_CHECKED_STORE_INTEGER_IMPL(asm_instr, Register); \
701 ASSEMBLE_CHECKED_STORE_INTEGER_IMPL(asm_instr, Immediate); \
705 #define ASSEMBLE_COMPARE(asm_instr) \
711 __ asm_instr(left, i.InputImmediate(index)); \
713 __ asm_instr(left, i.InputRegister(index)); \
718 __ asm_instr(i.InputRegister(0), i.InputImmediate(1)); \
720 __ asm_instr(i.InputOperand(0), i.InputImmediate(1)); \
724 __ asm_instr(i.InputRegister(0), i.InputRegister(1)); \
726 __ asm_instr(i.InputRegister(0), i.InputOperand(1)); \