HomeSort by relevance Sort by last modified time
    Searched refs:isNullValue (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/llvm/include/llvm/IR/
Constant.h 52 /// isNullValue - Return true if this is the value that would be returned by
54 bool isNullValue() const;
  /external/llvm/lib/IR/
ConstantFold.cpp 47 if (CV->isNullValue()) return Constant::getNullValue(DstTy);
243 if (RHS->isNullValue())
521 if (V->isNullValue() && !DestTy->isX86_MMXTy())
536 if (!CE->getOperand(i)->isNullValue()) {
599 if (V->isNullValue()) // Is it an integral null value?
604 if (V->isNullValue())
611 CE->getOperand(0)->isNullValue()) {
625 CE->getOperand(1)->isNullValue()) {
697 if (Cond->isNullValue()) return V2;
708 Constant *V = Cond->isNullValue() ? V2 : V1
    [all...]
Constants.cpp 64 return isNullValue();
75 return isNullValue();
78 bool Constant::isNullValue() const {
267 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
758 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
879 isZero = V[0]->isNullValue();
882 if (!V[i]->isNullValue())
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
EncryptedPrivateKeyInfo.java 101 if (params != null && !isNullValue(params)) {
116 private static boolean isNullValue(byte[] toCheck) {
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 62 bool IsNullValue(Value *V);
211 if (!C->isNullValue())
315 bool ShadowStackGC::IsNullValue(Value *V) {
317 return C->isNullValue();
337 if (IsNullValue(CI->getArgOperand(1)))
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 54 if (!C->isNullValue())
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 50 if (C->isNullValue() && !DestTy->isX86_MMXTy())
517 if (GV->getInitializer()->isNullValue())
672 CE->getOperand(0)->isNullValue()) {
719 if (Ptr->isNullValue() || BasePtr != 0) {
    [all...]
SparsePropagation.cpp 157 Succs[C->isNullValue()] = true;
ValueTracking.cpp     [all...]
LazyValueInfo.cpp     [all...]
LoopInfo.cpp 163 if (CI->isNullValue())
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 557 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
    [all...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 55 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
  /external/clang/lib/CodeGen/
CGDecl.cpp 681 return Init->isNullValue() || NumStores--;
712 assert(!Init->isNullValue() && !isa<llvm::UndefValue>(Init) &&
728 if (!Elt->isNullValue() && !isa<llvm::UndefValue>(Elt))
742 if (!Elt->isNullValue() && !isa<llvm::UndefValue>(Elt))
    [all...]
CGExprConstant.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 129 if (CV->isNullValue() || isa<UndefValue>(CV))
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 242 if (CS->getOperand(1)->isNullValue())
  /external/llvm/lib/Target/R600/
SIISelLowering.cpp 386 && False->isNullValue()
406 && C->isNullValue()
AMDGPUISelLowering.cpp 365 return C->isNullValue();
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 389 if (C1->isNullValue() && C2->isNullValue() &&
GlobalOpt.cpp 568 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
594 !cast<Constant>(U->getOperand(1))->isNullValue() ||
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 430 if (C->isNullValue()) {
437 if (C->isNullValue()) {
InstructionCombining.cpp 703 InV = InC->isNullValue() ? FalseVInPred : TrueVInPred;
    [all...]
InstCombineCompares.cpp 642 !cast<Constant>(GEPLHS->getOperand(i))->isNullValue()) {
654 !cast<Constant>(GEPRHS->getOperand(i))->isNullValue()) {
    [all...]

Completed in 1135 milliseconds

1 2 3