| 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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 class LParameter: public LInstruction { | 438 class LParameter: public LInstruction { |
| 439 public: | 439 public: |
| 440 DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter") | 440 DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter") |
| 441 }; | 441 }; |
| 442 | 442 |
| 443 | 443 |
| 444 class LCallStub: public LInstruction { | 444 class LCallStub: public LInstruction { |
| 445 public: | 445 public: |
| 446 DECLARE_CONCRETE_INSTRUCTION(CallStub, "call-stub") | 446 DECLARE_CONCRETE_INSTRUCTION(CallStub, "call-stub") |
| 447 DECLARE_HYDROGEN_ACCESSOR(CallStub) | 447 DECLARE_HYDROGEN_ACCESSOR(CallStub) |
| 448 |
| 449 TranscendentalCache::Type transcendental_type() { |
| 450 return hydrogen()->transcendental_type(); |
| 451 } |
| 448 }; | 452 }; |
| 449 | 453 |
| 450 | 454 |
| 451 class LUnknownOSRValue: public LInstruction { | 455 class LUnknownOSRValue: public LInstruction { |
| 452 public: | 456 public: |
| 453 DECLARE_CONCRETE_INSTRUCTION(UnknownOSRValue, "unknown-osr-value") | 457 DECLARE_CONCRETE_INSTRUCTION(UnknownOSRValue, "unknown-osr-value") |
| 454 }; | 458 }; |
| 455 | 459 |
| 456 | 460 |
| 457 class LUnaryOperation: public LInstruction { | 461 class LUnaryOperation: public LInstruction { |
| (...skipping 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2080 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2084 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2081 }; | 2085 }; |
| 2082 | 2086 |
| 2083 #undef DECLARE_HYDROGEN_ACCESSOR | 2087 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2084 #undef DECLARE_INSTRUCTION | 2088 #undef DECLARE_INSTRUCTION |
| 2085 #undef DECLARE_CONCRETE_INSTRUCTION | 2089 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2086 | 2090 |
| 2087 } } // namespace v8::internal | 2091 } } // namespace v8::internal |
| 2088 | 2092 |
| 2089 #endif // V8_ARM_LITHIUM_ARM_H_ | 2093 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |