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_CRANKSHAFT_HYDROGEN_H_ | 5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_ |
6 #define V8_CRANKSHAFT_HYDROGEN_H_ | 6 #define V8_CRANKSHAFT_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/ast.h" | 10 #include "src/ast/ast.h" |
(...skipping 2187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2198 F(IsArray) \ | 2198 F(IsArray) \ |
2199 F(IsTypedArray) \ | 2199 F(IsTypedArray) \ |
2200 F(IsRegExp) \ | 2200 F(IsRegExp) \ |
2201 F(IsJSProxy) \ | 2201 F(IsJSProxy) \ |
2202 F(Call) \ | 2202 F(Call) \ |
2203 F(ArgumentsLength) \ | 2203 F(ArgumentsLength) \ |
2204 F(Arguments) \ | 2204 F(Arguments) \ |
2205 F(ValueOf) \ | 2205 F(ValueOf) \ |
2206 F(SetValueOf) \ | 2206 F(SetValueOf) \ |
2207 F(IsDate) \ | 2207 F(IsDate) \ |
2208 F(DateField) \ | |
2209 F(ThrowNotDateError) \ | |
2210 F(StringCharFromCode) \ | 2208 F(StringCharFromCode) \ |
2211 F(StringCharAt) \ | 2209 F(StringCharAt) \ |
2212 F(OneByteSeqStringSetChar) \ | 2210 F(OneByteSeqStringSetChar) \ |
2213 F(TwoByteSeqStringSetChar) \ | 2211 F(TwoByteSeqStringSetChar) \ |
2214 F(ObjectEquals) \ | 2212 F(ObjectEquals) \ |
2215 F(ToInteger) \ | 2213 F(ToInteger) \ |
2216 F(ToObject) \ | 2214 F(ToObject) \ |
2217 F(ToString) \ | 2215 F(ToString) \ |
2218 F(ToLength) \ | 2216 F(ToLength) \ |
2219 F(ToNumber) \ | 2217 F(ToNumber) \ |
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3059 | 3057 |
3060 private: | 3058 private: |
3061 HGraphBuilder* builder_; | 3059 HGraphBuilder* builder_; |
3062 }; | 3060 }; |
3063 | 3061 |
3064 | 3062 |
3065 } // namespace internal | 3063 } // namespace internal |
3066 } // namespace v8 | 3064 } // namespace v8 |
3067 | 3065 |
3068 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3066 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |