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

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

Issue 2609363004: [asm.js] [wasm] Store function start position for stack check (Closed)
Patch Set: It's 2017 already :) Created 3 years, 11 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/compiler/wasm-compiler.cc ('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 892 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 F(HasFixedInt16Elements, 1, 1) \ 903 F(HasFixedInt16Elements, 1, 1) \
904 F(HasFixedUint32Elements, 1, 1) \ 904 F(HasFixedUint32Elements, 1, 1) \
905 F(HasFixedInt32Elements, 1, 1) \ 905 F(HasFixedInt32Elements, 1, 1) \
906 F(HasFixedFloat32Elements, 1, 1) \ 906 F(HasFixedFloat32Elements, 1, 1) \
907 F(HasFixedFloat64Elements, 1, 1) \ 907 F(HasFixedFloat64Elements, 1, 1) \
908 F(HasFixedUint8ClampedElements, 1, 1) \ 908 F(HasFixedUint8ClampedElements, 1, 1) \
909 F(SpeciesProtector, 0, 1) \ 909 F(SpeciesProtector, 0, 1) \
910 F(SerializeWasmModule, 1, 1) \ 910 F(SerializeWasmModule, 1, 1) \
911 F(DeserializeWasmModule, 2, 1) \ 911 F(DeserializeWasmModule, 2, 1) \
912 F(IsAsmWasmCode, 1, 1) \ 912 F(IsAsmWasmCode, 1, 1) \
913 F(IsWasmCode, 1, 1) \
913 F(ValidateWasmInstancesChain, 2, 1) \ 914 F(ValidateWasmInstancesChain, 2, 1) \
914 F(ValidateWasmModuleState, 1, 1) \ 915 F(ValidateWasmModuleState, 1, 1) \
915 F(ValidateWasmOrphanedInstance, 1, 1) 916 F(ValidateWasmOrphanedInstance, 1, 1)
916 917
917 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ 918 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
918 F(ArrayBufferGetByteLength, 1, 1) \ 919 F(ArrayBufferGetByteLength, 1, 1) \
919 F(ArrayBufferSliceImpl, 4, 1) \ 920 F(ArrayBufferSliceImpl, 4, 1) \
920 F(ArrayBufferNeuter, 1, 1) \ 921 F(ArrayBufferNeuter, 1, 1) \
921 F(TypedArrayInitialize, 6, 1) \ 922 F(TypedArrayInitialize, 6, 1) \
922 F(TypedArrayInitializeFromArrayLike, 4, 1) \ 923 F(TypedArrayInitializeFromArrayLike, 4, 1) \
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 1150
1150 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 1151 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
1151 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 1152 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
1152 STATIC_ASSERT(LANGUAGE_END == 2); 1153 STATIC_ASSERT(LANGUAGE_END == 2);
1153 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; 1154 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {};
1154 1155
1155 } // namespace internal 1156 } // namespace internal
1156 } // namespace v8 1157 } // namespace v8
1157 1158
1158 #endif // V8_RUNTIME_RUNTIME_H_ 1159 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698