Searched refs:FT (Results 51 - 69 of 69) sorted by relevance

123

/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp1302 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), local
1309 Function *F = Function::Create(FT, Function::ExternalLinkage, FnName, M);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1480 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), local
1490 Function *F = Function::Create(FT, Function::ExternalLinkage, FnName, M);
/external/llvm/lib/Linker/
H A DLinkModules.cpp172 } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) {
173 if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg())
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp120 size_t getTypeSize(FunctionType * const FT,bool dereferencePtr = false);
1233 size_t AMDGPUPeepholeOpt::getTypeSize(FunctionType * const FT, argument
/external/llvm/lib/AsmParser/
H A DLLParser.cpp999 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1000 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1039 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1040 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
3051 FunctionType *FT =
3053 PointerType *PFT = PointerType::getUnqual(FT);
3094 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2543 const FunctionType *FT = FD->getType()->castAs<FunctionType>(); local
2544 if (isa<FunctionNoProtoType>(FT)) {
2549 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
2566 const FunctionType *FT = Ty->isFunctionPointerType() ? getFunctionType(D) local
2568 if (!cast<FunctionProtoType>(FT)->isVariadic()) {
5108 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) {
5110 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
5111 AE = FT->arg_type_end(); AI != AE; ++AI) {
H A DSemaDecl.cpp1580 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
1582 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i) {
1586 FT->getArgType(i), /*TInfo=*/0,
6783 } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
6794 for (FunctionProtoType::arg_type_iterator AI = FT->arg_type_begin(),
6795 AE = FT->arg_type_end(); AI != AE; ++AI) {
7112 const FunctionType *FT = NewFD->getType()->getAs<FunctionType>(); local
7115 EPI.ExtInfo = FT->getExtInfo();
7117 QualType R = Context.getFunctionType(FT->getResultType(), None, EPI);
7544 const FunctionType* FT local
[all...]
H A DSemaTemplate.cpp6395 QualType FT = FD->getType(); local
6400 const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>();
6403 FT = Context.getFunctionType(FPT->getResultType(), FPT->getArgTypes(),
6418 = DeduceTemplateArguments(FunTmpl, ExplicitTemplateArgs, FT,
H A DSemaDeclCXX.cpp710 const FunctionProtoType *FT = FD->getType()->getAs<FunctionProtoType>(); local
711 for (FunctionProtoType::arg_type_iterator i = FT->arg_type_begin(),
712 e = FT->arg_type_end(); i != e; ++i, ++ArgIndex) {
H A DSemaCodeComplete.cpp2835 const FunctionType *FT = getFunctionType(); local
2836 Result.AddTextChunk(GetCompletionTypeString(FT->getResultType(),
/external/clang/include/clang/AST/
H A DType.h4737 if (const FunctionType *FT = PT->getPointeeType()->getAs<FunctionType>())
4738 return FT->getExtInfo();
4739 } else if (const FunctionType *FT = t.getAs<FunctionType>())
4740 return FT->getExtInfo();
/external/clang/lib/AST/
H A DASTContext.cpp2749 if (FunctionNoProtoType *FT =
2751 return QualType(FT, 0);
4332 QualType FT = Field->getType();
4343 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
5331 const FunctionType *FT = BT->getPointeeType()->castAs<FunctionType>(); local
5335 getObjCEncodingForTypeImpl(FT->getResultType(), S,
5346 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1649 FunctionType *FT = local
1651 if (FT->isVarArg()) {
/external/netperf/
H A Dnetlib.c727 } FT;
732 FT nt_time;
721 } FT; typedef in typeref:union:__anon23316
/external/clang/lib/Analysis/
H A DCFG.cpp1433 const FunctionType *FT = Ty->getAs<FunctionType>(); local
1434 if (FT) {
1435 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT))
/external/clang/lib/CodeGen/
H A DCGCall.cpp594 QualType FT = FD->getType(); local
598 AI = ExpandTypeFromArgs(FT, SubLV, AI);
H A DCGExpr.cpp2811 QualType FT = FD->getType(); local
2813 switch (getEvaluationKind(FT)) {
H A DCGObjCGNU.cpp2575 llvm::FunctionType *FT = local
2578 llvm::Value *Register = CGM.CreateRuntimeFunction(FT, "__objc_exec_class");
H A DCGBuiltin.cpp159 llvm::FunctionType *FT = llvm::FunctionType::get(V->getType(), V->getType(), local
161 llvm::Value *Fn = CGF.CGM.CreateRuntimeFunction(FT, FnName);

Completed in 1767 milliseconds

123