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 2165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2176 F(IsSmi) \ | 2176 F(IsSmi) \ |
2177 F(IsArray) \ | 2177 F(IsArray) \ |
2178 F(IsRegExp) \ | 2178 F(IsRegExp) \ |
2179 F(IsJSProxy) \ | 2179 F(IsJSProxy) \ |
2180 F(IsConstructCall) \ | 2180 F(IsConstructCall) \ |
2181 F(CallFunction) \ | 2181 F(CallFunction) \ |
2182 F(ArgumentsLength) \ | 2182 F(ArgumentsLength) \ |
2183 F(Arguments) \ | 2183 F(Arguments) \ |
2184 F(ValueOf) \ | 2184 F(ValueOf) \ |
2185 F(SetValueOf) \ | 2185 F(SetValueOf) \ |
| 2186 F(ThrowIfNotADate) \ |
2186 F(DateField) \ | 2187 F(DateField) \ |
2187 F(StringCharFromCode) \ | 2188 F(StringCharFromCode) \ |
2188 F(StringCharAt) \ | 2189 F(StringCharAt) \ |
2189 F(OneByteSeqStringSetChar) \ | 2190 F(OneByteSeqStringSetChar) \ |
2190 F(TwoByteSeqStringSetChar) \ | 2191 F(TwoByteSeqStringSetChar) \ |
2191 F(ObjectEquals) \ | 2192 F(ObjectEquals) \ |
2192 F(IsObject) \ | 2193 F(IsObject) \ |
2193 F(IsFunction) \ | 2194 F(IsFunction) \ |
2194 F(IsUndetectableObject) \ | 2195 F(IsUndetectableObject) \ |
2195 F(IsSpecObject) \ | 2196 F(IsSpecObject) \ |
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3045 } | 3046 } |
3046 | 3047 |
3047 private: | 3048 private: |
3048 HGraphBuilder* builder_; | 3049 HGraphBuilder* builder_; |
3049 }; | 3050 }; |
3050 | 3051 |
3051 | 3052 |
3052 } } // namespace v8::internal | 3053 } } // namespace v8::internal |
3053 | 3054 |
3054 #endif // V8_HYDROGEN_H_ | 3055 #endif // V8_HYDROGEN_H_ |
OLD | NEW |