Searched refs:TrueValue (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | SjLjEHPrepare.cpp | 261 Value *TrueValue = ConstantInt::getTrue(F.getContext()); in lowerIncomingArguments() local 263 Instruction *SI = SelectInst::Create(TrueValue, AI, UndefValue, in lowerIncomingArguments()
|
D | WinEHPrepare.cpp | 535 Value *TrueValue = ConstantInt::getTrue(Context); in prepareExceptionHandlers() local 538 SelectInst::Create(TrueValue, Arg, UndefValue, in prepareExceptionHandlers()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 1956 Value *TrueValue = TrueRet->getReturnValue(); in SimplifyCondBranchToTwoReturns() local 1960 if (PHINode *TVPN = dyn_cast_or_null<PHINode>(TrueValue)) in SimplifyCondBranchToTwoReturns() 1962 TrueValue = TVPN->getIncomingValueForBlock(BI->getParent()); in SimplifyCondBranchToTwoReturns() 1972 if (ConstantExpr *TCV = dyn_cast_or_null<ConstantExpr>(TrueValue)) in SimplifyCondBranchToTwoReturns() 1986 if (TrueValue) { in SimplifyCondBranchToTwoReturns() 1988 if (TrueValue == FalseValue || isa<UndefValue>(FalseValue)) { in SimplifyCondBranchToTwoReturns() 1989 } else if (isa<UndefValue>(TrueValue)) { in SimplifyCondBranchToTwoReturns() 1990 TrueValue = FalseValue; in SimplifyCondBranchToTwoReturns() 1992 TrueValue = Builder.CreateSelect(BrCond, TrueValue, in SimplifyCondBranchToTwoReturns() 1997 Value *RI = !TrueValue ? in SimplifyCondBranchToTwoReturns() [all …]
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 3862 int TrueValue; in ExpandNode() local 3866 TrueValue = 1; in ExpandNode() 3869 TrueValue = -1; in ExpandNode() 3873 DAG.getConstant(TrueValue, VT), DAG.getConstant(0, VT), in ExpandNode()
|
D | SelectionDAG.cpp | 1077 SDValue TrueValue; in getLogicalNOT() local 1081 TrueValue = getConstant(1, VT); in getLogicalNOT() 1084 TrueValue = getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), in getLogicalNOT() 1088 return getNode(ISD::XOR, DL, VT, Val, TrueValue); in getLogicalNOT()
|
/external/v8/src/heap/ |
D | heap.h | 38 V(Oddball, true_value, TrueValue) \
|