| OLD | NEW |
| 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 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 if (instr->HasNoUses()) return NULL; | 1042 if (instr->HasNoUses()) return NULL; |
| 1043 | 1043 |
| 1044 if (info()->IsStub()) { | 1044 if (info()->IsStub()) { |
| 1045 return DefineFixed(new(zone()) LContext, rsi); | 1045 return DefineFixed(new(zone()) LContext, rsi); |
| 1046 } | 1046 } |
| 1047 | 1047 |
| 1048 return DefineAsRegister(new(zone()) LContext); | 1048 return DefineAsRegister(new(zone()) LContext); |
| 1049 } | 1049 } |
| 1050 | 1050 |
| 1051 | 1051 |
| 1052 LInstruction* LChunkBuilder::DoOuterContext(HOuterContext* instr) { | |
| 1053 LOperand* context = UseRegisterAtStart(instr->value()); | |
| 1054 return DefineAsRegister(new(zone()) LOuterContext(context)); | |
| 1055 } | |
| 1056 | |
| 1057 | |
| 1058 LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) { | 1052 LInstruction* LChunkBuilder::DoDeclareGlobals(HDeclareGlobals* instr) { |
| 1059 LOperand* context = UseFixed(instr->context(), rsi); | 1053 LOperand* context = UseFixed(instr->context(), rsi); |
| 1060 return MarkAsCall(new(zone()) LDeclareGlobals(context), instr); | 1054 return MarkAsCall(new(zone()) LDeclareGlobals(context), instr); |
| 1061 } | 1055 } |
| 1062 | 1056 |
| 1063 | 1057 |
| 1064 LInstruction* LChunkBuilder::DoGlobalObject(HGlobalObject* instr) { | 1058 LInstruction* LChunkBuilder::DoGlobalObject(HGlobalObject* instr) { |
| 1065 LOperand* context = UseRegisterAtStart(instr->value()); | 1059 LOperand* context = UseRegisterAtStart(instr->value()); |
| 1066 return DefineAsRegister(new(zone()) LGlobalObject(context)); | 1060 return DefineAsRegister(new(zone()) LGlobalObject(context)); |
| 1067 } | 1061 } |
| (...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2470 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2464 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2471 LOperand* object = UseRegister(instr->object()); | 2465 LOperand* object = UseRegister(instr->object()); |
| 2472 LOperand* index = UseTempRegister(instr->index()); | 2466 LOperand* index = UseTempRegister(instr->index()); |
| 2473 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2467 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2474 } | 2468 } |
| 2475 | 2469 |
| 2476 | 2470 |
| 2477 } } // namespace v8::internal | 2471 } } // namespace v8::internal |
| 2478 | 2472 |
| 2479 #endif // V8_TARGET_ARCH_X64 | 2473 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |