Searched defs:FT (Results 1 - 25 of 64) sorted by relevance

123

/external/llvm/examples/ModuleMaker/
H A DModuleMaker.cpp33 FunctionType *FT = local
38 Function *F = Function::Create(FT, Function::ExternalLinkage, "main", M);
/external/llvm/unittests/IR/
H A DWaymarkTest.cpp31 FunctionType *FT = FunctionType::get(Type::getVoidTy(getGlobalContext()), true); local
32 Function *F = Function::Create(FT, GlobalValue::ExternalLinkage);
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFieldDictionary_autogen.cpp11 SkString SkPdfFieldDictionary::FT(SkPdfNativeDoc* doc) { function in class:SkPdfFieldDictionary
12 SkPdfNativeObject* ret = get("FT", "");
20 return get("FT", "") != NULL;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFieldDictionary_autogen.cpp11 SkString SkPdfFieldDictionary::FT(SkPdfNativeDoc* doc) { function in class:SkPdfFieldDictionary
12 SkPdfNativeObject* ret = get("FT", "");
20 return get("FT", "") != NULL;
/external/clang/lib/AST/
H A DMangle.cpp80 const FunctionType *FT = T->castAs<FunctionType>(); local
82 CallingConv CC = FT->getCallConv();
154 const FunctionType *FT = FD->getType()->castAs<FunctionType>(); local
155 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
H A DDeclPrinter.cpp419 const FunctionProtoType *FT = nullptr; local
421 FT = dyn_cast<FunctionProtoType>(AFT);
424 if (FT) {
432 if (FT->isVariadic()) {
446 if (FT) {
447 if (FT->isConst())
449 if (FT->isVolatile())
451 if (FT->isRestrict())
454 switch (FT->getRefQualifier()) {
466 if (FT
[all...]
/external/clang/lib/Analysis/
H A DBodyFarm.cpp36 const FunctionProtoType *FT = local
38 if (!FT || !FT->getReturnType()->isVoidType() || FT->getNumParams() != 0)
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp218 bool CodeGenTypes::isFuncTypeConvertible(const FunctionType *FT) { argument
219 if (!isFuncParamTypeConvertible(FT->getReturnType()))
222 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
471 const FunctionType *FT = cast<FunctionType>(Ty); local
475 if (!isFuncTypeConvertible(FT)) {
480 if (const RecordType *RT = FT->getReturnType()->getAs<RecordType>())
482 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
507 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
511 const FunctionNoProtoType *FNPT = cast<FunctionNoProtoType>(FT);
/external/llvm/lib/Target/R600/
H A DR600TextureIntrinsicsReplacer.cpp121 void ReplaceCallInst(CallInst &I, FunctionType *FT, const char *Name, argument
150 F = Function::Create(FT, GlobalValue::ExternalLinkage, Name, Mod);
157 void ReplaceTexIntrinsic(CallInst &I, bool hasLOD, FunctionType *FT, argument
179 ReplaceCallInst(I, FT, useShadowVariant?ShadowInt:VanillaInt, SrcSelect,
/external/llvm/tools/bugpoint/
H A DExecutionDriver.cpp391 GCC::FileType FT = SafeInterpreter->OutputCode(BitcodeFile, OutputFile, local
397 bool Failure = gcc->MakeSharedObject(OutputFile, FT, SharedObjectFile,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp426 FunctionType *FT = cast<FunctionType>( local
428 if (FT->isVarArg() && !MMI->usesVAFloatArgument()) {
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp94 FunctionType *FT = F->getFunctionType(); local
95 for (unsigned i = 0, e = FT->getNumContainedTypes(); i != e; ++i)
96 ExtName += getTypeID(FT->getContainedType(i));
302 GenericValue lle_X_atexit(FunctionType *FT, argument
313 GenericValue lle_X_exit(FunctionType *FT, argument
321 GenericValue lle_X_abort(FunctionType *FT, argument
332 GenericValue lle_X_sprintf(FunctionType *FT, argument
415 GenericValue lle_X_printf(FunctionType *FT, argument
421 GenericValue GV = lle_X_sprintf(FT, NewArgs);
428 GenericValue lle_X_sscanf(FunctionType *FT, argument
444 lle_X_scanf(FunctionType *FT, const std::vector<GenericValue> &args) argument
461 lle_X_fprintf(FunctionType *FT, const std::vector<GenericValue> &Args) argument
474 lle_X_memset(FunctionType *FT, const std::vector<GenericValue> &Args) argument
486 lle_X_memcpy(FunctionType *FT, const std::vector<GenericValue> &Args) argument
[all...]
/external/llvm/lib/IR/
H A DFunction.cpp259 FunctionType *FT = getFunctionType(); local
260 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
261 assert(!FT->getParamType(i)->isVoidTy() &&
263 ArgumentList.push_back(new Argument(FT->getParamType(i)));
H A DLLVMContextImpl.h151 KeyTy(const FunctionType* FT) : argument
152 ReturnType(FT->getReturnType()),
153 Params(ArrayRef<Type*>(FT->param_begin(), FT->param_end())),
154 isVarArg(FT->isVarArg()) {}
180 static unsigned getHashValue(const FunctionType *FT) { argument
181 return getHashValue(KeyTy(FT));
H A DType.cpp361 FunctionType *FT; local
364 FT = (FunctionType*) pImpl->TypeAllocator.
367 new (FT) FunctionType(ReturnType, Params, isVarArg);
368 pImpl->FunctionTypes[FT] = true;
370 FT = I->first;
373 return FT;
/external/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp172 static bool needsFPReturnHelper(const FunctionType &FT) { argument
173 Type* RetType = FT.getReturnType();
414 const FunctionType *FT=nullptr; local
415 if (PFT) FT = dyn_cast<FunctionType>(PFT->getElementType());
417 if (FT && needsFPReturnHelper(*FT) &&
/external/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp506 FunctionType *FT = Callee->getFunctionType(); local
512 if (FT->getNumParams() != 4 || FT->getReturnType() != FT->getParamType(0) ||
513 !FT->getParamType(0)->isPointerTy() ||
514 !FT->getParamType(1)->isPointerTy() ||
515 FT->getParamType(2) != TD->getIntPtrType(Context) ||
516 FT->getParamType(3) != TD->getIntPtrType(Context))
535 if (FT->getNumParams() != 4 || FT
[all...]
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp821 const FunctionProtoType *FT; local
822 if ((FT = T->getAs<FunctionProtoType>())) {
824 FT = PT->getPointeeType()->getAs<FunctionProtoType>();
826 FT = RT->getPointeeType()->getAs<FunctionProtoType>();
828 FT = MT->getPointeeType()->getAs<FunctionProtoType>();
830 FT = BT->getPointeeType()->getAs<FunctionProtoType>();
832 if (!FT)
835 FT = S.ResolveExceptionSpec(E->getLocStart(), FT);
836 if (!FT)
[all...]
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp407 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), local
410 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp415 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), local
418 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
/external/llvm/lib/Analysis/
H A DLint.cpp209 FunctionType *FT = F->getFunctionType(); local
212 Assert1(FT->isVarArg() ?
213 FT->getNumParams() <= NumActualArgs :
214 FT->getNumParams() == NumActualArgs,
218 Assert1(FT->getReturnType() == I.getType(),
/external/chromium_org/third_party/mesa/src/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/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp660 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), local
663 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp764 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()), local
767 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
/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

Completed in 938 milliseconds

123