Lines Matching refs:current

1426   const HInliner* current = this;  in CountRecursiveCallsOf()  local
1429 if (current->graph_->GetArtMethod() == method) { in CountRecursiveCallsOf()
1432 current = current->parent_; in CountRecursiveCallsOf()
1433 } while (current != nullptr); in CountRecursiveCallsOf()
1811 HInstruction* current = instructions.Current(); in SubstituteArguments() local
1812 if (current->IsParameterValue()) { in SubstituteArguments()
1815 current->ReplaceWith(callee_graph->GetNullConstant()); in SubstituteArguments()
1817 current->ReplaceWith(callee_graph->GetIntConstant(argument->AsIntConstant()->GetValue())); in SubstituteArguments()
1819 current->ReplaceWith(callee_graph->GetLongConstant(argument->AsLongConstant()->GetValue())); in SubstituteArguments()
1821 current->ReplaceWith( in SubstituteArguments()
1824 current->ReplaceWith( in SubstituteArguments()
1829 current->SetReferenceTypeInfo(receiver_type); in SubstituteArguments()
1831 current->SetReferenceTypeInfo(argument->GetReferenceTypeInfo()); in SubstituteArguments()
1833 current->AsParameterValue()->SetCanBeNull(argument->CanBeNull()); in SubstituteArguments()
1943 HInstruction* current = instr_it.Current(); in CanInlineBody() local
1944 if (current->NeedsEnvironment() && in CanInlineBody()
1953 if (current->NeedsEnvironment() && in CanInlineBody()
1958 << " could not be inlined because " << current->DebugName() in CanInlineBody()
1964 if (!same_dex_file && current->NeedsDexCacheOfDeclaringClass()) { in CanInlineBody()
1967 << " could not be inlined because " << current->DebugName() in CanInlineBody()
1972 if (current->IsUnresolvedStaticFieldGet() || in CanInlineBody()
1973 current->IsUnresolvedInstanceFieldGet() || in CanInlineBody()
1974 current->IsUnresolvedStaticFieldSet() || in CanInlineBody()
1975 current->IsUnresolvedInstanceFieldSet()) { in CanInlineBody()