| 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 1654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1665 }; | 1665 }; |
| 1666 | 1666 |
| 1667 | 1667 |
| 1668 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { | 1668 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { |
| 1669 public: | 1669 public: |
| 1670 explicit LNumberUntagD(LOperand* value) { | 1670 explicit LNumberUntagD(LOperand* value) { |
| 1671 inputs_[0] = value; | 1671 inputs_[0] = value; |
| 1672 } | 1672 } |
| 1673 | 1673 |
| 1674 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") | 1674 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") |
| 1675 DECLARE_HYDROGEN_ACCESSOR(Change); |
| 1675 }; | 1676 }; |
| 1676 | 1677 |
| 1677 | 1678 |
| 1678 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { | 1679 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { |
| 1679 public: | 1680 public: |
| 1680 LSmiUntag(LOperand* value, bool needs_check) | 1681 LSmiUntag(LOperand* value, bool needs_check) |
| 1681 : needs_check_(needs_check) { | 1682 : needs_check_(needs_check) { |
| 1682 inputs_[0] = value; | 1683 inputs_[0] = value; |
| 1683 } | 1684 } |
| 1684 | 1685 |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2324 | 2325 |
| 2325 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2326 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2326 }; | 2327 }; |
| 2327 | 2328 |
| 2328 #undef DECLARE_HYDROGEN_ACCESSOR | 2329 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2329 #undef DECLARE_CONCRETE_INSTRUCTION | 2330 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2330 | 2331 |
| 2331 } } // namespace v8::int | 2332 } } // namespace v8::int |
| 2332 | 2333 |
| 2333 #endif // V8_X64_LITHIUM_X64_H_ | 2334 #endif // V8_X64_LITHIUM_X64_H_ |
| OLD | NEW |