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

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

Issue 2763593002: [wasm][arm] Add an additional stack check for functions with big frames. (Closed)
Patch Set: Load the actual stack limit. Created 3 years, 9 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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 F(IsTypedArray, 1, 1) \ 628 F(IsTypedArray, 1, 1) \
629 F(IsSharedTypedArray, 1, 1) \ 629 F(IsSharedTypedArray, 1, 1) \
630 F(IsSharedIntegerTypedArray, 1, 1) \ 630 F(IsSharedIntegerTypedArray, 1, 1) \
631 F(IsSharedInteger32TypedArray, 1, 1) 631 F(IsSharedInteger32TypedArray, 1, 1)
632 632
633 #define FOR_EACH_INTRINSIC_WASM(F) \ 633 #define FOR_EACH_INTRINSIC_WASM(F) \
634 F(WasmGrowMemory, 1, 1) \ 634 F(WasmGrowMemory, 1, 1) \
635 F(WasmMemorySize, 0, 1) \ 635 F(WasmMemorySize, 0, 1) \
636 F(ThrowWasmError, 2, 1) \ 636 F(ThrowWasmError, 2, 1) \
637 F(ThrowWasmErrorFromTrapIf, 1, 1) \ 637 F(ThrowWasmErrorFromTrapIf, 1, 1) \
638 F(ThrowWasmStackOverflow, 0, 1) \
638 F(WasmThrowTypeError, 0, 1) \ 639 F(WasmThrowTypeError, 0, 1) \
639 F(WasmThrow, 2, 1) \ 640 F(WasmThrow, 2, 1) \
640 F(WasmGetCaughtExceptionValue, 1, 1) \ 641 F(WasmGetCaughtExceptionValue, 1, 1) \
641 F(WasmRunInterpreter, 3, 1) \ 642 F(WasmRunInterpreter, 3, 1) \
642 F(WasmStackGuard, 0, 1) \ 643 F(WasmStackGuard, 0, 1) \
643 F(SetThreadInWasm, 0, 1) \ 644 F(SetThreadInWasm, 0, 1) \
644 F(ClearThreadInWasm, 0, 1) \ 645 F(ClearThreadInWasm, 0, 1) \
645 F(WasmCompileLazy, 0, 1) 646 F(WasmCompileLazy, 0, 1)
646 647
647 #define FOR_EACH_INTRINSIC_RETURN_PAIR(F) \ 648 #define FOR_EACH_INTRINSIC_RETURN_PAIR(F) \
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 kMaybeDeopted = 1 << 3, 858 kMaybeDeopted = 1 << 3,
858 kOptimized = 1 << 4, 859 kOptimized = 1 << 4,
859 kTurboFanned = 1 << 5, 860 kTurboFanned = 1 << 5,
860 kInterpreted = 1 << 6, 861 kInterpreted = 1 << 6,
861 }; 862 };
862 863
863 } // namespace internal 864 } // namespace internal
864 } // namespace v8 865 } // namespace v8
865 866
866 #endif // V8_RUNTIME_RUNTIME_H_ 867 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698