| 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 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1161 return AssignEnvironment(DefineAsRegister(result)); | 1161 return AssignEnvironment(DefineAsRegister(result)); |
| 1162 } | 1162 } |
| 1163 | 1163 |
| 1164 | 1164 |
| 1165 LInstruction* LChunkBuilder::DoMathRound(HUnaryMathOperation* instr) { | 1165 LInstruction* LChunkBuilder::DoMathRound(HUnaryMathOperation* instr) { |
| 1166 LOperand* input = UseRegisterAtStart(instr->value()); | 1166 LOperand* input = UseRegisterAtStart(instr->value()); |
| 1167 LMathRound* result = new(zone()) LMathRound(input); | 1167 LMathRound* result = new(zone()) LMathRound(input); |
| 1168 return AssignEnvironment(DefineAsRegister(result)); | 1168 return AssignEnvironment(DefineAsRegister(result)); |
| 1169 } | 1169 } |
| 1170 | 1170 |
| 1171 |
| 1171 LInstruction* LChunkBuilder::DoMathAbs(HUnaryMathOperation* instr) { | 1172 LInstruction* LChunkBuilder::DoMathAbs(HUnaryMathOperation* instr) { |
| 1172 LOperand* input = UseRegisterAtStart(instr->value()); | 1173 LOperand* input = UseRegisterAtStart(instr->value()); |
| 1173 LMathAbs* result = new(zone()) LMathAbs(input); | 1174 LMathAbs* result = new(zone()) LMathAbs(input); |
| 1174 return AssignEnvironment(AssignPointerMap(DefineSameAsFirst(result))); | 1175 return AssignEnvironment(AssignPointerMap(DefineSameAsFirst(result))); |
| 1175 } | 1176 } |
| 1176 | 1177 |
| 1177 | 1178 |
| 1178 LInstruction* LChunkBuilder::DoMathLog(HUnaryMathOperation* instr) { | 1179 LInstruction* LChunkBuilder::DoMathLog(HUnaryMathOperation* instr) { |
| 1179 LOperand* input = UseFixedDouble(instr->value(), xmm1); | 1180 LOperand* input = UseFixedDouble(instr->value(), xmm1); |
| 1180 LMathLog* result = new(zone()) LMathLog(input); | 1181 LMathLog* result = new(zone()) LMathLog(input); |
| (...skipping 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2567 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2568 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2568 LOperand* object = UseRegister(instr->object()); | 2569 LOperand* object = UseRegister(instr->object()); |
| 2569 LOperand* index = UseTempRegister(instr->index()); | 2570 LOperand* index = UseTempRegister(instr->index()); |
| 2570 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2571 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2571 } | 2572 } |
| 2572 | 2573 |
| 2573 | 2574 |
| 2574 } } // namespace v8::internal | 2575 } } // namespace v8::internal |
| 2575 | 2576 |
| 2576 #endif // V8_TARGET_ARCH_X64 | 2577 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |