Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/hydrogen.h

Issue 1010673004: Tweak the TurboFan pipeline for stub compilation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed feedback Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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(StringGetLength) \
2237 /* JSValue */ \
2238 F(JSValueGetValue)
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
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_
OLDNEW
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698