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/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
(...skipping 2179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2190 F(SetValueOf) \ | 2190 F(SetValueOf) \ |
2191 F(IsDate) \ | 2191 F(IsDate) \ |
2192 F(DateField) \ | 2192 F(DateField) \ |
2193 F(ThrowNotDateError) \ | 2193 F(ThrowNotDateError) \ |
2194 F(StringCharFromCode) \ | 2194 F(StringCharFromCode) \ |
2195 F(StringCharAt) \ | 2195 F(StringCharAt) \ |
2196 F(OneByteSeqStringSetChar) \ | 2196 F(OneByteSeqStringSetChar) \ |
2197 F(TwoByteSeqStringSetChar) \ | 2197 F(TwoByteSeqStringSetChar) \ |
2198 F(ObjectEquals) \ | 2198 F(ObjectEquals) \ |
2199 F(IsObject) \ | 2199 F(IsObject) \ |
| 2200 F(ToObject) \ |
2200 F(IsFunction) \ | 2201 F(IsFunction) \ |
2201 F(IsUndetectableObject) \ | 2202 F(IsUndetectableObject) \ |
2202 F(IsSpecObject) \ | 2203 F(IsSpecObject) \ |
2203 F(MathPow) \ | 2204 F(MathPow) \ |
2204 F(IsMinusZero) \ | 2205 F(IsMinusZero) \ |
2205 F(HasCachedArrayIndex) \ | 2206 F(HasCachedArrayIndex) \ |
2206 F(GetCachedArrayIndex) \ | 2207 F(GetCachedArrayIndex) \ |
2207 F(FastOneByteArrayJoin) \ | 2208 F(FastOneByteArrayJoin) \ |
2208 F(DebugBreakInOptimizedCode) \ | 2209 F(DebugBreakInOptimizedCode) \ |
2209 F(StringCharCodeAt) \ | 2210 F(StringCharCodeAt) \ |
(...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3042 } | 3043 } |
3043 | 3044 |
3044 private: | 3045 private: |
3045 HGraphBuilder* builder_; | 3046 HGraphBuilder* builder_; |
3046 }; | 3047 }; |
3047 | 3048 |
3048 | 3049 |
3049 } } // namespace v8::internal | 3050 } } // namespace v8::internal |
3050 | 3051 |
3051 #endif // V8_HYDROGEN_H_ | 3052 #endif // V8_HYDROGEN_H_ |
OLD | NEW |