Home
last modified time | relevance | path

Searched refs:WasmCompiledFrame (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/
Dframes.cc1758 void WasmCompiledFrame::Print(StringStream* accumulator, PrintMode mode, in Print()
1786 Code* WasmCompiledFrame::unchecked_code() const { in unchecked_code()
1790 void WasmCompiledFrame::Iterate(RootVisitor* v) const { in Iterate()
1794 Address WasmCompiledFrame::GetCallerStackPointer() const { in GetCallerStackPointer()
1798 wasm::WasmCode* WasmCompiledFrame::wasm_code() const { in wasm_code()
1802 WasmInstanceObject* WasmCompiledFrame::wasm_instance() const { in wasm_instance()
1808 WasmModuleObject* WasmCompiledFrame::module_object() const { in module_object()
1812 uint32_t WasmCompiledFrame::function_index() const { in function_index()
1816 Script* WasmCompiledFrame::script() const { return module_object()->script(); } in script()
1818 int WasmCompiledFrame::position() const { in position()
[all …]
Dframes-inl.h196 inline WasmCompiledFrame::WasmCompiledFrame(StackFrameIteratorBase* iterator) in WasmCompiledFrame() function
Dframes.h93 V(WASM_COMPILED, WasmCompiledFrame) \
960 class WasmCompiledFrame final : public StandardFrame {
988 static WasmCompiledFrame* cast(StackFrame* frame) { in cast()
990 return static_cast<WasmCompiledFrame*>(frame); in cast()
994 inline explicit WasmCompiledFrame(StackFrameIteratorBase* iterator);
Disolate.cc458 if (WasmCompiledFrame::cast(frame)->at_to_number_conversion()) { in AppendStandardFrame()
633 builder.AppendStandardFrame(WasmCompiledFrame::cast(frame)); in CaptureSimpleStackTrace()
1317 WasmCompiledFrame* wasm_frame = static_cast<WasmCompiledFrame*>(frame); in Throw()
/external/v8/src/runtime/
Druntime-wasm.cc35 result = WasmCompiledFrame::cast(it.frame())->wasm_instance(); in GetWasmInstanceOnStackTop()
Druntime-test.cc1012 WasmCompiledFrame* frame = WasmCompiledFrame::cast(it.frame()); in RUNTIME_FUNCTION()