| 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 ToBooleanStub::Types expected = instr->expected_input_types(); | 1042 ToBooleanStub::Types expected = instr->expected_input_types(); |
| 1043 // We need a temporary register when we have to access the map *or* we have | 1043 // We need a temporary register when we have to access the map *or* we have |
| 1044 // no type info yet, in which case we handle all cases (including the ones | 1044 // no type info yet, in which case we handle all cases (including the ones |
| 1045 // involving maps). | 1045 // involving maps). |
| 1046 bool needs_temp = expected.NeedsMap() || expected.IsEmpty(); | 1046 bool needs_temp = expected.NeedsMap() || expected.IsEmpty(); |
| 1047 LOperand* temp = needs_temp ? TempRegister() : NULL; | 1047 LOperand* temp = needs_temp ? TempRegister() : NULL; |
| 1048 return AssignEnvironment(new(zone()) LBranch(UseRegister(value), temp)); | 1048 return AssignEnvironment(new(zone()) LBranch(UseRegister(value), temp)); |
| 1049 } | 1049 } |
| 1050 | 1050 |
| 1051 | 1051 |
| 1052 LInstruction* LChunkBuilder::DoDebugBreak(HDebugBreak* instr) { |
| 1053 return new(zone()) LDebugBreak(); |
| 1054 } |
| 1055 |
| 1056 |
| 1052 LInstruction* LChunkBuilder::DoCompareMap(HCompareMap* instr) { | 1057 LInstruction* LChunkBuilder::DoCompareMap(HCompareMap* instr) { |
| 1053 ASSERT(instr->value()->representation().IsTagged()); | 1058 ASSERT(instr->value()->representation().IsTagged()); |
| 1054 LOperand* value = UseRegisterAtStart(instr->value()); | 1059 LOperand* value = UseRegisterAtStart(instr->value()); |
| 1055 return new(zone()) LCmpMapAndBranch(value); | 1060 return new(zone()) LCmpMapAndBranch(value); |
| 1056 } | 1061 } |
| 1057 | 1062 |
| 1058 | 1063 |
| 1059 LInstruction* LChunkBuilder::DoArgumentsLength(HArgumentsLength* length) { | 1064 LInstruction* LChunkBuilder::DoArgumentsLength(HArgumentsLength* length) { |
| 1060 info()->MarkAsRequiresFrame(); | 1065 info()->MarkAsRequiresFrame(); |
| 1061 return DefineAsRegister(new(zone()) LArgumentsLength(Use(length->value()))); | 1066 return DefineAsRegister(new(zone()) LArgumentsLength(Use(length->value()))); |
| (...skipping 1691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2753 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2758 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2754 LOperand* object = UseRegister(instr->object()); | 2759 LOperand* object = UseRegister(instr->object()); |
| 2755 LOperand* index = UseTempRegister(instr->index()); | 2760 LOperand* index = UseTempRegister(instr->index()); |
| 2756 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2761 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2757 } | 2762 } |
| 2758 | 2763 |
| 2759 | 2764 |
| 2760 } } // namespace v8::internal | 2765 } } // namespace v8::internal |
| 2761 | 2766 |
| 2762 #endif // V8_TARGET_ARCH_IA32 | 2767 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |