/external/llvm/lib/Target/Mips/ |
D | MipsOs16.cpp | 36 Type* RetType = F.getReturnType(); in needsFPFromSig() local 37 switch (RetType->getTypeID()) { in needsFPFromSig()
|
D | MipsAsmPrinter.cpp | 836 const char *RetType; in EmitFPCallStub() local 844 RetType = "float"; in EmitFPCallStub() 847 RetType = "double"; in EmitFPCallStub() 850 RetType = "complex"; in EmitFPCallStub() 853 RetType = "double complex"; in EmitFPCallStub() 856 RetType = ""; in EmitFPCallStub() 883 OutStreamer.AddComment("\t# Stub function to call " + Twine(RetType) + " " + in EmitFPCallStub()
|
D | Mips16HardFloat.cpp | 168 Type* RetType = F.getReturnType(); in needsFPReturnHelper() local 169 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper() 173 Type* RetType = FT.getReturnType(); in needsFPReturnHelper() local 174 return whichFPReturnVariant(RetType) != NoFPRet; in needsFPReturnHelper()
|
/external/clang/test/CodeGen/ |
D | xcore-stringtype.c | 86 typedef int RetType[2]; typedef 87 RetType* arrayType(int A1[], int const volatile A2[2], int A3[][2], in arrayType()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 3115 Type *RetType = nullptr; in ParseFunctionHeader() local 3122 ParseType(RetType, RetTypeLoc, true /*void allowed*/)) in ParseFunctionHeader() 3152 if (!FunctionType::isValidReturnType(RetType)) in ParseFunctionHeader() 3218 Attrs.push_back(AttributeSet::get(RetType->getContext(), in ParseFunctionHeader() 3226 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B)); in ParseFunctionHeader() 3231 Attrs.push_back(AttributeSet::get(RetType->getContext(), in ParseFunctionHeader() 3237 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy()) in ParseFunctionHeader() 3241 FunctionType::get(RetType, ParamTypeList, isVarArg); in ParseFunctionHeader() 3726 Type *RetType = nullptr; in ParseInvoke() local 3734 ParseType(RetType, RetTypeLoc, true /*void allowed*/) || in ParseInvoke() [all …]
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | DataFlowSanitizer.cpp | 350 Type *RetType = T->getReturnType(); in getArgsFunctionType() local 351 if (!RetType->isVoidTy()) in getArgsFunctionType() 352 RetType = StructType::get(RetType, ShadowTy, (Type *)nullptr); in getArgsFunctionType() 353 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType() 363 Type *RetType = T->getReturnType(); in getTrampolineFunctionType() local 364 if (!RetType->isVoidTy()) in getTrampolineFunctionType() 385 Type *RetType = T->getReturnType(); in getCustomFunctionType() local 386 if (!RetType->isVoidTy()) in getCustomFunctionType()
|
/external/llvm/include/llvm/Support/ |
D | Casting.h | 44 RetType; 45 static RetType getSimplifiedValue(const From& Val) {
|
/external/clang/lib/Analysis/ |
D | Consumed.cpp | 684 QualType RetType = Fun->getCallResultType(); in propagateReturnType() local 685 if (RetType->isReferenceType()) in propagateReturnType() 686 RetType = RetType->getPointeeType(); in propagateReturnType() 688 if (isConsumableType(RetType)) { in propagateReturnType() 693 ReturnState = mapConsumableAttrState(RetType); in propagateReturnType()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 2974 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType; in BuildReturnStmt() local 2987 RetType, in BuildReturnStmt() 2990 RetType, RetValExp); in BuildReturnStmt()
|
D | SemaDecl.cpp | 7225 QualType RetType = NewFD->getReturnType(); in ActOnFunctionDeclarator() local 7226 const CXXRecordDecl *Ret = RetType->isRecordType() ? in ActOnFunctionDeclarator() 7227 RetType->getAsCXXRecordDecl() : RetType->getPointeeCXXRecordDecl(); in ActOnFunctionDeclarator() 7241 unsigned AddressSpace = RetType.getAddressSpace(); in ActOnFunctionDeclarator()
|
D | SemaDeclCXX.cpp | 9498 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment() local 9524 CopyAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitCopyAssignment() 9878 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitMoveAssignment() local 9901 MoveAssignment->setType(Context.getFunctionType(RetType, ArgType, EPI)); in DeclareImplicitMoveAssignment()
|