Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetCallingConv.h37 unsigned IsInAlloca : 1; ///< Passed with inalloca member
59 IsReturned(0), IsSplit(0), IsInAlloca(0), IsSplitEnd(0), in ArgFlagsTy()
83 bool isInAlloca() const { return IsInAlloca; } in isInAlloca()
84 void setInAlloca() { IsInAlloca = 1; } in setInAlloca()
DTargetLowering.h189 bool IsInAlloca : 1; variable
199 IsNest(false), IsByVal(false), IsInAlloca(false), IsReturned(false), in ArgListEntry()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.h294 bool ParseOptionalCommaInAlloca(bool &IsInAlloca);
DLLParser.cpp6896 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca); in ParseAlloc() local
6941 AI->setUsedWithInAlloca(IsInAlloca); in ParseAlloc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp1197 if (Arg.IsInAlloca) { in lowerCallTo()
1206 if (Arg.IsByVal || Arg.IsInAlloca) { in lowerCallTo()
DSelectionDAGBuilder.cpp9217 if (Args[i].IsInAlloca) { in LowerCallTo()
9226 if (Args[i].IsByVal || Args[i].IsInAlloca) { in LowerCallTo()
DTargetLowering.cpp113 IsInAlloca = Call->paramHasAttr(ArgIdx, Attribute::InAlloca); in setAttributes()