Home
last modified time | relevance | path

Searched refs:EmulatedStackFrame (Results 1 – 8 of 8) sorted by relevance

/art/runtime/mirror/
Demulated_stack_frame-inl.h29 inline ObjPtr<mirror::MethodType> EmulatedStackFrame::GetType() { in GetType()
30 return GetFieldObject<MethodType>(OFFSET_OF_OBJECT_MEMBER(EmulatedStackFrame, type_)); in GetType()
33 inline ObjPtr<mirror::Object> EmulatedStackFrame::GetReceiver() { in GetReceiver()
37 inline ObjPtr<mirror::ObjectArray<mirror::Object>> EmulatedStackFrame::GetReferences() { in GetReferences()
39 OFFSET_OF_OBJECT_MEMBER(EmulatedStackFrame, references_)); in GetReferences()
42 inline ObjPtr<mirror::ByteArray> EmulatedStackFrame::GetStackFrame() { in GetStackFrame()
44 OFFSET_OF_OBJECT_MEMBER(EmulatedStackFrame, stack_frame_)); in GetStackFrame()
Demulated_stack_frame.h35 class MANAGED EmulatedStackFrame : public Object {
39 static ObjPtr<mirror::EmulatedStackFrame> CreateFromShadowFrameAndArgs(
70 return MemberOffset(OFFSETOF_MEMBER(EmulatedStackFrame, callsite_type_)); in CallsiteTypeOffset()
74 return MemberOffset(OFFSETOF_MEMBER(EmulatedStackFrame, type_)); in TypeOffset()
78 return MemberOffset(OFFSETOF_MEMBER(EmulatedStackFrame, references_)); in ReferencesOffset()
82 return MemberOffset(OFFSETOF_MEMBER(EmulatedStackFrame, stack_frame_)); in StackFrameOffset()
91 DISALLOW_IMPLICIT_CONSTRUCTORS(EmulatedStackFrame);
Demulated_stack_frame.cc146 ObjPtr<mirror::EmulatedStackFrame> EmulatedStackFrame::CreateFromShadowFrameAndArgs( in CreateFromShadowFrameAndArgs()
197 Handle<EmulatedStackFrame> sf(hs.NewHandle( in CreateFromShadowFrameAndArgs()
198 ObjPtr<EmulatedStackFrame>::DownCast(GetClassRoot<EmulatedStackFrame>()->AllocObject(self)))); in CreateFromShadowFrameAndArgs()
207 bool EmulatedStackFrame::WriteToShadowFrame(Thread* self, in WriteToShadowFrame()
232 void EmulatedStackFrame::GetReturnValue(Thread* self, JValue* value) { in GetReturnValue()
256 void EmulatedStackFrame::SetReturnValue(Thread* self, const JValue& value) { in SetReturnValue()
/art/test/958-methodhandle-stackframe/
Dinfo.txt1 Tests for dalvik.system.EmulatedStackFrame, which is used to implement
/art/test/958-methodhandle-stackframe/src-art/
DMain.java24 import dalvik.system.EmulatedStackFrame;
78 public void transform(EmulatedStackFrame stackFrame) throws Throwable { in transform()
/art/runtime/
Dmethod_handles.cc480 ObjPtr<mirror::EmulatedStackFrame> emulated_stack_frame( in MethodHandleInvokeMethod()
481 ObjPtr<mirror::EmulatedStackFrame>::DownCast( in MethodHandleInvokeMethod()
529 Handle<mirror::EmulatedStackFrame> emulated_stack_frame( in MethodHandleInvokeMethod()
530 hs.NewHandle(ObjPtr<mirror::EmulatedStackFrame>::DownCast( in MethodHandleInvokeMethod()
577 MutableHandle<mirror::EmulatedStackFrame> sf(hs.NewHandle<mirror::EmulatedStackFrame>(nullptr)); in MethodHandleInvokeTransform()
583 sf.Assign(ObjPtr<mirror::EmulatedStackFrame>::DownCast( in MethodHandleInvokeTransform()
586 sf.Assign(mirror::EmulatedStackFrame::CreateFromShadowFrameAndArgs(self, in MethodHandleInvokeTransform()
657 receiver = ObjPtr<mirror::EmulatedStackFrame>::DownCast(receiver)->GetReceiver(); in RefineTargetMethod()
Dclass_root.h38 class EmulatedStackFrame; variable
85 …rame, "Ldalvik/system/EmulatedStackFrame;", mirror::EmulatedStackFrame) …
Dclass_linker_test.cc776 struct EmulatedStackFrameOffsets : public CheckOffsets<mirror::EmulatedStackFrame> {
777 EmulatedStackFrameOffsets() : CheckOffsets<mirror::EmulatedStackFrame>( in EmulatedStackFrameOffsets()
779 addOffset(OFFSETOF_MEMBER(mirror::EmulatedStackFrame, callsite_type_), "callsiteType"); in EmulatedStackFrameOffsets()
780 addOffset(OFFSETOF_MEMBER(mirror::EmulatedStackFrame, references_), "references"); in EmulatedStackFrameOffsets()
781 addOffset(OFFSETOF_MEMBER(mirror::EmulatedStackFrame, stack_frame_), "stackFrame"); in EmulatedStackFrameOffsets()
782 addOffset(OFFSETOF_MEMBER(mirror::EmulatedStackFrame, type_), "type"); in EmulatedStackFrameOffsets()