| 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 1730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1741 LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch( | 1741 LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch( |
| 1742 HCompareObjectEqAndBranch* instr) { | 1742 HCompareObjectEqAndBranch* instr) { |
| 1743 LOperand* left = UseRegisterAtStart(instr->left()); | 1743 LOperand* left = UseRegisterAtStart(instr->left()); |
| 1744 LOperand* right = UseOrConstantAtStart(instr->right()); | 1744 LOperand* right = UseOrConstantAtStart(instr->right()); |
| 1745 return new(zone()) LCmpObjectEqAndBranch(left, right); | 1745 return new(zone()) LCmpObjectEqAndBranch(left, right); |
| 1746 } | 1746 } |
| 1747 | 1747 |
| 1748 | 1748 |
| 1749 LInstruction* LChunkBuilder::DoCompareHoleAndBranch( | 1749 LInstruction* LChunkBuilder::DoCompareHoleAndBranch( |
| 1750 HCompareHoleAndBranch* instr) { | 1750 HCompareHoleAndBranch* instr) { |
| 1751 LOperand* object = UseRegisterAtStart(instr->object()); | 1751 LOperand* value = UseRegisterAtStart(instr->value()); |
| 1752 return new(zone()) LCmpHoleAndBranch(object); | 1752 return new(zone()) LCmpHoleAndBranch(value); |
| 1753 } | 1753 } |
| 1754 | 1754 |
| 1755 | 1755 |
| 1756 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { | 1756 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { |
| 1757 ASSERT(instr->value()->representation().IsSmiOrTagged()); | 1757 ASSERT(instr->value()->representation().IsSmiOrTagged()); |
| 1758 LOperand* temp = TempRegister(); | 1758 LOperand* temp = TempRegister(); |
| 1759 return new(zone()) LIsObjectAndBranch(UseRegister(instr->value()), temp); | 1759 return new(zone()) LIsObjectAndBranch(UseRegister(instr->value()), temp); |
| 1760 } | 1760 } |
| 1761 | 1761 |
| 1762 | 1762 |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2017 return AssignEnvironment(new(zone()) LCheckNonSmi(value)); | 2017 return AssignEnvironment(new(zone()) LCheckNonSmi(value)); |
| 2018 } | 2018 } |
| 2019 | 2019 |
| 2020 | 2020 |
| 2021 LInstruction* LChunkBuilder::DoCheckSmi(HCheckSmi* instr) { | 2021 LInstruction* LChunkBuilder::DoCheckSmi(HCheckSmi* instr) { |
| 2022 LOperand* value = UseRegisterAtStart(instr->value()); | 2022 LOperand* value = UseRegisterAtStart(instr->value()); |
| 2023 return AssignEnvironment(new(zone()) LCheckSmi(value)); | 2023 return AssignEnvironment(new(zone()) LCheckSmi(value)); |
| 2024 } | 2024 } |
| 2025 | 2025 |
| 2026 | 2026 |
| 2027 LInstruction* LChunkBuilder::DoIsNumberAndBranch(HIsNumberAndBranch* instr) { | |
| 2028 return new(zone()) | |
| 2029 LIsNumberAndBranch(UseRegisterOrConstantAtStart(instr->value())); | |
| 2030 } | |
| 2031 | |
| 2032 | |
| 2033 LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) { | 2027 LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) { |
| 2034 LOperand* value = UseRegisterAtStart(instr->value()); | 2028 LOperand* value = UseRegisterAtStart(instr->value()); |
| 2035 LOperand* temp = TempRegister(); | 2029 LOperand* temp = TempRegister(); |
| 2036 LCheckInstanceType* result = new(zone()) LCheckInstanceType(value, temp); | 2030 LCheckInstanceType* result = new(zone()) LCheckInstanceType(value, temp); |
| 2037 return AssignEnvironment(result); | 2031 return AssignEnvironment(result); |
| 2038 } | 2032 } |
| 2039 | 2033 |
| 2040 | 2034 |
| 2041 LInstruction* LChunkBuilder::DoCheckValue(HCheckValue* instr) { | 2035 LInstruction* LChunkBuilder::DoCheckValue(HCheckValue* instr) { |
| 2042 // If the object is in new space, we'll emit a global cell compare and so | 2036 // If the object is in new space, we'll emit a global cell compare and so |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2201 | 2195 |
| 2202 | 2196 |
| 2203 LInstruction* LChunkBuilder::DoLoadFunctionPrototype( | 2197 LInstruction* LChunkBuilder::DoLoadFunctionPrototype( |
| 2204 HLoadFunctionPrototype* instr) { | 2198 HLoadFunctionPrototype* instr) { |
| 2205 return AssignEnvironment(DefineAsRegister( | 2199 return AssignEnvironment(DefineAsRegister( |
| 2206 new(zone()) LLoadFunctionPrototype(UseRegister(instr->function()), | 2200 new(zone()) LLoadFunctionPrototype(UseRegister(instr->function()), |
| 2207 TempRegister()))); | 2201 TempRegister()))); |
| 2208 } | 2202 } |
| 2209 | 2203 |
| 2210 | 2204 |
| 2205 LInstruction* LChunkBuilder::DoLoadRoot(HLoadRoot* instr) { |
| 2206 return DefineAsRegister(new(zone()) LLoadRoot); |
| 2207 } |
| 2208 |
| 2209 |
| 2211 LInstruction* LChunkBuilder::DoLoadExternalArrayPointer( | 2210 LInstruction* LChunkBuilder::DoLoadExternalArrayPointer( |
| 2212 HLoadExternalArrayPointer* instr) { | 2211 HLoadExternalArrayPointer* instr) { |
| 2213 LOperand* input = UseRegisterAtStart(instr->value()); | 2212 LOperand* input = UseRegisterAtStart(instr->value()); |
| 2214 return DefineAsRegister(new(zone()) LLoadExternalArrayPointer(input)); | 2213 return DefineAsRegister(new(zone()) LLoadExternalArrayPointer(input)); |
| 2215 } | 2214 } |
| 2216 | 2215 |
| 2217 | 2216 |
| 2218 LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { | 2217 LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) { |
| 2219 ASSERT(instr->key()->representation().IsSmiOrInteger32()); | 2218 ASSERT(instr->key()->representation().IsSmiOrInteger32()); |
| 2220 ElementsKind elements_kind = instr->elements_kind(); | 2219 ElementsKind elements_kind = instr->elements_kind(); |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2720 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2719 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
| 2721 LOperand* object = UseRegister(instr->object()); | 2720 LOperand* object = UseRegister(instr->object()); |
| 2722 LOperand* index = UseTempRegister(instr->index()); | 2721 LOperand* index = UseTempRegister(instr->index()); |
| 2723 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2722 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
| 2724 } | 2723 } |
| 2725 | 2724 |
| 2726 | 2725 |
| 2727 } } // namespace v8::internal | 2726 } } // namespace v8::internal |
| 2728 | 2727 |
| 2729 #endif // V8_TARGET_ARCH_IA32 | 2728 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |