HomeSort by relevance Sort by last modified time
    Searched refs:old_method (Results 1 - 3 of 3) sorted by null

  /art/runtime/openjdkjvmti/
ti_redefine.cc 175 art::ArtMethod* old_method = GetMethod(); local
176 if (obsoleted_methods_.find(old_method) != obsoleted_methods_.end()) {
180 art::ArtMethod* new_obsolete_method = obsolete_maps_->FindObsoleteVersion(old_method);
189 << old_method->PrettyMethod() << "'";
191 new_obsolete_method->CopyFrom(old_method, ptr_size);
192 DCHECK_EQ(new_obsolete_method->GetDeclaringClass(), old_method->GetDeclaringClass());
196 obsolete_maps_->RecordObsolete(old_method, new_obsolete_method);
202 jit->GetCodeCache()->MoveObsoleteMethod(old_method, new_obsolete_method);
617 art::ArtMethod* old_method = FindMethod(h_klass, new_method_name, new_method_signature); local
621 if (old_method == nullptr)
    [all...]
  /art/runtime/jit/
jit_code_cache.cc 774 // This invalidates old_method. Once this function returns one can no longer use old_method to
777 // TODO We should add some info to ArtMethod to note that 'old_method' has been invalidated and
780 void JitCodeCache::MoveObsoleteMethod(ArtMethod* old_method, ArtMethod* new_method) {
782 if (old_method->IsNative()) {
786 // Update ProfilingInfo to the new one and remove it from the old_method.
787 if (old_method->GetProfilingInfo(kRuntimePointerSize) != nullptr) {
788 DCHECK_EQ(old_method->GetProfilingInfo(kRuntimePointerSize)->GetMethod(), old_method);
789 ProfilingInfo* info = old_method->GetProfilingInfo(kRuntimePointerSize)
    [all...]
jit_code_cache.h 238 // Notify the code cache that the method at the pointer 'old_method' is being moved to the pointer
240 void MoveObsoleteMethod(ArtMethod* old_method, ArtMethod* new_method)

Completed in 79 milliseconds