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

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

Issue 2625053006: [debugging] Add %Verify() helper and check verify a HeapObject has a Map. (Closed)
Patch Set: added simple verification in release build 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/objects-debug.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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 F(HasFixedFloat32Elements, 1, 1) \ 904 F(HasFixedFloat32Elements, 1, 1) \
905 F(HasFixedFloat64Elements, 1, 1) \ 905 F(HasFixedFloat64Elements, 1, 1) \
906 F(HasFixedUint8ClampedElements, 1, 1) \ 906 F(HasFixedUint8ClampedElements, 1, 1) \
907 F(SpeciesProtector, 0, 1) \ 907 F(SpeciesProtector, 0, 1) \
908 F(SerializeWasmModule, 1, 1) \ 908 F(SerializeWasmModule, 1, 1) \
909 F(DeserializeWasmModule, 2, 1) \ 909 F(DeserializeWasmModule, 2, 1) \
910 F(IsAsmWasmCode, 1, 1) \ 910 F(IsAsmWasmCode, 1, 1) \
911 F(IsWasmCode, 1, 1) \ 911 F(IsWasmCode, 1, 1) \
912 F(ValidateWasmInstancesChain, 2, 1) \ 912 F(ValidateWasmInstancesChain, 2, 1) \
913 F(ValidateWasmModuleState, 1, 1) \ 913 F(ValidateWasmModuleState, 1, 1) \
914 F(ValidateWasmOrphanedInstance, 1, 1) 914 F(ValidateWasmOrphanedInstance, 1, 1) \
915 F(Verify, 1, 1)
915 916
916 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \ 917 #define FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
917 F(ArrayBufferGetByteLength, 1, 1) \ 918 F(ArrayBufferGetByteLength, 1, 1) \
918 F(ArrayBufferSliceImpl, 4, 1) \ 919 F(ArrayBufferSliceImpl, 4, 1) \
919 F(ArrayBufferNeuter, 1, 1) \ 920 F(ArrayBufferNeuter, 1, 1) \
920 F(TypedArrayInitialize, 6, 1) \ 921 F(TypedArrayInitialize, 6, 1) \
921 F(TypedArrayInitializeFromArrayLike, 4, 1) \ 922 F(TypedArrayInitializeFromArrayLike, 4, 1) \
922 F(ArrayBufferViewGetByteLength, 1, 1) \ 923 F(ArrayBufferViewGetByteLength, 1, 1) \
923 F(ArrayBufferViewGetByteOffset, 1, 1) \ 924 F(ArrayBufferViewGetByteOffset, 1, 1) \
924 F(TypedArrayGetLength, 1, 1) \ 925 F(TypedArrayGetLength, 1, 1) \
(...skipping 224 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/objects-debug.cc ('k') | src/runtime/runtime-test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698