HomeSort by: relevance | last modified time | path
    Searched refs:getNullValue (Results 1 - 25 of 149) sorted by relevancy

1 2 3 4 5 6

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SanitizerStats.cpp 51 {Constant::getNullValue(Int8PtrTy),
86 {Constant::getNullValue(Int8PtrTy),
SimplifyLibCalls.cpp 326 return Constant::getNullValue(CI->getType());
354 return Constant::getNullValue(CI->getType());
726 return Constant::getNullValue(CI->getType());
732 return Constant::getNullValue(CI->getType());
764 return Constant::getNullValue(CI->getType());
784 return Constant::getNullValue(CI->getType());
819 ConstantInt::getNullValue(StrNCmp->getType()), "cmp");
839 return Constant::getNullValue(CI->getType());
874 return Constant::getNullValue(CI->getType());
946 return Constant::getNullValue(CI->getType())
    [all...]
FunctionImportUtils.cpp 255 V->setInitializer(Constant::getNullValue(V->getValueType()));
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Constant.h 52 /// Return true if this is the value that would be returned by getNullValue.
184 static Constant *getNullValue(Type* Ty);
FixedPointBuilder.h 53 Value *Zero = Constant::getNullValue(Result->getType());
213 Constant *Zero = Constant::getNullValue(Result->getType());
271 Constant *Zero = Constant::getNullValue(Result->getType());
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
Evaluator.h 51 Tmp->replaceAllUsesWith(Constant::getNullValue(Tmp->getType()));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
InstrOrderFile.cpp 83 Constant::getNullValue(BufferTy), SymbolName);
90 Constant::getNullValue(IdxTy), IndexName);
94 Constant::getNullValue(MapTy), BitMapName);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCXXABI.cpp 33 return llvm::Constant::getNullValue(CGM.getTypes().ConvertType(T));
54 llvm::Constant *FnPtr = llvm::Constant::getNullValue(FTy->getPointerTo());
65 return llvm::Constant::getNullValue(Ty);
CGExprComplex.cpp 239 llvm::Constant *Null = llvm::Constant::getNullValue(CGF.ConvertType(Elem));
246 llvm::Constant::getNullValue(CGF.ConvertType(Elem));
406 return ComplexPairTy(llvm::Constant::getNullValue(Imag->getType()), Imag);
453 return ComplexPairTy(Val, llvm::Constant::getNullValue(Val->getType()));
808 LibCallOp.LHS.second = llvm::Constant::getNullValue(LHSr->getType());
828 LHSi = llvm::Constant::getNullValue(RHSi->getType());
1094 llvm::Value* zeroConstant = llvm::Constant::getNullValue(LTy);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/Utils/
Local.h 98 return Result ? Result : Constant::getNullValue(IntIdxTy);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUOpenCLEnqueuedBlockLowering.cpp 119 /*Initializer=*/Constant::getNullValue(T), RuntimeHandle,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Reg2Mem.cpp 67 Constant::getNullValue(Type::getInt32Ty(F.getContext())),
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint-passes/
TestPasses.cpp 70 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 620 NewInsts[Base] = ConstantInt::getNullValue(IndexType);
730 Constant *Index = ConstantInt::getNullValue(IndexType);
837 Constant::getNullValue(Offset->getType()));
1146 return getICmp(I.ICMP_EQ, A, ConstantInt::getNullValue(A->getType()));
1197 return getICmp(I.ICMP_EQ, A, ConstantInt::getNullValue(A->getType()));
1352 X, ConstantInt::getNullValue(XTy));
1559 ConstantInt::getNullValue(X->getType()))
1594 ConstantInt::getNullValue(X->getType()));
1746 Constant *Zero = Constant::getNullValue(X->getType());
1875 return new ICmpInst(NewPred, Trunc, Constant::getNullValue(NTy))
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
llvm-stress.cpp 212 return ConstantInt::getNullValue(Tp);
216 return ConstantFP::getNullValue(Tp);
234 return ConstantInt::getNullValue(Tp);
238 return ConstantFP::getNullValue(Tp);
428 return PT->push_back(ConstantVector::getNullValue(Ty));
443 return PT->push_back(ConstantFP::getNullValue(Ty));
454 Ty, APInt::getNullValue(Ty->getPrimitiveSizeInBits())));
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InstructionSimplify.cpp 627 return Constant::getNullValue(Op0->getType());
696 APInt Offset = APInt::getNullValue(IntIdxTy->getIntegerBitWidth());
747 return Constant::getNullValue(Op0->getType());
753 return Constant::getNullValue(Op0->getType());
760 return Constant::getNullValue(Op0->getType());
874 return Constant::getNullValue(Op0->getType());
957 return Constant::getNullValue(Ty);
962 return Constant::getNullValue(Op0->getType());
967 return IsDiv ? ConstantInt::get(Ty, 1) : Constant::getNullValue(Ty);
977 return IsDiv ? Op0 : Constant::getNullValue(Ty)
    [all...]
ConstantFolding.cpp 110 return Constant::getNullValue(DestTy);
214 Constant *Zero = Constant::getNullValue(DstEltTy);
225 Src = Constant::getNullValue(
363 return Constant::getNullValue(DestTy);
583 return Constant::getNullValue(LoadTy);
590 return Constant::getNullValue(LoadTy);
739 return Constant::getNullValue(Ty);
1250 Constant *Null = Constant::getNullValue(C->getType());
1260 Constant *Null = Constant::getNullValue(C->getType());
1843 return Constant::getNullValue(Ty)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86PartialReduction.cpp 161 Value *Zero = Constant::getNullValue(MAdd->getType());
240 Value *Zero = Constant::getNullValue(Op0->getType());
291 Value *Zero = Constant::getNullValue(Ops[0]->getType());
X86LowerAMXIntrinsics.cpp 196 Value *VecZero = Constant::getNullValue(V256I32Ty);
325 Value *VecZero = Constant::getNullValue(V256I32Ty);
441 Value *ZeroV2I16 = Constant::getNullValue(V2I16Ty);
563 Value *VecZero = Constant::getNullValue(V256I32Ty);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 48 if (CV->isNullValue()) return Constant::getNullValue(DstTy);
124 Constant::getNullValue(Type::getInt32Ty(DPTy->getContext()));
148 return Constant::getNullValue(DestTy);
281 return Constant::getNullValue(
304 return Constant::getNullValue(
321 return Constant::getNullValue(IntegerType::get(CE->getContext(),
375 return ConstantExpr::getNullValue(DestTy);
556 return Constant::getNullValue(DestTy);
562 return Constant::getNullValue(DestTy);
722 APInt::getNullValue(DestTy->getPrimitiveSizeInBits()))
    [all...]
ConstantRange.cpp 113 return ConstantRange(std::move(UMin) + 1, APInt::getNullValue(W));
122 return getNonEmpty(CR.getUnsignedMin(), APInt::getNullValue(W));
251 return getNonEmpty(APInt::getNullValue(BitWidth),
294 return getNonEmpty(APInt::getNullValue(BitWidth),
1139 APInt Zero = APInt::getNullValue(getBitWidth());
1230 return getNonEmpty(APInt::getNullValue(getBitWidth()), std::move(Upper));
1257 return ConstantRange(APInt::getNullValue(getBitWidth()), std::move(Upper));
1291 return getNonEmpty(APInt::getNullValue(getBitWidth()), std::move(umin) + 1);
1306 return getNonEmpty(std::move(umax), APInt::getNullValue(getBitWidth()));
1520 Lo = APInt::getNullValue(getBitWidth())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ShadowStackGCLowering.cpp 217 Constant::getNullValue(StackEntryPtrTy), "llvm_gc_root_chain");
219 Head->setInitializer(Constant::getNullValue(StackEntryPtrTy));
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64StackTagging.cpp 218 Value *Store1 = I1 == Out.end() ? Constant::getNullValue(IRB.getInt64Ty())
220 Value *Store2 = I2 == Out.end() ? Constant::getNullValue(IRB.getInt64Ty())
483 IRB.CreateCall(IRG_SP, {Constant::getNullValue(IRB.getInt64Ty())});
651 IRB.CreateCall(TagP, {Constant::getNullValue(Info.AI->getType()), Base,
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCBoolRetToInt.cpp 103 Value *Zero = Constant::getNullValue(IntTy);
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLowerGlobalDtors.cpp 187 Constant::getNullValue(Res->getType()));

Completed in 110 milliseconds

1 2 3 4 5 6