[clang] 07ec9a3 - [clang][NFC] Partially annotate `CGFunctionInfo.h` with `preferred_type`
Vlad Serebrennikov via cfe-commits
cfe-commits at lists.llvm.org
Sat Feb 10 23:58:15 PST 2024
Author: Vlad Serebrennikov
Date: 2024-02-11T10:58:03+03:00
New Revision: 07ec9a3799fa1e80888f8bd0c1101ad6dd546842
URL: https://github.com/llvm/llvm-project/commit/07ec9a3799fa1e80888f8bd0c1101ad6dd546842
DIFF: https://github.com/llvm/llvm-project/commit/07ec9a3799fa1e80888f8bd0c1101ad6dd546842.diff
LOG: [clang][NFC] Partially annotate `CGFunctionInfo.h` with `preferred_type`
`CallingConvention` and `EffectiveCallingConvention` bit-fields that hold `llvm::CallingConv` are impossible to annotate at the moment, as `llvm::CallingConv` is actually a namespace with an unnamed enum inside.
Added:
Modified:
clang/include/clang/CodeGen/CGFunctionInfo.h
Removed:
################################################################################
diff --git a/clang/include/clang/CodeGen/CGFunctionInfo.h b/clang/include/clang/CodeGen/CGFunctionInfo.h
index e388901b8a504c..811f33407368c6 100644
--- a/clang/include/clang/CodeGen/CGFunctionInfo.h
+++ b/clang/include/clang/CodeGen/CGFunctionInfo.h
@@ -564,35 +564,45 @@ class CGFunctionInfo final
unsigned EffectiveCallingConvention : 8;
/// The clang::CallingConv that this was originally created with.
+ LLVM_PREFERRED_TYPE(CallingConv)
unsigned ASTCallingConvention : 6;
/// Whether this is an instance method.
+ LLVM_PREFERRED_TYPE(bool)
unsigned InstanceMethod : 1;
/// Whether this is a chain call.
+ LLVM_PREFERRED_TYPE(bool)
unsigned ChainCall : 1;
/// Whether this function is called by forwarding arguments.
/// This doesn't support inalloca or varargs.
+ LLVM_PREFERRED_TYPE(bool)
unsigned DelegateCall : 1;
/// Whether this function is a CMSE nonsecure call
+ LLVM_PREFERRED_TYPE(bool)
unsigned CmseNSCall : 1;
/// Whether this function is noreturn.
+ LLVM_PREFERRED_TYPE(bool)
unsigned NoReturn : 1;
/// Whether this function is returns-retained.
+ LLVM_PREFERRED_TYPE(bool)
unsigned ReturnsRetained : 1;
/// Whether this function saved caller registers.
+ LLVM_PREFERRED_TYPE(bool)
unsigned NoCallerSavedRegs : 1;
/// How many arguments to pass inreg.
+ LLVM_PREFERRED_TYPE(bool)
unsigned HasRegParm : 1;
unsigned RegParm : 3;
/// Whether this function has nocf_check attribute.
+ LLVM_PREFERRED_TYPE(bool)
unsigned NoCfCheck : 1;
/// Log 2 of the maximum vector width.
@@ -604,6 +614,7 @@ class CGFunctionInfo final
/// passing non-trivial types with inalloca. Not part of the profile.
llvm::StructType *ArgStruct;
unsigned ArgStructAlign : 31;
+ LLVM_PREFERRED_TYPE(bool)
unsigned HasExtParameterInfos : 1;
unsigned NumArgs;
More information about the cfe-commits
mailing list