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 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2223 F(GetCachedArrayIndex) \ | 2223 F(GetCachedArrayIndex) \ |
2224 F(DebugBreakInOptimizedCode) \ | 2224 F(DebugBreakInOptimizedCode) \ |
2225 F(StringCharCodeAt) \ | 2225 F(StringCharCodeAt) \ |
2226 F(SubString) \ | 2226 F(SubString) \ |
2227 F(RegExpExec) \ | 2227 F(RegExpExec) \ |
2228 F(RegExpConstructResult) \ | 2228 F(RegExpConstructResult) \ |
2229 F(RegExpFlags) \ | 2229 F(RegExpFlags) \ |
2230 F(RegExpSource) \ | 2230 F(RegExpSource) \ |
2231 F(NumberToString) \ | 2231 F(NumberToString) \ |
2232 F(DebugIsActive) \ | 2232 F(DebugIsActive) \ |
| 2233 F(GetOrdinaryHasInstance) \ |
2233 /* Typed Arrays */ \ | 2234 /* Typed Arrays */ \ |
2234 F(TypedArrayInitialize) \ | 2235 F(TypedArrayInitialize) \ |
2235 F(MaxSmi) \ | 2236 F(MaxSmi) \ |
2236 F(TypedArrayMaxSizeInHeap) \ | 2237 F(TypedArrayMaxSizeInHeap) \ |
2237 F(ArrayBufferViewGetByteLength) \ | 2238 F(ArrayBufferViewGetByteLength) \ |
2238 F(ArrayBufferViewGetByteOffset) \ | 2239 F(ArrayBufferViewGetByteOffset) \ |
2239 F(TypedArrayGetLength) \ | 2240 F(TypedArrayGetLength) \ |
2240 /* ArrayBuffer */ \ | 2241 /* ArrayBuffer */ \ |
2241 F(ArrayBufferGetByteLength) \ | 2242 F(ArrayBufferGetByteLength) \ |
2242 /* Maths */ \ | 2243 /* Maths */ \ |
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3057 } | 3058 } |
3058 | 3059 |
3059 private: | 3060 private: |
3060 HOptimizedGraphBuilder* builder_; | 3061 HOptimizedGraphBuilder* builder_; |
3061 }; | 3062 }; |
3062 | 3063 |
3063 } // namespace internal | 3064 } // namespace internal |
3064 } // namespace v8 | 3065 } // namespace v8 |
3065 | 3066 |
3066 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3067 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |