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

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

Issue 131513015: Remove obsolete instruction HOuterContext. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/lithium-arm.h ('k') | src/arm/lithium-codegen-arm.cc » ('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 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 if (instr->HasNoUses()) return NULL; 1035 if (instr->HasNoUses()) return NULL;
1036 1036
1037 if (info()->IsStub()) { 1037 if (info()->IsStub()) {
1038 return DefineFixed(new(zone()) LContext, cp); 1038 return DefineFixed(new(zone()) LContext, cp);
1039 } 1039 }
1040 1040
1041 return DefineAsRegister(new(zone()) LContext); 1041 return DefineAsRegister(new(zone()) LContext);
1042 } 1042 }
1043 1043
1044 1044
1045 LInstruction* LChunkBuilder::DoOuterContext(HOuterContext* instr) {
1046 LOperand* context = UseRegisterAtStart(instr->value());
1047 return DefineAsRegister(new(zone()) LOuterContext(context));
1048 }
1049
1050
1051 LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) { 1045 LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) {
1052 LOperand* context = UseFixed(instr->context(), cp); 1046 LOperand* context = UseFixed(instr->context(), cp);
1053 return MarkAsCall(new(zone()) LDeclareGlobals(context), instr); 1047 return MarkAsCall(new(zone()) LDeclareGlobals(context), instr);
1054 } 1048 }
1055 1049
1056 1050
1057 LInstruction* LChunkBuilder::DoGlobalObject(HGlobalObject* instr) { 1051 LInstruction* LChunkBuilder::DoGlobalObject(HGlobalObject* instr) {
1058 LOperand* context = UseRegisterAtStart(instr->value()); 1052 LOperand* context = UseRegisterAtStart(instr->value());
1059 return DefineAsRegister(new(zone()) LGlobalObject(context)); 1053 return DefineAsRegister(new(zone()) LGlobalObject(context));
1060 } 1054 }
(...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after
2511 } 2505 }
2512 2506
2513 2507
2514 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2508 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2515 LOperand* object = UseRegister(instr->object()); 2509 LOperand* object = UseRegister(instr->object());
2516 LOperand* index = UseRegister(instr->index()); 2510 LOperand* index = UseRegister(instr->index());
2517 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); 2511 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index));
2518 } 2512 }
2519 2513
2520 } } // namespace v8::internal 2514 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.h ('k') | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698