| 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 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1722 }; | 1722 }; |
| 1723 | 1723 |
| 1724 | 1724 |
| 1725 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { | 1725 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { |
| 1726 public: | 1726 public: |
| 1727 explicit LNumberUntagD(LOperand* value) { | 1727 explicit LNumberUntagD(LOperand* value) { |
| 1728 inputs_[0] = value; | 1728 inputs_[0] = value; |
| 1729 } | 1729 } |
| 1730 | 1730 |
| 1731 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") | 1731 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") |
| 1732 DECLARE_HYDROGEN_ACCESSOR(Change); |
| 1732 }; | 1733 }; |
| 1733 | 1734 |
| 1734 | 1735 |
| 1735 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { | 1736 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { |
| 1736 public: | 1737 public: |
| 1737 LSmiUntag(LOperand* value, bool needs_check) | 1738 LSmiUntag(LOperand* value, bool needs_check) |
| 1738 : needs_check_(needs_check) { | 1739 : needs_check_(needs_check) { |
| 1739 inputs_[0] = value; | 1740 inputs_[0] = value; |
| 1740 } | 1741 } |
| 1741 | 1742 |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2387 | 2388 |
| 2388 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2389 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2389 }; | 2390 }; |
| 2390 | 2391 |
| 2391 #undef DECLARE_HYDROGEN_ACCESSOR | 2392 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2392 #undef DECLARE_CONCRETE_INSTRUCTION | 2393 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2393 | 2394 |
| 2394 } } // namespace v8::internal | 2395 } } // namespace v8::internal |
| 2395 | 2396 |
| 2396 #endif // V8_IA32_LITHIUM_IA32_H_ | 2397 #endif // V8_IA32_LITHIUM_IA32_H_ |
| OLD | NEW |