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

  /src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
CGFunctionInfo.h 584 unsigned RegParm : 3;
697 unsigned getRegParm() const { return RegParm; }
742 ID.AddInteger(RegParm);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 1582 /// regparm and the calling convention.
3666 // | CC |noreturn|produces|nocallersavedregs|regparm|nocfcheck|cmsenscall|
3669 // regparm is either 0 (no regparm attribute) or the regparm value+1.
3687 ExtInfo(bool noReturn, bool hasRegParm, unsigned regParm, CallingConv cc,
3690 assert((!hasRegParm || regParm < 7) && "Invalid regparm value");
3694 (hasRegParm ? ((regParm + 1) << RegParmOffset) : 0) |
3715 unsigned RegParm = (Bits & RegParmMask) >> RegParmOffset
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.cpp 828 FI->RegParm = info.getRegParm();

Completed in 21 milliseconds