| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 1617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1628 }; | 1628 }; |
| 1629 | 1629 |
| 1630 | 1630 |
| 1631 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { | 1631 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { |
| 1632 public: | 1632 public: |
| 1633 explicit LNumberUntagD(LOperand* value) { | 1633 explicit LNumberUntagD(LOperand* value) { |
| 1634 inputs_[0] = value; | 1634 inputs_[0] = value; |
| 1635 } | 1635 } |
| 1636 | 1636 |
| 1637 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") | 1637 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") |
| 1638 DECLARE_HYDROGEN_ACCESSOR(Change); |
| 1638 }; | 1639 }; |
| 1639 | 1640 |
| 1640 | 1641 |
| 1641 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { | 1642 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { |
| 1642 public: | 1643 public: |
| 1643 LSmiUntag(LOperand* value, bool needs_check) | 1644 LSmiUntag(LOperand* value, bool needs_check) |
| 1644 : needs_check_(needs_check) { | 1645 : needs_check_(needs_check) { |
| 1645 inputs_[0] = value; | 1646 inputs_[0] = value; |
| 1646 } | 1647 } |
| 1647 | 1648 |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2230 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2231 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2231 }; | 2232 }; |
| 2232 | 2233 |
| 2233 #undef DECLARE_HYDROGEN_ACCESSOR | 2234 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2234 #undef DECLARE_INSTRUCTION | 2235 #undef DECLARE_INSTRUCTION |
| 2235 #undef DECLARE_CONCRETE_INSTRUCTION | 2236 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2236 | 2237 |
| 2237 } } // namespace v8::internal | 2238 } } // namespace v8::internal |
| 2238 | 2239 |
| 2239 #endif // V8_IA32_LITHIUM_IA32_H_ | 2240 #endif // V8_IA32_LITHIUM_IA32_H_ |
| OLD | NEW |