| 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_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
| 6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
| (...skipping 2162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2173 F(IsArray) \ | 2173 F(IsArray) \ |
| 2174 F(IsTypedArray) \ | 2174 F(IsTypedArray) \ |
| 2175 F(IsRegExp) \ | 2175 F(IsRegExp) \ |
| 2176 F(IsJSProxy) \ | 2176 F(IsJSProxy) \ |
| 2177 F(IsConstructCall) \ | 2177 F(IsConstructCall) \ |
| 2178 F(CallFunction) \ | 2178 F(CallFunction) \ |
| 2179 F(ArgumentsLength) \ | 2179 F(ArgumentsLength) \ |
| 2180 F(Arguments) \ | 2180 F(Arguments) \ |
| 2181 F(ValueOf) \ | 2181 F(ValueOf) \ |
| 2182 F(SetValueOf) \ | 2182 F(SetValueOf) \ |
| 2183 F(ThrowIfNotADate) \ | 2183 F(IsDate) \ |
| 2184 F(DateField) \ | 2184 F(DateField) \ |
| 2185 F(ThrowNotDateError) \ |
| 2185 F(StringCharFromCode) \ | 2186 F(StringCharFromCode) \ |
| 2186 F(StringCharAt) \ | 2187 F(StringCharAt) \ |
| 2187 F(OneByteSeqStringSetChar) \ | 2188 F(OneByteSeqStringSetChar) \ |
| 2188 F(TwoByteSeqStringSetChar) \ | 2189 F(TwoByteSeqStringSetChar) \ |
| 2189 F(ObjectEquals) \ | 2190 F(ObjectEquals) \ |
| 2190 F(IsObject) \ | 2191 F(IsObject) \ |
| 2191 F(IsFunction) \ | 2192 F(IsFunction) \ |
| 2192 F(IsUndetectableObject) \ | 2193 F(IsUndetectableObject) \ |
| 2193 F(IsSpecObject) \ | 2194 F(IsSpecObject) \ |
| 2194 F(MathPow) \ | 2195 F(MathPow) \ |
| (...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3047 } | 3048 } |
| 3048 | 3049 |
| 3049 private: | 3050 private: |
| 3050 HGraphBuilder* builder_; | 3051 HGraphBuilder* builder_; |
| 3051 }; | 3052 }; |
| 3052 | 3053 |
| 3053 | 3054 |
| 3054 } } // namespace v8::internal | 3055 } } // namespace v8::internal |
| 3055 | 3056 |
| 3056 #endif // V8_HYDROGEN_H_ | 3057 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |