| 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 1664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1675 }; | 1675 }; |
| 1676 | 1676 |
| 1677 | 1677 |
| 1678 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { | 1678 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { |
| 1679 public: | 1679 public: |
| 1680 explicit LNumberUntagD(LOperand* value) { | 1680 explicit LNumberUntagD(LOperand* value) { |
| 1681 inputs_[0] = value; | 1681 inputs_[0] = value; |
| 1682 } | 1682 } |
| 1683 | 1683 |
| 1684 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") | 1684 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") |
| 1685 DECLARE_HYDROGEN_ACCESSOR(Change) |
| 1685 }; | 1686 }; |
| 1686 | 1687 |
| 1687 | 1688 |
| 1688 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { | 1689 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { |
| 1689 public: | 1690 public: |
| 1690 LSmiUntag(LOperand* value, bool needs_check) | 1691 LSmiUntag(LOperand* value, bool needs_check) |
| 1691 : needs_check_(needs_check) { | 1692 : needs_check_(needs_check) { |
| 1692 inputs_[0] = value; | 1693 inputs_[0] = value; |
| 1693 } | 1694 } |
| 1694 | 1695 |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2339 | 2340 |
| 2340 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2341 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2341 }; | 2342 }; |
| 2342 | 2343 |
| 2343 #undef DECLARE_HYDROGEN_ACCESSOR | 2344 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2344 #undef DECLARE_CONCRETE_INSTRUCTION | 2345 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2345 | 2346 |
| 2346 } } // namespace v8::internal | 2347 } } // namespace v8::internal |
| 2347 | 2348 |
| 2348 #endif // V8_ARM_LITHIUM_ARM_H_ | 2349 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |