Searched defs:ShadowFrame (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dstack.h45 class ShadowFrame;
71 using ShadowFrameAllocaUniquePtr = std::unique_ptr<ShadowFrame, ShadowFrameDeleter>;
74 // The vector will be visited with the ShadowFrame during GC (so all the locked-on objects are
112 // ShadowFrame has 2 possible layouts:
115 class ShadowFrame { class in namespace:art
117 // Compute size of ShadowFrame in bytes assuming it has a reference array.
119 return sizeof(ShadowFrame) + (sizeof(uint32_t) * num_vregs) +
123 // Create ShadowFrame in heap for deoptimization.
124 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* lin
415 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, function in class:art::ShadowFrame
[all...]

Completed in 411 milliseconds