Searched defs:IsVariadic (Results 1 - 3 of 3) sorted by relevance

/external/llvm/utils/TableGen/
H A DCodeGenSchedule.h44 /// IsVariadic controls whether the variants are expanded into multiple operands
53 bool IsVariadic; member in struct:llvm::CodeGenSchedRW
60 HasVariants(false), IsVariadic(false), IsSequence(false) {}
62 : Index(Idx), TheDef(Def), IsAlias(false), IsVariadic(false) {
67 IsVariadic = Def->getValueAsBit("Variadic");
78 HasVariants(false), IsVariadic(false), IsSequence(true), Sequence(Seq) {
84 assert((!IsVariadic || HasVariants) && "Variadic write needs variants");
/external/clang/lib/Sema/
H A DSemaType.cpp5927 bool IsVariadic = (isa<FunctionProtoType>(FT) && local
5930 CallingConv ToCC = Context.getDefaultCallingConvention(IsVariadic, !IsStatic);
5949 Context.getDefaultCallingConvention(IsVariadic, IsStatic);
/external/clang/lib/AST/
H A DASTContext.cpp8478 CallingConv ASTContext::getDefaultCallingConvention(bool IsVariadic, argument
8482 return ABI->getDefaultMethodCallConv(IsVariadic);
8484 if (LangOpts.MRTD && !IsVariadic) return CC_X86StdCall;

Completed in 561 milliseconds