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