Home
last modified time | relevance | path

Searched refs:GetInputRecords (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dnodes.h2067 virtual ArrayRef<HUserRecord<HInstruction*>> GetInputRecords() = 0;
2069 ArrayRef<const HUserRecord<HInstruction*>> GetInputRecords() const { in GetInputRecords() function
2072 const_cast<HInstruction*>(this)->GetInputRecords()); in GetInputRecords()
2076 return MakeTransformArrayRef(GetInputRecords(), HInputExtractor()); in GetInputs()
2080 return MakeTransformArrayRef(GetInputRecords(), HInputExtractor()); in GetInputs()
2083 size_t InputCount() const { return GetInputRecords().size(); } in InputCount()
2190 for (const HUserRecord<HInstruction*>& input_use : GetInputRecords()) { in RemoveAsUserOfAllInputs()
2426 return GetInputRecords()[i]; in InputRecordAt()
2430 ArrayRef<HUserRecord<HInstruction*>> input_records = GetInputRecords(); in SetRawInputRecordAt()
2648 using HInstruction::GetInputRecords; // Keep the const version visible.
[all …]
Dgraph_checker.cc439 auto&& input_records = instruction->GetInputRecords(); in VisitInstruction()
810 ArrayRef<HUserRecord<HInstruction*>> input_records = phi->GetInputRecords(); in VisitPhi()
Dssa_builder.cc652 ArrayRef<HUserRecord<HInstruction*>> new_input_records = new_phi->GetInputRecords(); in GetFloatDoubleOrReferenceEquivalentOfPhi()