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

1 2 3

  /external/llvm/include/llvm/
Constant.h 52 /// isNullValue - Return true if this is the value that would be returned by
54 bool isNullValue() const;
  /external/llvm/lib/VMCore/
ConstantFold.cpp 47 if (CV->isNullValue()) return Constant::getNullValue(DstTy);
239 if (RHS->isNullValue())
521 if (V->isNullValue() && !DestTy->isX86_MMXTy())
536 if (!CE->getOperand(i)->isNullValue()) {
598 if (V->isNullValue()) // Is it an integral null value?
603 if (V->isNullValue())
610 CE->getOperand(0)->isNullValue()) {
624 CE->getOperand(1)->isNullValue()) {
695 if (Cond->isNullValue()) return V2;
706 Constant *V = Cond->isNullValue() ? V2 : V1
    [all...]
Constants.cpp 51 return isNullValue();
54 bool Constant::isNullValue() const {
242 if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
706 if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
827 isZero = V[0]->isNullValue();
830 if (!V[i]->isNullValue())
874 bool isZero = C->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())
647 CE->getOperand(0)->isNullValue()) {
694 if (Ptr->isNullValue() || BasePtr != 0) {
    [all...]
ValueTracking.cpp     [all...]
SparsePropagation.cpp 157 Succs[C->isNullValue()] = true;
LoopInfo.cpp 162 if (CI->isNullValue())
LazyValueInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 548 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 678 return Init->isNullValue() || NumStores--;
709 assert(!Init->isNullValue() && !isa<llvm::UndefValue>(Init) &&
725 if (!Elt->isNullValue() && !isa<llvm::UndefValue>(Elt))
739 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 81 if (CV->isNullValue() || isa<UndefValue>(CV))
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 242 if (CS->getOperand(1)->isNullValue())
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 391 if (C1->isNullValue() && C2->isNullValue() &&
GlobalOpt.cpp 564 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
590 !cast<Constant>(U->getOperand(1))->isNullValue() ||
    [all...]
FunctionAttrs.cpp 488 if (!C->isNullValue() && !isa<UndefValue>(C))
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 441 if (C->isNullValue()) {
448 if (C->isNullValue()) {
InstCombineMulDivRem.cpp 298 if (ST->isNullValue())
302 if (ST->isNullValue())
InstructionCombining.cpp 682 InV = InC->isNullValue() ? FalseVInPred : TrueVInPred;
833 if (!isa<Constant>(*I) || !cast<Constant>(*I)->isNullValue()) {
    [all...]
InstCombineCompares.cpp 642 !cast<Constant>(GEPLHS->getOperand(i))->isNullValue()) {
654 !cast<Constant>(GEPRHS->getOperand(i))->isNullValue()) {
    [all...]

Completed in 611 milliseconds

1 2 3