Searched refs:isVoidTy (Results 1 - 25 of 49) sorted by relevance

12

/external/llvm/lib/Transforms/Utils/
H A DInstructionNamer.cpp37 if (!AI->hasName() && !AI->getType()->isVoidTy())
45 if (!I->hasName() && !I->getType()->isVoidTy())
H A DUnifyFunctionExitNodes.cpp95 if (F.getReturnType()->isVoidTy()) {
/external/llvm/lib/Analysis/
H A DCaptureTracking.cpp108 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
/external/llvm/tools/llvm-diff/
H A DDiffConsumer.cpp39 if (!BI->hasName() && !BI->getType()->isVoidTy())
54 if (V->getType()->isVoidTy()) {
/external/llvm/lib/VMCore/
H A DValue.cpp49 assert((VTy->isFirstClassType() || VTy->isVoidTy() || VTy->isStructTy()) &&
52 assert((VTy->isFirstClassType() || VTy->isVoidTy()) &&
187 assert(!getType()->isVoidTy() && "Cannot assign a name to void values!");
H A DInlineAsm.cpp280 if (!Ty->getReturnType()->isVoidTy()) return false;
H A DType.cpp624 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
718 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
787 return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
H A DVerifier.cpp639 F.getReturnType()->isVoidTy() ||
643 Assert1(!F.hasStructRetAttr() || F.getReturnType()->isVoidTy(),
791 if (F->getReturnType()->isVoidTy())
1637 Assert1(!I.getType()->isVoidTy() || !I.hasName(),
1642 Assert1(I.getType()->isVoidTy() ||
1739 case IITDescriptor::Void: return !Ty->isVoidTy();
H A DInstructions.cpp433 assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
817 assert(!Ty->isVoidTy() && "Cannot allocate void!");
826 assert(!Ty->isVoidTy() && "Cannot allocate void!");
835 assert(!Ty->isVoidTy() && "Cannot allocate void!");
844 assert(!Ty->isVoidTy() && "Cannot allocate void!");
853 assert(!Ty->isVoidTy() && "Cannot allocate void!");
862 assert(!Ty->isVoidTy() && "Cannot allocate void!");
/external/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp75 if (!V.getType()->isVoidTy()) {
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp345 if (F->getReturnType()->isVoidTy())
669 if (RetTy->isVoidTy()) {
719 if (NRetTy->isVoidTy())
842 } else if (New->getType()->isVoidTy()) {
920 if (NFTy->getReturnType()->isVoidTy()) {
H A DIPConstantPropagation.cpp160 if (F.getReturnType()->isVoidTy())
H A DFunctionAttrs.cpp372 F->getReturnType()->isVoidTy()) {
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp370 if (!CI->getType()->isVoidTy())
375 if (!CI->getType()->isVoidTy())
525 if (!CI->getType()->isVoidTy())
H A DAnalysis.cpp101 if (Ty->isVoidTy())
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp63 return CI->doesNotAccessMemory() && !CI->getType()->isVoidTy();
155 if (Inst->getType()->isVoidTy())
H A DSCCP.cpp1098 if (I->getType()->isVoidTy()) return;
1259 if (I->getType()->isVoidTy()) continue;
1604 if (Inst->getType()->isVoidTy() || isa<TerminatorInst>(Inst))
1813 if (Inst->getType()->isVoidTy() || Inst->getType()->isStructTy())
1909 if (I->second.isOverdefined() || F->getReturnType()->isVoidTy())
/external/llvm/include/llvm/
H A DType.h135 /// isVoidTy - Return true if this is 'void'.
136 bool isVoidTy() const { return getTypeID() == VoidTyID; } function in class:llvm::Type
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp169 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp306 assert(!V->getType()->isVoidTy() && "Can't insert void values!");
485 if (!I->getType()->isVoidTy())
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp406 if (RetTy->isIntegerTy(32) || RetTy->isVoidTy()) {
545 if (!TheCall->getType()->isVoidTy())
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp302 if (!BB->getTerminator()->getType()->isVoidTy())
406 if (!Inst->getType()->isVoidTy())
H A DExtractFunction.cpp109 if (!TheInst->getType()->isVoidTy())
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp905 if (!OldCall->getType()->isVoidTy())
920 if (!CS.getInstruction()->getType()->isVoidTy())
1012 !NewRetTy->isVoidTy() && !CastInst::isCastable(NewRetTy, OldRetTy))
1176 if (NewRetTy->isVoidTy())
1201 if (!NV->getType()->isVoidTy()) {
/external/llvm/lib/AsmParser/
H A DLLParser.cpp1337 if (!AllowVoid && Result->isVoidTy())
1345 if (Result->isVoidTy())
1357 if (Result->isVoidTy())
1445 if (ArgTy->isVoidTy())
1469 if (ArgTy->isVoidTy())
1826 if (Inst->getType()->isVoidTy()) {
2743 if (PAL.paramHasAttr(1, Attribute::StructRet) && !RetType->isVoidTy())
3070 if (Ty->isVoidTy()) {
3071 if (!ResType->isVoidTy())

Completed in 851 milliseconds

12