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 2182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2193 } | 2193 } |
2194 | 2194 |
2195 #define FOR_EACH_HYDROGEN_INTRINSIC(F) \ | 2195 #define FOR_EACH_HYDROGEN_INTRINSIC(F) \ |
2196 F(IsSmi) \ | 2196 F(IsSmi) \ |
2197 F(IsArray) \ | 2197 F(IsArray) \ |
2198 F(IsTypedArray) \ | 2198 F(IsTypedArray) \ |
2199 F(IsRegExp) \ | 2199 F(IsRegExp) \ |
2200 F(IsJSProxy) \ | 2200 F(IsJSProxy) \ |
2201 F(Call) \ | 2201 F(Call) \ |
2202 F(ValueOf) \ | 2202 F(ValueOf) \ |
2203 F(IsDate) \ | |
2204 F(StringCharFromCode) \ | 2203 F(StringCharFromCode) \ |
2205 F(StringCharAt) \ | 2204 F(StringCharAt) \ |
2206 F(OneByteSeqStringSetChar) \ | 2205 F(OneByteSeqStringSetChar) \ |
2207 F(TwoByteSeqStringSetChar) \ | 2206 F(TwoByteSeqStringSetChar) \ |
2208 F(ToInteger) \ | 2207 F(ToInteger) \ |
2209 F(ToName) \ | 2208 F(ToName) \ |
2210 F(ToObject) \ | 2209 F(ToObject) \ |
2211 F(ToString) \ | 2210 F(ToString) \ |
2212 F(ToLength) \ | 2211 F(ToLength) \ |
2213 F(ToNumber) \ | 2212 F(ToNumber) \ |
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3039 | 3038 |
3040 private: | 3039 private: |
3041 HGraphBuilder* builder_; | 3040 HGraphBuilder* builder_; |
3042 }; | 3041 }; |
3043 | 3042 |
3044 | 3043 |
3045 } // namespace internal | 3044 } // namespace internal |
3046 } // namespace v8 | 3045 } // namespace v8 |
3047 | 3046 |
3048 #endif // V8_CRANKSHAFT_HYDROGEN_H_ | 3047 #endif // V8_CRANKSHAFT_HYDROGEN_H_ |
OLD | NEW |