Searched defs:RetType (Results 1 - 18 of 18) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMipsOs16.cpp53 Type* RetType = F.getReturnType(); local
54 switch (RetType->getTypeID()) {
H A DMips16HardFloat.cpp172 Type* RetType = F.getReturnType(); local
173 return whichFPReturnVariant(RetType) != NoFPRet;
177 Type* RetType = FT.getReturnType(); local
178 return whichFPReturnVariant(RetType) != NoFPRet;
H A DMipsAsmPrinter.cpp885 const char *RetType; local
893 RetType = "float";
896 RetType = "double";
899 RetType = "complex";
902 RetType = "double complex";
905 RetType = "";
932 OutStreamer->AddComment("\t# Stub function to call " + Twine(RetType) + " " +
/external/llvm/include/llvm/Support/
H A DCasting.h44 RetType; typedef in struct:llvm::simplify_type
45 static RetType getSimplifiedValue(const From& Val) {
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCasting.h44 RetType; typedef in struct:llvm::simplify_type
45 static RetType getSimplifiedValue(const From& Val) {
/external/guice/core/test/com/google/inject/
H A DMethodInterceptionTest.java275 static class RetType extends ErasedType {} class in class:MethodInterceptionTest
280 RetType aMethod(RetType obj);
282 public static class Impl extends Superclass<RetType> implements Interface {
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c94 typedef int RetType[2]; typedef
95 RetType* arrayType(int A1[], int const volatile A2[2], int A3[][2],
/external/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp278 bool tryUniformRetValOpt(IntegerType *RetType,
444 IntegerType *RetType, ArrayRef<VirtualCallTarget> TargetsForSlot,
453 auto TheRetValConst = ConstantInt::get(RetType, TheRetVal);
502 auto RetType = dyn_cast<IntegerType>(TargetsForSlot[0].Fn->getReturnType()); local
503 if (!RetType)
505 unsigned BitWidth = RetType->getBitWidth();
515 Target.Fn->getReturnType() != RetType)
536 if (VCallSite.CS.getType() != RetType)
554 if (tryUniformRetValOpt(RetType, TargetsForSlot, CSByConstantArg.second))
604 Value *ValAddr = B.CreateBitCast(Addr, RetType
443 tryUniformRetValOpt( IntegerType *RetType, ArrayRef<VirtualCallTarget> TargetsForSlot, MutableArrayRef<VirtualCallSite> CallSites) argument
[all...]
/external/clang/lib/Analysis/
H A DConsumed.cpp690 QualType RetType = Fun->getCallResultType(); local
691 if (RetType->isReferenceType())
692 RetType = RetType->getPointeeType();
694 if (isConsumableType(RetType)) {
699 ReturnState = mapConsumableAttrState(RetType);
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp3399 const EVT RetType[] = {MVT::i32, MVT::i32, MVT::Other}; local
3401 ReplaceNode(N, CurDAG->getMachineNode(Opc, dl, RetType, Ops));
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1563 auto RetType = cast<VectorType>(II->getType()); local
1565 unsigned RetWidth = RetType->getNumElements();
1570 assert(RetType->getScalarType()->isFloatTy() &&
1575 return replaceInstUsesWith(*II, ConstantAggregateZero::get(RetType));
1591 auto VectorFloats = Builder->CreateFPExt(VectorHalfs, RetType);
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp385 Type *RetType = T->getReturnType(); local
386 if (!RetType->isVoidTy())
387 RetType = StructType::get(RetType, ShadowTy, (Type *)nullptr);
388 return FunctionType::get(RetType, ArgTypes, T->isVarArg());
397 Type *RetType = T->getReturnType(); local
398 if (!RetType->isVoidTy())
420 Type *RetType = T->getReturnType(); local
421 if (!RetType->isVoidTy())
/external/clang/lib/AST/
H A DDecl.cpp2932 QualType RetType = getReturnType(); local
2933 if (RetType->isRecordType()) {
2934 const CXXRecordDecl *Ret = RetType->getAsCXXRecordDecl();
2940 } else if (const auto *ET = RetType->getAs<EnumType>()) {
/external/clang/lib/CodeGen/
H A DCGClass.cpp2228 QualType RetType = BuildFunctionArgList(CurGD, Params); local
2229 FnRetTy = RetType;
2251 if (!RetType->isVoidType())
2252 ReturnValue = CreateIRTemp(RetType, "retval.inhctor");
H A DCGOpenMPRuntime.cpp6296 QualType RetType = FD->getReturnType(); local
6297 if (RetType.isNull())
6301 if (!RetType.isNull() && !RetType->isVoidType())
6302 CDT = RetType;
/external/clang/lib/Sema/
H A DSemaStmt.cpp3343 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType; local
3356 RetType,
3359 RetType, RetValExp);
H A DSemaDecl.cpp11478 QualType RetType = local
11484 FD->setType(Context.getFunctionType(RetType, Proto->getParamTypes(),
H A DSemaDeclCXX.cpp10160 QualType RetType = Context.getLValueReferenceType(ArgType); local
10193 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));
10555 QualType RetType = Context.getLValueReferenceType(ArgType); local
10585 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI));

Completed in 718 milliseconds