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

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

Issue 9566003: MIPS: Additional explicit zone allocation changes. (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 | « no previous file | 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 2292 matching lines...) Expand 10 before | Expand all | Expand 10 after
2303 LInstruction* LChunkBuilder::DoIn(HIn* instr) { 2303 LInstruction* LChunkBuilder::DoIn(HIn* instr) {
2304 LOperand* key = UseRegisterAtStart(instr->key()); 2304 LOperand* key = UseRegisterAtStart(instr->key());
2305 LOperand* object = UseRegisterAtStart(instr->object()); 2305 LOperand* object = UseRegisterAtStart(instr->object());
2306 LIn* result = new(zone()) LIn(key, object); 2306 LIn* result = new(zone()) LIn(key, object);
2307 return MarkAsCall(DefineFixed(result, v0), instr); 2307 return MarkAsCall(DefineFixed(result, v0), instr);
2308 } 2308 }
2309 2309
2310 2310
2311 LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { 2311 LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) {
2312 LOperand* object = UseFixed(instr->enumerable(), a0); 2312 LOperand* object = UseFixed(instr->enumerable(), a0);
2313 LForInPrepareMap* result = new LForInPrepareMap(object); 2313 LForInPrepareMap* result = new(zone()) LForInPrepareMap(object);
2314 return MarkAsCall(DefineFixed(result, v0), instr, CAN_DEOPTIMIZE_EAGERLY); 2314 return MarkAsCall(DefineFixed(result, v0), instr, CAN_DEOPTIMIZE_EAGERLY);
2315 } 2315 }
2316 2316
2317 2317
2318 LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) { 2318 LInstruction* LChunkBuilder::DoForInCacheArray(HForInCacheArray* instr) {
2319 LOperand* map = UseRegister(instr->map()); 2319 LOperand* map = UseRegister(instr->map());
2320 return AssignEnvironment(DefineAsRegister( 2320 return AssignEnvironment(DefineAsRegister(
2321 new LForInCacheArray(map))); 2321 new(zone()) LForInCacheArray(map)));
2322 } 2322 }
2323 2323
2324 2324
2325 LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) { 2325 LInstruction* LChunkBuilder::DoCheckMapValue(HCheckMapValue* instr) {
2326 LOperand* value = UseRegisterAtStart(instr->value()); 2326 LOperand* value = UseRegisterAtStart(instr->value());
2327 LOperand* map = UseRegisterAtStart(instr->map()); 2327 LOperand* map = UseRegisterAtStart(instr->map());
2328 return AssignEnvironment(new LCheckMapValue(value, map)); 2328 return AssignEnvironment(new(zone()) LCheckMapValue(value, map));
2329 } 2329 }
2330 2330
2331 2331
2332 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2332 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2333 LOperand* object = UseRegister(instr->object()); 2333 LOperand* object = UseRegister(instr->object());
2334 LOperand* index = UseRegister(instr->index()); 2334 LOperand* index = UseRegister(instr->index());
2335 return DefineAsRegister(new LLoadFieldByIndex(object, index)); 2335 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index));
2336 } 2336 }
2337 2337
2338 2338
2339 } } // namespace v8::internal 2339 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698