Home
last modified time | relevance | path

Searched refs:TrueValue (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/CodeGen/
DSjLjEHPrepare.cpp261 Value *TrueValue = ConstantInt::getTrue(F.getContext()); in lowerIncomingArguments() local
264 TrueValue, &AI, UndefValue, AI.getName() + ".tmp", &*AfterAllocaInsPt); in lowerIncomingArguments()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp1981 Value *TrueValue = TrueRet->getReturnValue(); in SimplifyCondBranchToTwoReturns() local
1985 if (PHINode *TVPN = dyn_cast_or_null<PHINode>(TrueValue)) in SimplifyCondBranchToTwoReturns()
1987 TrueValue = TVPN->getIncomingValueForBlock(BI->getParent()); in SimplifyCondBranchToTwoReturns()
1997 if (ConstantExpr *TCV = dyn_cast_or_null<ConstantExpr>(TrueValue)) in SimplifyCondBranchToTwoReturns()
2011 if (TrueValue) { in SimplifyCondBranchToTwoReturns()
2013 if (TrueValue == FalseValue || isa<UndefValue>(FalseValue)) { in SimplifyCondBranchToTwoReturns()
2014 } else if (isa<UndefValue>(TrueValue)) { in SimplifyCondBranchToTwoReturns()
2015 TrueValue = FalseValue; in SimplifyCondBranchToTwoReturns()
2017 TrueValue = Builder.CreateSelect(BrCond, TrueValue, in SimplifyCondBranchToTwoReturns()
2022 Value *RI = !TrueValue ? in SimplifyCondBranchToTwoReturns()
[all …]
/external/v8/src/heap/
Dheap.h36 V(Oddball, true_value, TrueValue) \
414 V(TrueValue) \
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp3789 int TrueValue; in ExpandNode() local
3793 TrueValue = 1; in ExpandNode()
3796 TrueValue = -1; in ExpandNode()
3800 DAG.getConstant(TrueValue, dl, VT), in ExpandNode()
DSelectionDAG.cpp1091 SDValue TrueValue; in getLogicalNOT() local
1095 TrueValue = getConstant(1, DL, VT); in getLogicalNOT()
1098 TrueValue = getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), DL, in getLogicalNOT()
1102 return getNode(ISD::XOR, DL, VT, Val, TrueValue); in getLogicalNOT()