| 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-type-bounds.h" | 10 #include "src/ast/ast-type-bounds.h" |
| (...skipping 2180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2191 F(IsRegExp) \ | 2191 F(IsRegExp) \ |
| 2192 F(IsJSProxy) \ | 2192 F(IsJSProxy) \ |
| 2193 F(Call) \ | 2193 F(Call) \ |
| 2194 F(NewObject) \ | 2194 F(NewObject) \ |
| 2195 F(ToInteger) \ | 2195 F(ToInteger) \ |
| 2196 F(ToObject) \ | 2196 F(ToObject) \ |
| 2197 F(ToString) \ | 2197 F(ToString) \ |
| 2198 F(ToLength) \ | 2198 F(ToLength) \ |
| 2199 F(ToNumber) \ | 2199 F(ToNumber) \ |
| 2200 F(IsJSReceiver) \ | 2200 F(IsJSReceiver) \ |
| 2201 F(HasCachedArrayIndex) \ | |
| 2202 F(GetCachedArrayIndex) \ | |
| 2203 F(DebugBreakInOptimizedCode) \ | 2201 F(DebugBreakInOptimizedCode) \ |
| 2204 F(StringCharCodeAt) \ | 2202 F(StringCharCodeAt) \ |
| 2205 F(SubString) \ | 2203 F(SubString) \ |
| 2206 F(RegExpExec) \ | 2204 F(RegExpExec) \ |
| 2207 F(RegExpConstructResult) \ | 2205 F(RegExpConstructResult) \ |
| 2208 F(RegExpFlags) \ | 2206 F(RegExpFlags) \ |
| 2209 F(RegExpSource) \ | 2207 F(RegExpSource) \ |
| 2210 F(NumberToString) \ | 2208 F(NumberToString) \ |
| 2211 F(DebugIsActive) \ | 2209 F(DebugIsActive) \ |
| 2212 /* Typed Arrays */ \ | 2210 /* Typed Arrays */ \ |
| (...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3017 } | 3015 } |
| 3018 | 3016 |
| 3019 private: | 3017 private: |
| 3020 HOptimizedGraphBuilder* builder_; | 3018 HOptimizedGraphBuilder* builder_; |
| 3021 }; | 3019 }; |
| 3022 | 3020 |
| 3023 } // namespace internal | 3021 } // namespace internal |
| 3024 } // namespace v8 | 3022 } // namespace v8 |
| 3025 | 3023 |
| 3026 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3024 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
| OLD | NEW |