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

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

Issue 2264913002: [wasm] asm.js - Remove Wasm.instantiateModuleFromAsm, use asm.js directly. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 3 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/asmjs/asm-wasm-builder.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 <memory> 8 #include <memory>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 F(HasFixedUint16Elements, 1, 1) \ 880 F(HasFixedUint16Elements, 1, 1) \
881 F(HasFixedInt16Elements, 1, 1) \ 881 F(HasFixedInt16Elements, 1, 1) \
882 F(HasFixedUint32Elements, 1, 1) \ 882 F(HasFixedUint32Elements, 1, 1) \
883 F(HasFixedInt32Elements, 1, 1) \ 883 F(HasFixedInt32Elements, 1, 1) \
884 F(HasFixedFloat32Elements, 1, 1) \ 884 F(HasFixedFloat32Elements, 1, 1) \
885 F(HasFixedFloat64Elements, 1, 1) \ 885 F(HasFixedFloat64Elements, 1, 1) \
886 F(HasFixedUint8ClampedElements, 1, 1) \ 886 F(HasFixedUint8ClampedElements, 1, 1) \
887 F(SpeciesProtector, 0, 1) \ 887 F(SpeciesProtector, 0, 1) \
888 F(SerializeWasmModule, 1, 1) \ 888 F(SerializeWasmModule, 1, 1) \
889 F(DeserializeWasmModule, 1, 1) \ 889 F(DeserializeWasmModule, 1, 1) \
890 F(IsAsmWasmCode, 1, 1) 890 F(IsAsmWasmCode, 1, 1) \
891 F(IsNotAsmWasmCode, 1, 1)
891 892
892 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ 893 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
893 F(ArrayBufferGetByteLength, 1, 1) \ 894 F(ArrayBufferGetByteLength, 1, 1) \
894 F(ArrayBufferSliceImpl, 4, 1) \ 895 F(ArrayBufferSliceImpl, 4, 1) \
895 F(ArrayBufferNeuter, 1, 1) \ 896 F(ArrayBufferNeuter, 1, 1) \
896 F(TypedArrayInitialize, 6, 1) \ 897 F(TypedArrayInitialize, 6, 1) \
897 F(TypedArrayInitializeFromArrayLike, 4, 1) \ 898 F(TypedArrayInitializeFromArrayLike, 4, 1) \
898 F(ArrayBufferViewGetByteLength, 1, 1) \ 899 F(ArrayBufferViewGetByteLength, 1, 1) \
899 F(ArrayBufferViewGetByteOffset, 1, 1) \ 900 F(ArrayBufferViewGetByteOffset, 1, 1) \
900 F(TypedArrayGetLength, 1, 1) \ 901 F(TypedArrayGetLength, 1, 1) \
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 1139
1139 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1140 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1140 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1141 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1141 STATIC_ASSERT(LANGUAGE_END == 2); 1142 STATIC_ASSERT(LANGUAGE_END == 2);
1142 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; 1143 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {};
1143 1144
1144 } // namespace internal 1145 } // namespace internal
1145 } // namespace v8 1146 } // namespace v8
1146 1147
1147 #endif // V8_RUNTIME_RUNTIME_H_ 1148 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/asmjs/asm-wasm-builder.cc ('k') | src/runtime/runtime-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698