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

Side by Side Diff: src/hydrogen.h

Issue 1316933002: [es6] Initial steps towards a correct implementation of IsCallable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: ia32, arm and arm64 ports. Misc cleanups. Created 5 years, 3 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
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/accessors.h" 8 #include "src/accessors.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/ast.h" 10 #include "src/ast.h"
(...skipping 2228 matching lines...) Expand 10 before | Expand all | Expand 10 after
2239 F(MapInitialize) \ 2239 F(MapInitialize) \
2240 F(SetClear) \ 2240 F(SetClear) \
2241 F(SetInitialize) \ 2241 F(SetInitialize) \
2242 F(FixedArrayGet) \ 2242 F(FixedArrayGet) \
2243 F(FixedArraySet) \ 2243 F(FixedArraySet) \
2244 F(JSCollectionGetTable) \ 2244 F(JSCollectionGetTable) \
2245 F(StringGetRawHashField) \ 2245 F(StringGetRawHashField) \
2246 F(TheHole) \ 2246 F(TheHole) \
2247 /* Arrays */ \ 2247 /* Arrays */ \
2248 F(HasFastPackedElements) \ 2248 F(HasFastPackedElements) \
2249 F(GetPrototype) \
2250 /* Strings */ \ 2249 /* Strings */ \
2251 F(StringGetLength) \ 2250 F(StringGetLength) \
2252 /* JSValue */ \ 2251 /* JSValue */ \
2253 F(JSValueGetValue) 2252 F(JSValueGetValue)
2254 2253
2255 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); 2254 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call);
2256 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) 2255 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION)
2257 #undef GENERATOR_DECLARATION 2256 #undef GENERATOR_DECLARATION
2258 2257
2259 void VisitDelete(UnaryOperation* expr); 2258 void VisitDelete(UnaryOperation* expr);
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
3042 } 3041 }
3043 3042
3044 private: 3043 private:
3045 HGraphBuilder* builder_; 3044 HGraphBuilder* builder_;
3046 }; 3045 };
3047 3046
3048 3047
3049 } } // namespace v8::internal 3048 } } // namespace v8::internal
3050 3049
3051 #endif // V8_HYDROGEN_H_ 3050 #endif // V8_HYDROGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698