Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h37 unsigned IsInAlloca : 1; ///< Passed with inalloca member
55 IsReturned(0), IsSplit(0), IsInAlloca(0), IsSplitEnd(0), in ArgFlagsTy()
78 bool isInAlloca() const { return IsInAlloca; } in isInAlloca()
79 void setInAlloca() { IsInAlloca = 1; } in setInAlloca()
H A DTargetLowering.h187 bool IsInAlloca : 1; variable
195 IsNest(false), IsByVal(false), IsInAlloca(false), IsReturned(false), in ArgListEntry()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLParser.h295 bool ParseOptionalCommaInAlloca(bool &IsInAlloca);
H A DLLParser.cpp6611 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca); in ParseAlloc() local
6656 AI->setUsedWithInAlloca(IsInAlloca); in ParseAlloc()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1196 if (Arg.IsInAlloca) { in lowerCallTo()
1205 if (Arg.IsByVal || Arg.IsInAlloca) { in lowerCallTo()
H A DSelectionDAGBuilder.cpp8580 if (Args[i].IsInAlloca) { in LowerCallTo()
8589 if (Args[i].IsByVal || Args[i].IsInAlloca) { in LowerCallTo()
H A DTargetLowering.cpp111 IsInAlloca = CS->paramHasAttr(ArgIdx, Attribute::InAlloca); in setAttributes()