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

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

Issue 148453009: Both HGlobalObject and HGlobalReceiver can be replaced with HLoadNamedField. (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 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 return DefineAsRegister(new(zone()) LContext); 1041 return DefineAsRegister(new(zone()) LContext);
1042 } 1042 }
1043 1043
1044 1044
1045 LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) { 1045 LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) {
1046 LOperand* context = UseFixed(instr->context(), cp); 1046 LOperand* context = UseFixed(instr->context(), cp);
1047 return MarkAsCall(new(zone()) LDeclareGlobals(context), instr); 1047 return MarkAsCall(new(zone()) LDeclareGlobals(context), instr);
1048 } 1048 }
1049 1049
1050 1050
1051 LInstruction* LChunkBuilder::DoGlobalObject(HGlobalObject* instr) {
1052 LOperand* context = UseRegisterAtStart(instr->value());
1053 return DefineAsRegister(new(zone()) LGlobalObject(context));
1054 }
1055
1056
1057 LInstruction* LChunkBuilder::DoGlobalReceiver(HGlobalReceiver* instr) {
1058 LOperand* global_object = UseRegisterAtStart(instr->value());
1059 return DefineAsRegister(new(zone()) LGlobalReceiver(global_object));
1060 }
1061
1062
1063 LInstruction* LChunkBuilder::DoCallJSFunction( 1051 LInstruction* LChunkBuilder::DoCallJSFunction(
1064 HCallJSFunction* instr) { 1052 HCallJSFunction* instr) {
1065 LOperand* function = UseFixed(instr->function(), r1); 1053 LOperand* function = UseFixed(instr->function(), r1);
1066 1054
1067 LCallJSFunction* result = new(zone()) LCallJSFunction(function); 1055 LCallJSFunction* result = new(zone()) LCallJSFunction(function);
1068 1056
1069 return MarkAsCall(DefineFixed(result, r0), instr); 1057 return MarkAsCall(DefineFixed(result, r0), instr);
1070 } 1058 }
1071 1059
1072 1060
(...skipping 1432 matching lines...) Expand 10 before | Expand all | Expand 10 after
2505 } 2493 }
2506 2494
2507 2495
2508 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2496 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2509 LOperand* object = UseRegister(instr->object()); 2497 LOperand* object = UseRegister(instr->object());
2510 LOperand* index = UseRegister(instr->index()); 2498 LOperand* index = UseRegister(instr->index());
2511 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); 2499 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index));
2512 } 2500 }
2513 2501
2514 } } // namespace v8::internal 2502 } } // 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