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

Side by Side Diff: src/runtime/runtime.h

Issue 1819813002: [es6] Faster implementation of OrdinaryHasInstance. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Revert flag-flip again. Created 4 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/mips64/code-stubs-mips64.cc ('k') | src/runtime/runtime-object.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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/base/platform/time.h" 9 #include "src/base/platform/time.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 F(ToPrimitive_String, 1, 1) \ 433 F(ToPrimitive_String, 1, 1) \
434 F(ToNumber, 1, 1) \ 434 F(ToNumber, 1, 1) \
435 F(ToInteger, 1, 1) \ 435 F(ToInteger, 1, 1) \
436 F(ToLength, 1, 1) \ 436 F(ToLength, 1, 1) \
437 F(ToString, 1, 1) \ 437 F(ToString, 1, 1) \
438 F(ToName, 1, 1) \ 438 F(ToName, 1, 1) \
439 F(SameValue, 2, 1) \ 439 F(SameValue, 2, 1) \
440 F(SameValueZero, 2, 1) \ 440 F(SameValueZero, 2, 1) \
441 F(Compare, 3, 1) \ 441 F(Compare, 3, 1) \
442 F(InstanceOf, 2, 1) \ 442 F(InstanceOf, 2, 1) \
443 F(OrdinaryHasInstance, 2, 1) \
443 F(HasInPrototypeChain, 2, 1) \ 444 F(HasInPrototypeChain, 2, 1) \
444 F(CreateIterResultObject, 2, 1) \ 445 F(CreateIterResultObject, 2, 1) \
445 F(IsAccessCheckNeeded, 1, 1) \ 446 F(IsAccessCheckNeeded, 1, 1) \
446 F(ObjectDefineProperties, 2, 1) \ 447 F(ObjectDefineProperties, 2, 1) \
447 F(ObjectDefineProperty, 3, 1) 448 F(ObjectDefineProperty, 3, 1)
448 449
449 #define FOR_EACH_INTRINSIC_OBSERVE(F) \ 450 #define FOR_EACH_INTRINSIC_OBSERVE(F) \
450 F(IsObserved, 1, 1) \ 451 F(IsObserved, 1, 1) \
451 F(SetIsObserved, 1, 1) \ 452 F(SetIsObserved, 1, 1) \
452 F(EnqueueMicrotask, 1, 1) \ 453 F(EnqueueMicrotask, 1, 1) \
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1186 1187
1187 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1188 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1188 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1189 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1189 STATIC_ASSERT(LANGUAGE_END == 3); 1190 STATIC_ASSERT(LANGUAGE_END == 3);
1190 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1191 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1191 1192
1192 } // namespace internal 1193 } // namespace internal
1193 } // namespace v8 1194 } // namespace v8
1194 1195
1195 #endif // V8_RUNTIME_RUNTIME_H_ 1196 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/mips64/code-stubs-mips64.cc ('k') | src/runtime/runtime-object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698