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

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

Issue 2433273002: [wasm] Avoid double-serializing the wire bytes (Closed)
Patch Set: removed unrelated changes Created 4 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/heap/heap.h ('k') | src/runtime/runtime-test.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 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 F(HasFixedInt8Elements, 1, 1) \ 890 F(HasFixedInt8Elements, 1, 1) \
891 F(HasFixedUint16Elements, 1, 1) \ 891 F(HasFixedUint16Elements, 1, 1) \
892 F(HasFixedInt16Elements, 1, 1) \ 892 F(HasFixedInt16Elements, 1, 1) \
893 F(HasFixedUint32Elements, 1, 1) \ 893 F(HasFixedUint32Elements, 1, 1) \
894 F(HasFixedInt32Elements, 1, 1) \ 894 F(HasFixedInt32Elements, 1, 1) \
895 F(HasFixedFloat32Elements, 1, 1) \ 895 F(HasFixedFloat32Elements, 1, 1) \
896 F(HasFixedFloat64Elements, 1, 1) \ 896 F(HasFixedFloat64Elements, 1, 1) \
897 F(HasFixedUint8ClampedElements, 1, 1) \ 897 F(HasFixedUint8ClampedElements, 1, 1) \
898 F(SpeciesProtector, 0, 1) \ 898 F(SpeciesProtector, 0, 1) \
899 F(SerializeWasmModule, 1, 1) \ 899 F(SerializeWasmModule, 1, 1) \
900 F(DeserializeWasmModule, 1, 1) \ 900 F(DeserializeWasmModule, 2, 1) \
901 F(IsAsmWasmCode, 1, 1) \ 901 F(IsAsmWasmCode, 1, 1) \
902 F(IsNotAsmWasmCode, 1, 1) \ 902 F(IsNotAsmWasmCode, 1, 1) \
903 F(ValidateWasmInstancesChain, 2, 1) \ 903 F(ValidateWasmInstancesChain, 2, 1) \
904 F(ValidateWasmModuleState, 1, 1) \ 904 F(ValidateWasmModuleState, 1, 1) \
905 F(ValidateWasmOrphanedInstance, 1, 1) 905 F(ValidateWasmOrphanedInstance, 1, 1)
906 906
907 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ 907 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
908 F(ArrayBufferGetByteLength, 1, 1) \ 908 F(ArrayBufferGetByteLength, 1, 1) \
909 F(ArrayBufferSliceImpl, 4, 1) \ 909 F(ArrayBufferSliceImpl, 4, 1) \
910 F(ArrayBufferNeuter, 1, 1) \ 910 F(ArrayBufferNeuter, 1, 1) \
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 1131
1132 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1132 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1133 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1133 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1134 STATIC_ASSERT(LANGUAGE_END == 2); 1134 STATIC_ASSERT(LANGUAGE_END == 2);
1135 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; 1135 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {};
1136 1136
1137 } // namespace internal 1137 } // namespace internal
1138 } // namespace v8 1138 } // namespace v8
1139 1139
1140 #endif // V8_RUNTIME_RUNTIME_H_ 1140 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/heap/heap.h ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698