Home
last modified time | relevance | path

Searched refs:IsInAlloca (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h38 unsigned IsInAlloca : 1; ///< Passed with inalloca member
63 IsNest(0), IsReturned(0), IsSplit(0), IsInAlloca(0), in ArgFlagsTy()
91 bool isInAlloca() const { return IsInAlloca; } in isInAlloca()
92 void setInAlloca() { IsInAlloca = 1; } in setInAlloca()
H A DTargetLowering.h285 bool IsInAlloca : 1; variable
298 IsNest(false), IsByVal(false), IsByRef(false), IsInAlloca(false), in ArgListEntry()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
H A DLLParser.h281 bool parseOptionalCommaInAlloca(bool &IsInAlloca);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1059 if (Arg.IsInAlloca) { in lowerCallTo()
1078 if (Arg.IsByVal || Arg.IsInAlloca || Arg.IsPreallocated) { in lowerCallTo()
H A DTargetLowering.cpp123 IsInAlloca = Attrs.hasParamAttribute(ArgIdx, Attribute::InAlloca); in setAttributes()
126 assert(IsByVal + IsInAlloca + IsPreallocated <= 1 && in setAttributes()
135 if (IsInAlloca) { in setAttributes()
H A DSelectionDAGBuilder.cpp9544 if (Args[i].IsInAlloca) { in LowerCallTo()
9554 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) { in LowerCallTo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp7390 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca); in parseAlloc() local
7441 AI->setUsedWithInAlloca(IsInAlloca); in parseAlloc()