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

/art/compiler/optimizing/
H A Dgraph_checker.cc410 auto&& input_records = instruction->GetInputRecords(); local
411 for (size_t i = 0; i < input_records.size(); ++i) {
412 const HUserRecord<HInstruction*>& input_record = input_records[i];
726 ArrayRef<HUserRecord<HInstruction*>> input_records = phi->GetInputRecords(); local
727 if (input_records[0].GetInstruction() == phi) {
734 for (size_t i = 0; i < input_records.size(); ++i) {
735 HInstruction* input = input_records[i].GetInstruction();
758 if (input_records.empty()) {
766 if (input_records.size() != input_count_next) {
771 input_records
[all...]
H A Dnodes.h2352 ArrayRef<HUserRecord<HInstruction*>> input_records = GetInputRecords(); local
2353 input_records[index] = input;
4520 ArrayRef<HUserRecord<HInstruction*>> input_records = HInvoke::GetInputRecords(); variable
4522 DCHECK(!input_records.empty());
4523 DCHECK_GT(input_records.size(), GetNumberOfArguments());
4524 HInstruction* last_input = input_records.back().GetInstruction();
4534 return input_records;

Completed in 521 milliseconds