HomeSort by: relevance | last modified time | path
    Searched refs:IsInAlloca (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetCallingConv.h 38 unsigned IsInAlloca : 1; ///< Passed with inalloca
63 IsNest(0), IsReturned(0), IsSplit(0), IsInAlloca(0),
91 bool isInAlloca() const { return IsInAlloca; }
92 void setInAlloca() { IsInAlloca = 1; }
TargetLowering.h 285 bool IsInAlloca : 1;
298 IsNest(false), IsByVal(false), IsByRef(false), IsInAlloca(false),
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLParser.h 281 bool parseOptionalCommaInAlloca(bool &IsInAlloca);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 1059 if (Arg.IsInAlloca) {
1078 if (Arg.IsByVal || Arg.IsInAlloca || Arg.IsPreallocated) {
TargetLowering.cpp 123 IsInAlloca = Attrs.hasParamAttribute(ArgIdx, Attribute::InAlloca);
126 assert(IsByVal + IsInAlloca + IsPreallocated <= 1 &&
135 if (IsInAlloca) {
SelectionDAGBuilder.cpp 9544 if (Args[i].IsInAlloca) {
9554 if (Args[i].IsByVal || Args[i].IsInAlloca || Args[i].IsPreallocated) {
10104 if (Flags.isByVal() || Flags.isInAlloca() || Flags.isPreallocated() ||
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 7390 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
7441 AI->setUsedWithInAlloca(IsInAlloca);

Completed in 53 milliseconds