Home
last modified time | relevance | path

Searched refs:RegParm (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h584 unsigned RegParm : 3; variable
697 unsigned getRegParm() const { return RegParm; } in getRegParm()
742 ID.AddInteger(RegParm); in Profile()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h3715 unsigned RegParm = (Bits & RegParmMask) >> RegParmOffset;
3716 if (RegParm > 0)
3717 --RegParm;
3718 return RegParm;
3768 ExtInfo withRegParm(unsigned RegParm) const {
3769 assert(RegParm < 7 && "Invalid regparm value");
3771 ((RegParm + 1) << RegParmOffset));
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCall.cpp828 FI->RegParm = info.getRegParm(); in create()