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

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

Issue 2229723002: [wasm] Support validation of asm.js modules with != 3 args. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 4 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 <memory> 8 #include <memory>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 #define FOR_EACH_INTRINSIC_COMPILER(F) \ 123 #define FOR_EACH_INTRINSIC_COMPILER(F) \
124 F(CompileLazy, 1, 1) \ 124 F(CompileLazy, 1, 1) \
125 F(CompileBaseline, 1, 1) \ 125 F(CompileBaseline, 1, 1) \
126 F(CompileOptimized_Concurrent, 1, 1) \ 126 F(CompileOptimized_Concurrent, 1, 1) \
127 F(CompileOptimized_NotConcurrent, 1, 1) \ 127 F(CompileOptimized_NotConcurrent, 1, 1) \
128 F(NotifyStubFailure, 0, 1) \ 128 F(NotifyStubFailure, 0, 1) \
129 F(NotifyDeoptimized, 1, 1) \ 129 F(NotifyDeoptimized, 1, 1) \
130 F(CompileForOnStackReplacement, 1, 1) \ 130 F(CompileForOnStackReplacement, 1, 1) \
131 F(TryInstallOptimizedCode, 1, 1) \ 131 F(TryInstallOptimizedCode, 1, 1) \
132 F(ResolvePossiblyDirectEval, 6, 1) \ 132 F(ResolvePossiblyDirectEval, 6, 1) \
133 F(InstantiateAsmJs, 4, 1) 133 F(InstantiateAsmJs, -1, 1)
Michael Starzinger 2016/08/09 15:48:09 I would very much vote for keeping the arguments c
bradn 2016/08/11 09:19:33 Indeed. Done.
134 134
135 #define FOR_EACH_INTRINSIC_DATE(F) \ 135 #define FOR_EACH_INTRINSIC_DATE(F) \
136 F(IsDate, 1, 1) \ 136 F(IsDate, 1, 1) \
137 F(DateCurrentTime, 0, 1) \ 137 F(DateCurrentTime, 0, 1) \
138 F(ThrowNotDateError, 0, 1) 138 F(ThrowNotDateError, 0, 1)
139 139
140 #define FOR_EACH_INTRINSIC_DEBUG(F) \ 140 #define FOR_EACH_INTRINSIC_DEBUG(F) \
141 F(HandleDebuggerStatement, 0, 1) \ 141 F(HandleDebuggerStatement, 0, 1) \
142 F(DebugBreak, 1, 1) \ 142 F(DebugBreak, 1, 1) \
143 F(DebugBreakOnBytecode, 1, 1) \ 143 F(DebugBreakOnBytecode, 1, 1) \
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 F(HasFastProperties, 1, 1) \ 873 F(HasFastProperties, 1, 1) \
874 F(HasFixedUint8Elements, 1, 1) \ 874 F(HasFixedUint8Elements, 1, 1) \
875 F(HasFixedInt8Elements, 1, 1) \ 875 F(HasFixedInt8Elements, 1, 1) \
876 F(HasFixedUint16Elements, 1, 1) \ 876 F(HasFixedUint16Elements, 1, 1) \
877 F(HasFixedInt16Elements, 1, 1) \ 877 F(HasFixedInt16Elements, 1, 1) \
878 F(HasFixedUint32Elements, 1, 1) \ 878 F(HasFixedUint32Elements, 1, 1) \
879 F(HasFixedInt32Elements, 1, 1) \ 879 F(HasFixedInt32Elements, 1, 1) \
880 F(HasFixedFloat32Elements, 1, 1) \ 880 F(HasFixedFloat32Elements, 1, 1) \
881 F(HasFixedFloat64Elements, 1, 1) \ 881 F(HasFixedFloat64Elements, 1, 1) \
882 F(HasFixedUint8ClampedElements, 1, 1) \ 882 F(HasFixedUint8ClampedElements, 1, 1) \
883 F(SpeciesProtector, 0, 1) 883 F(SpeciesProtector, 0, 1) \
884 F(IsAsmWasmCode, 1, 1)
884 885
885 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ 886 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
886 F(ArrayBufferGetByteLength, 1, 1) \ 887 F(ArrayBufferGetByteLength, 1, 1) \
887 F(ArrayBufferSliceImpl, 4, 1) \ 888 F(ArrayBufferSliceImpl, 4, 1) \
888 F(ArrayBufferNeuter, 1, 1) \ 889 F(ArrayBufferNeuter, 1, 1) \
889 F(TypedArrayInitialize, 6, 1) \ 890 F(TypedArrayInitialize, 6, 1) \
890 F(TypedArrayInitializeFromArrayLike, 4, 1) \ 891 F(TypedArrayInitializeFromArrayLike, 4, 1) \
891 F(ArrayBufferViewGetByteLength, 1, 1) \ 892 F(ArrayBufferViewGetByteLength, 1, 1) \
892 F(ArrayBufferViewGetByteOffset, 1, 1) \ 893 F(ArrayBufferViewGetByteOffset, 1, 1) \
893 F(TypedArrayGetLength, 1, 1) \ 894 F(TypedArrayGetLength, 1, 1) \
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 1129
1129 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1130 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1130 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1131 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1131 STATIC_ASSERT(LANGUAGE_END == 3); 1132 STATIC_ASSERT(LANGUAGE_END == 3);
1132 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 1133 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
1133 1134
1134 } // namespace internal 1135 } // namespace internal
1135 } // namespace v8 1136 } // namespace v8
1136 1137
1137 #endif // V8_RUNTIME_RUNTIME_H_ 1138 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698