HomeSort by relevance Sort by last modified time
    Searched refs:InAlloca (Results 1 - 18 of 18) sorted by null

  /external/llvm/include/llvm/Target/
TargetCallingConv.h 47 static const uint64_t InAlloca = 1ULL<<12; ///< Passed with inalloca
79 bool isInAlloca() const { return Flags & InAlloca; }
  /external/llvm/include/llvm/IR/
CallSite.h 414 return paramHasAttr(ArgNo + 1, Attribute::InAlloca);
420 paramHasAttr(ArgNo + 1, Attribute::InAlloca);
423 /// @brief Determine if there are is an inalloca argument. Only the last
424 /// argument can have the inalloca attribute.
426 return paramHasAttr(arg_size(), Attribute::InAlloca);
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 66 /// InAlloca - Pass the argument directly using the LLVM inalloca attribute.
71 InAlloca,
73 KindLast = InAlloca
148 auto AI = ABIArgInfo(InAlloca);
165 bool isInAlloca() const { return TheKind == InAlloca; }
260 /// \brief Return true if this field of an inalloca struct should be returned
372 /// passing non-trivial types with inalloca. Not part of the profile.
463 /// \brief Return true if this function uses inalloca arguments.
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
TargetInfo.cpp 175 case InAlloca:
176 OS << "InAlloca Offset=" << getInAllocaFieldIndex();
872 /// inalloca.
    [all...]
CodeGenFunction.cpp 776 } else if (CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::InAlloca &&
    [all...]
  /external/llvm/lib/IR/
Function.cpp 96 /// \brief Return true if this argument has the inalloca attribute on it in
101 hasAttribute(getArgNo()+1, Attribute::InAlloca);
108 Attrs.hasAttribute(getArgNo() + 1, Attribute::InAlloca);
    [all...]
Verifier.cpp     [all...]
Attributes.cpp 205 if (hasAttribute(Attribute::InAlloca))
206 return "inalloca";
446 case Attribute::InAlloca: return 1ULL << 43;
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 534 // Functions with inalloca parameters are expecting args in a particular
536 if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca)) {
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 89 IsInAlloca = CS->paramHasAttr(AttrIdx, Attribute::InAlloca);
    [all...]
TargetLowering.cpp 78 isInAlloca = CS->paramHasAttr(AttrIdx, Attribute::InAlloca);
    [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 505 HANDLE_ATTR(InAlloca);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 177 case Attribute::InAlloca:
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 959 milliseconds