Lines Matching refs:ArtMethod
48 class ArtMethod; variable
303 mirror::ArtMethod* GetResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
309 void SetResolutionMethod(mirror::ArtMethod* method) { in SetResolutionMethod()
310 resolution_method_ = GcRoot<mirror::ArtMethod>(method); in SetResolutionMethod()
313 mirror::ArtMethod* CreateResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
316 mirror::ArtMethod* GetImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
317 mirror::ArtMethod* GetImtUnimplementedMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
323 void SetImtConflictMethod(mirror::ArtMethod* method) { in SetImtConflictMethod()
324 imt_conflict_method_ = GcRoot<mirror::ArtMethod>(method); in SetImtConflictMethod()
326 void SetImtUnimplementedMethod(mirror::ArtMethod* method) { in SetImtUnimplementedMethod()
327 imt_unimplemented_method_ = GcRoot<mirror::ArtMethod>(method); in SetImtUnimplementedMethod()
330 mirror::ArtMethod* CreateImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
333 mirror::ObjectArray<mirror::ArtMethod>* GetDefaultImt()
340 void SetDefaultImt(mirror::ObjectArray<mirror::ArtMethod>* imt) { in SetDefaultImt()
341 default_imt_ = GcRoot<mirror::ObjectArray<mirror::ArtMethod>>(imt); in SetDefaultImt()
344 mirror::ObjectArray<mirror::ArtMethod>* CreateDefaultImt(ClassLinker* cl)
359 mirror::ArtMethod* GetCalleeSaveMethod(CalleeSaveType type)
362 mirror::ArtMethod* GetCalleeSaveMethodUnchecked(CalleeSaveType type)
369 QuickMethodFrameInfo GetRuntimeMethodFrameInfo(mirror::ArtMethod* method)
382 void SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type);
384 mirror::ArtMethod* CreateCalleeSaveMethod(CalleeSaveType type)
521 GcRoot<mirror::ArtMethod> callee_save_methods_[kLastCalleeSaveType];
524 GcRoot<mirror::ArtMethod> resolution_method_;
525 GcRoot<mirror::ArtMethod> imt_conflict_method_;
528 GcRoot<mirror::ArtMethod> imt_unimplemented_method_;
529 GcRoot<mirror::ObjectArray<mirror::ArtMethod>> default_imt_;