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

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

Issue 2137993003: [wasm] Adding feature to JIT a wasm function at runtime and hook up the compiled code into the indi… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixing unit test- Created 4 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
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 12 matching lines...) Expand all
23 // 23 //
24 // * IDs are Runtime::k##name and Runtime::kInline##name, respectively. 24 // * IDs are Runtime::k##name and Runtime::kInline##name, respectively.
25 // 25 //
26 // * All intrinsics have a C++ implementation Runtime_##name. 26 // * All intrinsics have a C++ implementation Runtime_##name.
27 // 27 //
28 // * Each compiler has an explicit list of intrisics it supports, falling back 28 // * Each compiler has an explicit list of intrisics it supports, falling back
29 // to a simple runtime call if necessary. 29 // to a simple runtime call if necessary.
30 30
31 31
32 // Entries have the form F(name, number of arguments, number of values): 32 // Entries have the form F(name, number of arguments, number of values):
33 // A variable number of arguments is specified by a -1, additional restrictions
34 // are specified by inline comments
33 35
34 #define FOR_EACH_INTRINSIC_ARRAY(F) \ 36 #define FOR_EACH_INTRINSIC_ARRAY(F) \
35 F(FinishArrayPrototypeSetup, 1, 1) \ 37 F(FinishArrayPrototypeSetup, 1, 1) \
36 F(SpecialArrayFunctions, 0, 1) \ 38 F(SpecialArrayFunctions, 0, 1) \
37 F(TransitionElementsKind, 2, 1) \ 39 F(TransitionElementsKind, 2, 1) \
38 F(RemoveArrayHoles, 2, 1) \ 40 F(RemoveArrayHoles, 2, 1) \
39 F(MoveArrayContents, 2, 1) \ 41 F(MoveArrayContents, 2, 1) \
40 F(EstimateNumberOfElements, 1, 1) \ 42 F(EstimateNumberOfElements, 1, 1) \
41 F(GetArrayKeys, 2, 1) \ 43 F(GetArrayKeys, 2, 1) \
42 F(NewArray, -1 /* >= 3 */, 1) \ 44 F(NewArray, -1 /* >= 3 */, 1) \
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 F(NewTypeError, 2, 1) \ 289 F(NewTypeError, 2, 1) \
288 F(NewSyntaxError, 2, 1) \ 290 F(NewSyntaxError, 2, 1) \
289 F(NewReferenceError, 2, 1) \ 291 F(NewReferenceError, 2, 1) \
290 F(ThrowIllegalInvocation, 0, 1) \ 292 F(ThrowIllegalInvocation, 0, 1) \
291 F(ThrowIncompatibleMethodReceiver, 2, 1) \ 293 F(ThrowIncompatibleMethodReceiver, 2, 1) \
292 F(ThrowIteratorResultNotAnObject, 1, 1) \ 294 F(ThrowIteratorResultNotAnObject, 1, 1) \
293 F(ThrowNotGeneric, 1, 1) \ 295 F(ThrowNotGeneric, 1, 1) \
294 F(ThrowGeneratorRunning, 0, 1) \ 296 F(ThrowGeneratorRunning, 0, 1) \
295 F(ThrowStackOverflow, 0, 1) \ 297 F(ThrowStackOverflow, 0, 1) \
296 F(ThrowWasmError, 2, 1) \ 298 F(ThrowWasmError, 2, 1) \
299 F(JITSingleFunction, -1 /* >= 7 */, 1) \
297 F(PromiseRejectEvent, 3, 1) \ 300 F(PromiseRejectEvent, 3, 1) \
298 F(PromiseRevokeReject, 1, 1) \ 301 F(PromiseRevokeReject, 1, 1) \
299 F(StackGuard, 0, 1) \ 302 F(StackGuard, 0, 1) \
300 F(Interrupt, 0, 1) \ 303 F(Interrupt, 0, 1) \
301 F(AllocateInNewSpace, 1, 1) \ 304 F(AllocateInNewSpace, 1, 1) \
302 F(AllocateInTargetSpace, 2, 1) \ 305 F(AllocateInTargetSpace, 2, 1) \
303 F(AllocateSeqOneByteString, 1, 1) \ 306 F(AllocateSeqOneByteString, 1, 1) \
304 F(AllocateSeqTwoByteString, 1, 1) \ 307 F(AllocateSeqTwoByteString, 1, 1) \
305 F(CollectStackTrace, 2, 1) \ 308 F(CollectStackTrace, 2, 1) \
306 F(MessageGetStartPosition, 1, 1) \ 309 F(MessageGetStartPosition, 1, 1) \
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after
1129 1132
1130 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1133 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1131 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1134 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1132 STATIC_ASSERT(LANGUAGE_END == 3); 1135 STATIC_ASSERT(LANGUAGE_END == 3);
1133 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1136 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1134 1137
1135 } // namespace internal 1138 } // namespace internal
1136 } // namespace v8 1139 } // namespace v8
1137 1140
1138 #endif // V8_RUNTIME_RUNTIME_H_ 1141 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698