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 2108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2119 } | 2119 } |
2120 | 2120 |
2121 | 2121 |
2122 LInstruction* LChunkBuilder::DoStringLength(HStringLength* instr) { | 2122 LInstruction* LChunkBuilder::DoStringLength(HStringLength* instr) { |
2123 LOperand* string = UseRegisterAtStart(instr->value()); | 2123 LOperand* string = UseRegisterAtStart(instr->value()); |
2124 return DefineAsRegister(new(zone()) LStringLength(string)); | 2124 return DefineAsRegister(new(zone()) LStringLength(string)); |
2125 } | 2125 } |
2126 | 2126 |
2127 | 2127 |
2128 LInstruction* LChunkBuilder::DoAllocateObject(HAllocateObject* instr) { | 2128 LInstruction* LChunkBuilder::DoAllocateObject(HAllocateObject* instr) { |
2129 LAllocateObject* result = new(zone()) LAllocateObject(); | 2129 LAllocateObject* result = new(zone()) LAllocateObject( |
| 2130 TempRegister(), TempRegister()); |
2130 return AssignPointerMap(DefineAsRegister(result)); | 2131 return AssignPointerMap(DefineAsRegister(result)); |
2131 } | 2132 } |
2132 | 2133 |
2133 | 2134 |
2134 LInstruction* LChunkBuilder::DoFastLiteral(HFastLiteral* instr) { | 2135 LInstruction* LChunkBuilder::DoFastLiteral(HFastLiteral* instr) { |
2135 return MarkAsCall(DefineFixed(new(zone()) LFastLiteral, v0), instr); | 2136 return MarkAsCall(DefineFixed(new(zone()) LFastLiteral, v0), instr); |
2136 } | 2137 } |
2137 | 2138 |
2138 | 2139 |
2139 LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { | 2140 LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2330 | 2331 |
2331 | 2332 |
2332 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2333 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2333 LOperand* object = UseRegister(instr->object()); | 2334 LOperand* object = UseRegister(instr->object()); |
2334 LOperand* index = UseRegister(instr->index()); | 2335 LOperand* index = UseRegister(instr->index()); |
2335 return DefineAsRegister(new LLoadFieldByIndex(object, index)); | 2336 return DefineAsRegister(new LLoadFieldByIndex(object, index)); |
2336 } | 2337 } |
2337 | 2338 |
2338 | 2339 |
2339 } } // namespace v8::internal | 2340 } } // namespace v8::internal |
OLD | NEW |