OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1163 LInstruction* LChunkBuilder::DoInvokeFunction(HInvokeFunction* instr) { | 1163 LInstruction* LChunkBuilder::DoInvokeFunction(HInvokeFunction* instr) { |
1164 LOperand* function = UseFixed(instr->function(), r1); | 1164 LOperand* function = UseFixed(instr->function(), r1); |
1165 argument_count_ -= instr->argument_count(); | 1165 argument_count_ -= instr->argument_count(); |
1166 LInvokeFunction* result = new(zone()) LInvokeFunction(function); | 1166 LInvokeFunction* result = new(zone()) LInvokeFunction(function); |
1167 return MarkAsCall(DefineFixed(result, r0), instr, CANNOT_DEOPTIMIZE_EAGERLY); | 1167 return MarkAsCall(DefineFixed(result, r0), instr, CANNOT_DEOPTIMIZE_EAGERLY); |
1168 } | 1168 } |
1169 | 1169 |
1170 | 1170 |
1171 LInstruction* LChunkBuilder::DoUnaryMathOperation(HUnaryMathOperation* instr) { | 1171 LInstruction* LChunkBuilder::DoUnaryMathOperation(HUnaryMathOperation* instr) { |
1172 BuiltinFunctionId op = instr->op(); | 1172 BuiltinFunctionId op = instr->op(); |
1173 if (op == kMathLog || op == kMathSin || op == kMathCos) { | 1173 if (op == kMathLog || op == kMathSin || op == kMathCos || op == kMathTan) { |
1174 LOperand* input = UseFixedDouble(instr->value(), d2); | 1174 LOperand* input = UseFixedDouble(instr->value(), d2); |
1175 LUnaryMathOperation* result = new(zone()) LUnaryMathOperation(input, NULL); | 1175 LUnaryMathOperation* result = new(zone()) LUnaryMathOperation(input, NULL); |
1176 return MarkAsCall(DefineFixedDouble(result, d2), instr); | 1176 return MarkAsCall(DefineFixedDouble(result, d2), instr); |
1177 } else if (op == kMathPowHalf) { | 1177 } else if (op == kMathPowHalf) { |
1178 LOperand* input = UseFixedDouble(instr->value(), d2); | 1178 LOperand* input = UseFixedDouble(instr->value(), d2); |
1179 LOperand* temp = FixedTemp(d3); | 1179 LOperand* temp = FixedTemp(d3); |
1180 LUnaryMathOperation* result = new(zone()) LUnaryMathOperation(input, temp); | 1180 LUnaryMathOperation* result = new(zone()) LUnaryMathOperation(input, temp); |
1181 return DefineFixedDouble(result, d2); | 1181 return DefineFixedDouble(result, d2); |
1182 } else { | 1182 } else { |
1183 LOperand* input = UseRegisterAtStart(instr->value()); | 1183 LOperand* input = UseRegisterAtStart(instr->value()); |
(...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2300 | 2300 |
2301 | 2301 |
2302 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2302 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2303 LOperand* object = UseRegister(instr->object()); | 2303 LOperand* object = UseRegister(instr->object()); |
2304 LOperand* index = UseRegister(instr->index()); | 2304 LOperand* index = UseRegister(instr->index()); |
2305 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); | 2305 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); |
2306 } | 2306 } |
2307 | 2307 |
2308 | 2308 |
2309 } } // namespace v8::internal | 2309 } } // namespace v8::internal |
OLD | NEW |