Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h602 unsigned RegParm : 3; variable
719 unsigned getRegParm() const { return RegParm; } in getRegParm()
776 ID.AddInteger(RegParm); in Profile()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4445 unsigned RegParm = (Bits & RegParmMask) >> RegParmOffset;
4446 if (RegParm > 0)
4447 --RegParm;
4448 return RegParm;
4498 ExtInfo withRegParm(unsigned RegParm) const {
4499 assert(RegParm < 7 && "Invalid regparm value");
4501 ((RegParm + 1) << RegParmOffset));
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp857 FI->RegParm = info.getRegParm(); in create()