HomeSort by: relevance | last modified time | path
    Searched refs:FT (Results 1 - 25 of 119) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
NonTrivialTypeVisitor.h 22 template <class... Ts> RetTy visit(QualType FT, Ts &&... Args) {
23 return asDerived().visitWithKind(FT.isDestructedType(), FT,
28 RetTy visitWithKind(QualType::DestructionKind DK, QualType FT,
32 return asDerived().visitARCStrong(FT, std::forward<Ts>(Args)...);
34 return asDerived().visitStruct(FT, std::forward<Ts>(Args)...);
36 return asDerived().visitTrivial(FT, std::forward<Ts>(Args)...);
38 return asDerived().visitCXXDestructor(FT, std::forward<Ts>(Args)...);
40 return asDerived().visitARCWeak(FT, std::forward<Ts>(Args)...);
51 template <class... Ts> RetTy visit(QualType FT, Ts &&... Args)
    [all...]
  /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/clang/lib/CodeGen/
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...]
CodeGenABITypes.cpp 102 if (auto FT = dyn_cast<llvm::FunctionType>(T))
103 return FT;
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);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
FaultMapParser.cpp 16 void printFaultType(FaultMapParser::FaultKind FT, raw_ostream &OS) {
17 switch (FT) {
  /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/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/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/llvm/lib/CodeGen/
FaultMaps.cpp 103 const char *FaultMaps::faultTypeToString(FaultMaps::FaultKind FT) {
104 switch (FT) {
  /src/external/gpl3/gcc.old/dist/gcc/cp/
cxx-pretty-print.h 65 #define pp_cxx_cv_qualifiers(PP, CV, FT) \
66 pp_c_cv_qualifiers (PP, CV, FT)
  /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())))
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULibFunc.h 365 explicit AMDGPULibFunc(StringRef FName, FunctionType *FT);
441 explicit AMDGPUUnmangledLibFunc(StringRef FName, FunctionType *FT) {
443 FuncTy = FT;
456 void setFunctionType(FunctionType *FT) { FuncTy = FT; }
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/utils/ABITest/
ABITestGen.py 104 def writeFunction(self, i, FT):
105 args = ', '.join(['%s arg%d'%(self.getTypeName(t),i) for i,t in enumerate(FT.argTypes)])
109 if FT.returnType is None:
113 retvalTypeName = self.getTypeName(FT.returnType)
115 retvalName = self.getTestReturnValue(FT.returnType)
117 fnName = 'fn%d'%(FT.index,)
127 for i,t in enumerate(FT.argTypes):
150 retvalTests = self.getTestValuesArray(FT.returnType)
151 tests = [self.getTestValuesArray(ty) for ty in FT.argTypes]
161 self.printValueOfType(' %s_RV'%fnName, 'RV', FT.returnType, output=self.outputTests, indent=4
    [all...]
  /src/sys/arch/mips/mips/
fp.S 875 xor ta0, ta0, 1 # negate FT sign bit
884 bne ta1, SEXP_INF, result_fs_s # if FT is not inf, result=FS
886 bne ta2, zero, result_ft_s # if FT is NAN, result is FT
890 beq ta1, SEXP_INF, result_ft_s # if FT is inf, result=FT
893 bne ta1, zero, 2f # is FT a denormalized num?
894 beq ta2, zero, result_fs_s # FT is zero, result=FS
900 subu ta1, ta1, SEXP_BIAS # unbias FT exponent
904 bne ta1, zero, result_ft_s # if FT != 0, result=F
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 97 void setFileType(CodeGenFileType FT) { Config.CGFileType = FT; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 501 Constant *getOrBuildTrampolineFunction(FunctionType *FT, StringRef FName);
869 FunctionType *FT;
871 (FT = dyn_cast<FunctionType>(ParamType->getPointerElementType()))) {
873 ArgTypes.push_back(getTrampolineFunctionType(FT)->getPointerTo());
1214 FunctionType *FT = F->getFunctionType();
1232 std::vector<Value *> Args(ArgIt, ArgIt + FT->getNumParams());
1235 if (FT->getReturnType()->isVoidTy())
1244 Constant *DataFlowSanitizer::getOrBuildTrampolineFunction(FunctionType *FT,
1246 FunctionType *FTT = getTrampolineFunctionType(FT);
1254 for (unsigned N = FT->getNumParams(); N != 0; ++AI, --N
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
cxx-pretty-print.h 65 #define pp_cxx_cv_qualifiers(PP, CV, FT) \
66 pp_c_cv_qualifiers (PP, CV, FT)
  /src/external/apache2/llvm/dist/clang/lib/AST/
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...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
demangle.d 2410 char[] mangleFunc(T:FT*, FT)(return scope const(char)[] fqn, return scope char[] dst = null) @safe pure nothrow if (is(FT == function))
2412 static if (isExternD!FT)
2414 return mangle!FT(fqn, dst);
2416 else static if (hasPlainMangling!FT)
2422 else static if (isExternCPP!FT)
2428 static assert(0, "Can't mangle function with unknown linkage ("~FT.stringof~").");
2460 private template isExternD(FT) if (is(FT == function)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
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/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/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/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...]

Completed in 77 milliseconds

1 2 3 4 5