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

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

Issue 1456003003: Simplify dispatch in optimizing compile stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/ppc/builtins-ppc.cc ('k') | src/runtime/runtime-compiler.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/unicode.h" 10 #include "src/unicode.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 F(MapIteratorNext, 2, 1) \ 118 F(MapIteratorNext, 2, 1) \
119 F(WeakCollectionInitialize, 1, 1) \ 119 F(WeakCollectionInitialize, 1, 1) \
120 F(WeakCollectionGet, 3, 1) \ 120 F(WeakCollectionGet, 3, 1) \
121 F(WeakCollectionHas, 3, 1) \ 121 F(WeakCollectionHas, 3, 1) \
122 F(WeakCollectionDelete, 3, 1) \ 122 F(WeakCollectionDelete, 3, 1) \
123 F(WeakCollectionSet, 4, 1) \ 123 F(WeakCollectionSet, 4, 1) \
124 F(GetWeakSetValues, 2, 1) \ 124 F(GetWeakSetValues, 2, 1) \
125 F(ObservationWeakMapCreate, 0, 1) 125 F(ObservationWeakMapCreate, 0, 1)
126 126
127 127
128 #define FOR_EACH_INTRINSIC_COMPILER(F) \ 128 #define FOR_EACH_INTRINSIC_COMPILER(F) \
129 F(CompileLazy, 1, 1) \ 129 F(CompileLazy, 1, 1) \
130 F(CompileOptimized, 2, 1) \ 130 F(CompileOptimized_Concurrent, 1, 1) \
131 F(NotifyStubFailure, 0, 1) \ 131 F(CompileOptimized_NotConcurrent, 1, 1) \
132 F(NotifyDeoptimized, 1, 1) \ 132 F(NotifyStubFailure, 0, 1) \
133 F(CompileForOnStackReplacement, 1, 1) \ 133 F(NotifyDeoptimized, 1, 1) \
134 F(TryInstallOptimizedCode, 1, 1) \ 134 F(CompileForOnStackReplacement, 1, 1) \
135 F(CompileString, 2, 1) \ 135 F(TryInstallOptimizedCode, 1, 1) \
136 F(CompileString, 2, 1) \
136 F(ResolvePossiblyDirectEval, 5, 1) 137 F(ResolvePossiblyDirectEval, 5, 1)
137 138
138 139
139 #define FOR_EACH_INTRINSIC_DATE(F) \ 140 #define FOR_EACH_INTRINSIC_DATE(F) \
140 F(DateMakeDay, 2, 1) \ 141 F(DateMakeDay, 2, 1) \
141 F(DateSetValue, 3, 1) \ 142 F(DateSetValue, 3, 1) \
142 F(IsDate, 1, 1) \ 143 F(IsDate, 1, 1) \
143 F(ThrowNotDateError, 0, 1) \ 144 F(ThrowNotDateError, 0, 1) \
144 F(DateCurrentTime, 0, 1) \ 145 F(DateCurrentTime, 0, 1) \
145 F(DateParseString, 2, 1) \ 146 F(DateParseString, 2, 1) \
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 1260
1260 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1261 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1261 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1262 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1262 STATIC_ASSERT(LANGUAGE_END == 3); 1263 STATIC_ASSERT(LANGUAGE_END == 3);
1263 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1264 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1264 1265
1265 } // namespace internal 1266 } // namespace internal
1266 } // namespace v8 1267 } // namespace v8
1267 1268
1268 #endif // V8_RUNTIME_RUNTIME_H_ 1269 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/ppc/builtins-ppc.cc ('k') | src/runtime/runtime-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698