Searched refs:StackMemory (Results 1 – 9 of 9) sorted by relevance
| /third_party/node/deps/v8/src/wasm/ |
| D | stacks.h | 34 class StackMemory { 36 static StackMemory* New(Isolate* isolate) { return new StackMemory(isolate); } in New() 39 static StackMemory* GetCurrentStackView(Isolate* isolate) { in GetCurrentStackView() 42 return new StackMemory(isolate, limit); in GetCurrentStackView() 45 ~StackMemory() { in ~StackMemory() 65 void Add(StackMemory* stack) { in Add() 72 StackMemory* next() { return next_; } in next() 75 size_t owned_size() { return sizeof(StackMemory) + (owned_ ? size_ : 0); } in owned_size() 89 explicit StackMemory(Isolate* isolate) : isolate_(isolate), owned_(true) { in StackMemory() function 105 StackMemory(Isolate* isolate, byte* limit) in StackMemory() function [all …]
|
| D | wasm-objects.h | 1008 Isolate* isolate, std::unique_ptr<wasm::StackMemory> stack); 1018 Isolate* isolate, std::unique_ptr<wasm::StackMemory> stack,
|
| D | wasm-objects.cc | 1768 Isolate* isolate, std::unique_ptr<wasm::StackMemory> stack, in New() 1775 Handle<Foreign> managed_stack = Managed<wasm::StackMemory>::FromUniquePtr( in New() 1789 Isolate* isolate, std::unique_ptr<wasm::StackMemory> stack) { in New() 1798 std::unique_ptr<wasm::StackMemory>(wasm::StackMemory::New(isolate)); in New()
|
| D | wasm-engine.cc | 1391 wasm::StackMemory* current = isolate->wasm_stacks(); in ReportLiveCodeFromStackForGC()
|
| /third_party/node/deps/v8/src/execution/ |
| D | frames.h | 52 class StackMemory; variable 1247 wasm::StackMemory* stack); 1264 void Reset(ThreadLocalTop* top, wasm::StackMemory* stack);
|
| D | isolate.h | 166 class StackMemory; variable 1945 wasm::StackMemory*& wasm_stacks() { return wasm_stacks_; } in wasm_stacks() 2398 wasm::StackMemory* wasm_stacks_;
|
| D | frames.cc | 115 wasm::StackMemory* stack) in StackFrameIterator() 164 void StackFrameIterator::Reset(ThreadLocalTop* top, wasm::StackMemory* stack) { in Reset()
|
| D | isolate.cc | 582 wasm::StackMemory* current = wasm_stacks_; in Iterate() 4207 std::unique_ptr<wasm::StackMemory> stack( in ThrowInternal() 4208 wasm::StackMemory::GetCurrentStackView(this)); in ThrowInternal()
|
| /third_party/node/deps/v8/src/runtime/ |
| D | runtime-wasm.cc | 732 auto stack = Managed<wasm::StackMemory>::cast(continuation.stack()).get(); in SyncStackLimit() 756 Managed<wasm::StackMemory>::cast(target->stack()).get().get(); in RUNTIME_FUNCTION()
|