OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1420 break; | 1420 break; |
1421 case Token::MOD: { | 1421 case Token::MOD: { |
1422 // Save r0-r3 on the stack. | 1422 // Save r0-r3 on the stack. |
1423 __ stm(db_w, sp, r0.bit() | r1.bit() | r2.bit() | r3.bit()); | 1423 __ stm(db_w, sp, r0.bit() | r1.bit() | r2.bit() | r3.bit()); |
1424 | 1424 |
1425 __ PrepareCallCFunction(4, scratch0()); | 1425 __ PrepareCallCFunction(4, scratch0()); |
1426 __ vmov(r0, r1, left); | 1426 __ vmov(r0, r1, left); |
1427 __ vmov(r2, r3, right); | 1427 __ vmov(r2, r3, right); |
1428 __ CallCFunction(ExternalReference::double_fp_operation(Token::MOD), 4); | 1428 __ CallCFunction(ExternalReference::double_fp_operation(Token::MOD), 4); |
1429 // Move the result in the double result register. | 1429 // Move the result in the double result register. |
1430 __ vmov(ToDoubleRegister(instr->result()), r0, r1); | 1430 __ GetCFunctionDoubleResult(ToDoubleRegister(instr->result())); |
1431 | 1431 |
1432 // Restore r0-r3. | 1432 // Restore r0-r3. |
1433 __ ldm(ia_w, sp, r0.bit() | r1.bit() | r2.bit() | r3.bit()); | 1433 __ ldm(ia_w, sp, r0.bit() | r1.bit() | r2.bit() | r3.bit()); |
1434 break; | 1434 break; |
1435 } | 1435 } |
1436 default: | 1436 default: |
1437 UNREACHABLE(); | 1437 UNREACHABLE(); |
1438 break; | 1438 break; |
1439 } | 1439 } |
1440 } | 1440 } |
(...skipping 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2854 } | 2854 } |
2855 | 2855 |
2856 | 2856 |
2857 void LCodeGen::DoMathSqrt(LUnaryMathOperation* instr) { | 2857 void LCodeGen::DoMathSqrt(LUnaryMathOperation* instr) { |
2858 DoubleRegister input = ToDoubleRegister(instr->InputAt(0)); | 2858 DoubleRegister input = ToDoubleRegister(instr->InputAt(0)); |
2859 ASSERT(ToDoubleRegister(instr->result()).is(input)); | 2859 ASSERT(ToDoubleRegister(instr->result()).is(input)); |
2860 __ vsqrt(input, input); | 2860 __ vsqrt(input, input); |
2861 } | 2861 } |
2862 | 2862 |
2863 | 2863 |
| 2864 void LCodeGen::DoPower(LPower* instr) { |
| 2865 LOperand* left = instr->InputAt(0); |
| 2866 LOperand* right = instr->InputAt(1); |
| 2867 Register scratch = scratch0(); |
| 2868 DoubleRegister result_reg = ToDoubleRegister(instr->result()); |
| 2869 Representation exponent_type = instr->hydrogen()->right()->representation(); |
| 2870 if (exponent_type.IsDouble()) { |
| 2871 // Prepare arguments and call C function. |
| 2872 __ PrepareCallCFunction(4, scratch); |
| 2873 __ vmov(r0, r1, ToDoubleRegister(left)); |
| 2874 __ vmov(r2, r3, ToDoubleRegister(right)); |
| 2875 __ CallCFunction(ExternalReference::power_double_double_function(), 4); |
| 2876 } else if (exponent_type.IsInteger32()) { |
| 2877 ASSERT(ToRegister(right).is(r0)); |
| 2878 // Prepare arguments and call C function. |
| 2879 __ PrepareCallCFunction(4, scratch); |
| 2880 __ mov(r2, ToRegister(right)); |
| 2881 __ vmov(r0, r1, ToDoubleRegister(left)); |
| 2882 __ CallCFunction(ExternalReference::power_double_int_function(), 4); |
| 2883 } else { |
| 2884 ASSERT(exponent_type.IsTagged()); |
| 2885 ASSERT(instr->hydrogen()->left()->representation().IsDouble()); |
| 2886 |
| 2887 Register right_reg = ToRegister(right); |
| 2888 |
| 2889 // Check for smi on the right hand side. |
| 2890 Label non_smi, call; |
| 2891 __ JumpIfNotSmi(right_reg, &non_smi); |
| 2892 |
| 2893 // Untag smi and convert it to a double. |
| 2894 __ SmiUntag(right_reg); |
| 2895 SwVfpRegister single_scratch = double_scratch0().low(); |
| 2896 __ vmov(single_scratch, right_reg); |
| 2897 __ vcvt_f64_s32(result_reg, single_scratch); |
| 2898 __ jmp(&call); |
| 2899 |
| 2900 // Heap number map check. |
| 2901 __ bind(&non_smi); |
| 2902 __ ldr(scratch, FieldMemOperand(right_reg, HeapObject::kMapOffset)); |
| 2903 __ LoadRoot(ip, Heap::kHeapNumberMapRootIndex); |
| 2904 __ cmp(scratch, Operand(ip)); |
| 2905 DeoptimizeIf(ne, instr->environment()); |
| 2906 int32_t value_offset = HeapNumber::kValueOffset - kHeapObjectTag; |
| 2907 __ add(scratch, right_reg, Operand(value_offset)); |
| 2908 __ vldr(result_reg, scratch, 0); |
| 2909 |
| 2910 // Prepare arguments and call C function. |
| 2911 __ bind(&call); |
| 2912 __ PrepareCallCFunction(4, scratch); |
| 2913 __ vmov(r0, r1, ToDoubleRegister(left)); |
| 2914 __ vmov(r2, r3, result_reg); |
| 2915 __ CallCFunction(ExternalReference::power_double_double_function(), 4); |
| 2916 } |
| 2917 // Store the result in the result register. |
| 2918 __ GetCFunctionDoubleResult(result_reg); |
| 2919 } |
| 2920 |
| 2921 |
2864 void LCodeGen::DoUnaryMathOperation(LUnaryMathOperation* instr) { | 2922 void LCodeGen::DoUnaryMathOperation(LUnaryMathOperation* instr) { |
2865 switch (instr->op()) { | 2923 switch (instr->op()) { |
2866 case kMathAbs: | 2924 case kMathAbs: |
2867 DoMathAbs(instr); | 2925 DoMathAbs(instr); |
2868 break; | 2926 break; |
2869 case kMathFloor: | 2927 case kMathFloor: |
2870 DoMathFloor(instr); | 2928 DoMathFloor(instr); |
2871 break; | 2929 break; |
2872 case kMathSqrt: | 2930 case kMathSqrt: |
2873 DoMathSqrt(instr); | 2931 DoMathSqrt(instr); |
(...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3967 ASSERT(!environment->HasBeenRegistered()); | 4025 ASSERT(!environment->HasBeenRegistered()); |
3968 RegisterEnvironmentForDeoptimization(environment); | 4026 RegisterEnvironmentForDeoptimization(environment); |
3969 ASSERT(osr_pc_offset_ == -1); | 4027 ASSERT(osr_pc_offset_ == -1); |
3970 osr_pc_offset_ = masm()->pc_offset(); | 4028 osr_pc_offset_ = masm()->pc_offset(); |
3971 } | 4029 } |
3972 | 4030 |
3973 | 4031 |
3974 #undef __ | 4032 #undef __ |
3975 | 4033 |
3976 } } // namespace v8::internal | 4034 } } // namespace v8::internal |
OLD | NEW |