| 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 1565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1576 }; | 1576 }; |
| 1577 | 1577 |
| 1578 | 1578 |
| 1579 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { | 1579 class LNumberUntagD: public LTemplateInstruction<1, 1, 0> { |
| 1580 public: | 1580 public: |
| 1581 explicit LNumberUntagD(LOperand* value) { | 1581 explicit LNumberUntagD(LOperand* value) { |
| 1582 inputs_[0] = value; | 1582 inputs_[0] = value; |
| 1583 } | 1583 } |
| 1584 | 1584 |
| 1585 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") | 1585 DECLARE_CONCRETE_INSTRUCTION(NumberUntagD, "double-untag") |
| 1586 DECLARE_HYDROGEN_ACCESSOR(Change) |
| 1586 }; | 1587 }; |
| 1587 | 1588 |
| 1588 | 1589 |
| 1589 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { | 1590 class LSmiUntag: public LTemplateInstruction<1, 1, 0> { |
| 1590 public: | 1591 public: |
| 1591 LSmiUntag(LOperand* value, bool needs_check) | 1592 LSmiUntag(LOperand* value, bool needs_check) |
| 1592 : needs_check_(needs_check) { | 1593 : needs_check_(needs_check) { |
| 1593 inputs_[0] = value; | 1594 inputs_[0] = value; |
| 1594 } | 1595 } |
| 1595 | 1596 |
| (...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2173 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2174 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2174 }; | 2175 }; |
| 2175 | 2176 |
| 2176 #undef DECLARE_HYDROGEN_ACCESSOR | 2177 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2177 #undef DECLARE_INSTRUCTION | 2178 #undef DECLARE_INSTRUCTION |
| 2178 #undef DECLARE_CONCRETE_INSTRUCTION | 2179 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2179 | 2180 |
| 2180 } } // namespace v8::internal | 2181 } } // namespace v8::internal |
| 2181 | 2182 |
| 2182 #endif // V8_ARM_LITHIUM_ARM_H_ | 2183 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |