Home
last modified time | relevance | path

Searched refs:ifs (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Ddead_code_elimination.cc154 HIf* ifs = block->GetLastInstruction()->AsIf(); in RemoveNonNullControlDependences() local
165 HInstruction* cond = ifs->InputAt(0); in RemoveNonNullControlDependences()
167 if (throws == ifs->IfTrueSuccessor() && cond->IsEqual()) { in RemoveNonNullControlDependences()
168 not_throws = ifs->IfFalseSuccessor(); in RemoveNonNullControlDependences()
169 } else if (throws == ifs->IfFalseSuccessor() && cond->IsNotEqual()) { in RemoveNonNullControlDependences()
170 not_throws = ifs->IfTrueSuccessor(); in RemoveNonNullControlDependences()
Dinduction_var_analysis_test.cc1217 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); in TEST_F() local
1218 ifs->ReplaceInput(graph_->GetIntConstant(127), 1); in TEST_F()
1243 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); in TEST_F() local
1244 ifs->ReplaceInput(graph_->GetIntConstant(128), 1); in TEST_F()
1269 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); in TEST_F() local
1270 ifs->ReplaceInput(graph_->GetIntConstant(32767), 1); in TEST_F()
1295 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); in TEST_F() local
1296 ifs->ReplaceInput(graph_->GetIntConstant(32768), 1); in TEST_F()
1320 HInstruction* ifs = loop_header_[0]->GetLastInstruction()->GetPrevious(); in TEST_F() local
1321 ifs->ReplaceInput(graph_->GetIntConstant(65535), 1); in TEST_F()
[all …]
Dinduction_var_analysis.cc124 HIf* ifs = control->AsIf(); in IsGuardedBy() local
125 HInstruction* if_expr = ifs->InputAt(0); in IsGuardedBy()
127 IfCondition other_cmp = ifs->IfTrueSuccessor() == entry in IsGuardedBy()
895 HIf* ifs = control->AsIf(); in VisitControl() local
896 HBasicBlock* if_true = ifs->IfTrueSuccessor(); in VisitControl()
897 HBasicBlock* if_false = ifs->IfFalseSuccessor(); in VisitControl()
898 HInstruction* if_expr = ifs->InputAt(0); in VisitControl()
1138 HIf* ifs = loop->GetHeader()->GetLastInstruction()->AsIf(); in RewriteBreakLoop() local
1139 HInstruction* cond = ifs->InputAt(0); in RewriteBreakLoop()
1140 if (ifs->GetPrevious() != cond || !cond->HasOnlyOneNonEnvironmentUse()) { in RewriteBreakLoop()
[all …]
/art/tools/hiddenapi/
Dhiddenapi_test.cc142 std::ifstream ifs(file.GetFilename()); in ReadFlagsCsvFile() local
145 for (std::string line; std::getline(ifs, line);) { in ReadFlagsCsvFile()