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

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

Issue 8745012: MIPS: Implement crankshaft support for nested object literals. (Closed)
Patch Set: Created 9 years 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 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 2053 matching lines...) Expand 10 before | Expand all | Expand 10 after
2064 LOperand* string = UseRegisterAtStart(instr->value()); 2064 LOperand* string = UseRegisterAtStart(instr->value());
2065 return DefineAsRegister(new LStringLength(string)); 2065 return DefineAsRegister(new LStringLength(string));
2066 } 2066 }
2067 2067
2068 2068
2069 LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { 2069 LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) {
2070 return MarkAsCall(DefineFixed(new LArrayLiteral, v0), instr); 2070 return MarkAsCall(DefineFixed(new LArrayLiteral, v0), instr);
2071 } 2071 }
2072 2072
2073 2073
2074 LInstruction* LChunkBuilder::DoObjectLiteral(HObjectLiteral* instr) { 2074 LInstruction* LChunkBuilder::DoObjectLiteralFast(HObjectLiteralFast* instr) {
2075 return MarkAsCall(DefineFixed(new LObjectLiteral, v0), instr); 2075 return MarkAsCall(DefineFixed(new LObjectLiteralFast, v0), instr);
2076 } 2076 }
2077 2077
2078 2078
2079 LInstruction* LChunkBuilder::DoObjectLiteralGeneric(
2080 HObjectLiteralGeneric* instr) {
2081 return MarkAsCall(DefineFixed(new LObjectLiteralGeneric, v0), instr);
2082 }
2083
2084
2079 LInstruction* LChunkBuilder::DoRegExpLiteral(HRegExpLiteral* instr) { 2085 LInstruction* LChunkBuilder::DoRegExpLiteral(HRegExpLiteral* instr) {
2080 return MarkAsCall(DefineFixed(new LRegExpLiteral, v0), instr); 2086 return MarkAsCall(DefineFixed(new LRegExpLiteral, v0), instr);
2081 } 2087 }
2082 2088
2083 2089
2084 LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) { 2090 LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) {
2085 return MarkAsCall(DefineFixed(new LFunctionLiteral, v0), instr); 2091 return MarkAsCall(DefineFixed(new LFunctionLiteral, v0), instr);
2086 } 2092 }
2087 2093
2088 2094
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
2228 2234
2229 LInstruction* LChunkBuilder::DoIn(HIn* instr) { 2235 LInstruction* LChunkBuilder::DoIn(HIn* instr) {
2230 LOperand* key = UseRegisterAtStart(instr->key()); 2236 LOperand* key = UseRegisterAtStart(instr->key());
2231 LOperand* object = UseRegisterAtStart(instr->object()); 2237 LOperand* object = UseRegisterAtStart(instr->object());
2232 LIn* result = new LIn(key, object); 2238 LIn* result = new LIn(key, object);
2233 return MarkAsCall(DefineFixed(result, v0), instr); 2239 return MarkAsCall(DefineFixed(result, v0), instr);
2234 } 2240 }
2235 2241
2236 2242
2237 } } // namespace v8::internal 2243 } } // 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