| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
| 6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
| 7 | 7 |
| 8 #include "src/accessors.h" | 8 #include "src/accessors.h" |
| 9 #include "src/allocation.h" | 9 #include "src/allocation.h" |
| 10 #include "src/ast.h" | 10 #include "src/ast.h" |
| (...skipping 2179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2190 F(ValueOf) \ | 2190 F(ValueOf) \ |
| 2191 F(SetValueOf) \ | 2191 F(SetValueOf) \ |
| 2192 F(IsDate) \ | 2192 F(IsDate) \ |
| 2193 F(DateField) \ | 2193 F(DateField) \ |
| 2194 F(ThrowNotDateError) \ | 2194 F(ThrowNotDateError) \ |
| 2195 F(StringCharFromCode) \ | 2195 F(StringCharFromCode) \ |
| 2196 F(StringCharAt) \ | 2196 F(StringCharAt) \ |
| 2197 F(OneByteSeqStringSetChar) \ | 2197 F(OneByteSeqStringSetChar) \ |
| 2198 F(TwoByteSeqStringSetChar) \ | 2198 F(TwoByteSeqStringSetChar) \ |
| 2199 F(ObjectEquals) \ | 2199 F(ObjectEquals) \ |
| 2200 F(IsObject) \ | |
| 2201 F(ToObject) \ | 2200 F(ToObject) \ |
| 2202 F(IsFunction) \ | 2201 F(IsFunction) \ |
| 2203 F(IsSpecObject) \ | 2202 F(IsSpecObject) \ |
| 2204 F(MathPow) \ | 2203 F(MathPow) \ |
| 2205 F(IsMinusZero) \ | 2204 F(IsMinusZero) \ |
| 2206 F(HasCachedArrayIndex) \ | 2205 F(HasCachedArrayIndex) \ |
| 2207 F(GetCachedArrayIndex) \ | 2206 F(GetCachedArrayIndex) \ |
| 2208 F(FastOneByteArrayJoin) \ | 2207 F(FastOneByteArrayJoin) \ |
| 2209 F(DebugBreakInOptimizedCode) \ | 2208 F(DebugBreakInOptimizedCode) \ |
| 2210 F(StringCharCodeAt) \ | 2209 F(StringCharCodeAt) \ |
| (...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3044 } | 3043 } |
| 3045 | 3044 |
| 3046 private: | 3045 private: |
| 3047 HGraphBuilder* builder_; | 3046 HGraphBuilder* builder_; |
| 3048 }; | 3047 }; |
| 3049 | 3048 |
| 3050 | 3049 |
| 3051 } } // namespace v8::internal | 3050 } } // namespace v8::internal |
| 3052 | 3051 |
| 3053 #endif // V8_HYDROGEN_H_ | 3052 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |