| /src/external/apache2/llvm/dist/llvm/examples/ModuleMaker/ |
| ModuleMaker.cpp | 38 FunctionType *FT = 43 Function *F = Function::Create(FT, Function::ExternalLinkage, "main", M);
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| Mangler.cpp | 172 FunctionType *FT = MSFunc->getFunctionType(); 175 (!FT->isVarArg() || FT->getNumParams() == 0 || 176 (FT->getNumParams() == 1 && MSFunc->hasStructRetAttr())))
|
| Type.cpp | 325 FunctionType *FT; 335 FT = (FunctionType *)pImpl->Alloc.Allocate( 338 new (FT) FunctionType(ReturnType, Params, isVarArg); 339 *Insertion.first = FT; 342 FT = *Insertion.first; 344 return FT;
|
| Function.cpp | 424 auto *FT = getFunctionType(); 428 Type *ArgTy = FT->getParamType(i); 799 } else if (FunctionType *FT = dyn_cast<FunctionType>(Ty)) { 800 Result += "f_" + getMangledTypeStr(FT->getReturnType(), HasUnnamedType); 801 for (size_t i = 0; i < FT->getNumParams(); i++) 802 Result += getMangledTypeStr(FT->getParamType(i), HasUnnamedType); 803 if (FT->isVarArg()) 843 FunctionType *FT) { 854 if (!FT) 855 FT = getType(M->getContext(), Id, Tys) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/bugpoint/ |
| ExecutionDriver.cpp | 381 Expected<CC::FileType> FT = 383 if (Error E = FT.takeError()) 387 if (Error E = cc->MakeSharedObject(OutputFile, *FT, SharedObjectFile,
|
| /src/usr.bin/checknr/ |
| checknr.c | 68 int pl; /* '+', '-', ' ' for \s, 1 for \f, 0 for .ft */ 84 #define FT 1 85 { "ft", "ft"}, /* also \f */ 163 "FS", "FV", "FX", "Fa", "Fc", "Fd", "Fl", "Fn", "Fo", "Ft", "Fx", 182 "em", "eo", "ep", "ev", "ex", "fc", "fi", "fl", "fo", "fp", "ft", 389 stk[stktop].opno == FT) { 396 stk[++stktop].opno = FT; 431 case FT: 495 if (stk[j+1].opno==FT && stk[j+1].parm!='R [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| Program.cpp | 273 QualType FT = FD->getType(); 274 const bool IsConst = FT.isConstQualified(); 277 if (llvm::Optional<PrimType> T = Ctx.classify(FT)) { 281 Desc = createDescriptor(FD, FT.getTypePtr(), IsConst,
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
| ExternalFunctions.cpp | 104 FunctionType *FT = F->getFunctionType(); 105 ExtName += getTypeID(FT->getReturnType()); 106 for (Type *T : FT->params()) 310 static GenericValue lle_X_atexit(FunctionType *FT, 320 static GenericValue lle_X_exit(FunctionType *FT, ArrayRef<GenericValue> Args) { 326 static GenericValue lle_X_abort(FunctionType *FT, ArrayRef<GenericValue> Args) { 335 static GenericValue lle_X_sprintf(FunctionType *FT, 417 static GenericValue lle_X_printf(FunctionType *FT, 423 GenericValue GV = lle_X_sprintf(FT, NewArgs); 429 static GenericValue lle_X_sscanf(FunctionType *FT, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| R600OpenCLImageTypeLoweringPass.cpp | 257 FunctionType *FT = F->getFunctionType(); 265 for (unsigned i = 0; i < FT->getNumParams(); ++i) { 266 ArgTypes.push_back(FT->getParamType(i)); 290 auto NewFT = FunctionType::get(FT->getReturnType(), ArgTypes, false);
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| Mangle.cpp | 92 const FunctionType *FT = T->castAs<FunctionType>(); 94 CallingConv CC = FT->getCallConv(); 214 const FunctionType *FT = FD->getType()->castAs<FunctionType>(); 215 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
|
| DeclPrinter.cpp | 670 const FunctionProtoType *FT = nullptr; 672 FT = dyn_cast<FunctionProtoType>(AFT); 675 if (FT) { 683 if (FT->isVariadic()) { 697 if (FT) { 698 if (FT->isConst()) 700 if (FT->isVolatile()) 702 if (FT->isRestrict()) 705 switch (FT->getRefQualifier()) { 717 if (FT && FT->hasDynamicExceptionSpec()) [all...] |
| MicrosoftMangle.cpp | 572 const FunctionProtoType *FT = FD->getType()->castAs<FunctionProtoType>(); 587 mangleFunctionType(FT, FD, false, false); 2232 if (const FunctionType *FT = dyn_cast<FunctionType>(T)) { 2234 mangleFunctionType(FT); 2759 const FunctionProtoType *FT) { 2762 if (FT->canThrow())
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CodeGenTypes.cpp | 240 bool CodeGenTypes::isFuncTypeConvertible(const FunctionType *FT) { 241 if (!isFuncParamTypeConvertible(FT->getReturnType())) 244 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) 328 const FunctionType *FT = cast<FunctionType>(QFT.getTypePtr()); 332 if (!isFuncTypeConvertible(FT)) { 337 if (const RecordType *RT = FT->getReturnType()->getAs<RecordType>()) 339 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) 361 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) { 365 const FunctionNoProtoType *FNPT = cast<FunctionNoProtoType>(FT);
|
| CGNonTrivialStruct.cpp | 25 static uint64_t getFieldSize(const FieldDecl *FD, QualType FT, 29 return Ctx.getTypeSize(FT); 45 QualType FT = FD->getType(); 46 FT = QT.isVolatileQualified() ? FT.withVolatile() : FT; 47 asDerived().visit(FT, FD, CurStructOffset, Args...); 86 void preVisit(QualType::PrimitiveCopyKind PCK, QualType FT, 93 void visitWithKind(QualType::PrimitiveCopyKind PCK, QualType FT, 96 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) { [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter3/ |
| toy.cpp | 469 FunctionType *FT = 473 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
|
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/ |
| toy.cpp | 498 FunctionType *FT = 502 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| Mips16HardFloat.cpp | 175 static bool needsFPReturnHelper(FunctionType &FT) { 176 Type* RetType = FT.getReturnType(); 420 FunctionType *FT = CI->getFunctionType(); 422 if (needsFPReturnHelper(*FT) &&
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/ |
| Coroutines.cpp | 594 auto FT = F->getFunctionType(); 598 if (FT->getReturnType()->isPointerTy()) { 600 } else if (auto SRetTy = dyn_cast<StructType>(FT->getReturnType())) { 611 if (FT->getReturnType() != 619 if (FT->getNumParams() == 0 || !FT->getParamType(0)->isPointerTy()) 630 auto FT = F->getFunctionType(); 631 if (!FT->getReturnType()->isPointerTy()) 634 if (FT->getNumParams() != 1 || 635 !FT->getParamType(0)->isIntegerTy() [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/alpha/ |
| vms.h | 137 enum avms_arg_type {I64, FF, FD, FG, FS, FT};
|
| /src/external/gpl3/gcc.old/dist/gcc/config/alpha/ |
| vms.h | 137 enum avms_arg_type {I64, FF, FD, FG, FS, FT};
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| BodyFarm.cpp | 43 const FunctionProtoType *FT = 45 return FT && FT->getReturnType()->isVoidType() && FT->getNumParams() == 0;
|
| RetainSummaryManager.cpp | 288 const FunctionType *FT, 301 return RetTy->isObjCIdType() ? getUnarySummary(FT, DoNothing) 414 return getUnarySummary(FT, IncRef); 420 return getUnarySummary(FT, Autorelease); 423 return getUnarySummary(FT, DoNothing); 433 return getUnarySummary(FT, IncRef); 457 return getUnarySummary(FT, DecRef); 508 const auto *FT = FD->getType()->castAs<FunctionType>(); 509 QualType RetTy = FT->getReturnType(); 525 getSummaryForObjCOrCFObject(FD, FName, RetTy, FT, AllowAnnotations) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaExceptionSpec.cpp | 1035 const FunctionProtoType *FT; 1036 if ((FT = T->getAs<FunctionProtoType>())) { 1038 FT = PT->getPointeeType()->getAs<FunctionProtoType>(); 1040 FT = RT->getPointeeType()->getAs<FunctionProtoType>(); 1042 FT = MT->getPointeeType()->getAs<FunctionProtoType>(); 1044 FT = BT->getPointeeType()->getAs<FunctionProtoType>(); 1046 if (!FT) 1050 FT = S.ResolveExceptionSpec(Loc.isInvalid() ? E->getBeginLoc() : Loc, FT); 1051 if (!FT) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| Lint.cpp | 202 FunctionType *FT = F->getFunctionType(); 205 Assert(FT->isVarArg() ? FT->getNumParams() <= NumActualArgs 206 : FT->getNumParams() == NumActualArgs, 211 Assert(FT->getReturnType() == I.getType(),
|
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| toy.cpp | 1039 FunctionType *FT = 1043 Function::Create(FT, Function::ExternalLinkage, Name, TheModule.get());
|