Searched refs:MaxRecurse (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 140 unsigned MaxRecurse) { in ExpandBinOp() argument 143 if (!MaxRecurse--) in ExpandBinOp() 152 if (Value *L = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) in ExpandBinOp() 153 if (Value *R = SimplifyBinOp(Opcode, B, C, Q, MaxRecurse)) { in ExpandBinOp() 162 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) { in ExpandBinOp() 175 if (Value *L = SimplifyBinOp(Opcode, A, B, Q, MaxRecurse)) in ExpandBinOp() 176 if (Value *R = SimplifyBinOp(Opcode, A, C, Q, MaxRecurse)) { in ExpandBinOp() 185 if (Value *V = SimplifyBinOp(OpcodeToExpand, L, R, Q, MaxRecurse)) { in ExpandBinOp() 198 const Query &Q, unsigned MaxRecurse) { in SimplifyAssociativeBinOp() argument 203 if (!MaxRecurse--) in SimplifyAssociativeBinOp() [all …]
|