Home
last modified time | relevance | path

Searched refs:RetType (Results 1 – 11 of 11) sorted by relevance

/external/llvm/lib/Target/Mips/
DMipsOs16.cpp36 Type* RetType = F.getReturnType(); in needsFPFromSig() local
37 switch (RetType->getTypeID()) { in needsFPFromSig()
DMipsAsmPrinter.cpp836 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()
DMips16HardFloat.cpp168 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/
Dxcore-stringtype.c86 typedef int RetType[2]; typedef
87 RetType* arrayType(int A1[], int const volatile A2[2], int A3[][2], in arrayType()
/external/llvm/lib/AsmParser/
DLLParser.cpp3115 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/
DDataFlowSanitizer.cpp350 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/
DCasting.h44 RetType;
45 static RetType getSimplifiedValue(const From& Val) {
/external/clang/lib/Analysis/
DConsumed.cpp684 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/
DSemaStmt.cpp2974 QualType RetType = RelatedRetType.isNull() ? FnRetType : RelatedRetType; in BuildReturnStmt() local
2987 RetType, in BuildReturnStmt()
2990 RetType, RetValExp); in BuildReturnStmt()
DSemaDecl.cpp7225 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()
DSemaDeclCXX.cpp9498 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()