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

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

Issue 9453009: MIPS: Support fast case for-in in Crankshaft. (Closed)
Patch Set: rebased on r10858. 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') | src/mips/macro-assembler-mips.h » ('j') | 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 2261 matching lines...) Expand 10 before | Expand all | Expand 10 after
2272 2272
2273 2273
2274 LInstruction* LChunkBuilder::DoIn(HIn* instr) { 2274 LInstruction* LChunkBuilder::DoIn(HIn* instr) {
2275 LOperand* key = UseRegisterAtStart(instr->key()); 2275 LOperand* key = UseRegisterAtStart(instr->key());
2276 LOperand* object = UseRegisterAtStart(instr->object()); 2276 LOperand* object = UseRegisterAtStart(instr->object());
2277 LIn* result = new LIn(key, object); 2277 LIn* result = new LIn(key, object);
2278 return MarkAsCall(DefineFixed(result, v0), instr); 2278 return MarkAsCall(DefineFixed(result, v0), instr);
2279 } 2279 }
2280 2280
2281 2281
2282 LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) {
2283 LOperand* object = UseFixed(instr->enumerable(), a0);
2284 LForInPrepareMap* result = new LForInPrepareMap(object);
2285 return MarkAsCall(DefineFixed(result, v0), instr, CAN_DEOPTIMIZE_EAGERLY);
2286 }
2287
2288
2289 LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) {
2290 LOperand* map = UseRegister(instr->map());
2291 return AssignEnvironment(DefineAsRegister(
2292 new LForInCacheArray(map)));
2293 }
2294
2295
2296 LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) {
2297 LOperand* value = UseRegisterAtStart(instr->value());
2298 LOperand* map = UseRegisterAtStart(instr->map());
2299 return AssignEnvironment(new LCheckMapValue(value, map));
2300 }
2301
2302
2303 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2304 LOperand* object = UseRegister(instr->object());
2305 LOperand* index = UseRegister(instr->index());
2306 return DefineAsRegister(new LLoadFieldByIndex(object, index));
2307 }
2308
2309
2282 } } // namespace v8::internal 2310 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.h ('k') | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698