Home
last modified time | relevance | path

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

/trueos/contrib/llvm/include/llvm/Analysis/
HDInstructionSimplify.h181 Value *SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
/trueos/contrib/llvm/lib/Analysis/
HDInstructionSimplify.cpp2697 static Value *SimplifySelectInst(Value *CondVal, Value *TrueVal, in SimplifySelectInst() function
2722 Value *llvm::SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal, in SimplifySelectInst() function in llvm
2726 return ::SimplifySelectInst(Cond, TrueVal, FalseVal, Query (TD, TLI, DT), in SimplifySelectInst()
3124 Result = SimplifySelectInst(I->getOperand(0), I->getOperand(1), in SimplifyInstruction()
/trueos/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineSelect.cpp737 if (Value *V = SimplifySelectInst(CondVal, TrueVal, FalseVal, TD)) in visitSelectInst()