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

Side by Side Diff: src/hydrogen.h

Issue 947683002: Reimplement Maps and Sets in JS (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Merged to master Created 5 years, 8 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/collection.js ('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 2204 matching lines...) Expand 10 before | Expand all | Expand 10 after
2215 /* Maths */ \ 2215 /* Maths */ \
2216 F(ConstructDouble) \ 2216 F(ConstructDouble) \
2217 F(DoubleHi) \ 2217 F(DoubleHi) \
2218 F(DoubleLo) \ 2218 F(DoubleLo) \
2219 F(MathClz32) \ 2219 F(MathClz32) \
2220 F(MathFloor) \ 2220 F(MathFloor) \
2221 F(MathSqrt) \ 2221 F(MathSqrt) \
2222 F(MathLogRT) \ 2222 F(MathLogRT) \
2223 /* ES6 Collections */ \ 2223 /* ES6 Collections */ \
2224 F(MapClear) \ 2224 F(MapClear) \
2225 F(MapDelete) \
2226 F(MapGet) \
2227 F(MapGetSize) \
2228 F(MapHas) \
2229 F(MapInitialize) \ 2225 F(MapInitialize) \
2230 F(MapSet) \
2231 F(SetAdd) \
2232 F(SetClear) \ 2226 F(SetClear) \
2233 F(SetDelete) \
2234 F(SetGetSize) \
2235 F(SetHas) \
2236 F(SetInitialize) \ 2227 F(SetInitialize) \
2228 F(FixedArrayGet) \
2229 F(FixedArraySet) \
2230 F(JSCollectionGetTable) \
2231 F(StringGetRawHashField) \
2232 F(TheHole) \
2237 /* Arrays */ \ 2233 /* Arrays */ \
2238 F(HasFastPackedElements) \ 2234 F(HasFastPackedElements) \
2239 F(GetPrototype) \ 2235 F(GetPrototype) \
2240 /* Strings */ \ 2236 /* Strings */ \
2241 F(StringGetLength) \ 2237 F(StringGetLength) \
2242 /* JSValue */ \ 2238 /* JSValue */ \
2243 F(JSValueGetValue) 2239 F(JSValueGetValue)
2244 2240
2245 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); 2241 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call);
2246 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) 2242 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION)
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
3035 } 3031 }
3036 3032
3037 private: 3033 private:
3038 HGraphBuilder* builder_; 3034 HGraphBuilder* builder_;
3039 }; 3035 };
3040 3036
3041 3037
3042 } } // namespace v8::internal 3038 } } // namespace v8::internal
3043 3039
3044 #endif // V8_HYDROGEN_H_ 3040 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/collection.js ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698