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

1 2 3

  /external/llvm/include/llvm/
Constant.h 51 /// isNullValue - Return true if this is the value that would be returned by
53 bool isNullValue() const;
  /external/llvm/lib/VMCore/
ConstantFold.cpp 48 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()) // ee(zero, x) -> zer
    [all...]
Constants.cpp 49 return isNullValue();
52 bool Constant::isNullValue() const {
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();
    [all...]
Instruction.cpp 407 return Op && !Op->isNullValue();
414 return Op && !Op->isNullValue() && !Op->isAllOnesValue();
  /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/SelectionDAG/
DAGCombiner.cpp 512 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
    [all...]
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 62 bool IsNullValue(Value *V);
212 if (!C->isNullValue())
316 bool ShadowStackGC::IsNullValue(Value *V) {
318 return C->isNullValue();
338 if (IsNullValue(CI->getArgOperand(1)))
ELFWriter.cpp 665 if (List->isNullValue()) return;
668 if (InitList->getOperand(i)->isNullValue())
672 if (CS->getOperand(1)->isNullValue())
    [all...]
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 55 if (!C->isNullValue())
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 49 if (C->isNullValue() && !DestTy->isX86_MMXTy())
487 if (GV->getInitializer()->isNullValue())
600 CE->getOperand(0)->isNullValue()) {
646 if (Ptr->isNullValue() || BasePtr != 0) {
    [all...]
SparsePropagation.cpp 157 Succs[C->isNullValue()] = true;
ValueTracking.cpp 760 if (C->isNullValue())
    [all...]
LazyValueInfo.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 237 if (C->isNullValue()) {
244 if (C->isNullValue()) {
InstructionCombining.cpp 673 InV = InC->isNullValue() ? FalseVInPred : TrueVInPred;
824 if (!isa<Constant>(*I) || !cast<Constant>(*I)->isNullValue()) {
    [all...]
InstCombineMulDivRem.cpp 302 if (ST->isNullValue())
306 if (ST->isNullValue())
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 55 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 271 if (!C->isNullValue() && !isa<UndefValue>(C))
GlobalOpt.cpp 401 !cast<Constant>(GEPI->getOperand(1))->isNullValue())
427 !cast<Constant>(U->getOperand(1))->isNullValue() ||
    [all...]
MergeFunctions.cpp 391 if (C1->isNullValue() && C2->isNullValue() &&
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 630 return Init->isNullValue() || NumStores--;
660 if (!Init->isNullValue())
670 if (Elt->isNullValue()) continue;
    [all...]
  /external/llvm/lib/Target/PTX/
PTXISelLowering.cpp 160 cast<ConstantSDNode>(Op1)->isNullValue()) &&
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 210 if (CS->getOperand(1)->isNullValue())
  /external/llvm/lib/Target/CBackend/
CBackend.cpp 571 !cast<Constant>(*(CPA->op_end()-1))->isNullValue()))
    [all...]

Completed in 779 milliseconds

1 2 3