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

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

Issue 1167813003: [date] Refactor the %_DateField intrinsic to be optimizable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments. Created 5 years, 6 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/lithium-mips64.cc ('k') | src/runtime/runtime-date.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/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 F(NotifyStubFailure, 0, 1) \ 113 F(NotifyStubFailure, 0, 1) \
114 F(NotifyDeoptimized, 1, 1) \ 114 F(NotifyDeoptimized, 1, 1) \
115 F(CompileForOnStackReplacement, 1, 1) \ 115 F(CompileForOnStackReplacement, 1, 1) \
116 F(TryInstallOptimizedCode, 1, 1) \ 116 F(TryInstallOptimizedCode, 1, 1) \
117 F(CompileString, 2, 1) 117 F(CompileString, 2, 1)
118 118
119 119
120 #define FOR_EACH_INTRINSIC_DATE(F) \ 120 #define FOR_EACH_INTRINSIC_DATE(F) \
121 F(DateMakeDay, 2, 1) \ 121 F(DateMakeDay, 2, 1) \
122 F(DateSetValue, 3, 1) \ 122 F(DateSetValue, 3, 1) \
123 F(ThrowIfNotADate, 1, 1) \
123 F(ThrowNotDateError, 0, 1) \ 124 F(ThrowNotDateError, 0, 1) \
124 F(DateCurrentTime, 0, 1) \ 125 F(DateCurrentTime, 0, 1) \
125 F(DateParseString, 2, 1) \ 126 F(DateParseString, 2, 1) \
126 F(DateLocalTimezone, 1, 1) \ 127 F(DateLocalTimezone, 1, 1) \
127 F(DateToUTC, 1, 1) \ 128 F(DateToUTC, 1, 1) \
128 F(DateCacheVersion, 0, 1) \ 129 F(DateCacheVersion, 0, 1) \
129 F(DateField, 2 /* date object, field index */, 1) 130 F(DateField, 2 /* date object, field index */, 1)
130 131
131 132
132 #define FOR_EACH_INTRINSIC_DEBUG(F) \ 133 #define FOR_EACH_INTRINSIC_DEBUG(F) \
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 887
887 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 888 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
888 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 889 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
889 STATIC_ASSERT(LANGUAGE_END == 3); 890 STATIC_ASSERT(LANGUAGE_END == 3);
890 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 891 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
891 892
892 } // namespace internal 893 } // namespace internal
893 } // namespace v8 894 } // namespace v8
894 895
895 #endif // V8_RUNTIME_RUNTIME_H_ 896 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/mips64/lithium-mips64.cc ('k') | src/runtime/runtime-date.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698