| /minix3/external/bsd/llvm/dist/llvm/test/TableGen/ |
| H A D | intrinsic-varargs.td | 25 // isVoid needs to match the definition in ValueTypes.td 26 def isVoid : ValueType<0, 56>; // Produces no value 27 def llvm_vararg_ty : LLVMType<isVoid>; // this means vararg here
|
| /minix3/external/bsd/llvm/dist/llvm/lib/IR/ |
| H A D | ValueTypes.cpp | 127 case MVT::isVoid: return "isVoid"; in getEVTString() 185 case MVT::isVoid: return Type::getVoidTy(Context); in getTypeForEVT() 253 return MVT::isVoid; in getVT()
|
| /minix3/external/bsd/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeGenTarget.cpp | 71 case MVT::isVoid: return "MVT::isVoid"; in getEnumName() 511 if (VT == MVT::isVoid) in CodeGenIntrinsic() 547 if (VT == MVT::isVoid && i != e-1 /*void at end means varargs*/) in CodeGenIntrinsic()
|
| H A D | IntrinsicEmitter.cpp | 290 case MVT::isVoid: return Sig.push_back(IIT_VARARG); in EncodeFixedValueType() 394 Int.IS.RetVTs[0] == MVT::isVoid) in ComputeFixedEncoding()
|
| H A D | CodeGenDAGPatterns.h | 87 bool isVoid() const { in isVoid() function 88 return TypeVec.size() == 1 && TypeVec[0] == MVT::isVoid; in isVoid()
|
| H A D | FastISelEmitter.cpp | 514 MVT::SimpleValueType RetVT = MVT::isVoid; in collectPatterns()
|
| H A D | CodeGenDAGPatterns.cpp | 813 if (x.SDTCisVT_Info.VT == MVT::isVoid) in SDTypeConstraint()
|
| /minix3/external/bsd/llvm/dist/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 179 bool isVoid() const { return Void; } in isVoid() function in __anon870a9de20111::Type 573 if (isVoid()) in builtin_str() 1223 if (!getReturnType().isVector() || getReturnType().isVoid() || in emitReturnReversal() 1292 if (!getReturnType().isVoid() && !SRet) in emitBodyAsBuiltinCall() 1363 if (!SRet && !RetVar.getType().isVoid()) in emitBodyAsBuiltinCall() 1375 if (!RetVar.getType().isVoid()) { in emitBody() 1397 if (!RetVar.getType().isVoid()) in emitBody() 1407 if (RetVar.getType().isVoid()) in emitReturn() 1534 assert_with_loc(!castToType.isVoid(), "Unknown typedef"); in emitDagCast() 1716 assert_with_loc(!A.first.isVoid(), in emitDagSaveTemp()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | ValueTypes.td | 82 def isVoid : ValueType<0 , 56>; // Produces no value
|
| H A D | MachineValueType.h | 116 isVoid = 56, // This has no value enumerator
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Intrinsics.td | 125 def llvm_void_ty : LLVMType<isVoid>; 195 def llvm_vararg_ty : LLVMType<isVoid>; // this means vararg here
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsFastISel.cpp | 877 if (RetVT != MVT::isVoid) { in finishCall() 921 RetVT = MVT::isVoid; in fastLowerCall()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMFastISel.cpp | 2037 if (RetVT != MVT::isVoid) { in FinishCall() 2198 RetVT = MVT::isVoid; in ARMEmitLibcall() 2203 if (RetVT != MVT::isVoid && RetVT != MVT::i32) { in ARMEmitLibcall() 2307 RetVT = MVT::isVoid; in SelectCall() 2313 if (RetVT != MVT::isVoid && RetVT != MVT::i1 && RetVT != MVT::i8 && in SelectCall()
|
| H A D | ARMISelLowering.cpp | 10130 case MVT::isVoid: in isLegalT2ScaledAddressingMode() 10189 case MVT::isVoid: in isLegalAddressingMode()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCFastISel.cpp | 1353 if (RetVT != MVT::isVoid) { in finishCall() 1431 RetVT = MVT::isVoid; in fastLowerCall() 1437 if (RetVT != MVT::isVoid && RetVT != MVT::i8 && RetVT != MVT::i16 && in fastLowerCall()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaCodeComplete.cpp | 1784 bool isVoid = false; in AddOrdinaryNameResults() local 1786 isVoid = Function->getReturnType()->isVoidType(); in AddOrdinaryNameResults() 1789 isVoid = Method->getReturnType()->isVoidType(); in AddOrdinaryNameResults() 1792 isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType(); in AddOrdinaryNameResults() 1794 if (!isVoid) { in AddOrdinaryNameResults()
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Target/ |
| H A D | TargetLowering.h | 677 assert(NVT.isInteger() == VT.isInteger() && NVT != MVT::isVoid && in getTypeToPromoteTo()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/ |
| H A D | TargetLoweringBase.cpp | 1054 NumRegistersForVT[MVT::isVoid] = 0; in computeRegisterProperties()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64FastISel.cpp | 3025 if (RetVT != MVT::isVoid) { in finishCall() 3079 RetVT = MVT::isVoid; in fastLowerCall()
|
| /minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 1880 TLI.makeLibCall(DAG, RTLIB::STACKPROTECTOR_CHECK_FAIL, MVT::isVoid, in visitSPDescriptorFailure()
|