| 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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 HValue* RedefinedOperand() { | 775 HValue* RedefinedOperand() { |
| 776 int index = RedefinedOperandIndex(); | 776 int index = RedefinedOperandIndex(); |
| 777 return index == kNoRedefinedOperand ? NULL : OperandAt(index); | 777 return index == kNoRedefinedOperand ? NULL : OperandAt(index); |
| 778 } | 778 } |
| 779 | 779 |
| 780 // A purely informative definition is an idef that will not emit code and | 780 // A purely informative definition is an idef that will not emit code and |
| 781 // should therefore be removed from the graph in the RestoreActualValues | 781 // should therefore be removed from the graph in the RestoreActualValues |
| 782 // phase (so that live ranges will be shorter). | 782 // phase (so that live ranges will be shorter). |
| 783 virtual bool IsPurelyInformativeDefinition() { return false; } | 783 virtual bool IsPurelyInformativeDefinition() { return false; } |
| 784 | 784 |
| 785 // This method must always return the original HValue SSA definition | 785 // This method must always return the original HValue SSA definition, |
| 786 // (regardless of any iDef of this value). | 786 // regardless of any chain of iDefs of this value. |
| 787 HValue* ActualValue() { | 787 HValue* ActualValue() { |
| 788 int index = RedefinedOperandIndex(); | 788 HValue* value = this; |
| 789 return index == kNoRedefinedOperand ? this : OperandAt(index); | 789 int index; |
| 790 while ((index = value->RedefinedOperandIndex()) != kNoRedefinedOperand) { |
| 791 value = value->OperandAt(index); |
| 792 } |
| 793 return value; |
| 790 } | 794 } |
| 791 | 795 |
| 792 bool IsInteger32Constant(); | 796 bool IsInteger32Constant(); |
| 793 int32_t GetInteger32Constant(); | 797 int32_t GetInteger32Constant(); |
| 794 bool EqualsInteger32Constant(int32_t value); | 798 bool EqualsInteger32Constant(int32_t value); |
| 795 | 799 |
| 796 bool IsDefinedAfter(HBasicBlock* other) const; | 800 bool IsDefinedAfter(HBasicBlock* other) const; |
| 797 | 801 |
| 798 // Operands. | 802 // Operands. |
| 799 virtual int OperandCount() = 0; | 803 virtual int OperandCount() = 0; |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1296 : reason_(reason), type_(type) {} | 1300 : reason_(reason), type_(type) {} |
| 1297 | 1301 |
| 1298 const char* reason_; | 1302 const char* reason_; |
| 1299 Deoptimizer::BailoutType type_; | 1303 Deoptimizer::BailoutType type_; |
| 1300 }; | 1304 }; |
| 1301 | 1305 |
| 1302 | 1306 |
| 1303 // Inserts an int3/stop break instruction for debugging purposes. | 1307 // Inserts an int3/stop break instruction for debugging purposes. |
| 1304 class HDebugBreak V8_FINAL : public HTemplateInstruction<0> { | 1308 class HDebugBreak V8_FINAL : public HTemplateInstruction<0> { |
| 1305 public: | 1309 public: |
| 1310 DECLARE_INSTRUCTION_FACTORY_P0(HDebugBreak); |
| 1311 |
| 1306 virtual Representation RequiredInputRepresentation(int index) V8_OVERRIDE { | 1312 virtual Representation RequiredInputRepresentation(int index) V8_OVERRIDE { |
| 1307 return Representation::None(); | 1313 return Representation::None(); |
| 1308 } | 1314 } |
| 1309 | 1315 |
| 1310 DECLARE_CONCRETE_INSTRUCTION(DebugBreak) | 1316 DECLARE_CONCRETE_INSTRUCTION(DebugBreak) |
| 1311 }; | 1317 }; |
| 1312 | 1318 |
| 1313 | 1319 |
| 1314 class HGoto V8_FINAL : public HTemplateControlInstruction<1, 0> { | 1320 class HGoto V8_FINAL : public HTemplateControlInstruction<1, 0> { |
| 1315 public: | 1321 public: |
| (...skipping 5653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6969 virtual bool IsDeletable() const V8_OVERRIDE { return true; } | 6975 virtual bool IsDeletable() const V8_OVERRIDE { return true; } |
| 6970 }; | 6976 }; |
| 6971 | 6977 |
| 6972 | 6978 |
| 6973 #undef DECLARE_INSTRUCTION | 6979 #undef DECLARE_INSTRUCTION |
| 6974 #undef DECLARE_CONCRETE_INSTRUCTION | 6980 #undef DECLARE_CONCRETE_INSTRUCTION |
| 6975 | 6981 |
| 6976 } } // namespace v8::internal | 6982 } } // namespace v8::internal |
| 6977 | 6983 |
| 6978 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 6984 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
| OLD | NEW |