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.h620 unsigned RegParm : 3; variable
737 unsigned getRegParm() const { return RegParm; } in getRegParm()
794 ID.AddInteger(RegParm); in Profile()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4552 unsigned RegParm = (Bits & RegParmMask) >> RegParmOffset;
4553 if (RegParm > 0)
4554 --RegParm;
4555 return RegParm;
4605 ExtInfo withRegParm(unsigned RegParm) const {
4606 assert(RegParm < 7 && "Invalid regparm value");
4608 ((RegParm + 1) << RegParmOffset));
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp923 FI->RegParm = info.getRegParm(); in create()