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

Side by Side Diff: src/runtime.h

Issue 356213003: Support non-internalized string key lookups in Hydrogen KeyedLoadIC (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Revert more unrelated changes Created 6 years, 5 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 | Annotate | Revision Log
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_RUNTIME_H_ 5 #ifndef V8_RUNTIME_H_
6 #define V8_RUNTIME_H_ 6 #define V8_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/zone.h" 9 #include "src/zone.h"
10 10
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 \ 267 \
268 /* Harmony sets */ \ 268 /* Harmony sets */ \
269 F(SetInitialize, 1, 1) \ 269 F(SetInitialize, 1, 1) \
270 F(SetAdd, 2, 1) \ 270 F(SetAdd, 2, 1) \
271 F(SetHas, 2, 1) \ 271 F(SetHas, 2, 1) \
272 F(SetDelete, 2, 1) \ 272 F(SetDelete, 2, 1) \
273 F(SetClear, 1, 1) \ 273 F(SetClear, 1, 1) \
274 F(SetGetSize, 1, 1) \ 274 F(SetGetSize, 1, 1) \
275 \ 275 \
276 F(SetIteratorInitialize, 3, 1) \ 276 F(SetIteratorInitialize, 3, 1) \
277 F(SetIteratorNext, 1, 1) \ 277 F(SetIteratorNext, 2, 1) \
Jakob Kummerow 2014/06/27 15:37:51 no
danno 2014/06/27 17:43:28 Done.
278 \ 278 \
279 /* Harmony maps */ \ 279 /* Harmony maps */ \
280 F(MapInitialize, 1, 1) \ 280 F(MapInitialize, 1, 1) \
281 F(MapGet, 2, 1) \ 281 F(MapGet, 2, 1) \
282 F(MapHas, 2, 1) \ 282 F(MapHas, 2, 1) \
283 F(MapDelete, 2, 1) \ 283 F(MapDelete, 2, 1) \
284 F(MapClear, 1, 1) \ 284 F(MapClear, 1, 1) \
285 F(MapSet, 3, 1) \ 285 F(MapSet, 3, 1) \
286 F(MapGetSize, 1, 1) \ 286 F(MapGetSize, 1, 1) \
287 \ 287 \
288 F(MapIteratorInitialize, 3, 1) \ 288 F(MapIteratorInitialize, 3, 1) \
289 F(MapIteratorNext, 1, 1) \ 289 F(MapIteratorNext, 2, 1) \
290 \ 290 \
291 /* Harmony weak maps and sets */ \ 291 /* Harmony weak maps and sets */ \
292 F(WeakCollectionInitialize, 1, 1) \ 292 F(WeakCollectionInitialize, 1, 1) \
293 F(WeakCollectionGet, 2, 1) \ 293 F(WeakCollectionGet, 2, 1) \
294 F(WeakCollectionHas, 2, 1) \ 294 F(WeakCollectionHas, 2, 1) \
295 F(WeakCollectionDelete, 2, 1) \ 295 F(WeakCollectionDelete, 2, 1) \
296 F(WeakCollectionSet, 3, 1) \ 296 F(WeakCollectionSet, 3, 1) \
297 \ 297 \
298 /* Harmony events */ \ 298 /* Harmony events */ \
299 F(EnqueueMicrotask, 1, 1) \ 299 F(EnqueueMicrotask, 1, 1) \
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 F(IsJSGlobalProxy, 1, 1) 397 F(IsJSGlobalProxy, 1, 1)
398 398
399 399
400 #define RUNTIME_FUNCTION_LIST_ALWAYS_3(F) \ 400 #define RUNTIME_FUNCTION_LIST_ALWAYS_3(F) \
401 /* String and Regexp */ \ 401 /* String and Regexp */ \
402 F(NumberToStringRT, 1, 1) \ 402 F(NumberToStringRT, 1, 1) \
403 F(RegExpConstructResult, 3, 1) \ 403 F(RegExpConstructResult, 3, 1) \
404 F(RegExpExecRT, 4, 1) \ 404 F(RegExpExecRT, 4, 1) \
405 F(StringAdd, 2, 1) \ 405 F(StringAdd, 2, 1) \
406 F(SubString, 3, 1) \ 406 F(SubString, 3, 1) \
407 F(InternalizeString, 1, 1) \
407 F(StringCompare, 2, 1) \ 408 F(StringCompare, 2, 1) \
408 F(StringCharCodeAtRT, 2, 1) \ 409 F(StringCharCodeAtRT, 2, 1) \
409 F(GetFromCache, 2, 1) \ 410 F(GetFromCache, 2, 1) \
410 \ 411 \
411 /* Compilation */ \ 412 /* Compilation */ \
412 F(CompileUnoptimized, 1, 1) \ 413 F(CompileUnoptimized, 1, 1) \
413 F(CompileOptimized, 2, 1) \ 414 F(CompileOptimized, 2, 1) \
414 F(TryInstallOptimizedCode, 1, 1) \ 415 F(TryInstallOptimizedCode, 1, 1) \
415 F(NotifyDeoptimized, 1, 1) \ 416 F(NotifyDeoptimized, 1, 1) \
416 F(NotifyStubFailure, 0, 1) \ 417 F(NotifyStubFailure, 0, 1) \
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; 887 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {};
887 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; 888 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {};
888 889
889 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 890 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
890 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 891 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
891 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; 892 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {};
892 893
893 } } // namespace v8::internal 894 } } // namespace v8::internal
894 895
895 #endif // V8_RUNTIME_H_ 896 #endif // V8_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698