| 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 2196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2207 F(IsRegExp) \ | 2207 F(IsRegExp) \ |
| 2208 F(IsJSProxy) \ | 2208 F(IsJSProxy) \ |
| 2209 F(Call) \ | 2209 F(Call) \ |
| 2210 F(ValueOf) \ | 2210 F(ValueOf) \ |
| 2211 F(SetValueOf) \ | 2211 F(SetValueOf) \ |
| 2212 F(IsDate) \ | 2212 F(IsDate) \ |
| 2213 F(StringCharFromCode) \ | 2213 F(StringCharFromCode) \ |
| 2214 F(StringCharAt) \ | 2214 F(StringCharAt) \ |
| 2215 F(OneByteSeqStringSetChar) \ | 2215 F(OneByteSeqStringSetChar) \ |
| 2216 F(TwoByteSeqStringSetChar) \ | 2216 F(TwoByteSeqStringSetChar) \ |
| 2217 F(ObjectEquals) \ | |
| 2218 F(ToInteger) \ | 2217 F(ToInteger) \ |
| 2219 F(ToName) \ | 2218 F(ToName) \ |
| 2220 F(ToObject) \ | 2219 F(ToObject) \ |
| 2221 F(ToString) \ | 2220 F(ToString) \ |
| 2222 F(ToLength) \ | 2221 F(ToLength) \ |
| 2223 F(ToNumber) \ | 2222 F(ToNumber) \ |
| 2224 F(IsJSReceiver) \ | 2223 F(IsJSReceiver) \ |
| 2225 F(MathPow) \ | 2224 F(MathPow) \ |
| 2226 F(HasCachedArrayIndex) \ | 2225 F(HasCachedArrayIndex) \ |
| 2227 F(GetCachedArrayIndex) \ | 2226 F(GetCachedArrayIndex) \ |
| (...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3051 | 3050 |
| 3052 private: | 3051 private: |
| 3053 HGraphBuilder* builder_; | 3052 HGraphBuilder* builder_; |
| 3054 }; | 3053 }; |
| 3055 | 3054 |
| 3056 | 3055 |
| 3057 } // namespace internal | 3056 } // namespace internal |
| 3058 } // namespace v8 | 3057 } // namespace v8 |
| 3059 | 3058 |
| 3060 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3059 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
| OLD | NEW |