Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/CodeGen/
DCGFunctionInfo.h584 unsigned RegParm : 3; variable
697 unsigned getRegParm() const { return RegParm; } in getRegParm()
742 ID.AddInteger(RegParm); in Profile()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
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));
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGCall.cpp830 FI->RegParm = info.getRegParm(); in create()