Home
last modified time | relevance | path

Searched refs:InterpretedFrame (Results 1 – 17 of 17) sorted by relevance

/external/v8/src/wasm/
Dwasm-interpreter.h59 class InterpretedFrame {
74 InterpretedFrame() = delete;
75 DISALLOW_COPY_AND_ASSIGN(InterpretedFrame);
81 void operator()(InterpretedFrame* ptr);
105 using FramePtr = std::unique_ptr<InterpretedFrame, InterpretedFrameDeleter>;
Dwasm-objects.h23 class InterpretedFrame; variable
589 std::unique_ptr<wasm::InterpretedFrame, wasm::InterpretedFrameDeleter>
Dwasm-interpreter.cc2998 InterpretedFrame* ToFrame(InterpretedFrameImpl* impl) { in ToFrame()
2999 return reinterpret_cast<InterpretedFrame*>(impl); in ToFrame()
3001 const InterpretedFrameImpl* ToImpl(const InterpretedFrame* frame) { in ToImpl()
3201 const WasmFunction* InterpretedFrame::function() const { in function()
3204 int InterpretedFrame::pc() const { return ToImpl(this)->pc(); } in pc()
3205 int InterpretedFrame::GetParameterCount() const { in GetParameterCount()
3208 int InterpretedFrame::GetLocalCount() const { in GetLocalCount()
3211 int InterpretedFrame::GetStackHeight() const { in GetStackHeight()
3214 WasmValue InterpretedFrame::GetLocalValue(int index) const { in GetLocalValue()
3217 WasmValue InterpretedFrame::GetStackValue(int index) const { in GetStackValue()
[all …]
Dwasm-debug.cc406 Handle<JSObject> GetGlobalScopeObject(InterpretedFrame* frame, in GetGlobalScopeObject()
430 Handle<JSObject> GetLocalScopeObject(InterpretedFrame* frame, in GetLocalScopeObject()
/external/v8/src/
Dframes.cc759 Address InterpretedFrame::GetExpressionAddress(int n) const { in GetExpressionAddress()
1145 InterpretedFrame* iframe = reinterpret_cast<InterpretedFrame*>(frame); in PrintTop()
1203 InterpretedFrame* iframe = reinterpret_cast<InterpretedFrame*>(frame); in CollectTopFrameForICStats()
1649 int InterpretedFrame::position() const { in position()
1655 int InterpretedFrame::LookupExceptionHandlerInTable( in LookupExceptionHandlerInTable()
1661 int InterpretedFrame::GetBytecodeOffset() const { in GetBytecodeOffset()
1670 int InterpretedFrame::GetBytecodeOffset(Address fp) { in GetBytecodeOffset()
1681 void InterpretedFrame::PatchBytecodeOffset(int new_offset) { in PatchBytecodeOffset()
1690 BytecodeArray* InterpretedFrame::GetBytecodeArray() const { in GetBytecodeArray()
1698 void InterpretedFrame::PatchBytecodeArray(BytecodeArray* bytecode_array) { in PatchBytecodeArray()
[all …]
Dframes-inl.h185 inline InterpretedFrame::InterpretedFrame(StackFrameIteratorBase* iterator) in InterpretedFrame() function
Dframes.h99 V(INTERPRETED, InterpretedFrame) \
862 class InterpretedFrame : public JavaScriptFrame {
896 static InterpretedFrame* cast(StackFrame* frame) { in cast()
898 return static_cast<InterpretedFrame*>(frame); in cast()
902 inline explicit InterpretedFrame(StackFrameIteratorBase* iterator);
Disolate.cc714 InterpretedFrame* iframe = static_cast<InterpretedFrame*>(frame); in GetAbstractPC()
1396 InterpretedFrame* js_frame = static_cast<InterpretedFrame*>(frame); in Throw()
1653 InterpretedFrame* interpreted_frame = InterpretedFrame::cast(frame); in Throw()
Ddeoptimizer.cc929 Register fp_reg = InterpretedFrame::fp_register(); in DoComputeInterpretedFrame()
1042 InterpretedFrame::constant_pool_pointer_register(); in DoComputeInterpretedFrame()
2625 TranslatedFrame TranslatedFrame::InterpretedFrame( in InterpretedFrame() function in v8::internal::TranslatedFrame
2722 return TranslatedFrame::InterpretedFrame(bytecode_offset, shared_info, in CreateNextTranslatedFrame()
Ddeoptimizer.h225 static TranslatedFrame InterpretedFrame(BailoutId bytecode_offset,
/external/v8/src/runtime/
Druntime-interpreter.cc85 InterpretedFrame* frame = in PrintRegisters()
86 reinterpret_cast<InterpretedFrame*>(frame_iterator.frame()); in PrintRegisters()
Druntime-compiler.cc202 InterpretedFrame* iframe = reinterpret_cast<InterpretedFrame*>(frame); in DetermineEntryAndDisarmOSRForInterpreter()
Druntime-debug.cc56 InterpretedFrame* interpreted_frame = in RUNTIME_FUNCTION_RETURN_PAIR()
57 reinterpret_cast<InterpretedFrame*>(it.frame()); in RUNTIME_FUNCTION_RETURN_PAIR()
/external/v8/src/profiler/
Dtick-sample.cc252 i::InterpretedFrame* frame = in GetStackSample()
253 static_cast<i::InterpretedFrame*>(it.frame()); in GetStackSample()
/external/v8/src/debug/
Ddebug.h330 bool PerformSideEffectCheckAtBytecode(InterpretedFrame* frame);
Ddebug.cc139 InterpretedFrame::cast(frame)->ReadInterpreterRegister( in GetGeneratorObjectForSuspendedFrame()
1151 InterpretedFrame* interpreted_frame = in VisitThread()
1152 reinterpret_cast<InterpretedFrame*>(frame); in VisitThread()
2203 bool Debug::PerformSideEffectCheckAtBytecode(InterpretedFrame* frame) { in PerformSideEffectCheckAtBytecode()
/external/v8/src/ic/
Dic.cc132 code_offset = InterpretedFrame::GetBytecodeOffset(fp()); in TraceIC()