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 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2224 F(MapInitialize) \ | 2224 F(MapInitialize) \ |
2225 F(MapSet) \ | 2225 F(MapSet) \ |
2226 F(SetAdd) \ | 2226 F(SetAdd) \ |
2227 F(SetClear) \ | 2227 F(SetClear) \ |
2228 F(SetDelete) \ | 2228 F(SetDelete) \ |
2229 F(SetGetSize) \ | 2229 F(SetGetSize) \ |
2230 F(SetHas) \ | 2230 F(SetHas) \ |
2231 F(SetInitialize) \ | 2231 F(SetInitialize) \ |
2232 /* Arrays */ \ | 2232 /* Arrays */ \ |
2233 F(HasFastPackedElements) \ | 2233 F(HasFastPackedElements) \ |
2234 F(GetPrototype) | 2234 F(GetPrototype) \ |
2235 /* Strings */ \ | |
2236 F(StringLength) \ | |
2237 /* JSValue */ \ | |
titzer
2015/03/18 09:25:53
We need a better name for this operation.
| |
2238 F(JSValueValue) | |
2235 | 2239 |
2236 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); | 2240 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); |
2237 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) | 2241 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) |
2238 #undef GENERATOR_DECLARATION | 2242 #undef GENERATOR_DECLARATION |
2239 | 2243 |
2240 void VisitDelete(UnaryOperation* expr); | 2244 void VisitDelete(UnaryOperation* expr); |
2241 void VisitVoid(UnaryOperation* expr); | 2245 void VisitVoid(UnaryOperation* expr); |
2242 void VisitTypeof(UnaryOperation* expr); | 2246 void VisitTypeof(UnaryOperation* expr); |
2243 void VisitNot(UnaryOperation* expr); | 2247 void VisitNot(UnaryOperation* expr); |
2244 | 2248 |
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3026 } | 3030 } |
3027 | 3031 |
3028 private: | 3032 private: |
3029 HGraphBuilder* builder_; | 3033 HGraphBuilder* builder_; |
3030 }; | 3034 }; |
3031 | 3035 |
3032 | 3036 |
3033 } } // namespace v8::internal | 3037 } } // namespace v8::internal |
3034 | 3038 |
3035 #endif // V8_HYDROGEN_H_ | 3039 #endif // V8_HYDROGEN_H_ |
OLD | NEW |