/external/v8/src/arm/ |
lithium-arm.cc | 899 LOperand* right_operand = UseFixed(right, r0); local 900 LArithmeticT* result = new LArithmeticT(op, left_operand, right_operand); 1068 LOperand* right_operand = UseFixed(right, reversed ? r1 : r0); local 1070 right_operand); [all...] |
lithium-codegen-arm.cc | [all...] |
/external/v8/src/ia32/ |
lithium-ia32.cc | 893 LOperand* right_operand = UseFixed(right, eax); local 894 LArithmeticT* result = new LArithmeticT(op, left_operand, right_operand); 1065 LOperand* right_operand = UseFixed(right, reversed ? edx : eax); local 1067 right_operand); [all...] |
lithium-codegen-ia32.cc | 971 int right_operand = ToInteger32(LConstantOperand::cast(right)); local 974 __ and_(ToRegister(left), right_operand); local 977 __ or_(ToRegister(left), right_operand); local 980 __ xor_(ToRegister(left), right_operand); local [all...] |
/external/v8/src/x64/ |
lithium-x64.cc | 894 LOperand* right_operand = UseFixed(right, rax); local 895 LArithmeticT* result = new LArithmeticT(op, left_operand, right_operand); 1066 LOperand* right_operand = UseFixed(right, reversed ? rdx : rax); local 1068 right_operand); [all...] |
lithium-codegen-x64.cc | 976 int right_operand = ToInteger32(LConstantOperand::cast(right)); local 979 __ andl(ToRegister(left), Immediate(right_operand)); 982 __ orl(ToRegister(left), Immediate(right_operand)); 985 __ xorl(ToRegister(left), Immediate(right_operand)); [all...] |