Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Side by Side Diff: src/mips/lithium-mips.cc

Issue 9569008: MIPS: Implement inlined object allocation in Crankshaft. (Closed)
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/mips/lithium-mips.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698