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 2169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2180 F(TwoByteSeqStringSetChar) \ | 2180 F(TwoByteSeqStringSetChar) \ |
2181 F(ObjectEquals) \ | 2181 F(ObjectEquals) \ |
2182 F(IsObject) \ | 2182 F(IsObject) \ |
2183 F(IsFunction) \ | 2183 F(IsFunction) \ |
2184 F(IsUndetectableObject) \ | 2184 F(IsUndetectableObject) \ |
2185 F(IsSpecObject) \ | 2185 F(IsSpecObject) \ |
2186 F(MathPow) \ | 2186 F(MathPow) \ |
2187 F(IsMinusZero) \ | 2187 F(IsMinusZero) \ |
2188 F(HasCachedArrayIndex) \ | 2188 F(HasCachedArrayIndex) \ |
2189 F(GetCachedArrayIndex) \ | 2189 F(GetCachedArrayIndex) \ |
| 2190 F(FastOneByteArrayJoin) \ |
2190 F(DebugBreakInOptimizedCode) \ | 2191 F(DebugBreakInOptimizedCode) \ |
2191 F(StringCharCodeAt) \ | 2192 F(StringCharCodeAt) \ |
2192 F(StringAdd) \ | 2193 F(StringAdd) \ |
2193 F(SubString) \ | 2194 F(SubString) \ |
2194 F(StringCompare) \ | 2195 F(StringCompare) \ |
2195 F(RegExpExec) \ | 2196 F(RegExpExec) \ |
2196 F(RegExpConstructResult) \ | 2197 F(RegExpConstructResult) \ |
2197 F(GetFromCache) \ | 2198 F(GetFromCache) \ |
2198 F(NumberToString) \ | 2199 F(NumberToString) \ |
2199 F(DebugIsActive) \ | 2200 F(DebugIsActive) \ |
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3025 } | 3026 } |
3026 | 3027 |
3027 private: | 3028 private: |
3028 HGraphBuilder* builder_; | 3029 HGraphBuilder* builder_; |
3029 }; | 3030 }; |
3030 | 3031 |
3031 | 3032 |
3032 } } // namespace v8::internal | 3033 } } // namespace v8::internal |
3033 | 3034 |
3034 #endif // V8_HYDROGEN_H_ | 3035 #endif // V8_HYDROGEN_H_ |
OLD | NEW |