Searched refs:isNullValue (Results 1 - 25 of 146) sorted by relevance

123456

/external/llvm/include/llvm/IR/
H A DConstant.h52 bool isNullValue() const;
/external/swiftshader/third_party/LLVM/include/llvm/
H A DConstant.h51 /// isNullValue - Return true if this is the value that would be returned by
53 bool isNullValue() const;
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DConstant.h54 bool isNullValue() const;
/external/llvm/lib/IR/
H A DConstantFold.cpp47 if (CV->isNullValue()) return Constant::getNullValue(DstTy);
259 if (RHS->isNullValue())
534 if (V->isNullValue() && !DestTy->isX86_MMXTy() &&
553 if (!CE->getOperand(i)->isNullValue()) {
621 if (V->isNullValue()) // Is it an integral null value?
626 if (V->isNullValue())
633 CE->getOperand(0)->isNullValue()) {
647 CE->getOperand(1)->isNullValue()) {
728 if (Cond->isNullValue()) return V2;
748 V = Cond->isNullValue()
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp29 (V && V->isNullValue()) ? STI.getBZeroEntry() : nullptr;
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DConstantFold.cpp48 if (CV->isNullValue()) return Constant::getNullValue(DstTy);
241 if (RHS->isNullValue())
523 if (V->isNullValue() && !DestTy->isX86_MMXTy())
538 if (!CE->getOperand(i)->isNullValue()) {
597 if (V->isNullValue()) // Is it an integral null value?
602 if (V->isNullValue())
609 CE->getOperand(0)->isNullValue()) {
623 CE->getOperand(1)->isNullValue()) {
697 if (Cond->isNullValue()) return V2;
758 if (Val->isNullValue()) // e
[all...]
H A DConstants.cpp49 return isNullValue();
52 bool Constant::isNullValue() const { function in class:Constant
201 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
612 if (!C->isNullValue())
682 if (!V[i]->isNullValue())
719 bool isZero = C->isNullValue();
1016 if (!getOperand(getNumOperands()-1)->isNullValue())
1022 if (getOperand(i)->isNullValue())
1925 if (!ToC->isNullValue()) {
1943 if (isAllZeros) isAllZeros = Val->isNullValue();
[all...]
H A DInstruction.cpp407 return Op && !Op->isNullValue();
414 return Op && !Op->isNullValue() && !Op->isAllOnesValue();
/external/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp69 if (GV->getInitializer()->isNullValue())
H A DEvaluator.cpp377 if (Val->isNullValue() && DestVal && DestVal->isNullValue()) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp512 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
1340 if (N1C && N1C->isNullValue())
1362 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
1366 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
1499 if (N1C && N1C->isNullValue())
1671 if (N1C && N1C->isNullValue())
1756 if (N0C && N1C && !N1C->isNullValue())
1773 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap() &&
1843 if (N0C && N1C && !N1C->isNullValue())
1866 if (N1C && !N1C->isNullValue()
[all...]
/external/llvm/lib/Analysis/
H A DVectorUtils.cpp274 if (Elt->isNullValue())
303 !cast<ConstantInt>(InsertEltInst->getOperand(2))->isNullValue())
H A DConstantFolding.cpp57 if (C->isNullValue() && !DestTy->isX86_MMXTy())
612 if (GV->getInitializer()->isNullValue())
774 CE->getOperand(0)->isNullValue()) {
824 if (Ptr->isNullValue() || BasePtr != 0) {
1103 if (Ops1->isNullValue()) {
1156 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) {
1244 if (!CE->getOperand(1)->isNullValue())
1875 if (MaskElt->isNullValue()) {
H A DSparsePropagation.cpp158 Succs[C->isNullValue()] = true;
/external/llvm/lib/CodeGen/
H A DShadowStackGCLowering.cpp208 if (!C->isNullValue())
321 return C->isNullValue();
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DShadowStackGC.cpp212 if (!C->isNullValue())
318 return C->isNullValue();
H A DELFWriter.cpp665 if (List->isNullValue()) return;
668 if (InitList->getOperand(i)->isNullValue())
672 if (CS->getOperand(1)->isNullValue())
/external/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp57 if (!C->isNullValue())
/external/swiftshader/third_party/LLVM/lib/Target/
H A DTargetLoweringObjectFile.cpp55 if (!C->isNullValue())
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp667 if (L->isNullValue() && R->isNullValue())
669 if (L->isNullValue() && !R->isNullValue())
671 if (!L->isNullValue() && R->isNullValue())
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DConstantFolding.cpp49 if (C->isNullValue() && !DestTy->isX86_MMXTy())
487 if (GV->getInitializer()->isNullValue())
600 CE->getOperand(0)->isNullValue()) {
646 if (Ptr->isNullValue() || BasePtr != 0) {
915 if (TD && Ops1->isNullValue()) {
963 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) {
H A DSparsePropagation.cpp157 Succs[C->isNullValue()] = true;
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp237 if (C->isNullValue()) {
244 if (C->isNullValue()) {
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp55 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DFunctionAttrs.cpp271 if (!C->isNullValue() && !isa<UndefValue>(C))

Completed in 444 milliseconds

123456