HomeSort by relevance Sort by last modified time
    Searched refs:FalseVal (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 38 Value *FalseVal = SI->getFalseValue();
44 if (TrueVal == CmpLHS && FalseVal == CmpRHS) {
59 if (TrueVal == CmpRHS && FalseVal == CmpLHS) {
74 if ((CmpLHS == TrueVal && match(FalseVal, m_Neg(m_Specific(CmpLHS)))) ||
75 (CmpLHS == FalseVal && match(TrueVal, m_Neg(m_Specific(CmpLHS))))) {
86 return (CmpLHS == FalseVal) ? SPF_ABS : SPF_NABS;
236 Value *FalseVal) {
241 !isa<Constant>(FalseVal)) {
244 if ((SFO & 1) && FalseVal == TVI->getOperand(0)) {
246 } else if ((SFO & 2) && FalseVal == TVI->getOperand(1))
    [all...]
InstCombineVectorOps.cpp 298 Value *FalseVal = SI->getFalseValue();
313 = Builder->CreateExtractElement(FalseVal,
315 FalseVal->getName() + ".elt");
    [all...]
  /external/llvm/include/llvm/Analysis/
InstructionSimplify.h 187 Value *SimplifySelectInst(Value *Cond, Value *TrueVal, Value *FalseVal,
  /external/llvm/include/llvm/IR/
PatternMatch.h 956 Value *FalseVal = SI->getFalseValue();
959 if ((TrueVal != LHS || FalseVal != RHS) &&
960 (TrueVal != RHS || FalseVal != LHS))
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 576 Constant *FalseVal = getKnownConstant(SI->getFalseValue(), Preference);
578 if ((TrueVal || FalseVal) &&
598 if (Constant *Val = KnownCond ? TrueVal : FalseVal)
    [all...]
GVN.cpp     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 746 if (ConstantExpr *FalseVal = dyn_cast<ConstantExpr>(V2)) {
747 if (FalseVal->getOpcode() == Instruction::Select)
748 if (FalseVal->getOperand(0) == Cond)
749 return ConstantExpr::getSelect(Cond, V1, FalseVal->getOperand(2));
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 1755 milliseconds