HomeSort by relevance Sort by last modified time
    Searched defs:imm32 (Results 1 - 2 of 2) sorted by null

  /external/v8/src/ia32/
assembler-ia32.cc 621 void Assembler::mov(Register dst, int32_t imm32) {
625 emit(imm32);
723 void Assembler::cmov(Condition cc, Register dst, int32_t imm32) {
730 USE(imm32);
776 void Assembler::adc(Register dst, int32_t imm32) {
779 emit_arith(2, Operand(dst), Immediate(imm32));
823 void Assembler::and_(Register dst, int32_t imm32) {
826 emit_arith(4, Operand(dst), Immediate(imm32));
891 void Assembler::cmp(Register reg, int32_t imm32) {
894 emit_arith(7, Operand(reg), Immediate(imm32));
1437 int imm32 = pos - (fixup_pos + sizeof(int32_t)); local
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 344 int imm32 = pos - (current + sizeof(int32_t)); local
345 long_at_put(current, imm32);
    [all...]

Completed in 190 milliseconds