Home
last modified time | relevance | path

Searched refs:StackMemory (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dstacks.h34 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 …]
Dwasm-objects.h1008 Isolate* isolate, std::unique_ptr<wasm::StackMemory> stack);
1018 Isolate* isolate, std::unique_ptr<wasm::StackMemory> stack,
Dwasm-objects.cc1768 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()
Dwasm-engine.cc1391 wasm::StackMemory* current = isolate->wasm_stacks(); in ReportLiveCodeFromStackForGC()
/third_party/node/deps/v8/src/execution/
Dframes.h52 class StackMemory; variable
1247 wasm::StackMemory* stack);
1264 void Reset(ThreadLocalTop* top, wasm::StackMemory* stack);
Disolate.h166 class StackMemory; variable
1945 wasm::StackMemory*& wasm_stacks() { return wasm_stacks_; } in wasm_stacks()
2398 wasm::StackMemory* wasm_stacks_;
Dframes.cc115 wasm::StackMemory* stack) in StackFrameIterator()
164 void StackFrameIterator::Reset(ThreadLocalTop* top, wasm::StackMemory* stack) { in Reset()
Disolate.cc582 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/
Druntime-wasm.cc732 auto stack = Managed<wasm::StackMemory>::cast(continuation.stack()).get(); in SyncStackLimit()
756 Managed<wasm::StackMemory>::cast(target->stack()).get().get(); in RUNTIME_FUNCTION()