|
@@ -23,22 +23,22 @@
|
|
|
#undef alloca
|
|
|
|
|
|
namespace clang {
|
|
|
- class TargetInfo;
|
|
|
- class IdentifierTable;
|
|
|
- class ASTContext;
|
|
|
- class QualType;
|
|
|
- class LangOptions;
|
|
|
-
|
|
|
- enum LanguageID {
|
|
|
- GNU_LANG = 0x1, // builtin requires GNU mode.
|
|
|
- C_LANG = 0x2, // builtin for c only.
|
|
|
- CXX_LANG = 0x4, // builtin for cplusplus only.
|
|
|
- OBJC_LANG = 0x8, // builtin for objective-c and objective-c++
|
|
|
- MS_LANG = 0x10, // builtin requires MS mode.
|
|
|
- ALL_LANGUAGES = C_LANG | CXX_LANG | OBJC_LANG, // builtin for all languages.
|
|
|
- ALL_GNU_LANGUAGES = ALL_LANGUAGES | GNU_LANG, // builtin requires GNU mode.
|
|
|
- ALL_MS_LANGUAGES = ALL_LANGUAGES | MS_LANG // builtin requires MS mode.
|
|
|
- };
|
|
|
+class TargetInfo;
|
|
|
+class IdentifierTable;
|
|
|
+class ASTContext;
|
|
|
+class QualType;
|
|
|
+class LangOptions;
|
|
|
+
|
|
|
+enum LanguageID {
|
|
|
+ GNU_LANG = 0x1, // builtin requires GNU mode.
|
|
|
+ C_LANG = 0x2, // builtin for c only.
|
|
|
+ CXX_LANG = 0x4, // builtin for cplusplus only.
|
|
|
+ OBJC_LANG = 0x8, // builtin for objective-c and objective-c++
|
|
|
+ MS_LANG = 0x10, // builtin requires MS mode.
|
|
|
+ ALL_LANGUAGES = C_LANG | CXX_LANG | OBJC_LANG, // builtin for all languages.
|
|
|
+ ALL_GNU_LANGUAGES = ALL_LANGUAGES | GNU_LANG, // builtin requires GNU mode.
|
|
|
+ ALL_MS_LANGUAGES = ALL_LANGUAGES | MS_LANG // builtin requires MS mode.
|
|
|
+};
|
|
|
|
|
|
namespace Builtin {
|
|
|
enum ID {
|
|
@@ -62,90 +62,90 @@ public:
|
|
|
Context();
|
|
|
|
|
|
/// \brief Perform target-specific initialization
|
|
|
- void InitializeTarget(const TargetInfo &Target);
|
|
|
+ void initializeTarget(const TargetInfo &Target);
|
|
|
|
|
|
/// \brief Mark the identifiers for all the builtins with their
|
|
|
/// appropriate builtin ID # and mark any non-portable builtin identifiers as
|
|
|
/// such.
|
|
|
- void InitializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts);
|
|
|
+ void initializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts);
|
|
|
|
|
|
/// \brief Return the identifier name for the specified builtin,
|
|
|
/// e.g. "__builtin_abs".
|
|
|
- const char *GetName(unsigned ID) const {
|
|
|
- return GetRecord(ID).Name;
|
|
|
+ const char *getName(unsigned ID) const {
|
|
|
+ return getRecord(ID).Name;
|
|
|
}
|
|
|
|
|
|
/// \brief Get the type descriptor string for the specified builtin.
|
|
|
- const char *GetTypeString(unsigned ID) const {
|
|
|
- return GetRecord(ID).Type;
|
|
|
+ const char *getTypeString(unsigned ID) const {
|
|
|
+ return getRecord(ID).Type;
|
|
|
}
|
|
|
|
|
|
/// \brief Return true if this function has no side effects and doesn't
|
|
|
/// read memory.
|
|
|
bool isConst(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'c') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'c') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Return true if we know this builtin never throws an exception.
|
|
|
bool isNoThrow(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'n') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'n') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Return true if we know this builtin never returns.
|
|
|
bool isNoReturn(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'r') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'r') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Return true if we know this builtin can return twice.
|
|
|
bool isReturnsTwice(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'j') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'j') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Returns true if this builtin does not perform the side-effects
|
|
|
/// of its arguments.
|
|
|
bool isUnevaluated(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'u') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'u') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Return true if this is a builtin for a libc/libm function,
|
|
|
/// with a "__builtin_" prefix (e.g. __builtin_abs).
|
|
|
bool isLibFunction(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'F') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'F') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Determines whether this builtin is a predefined libc/libm
|
|
|
/// function, such as "malloc", where we know the signature a
|
|
|
/// priori.
|
|
|
bool isPredefinedLibFunction(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'f') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'f') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Determines whether this builtin is a predefined compiler-rt/libgcc
|
|
|
/// function, such as "__clear_cache", where we know the signature a
|
|
|
/// priori.
|
|
|
bool isPredefinedRuntimeFunction(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'i') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'i') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Determines whether this builtin has custom typechecking.
|
|
|
bool hasCustomTypechecking(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 't') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 't') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Determines whether this builtin has a result or any arguments which
|
|
|
/// are pointer types.
|
|
|
bool hasPtrArgsOrResult(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Type, '*') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Type, '*') != nullptr;
|
|
|
}
|
|
|
|
|
|
/// \brief Completely forget that the given ID was ever considered a builtin,
|
|
|
/// e.g., because the user provided a conflicting signature.
|
|
|
- void ForgetBuiltin(unsigned ID, IdentifierTable &Table);
|
|
|
+ void forgetBuiltin(unsigned ID, IdentifierTable &Table);
|
|
|
|
|
|
/// \brief If this is a library function that comes from a specific
|
|
|
/// header, retrieve that header name.
|
|
|
const char *getHeaderName(unsigned ID) const {
|
|
|
- return GetRecord(ID).HeaderName;
|
|
|
+ return getRecord(ID).HeaderName;
|
|
|
}
|
|
|
|
|
|
/// \brief Determine whether this builtin is like printf in its
|
|
@@ -163,14 +163,14 @@ public:
|
|
|
///
|
|
|
/// Such functions can be const when the MathErrno lang option is disabled.
|
|
|
bool isConstWithoutErrno(unsigned ID) const {
|
|
|
- return strchr(GetRecord(ID).Attributes, 'e') != nullptr;
|
|
|
+ return strchr(getRecord(ID).Attributes, 'e') != nullptr;
|
|
|
}
|
|
|
|
|
|
private:
|
|
|
- const Info &GetRecord(unsigned ID) const;
|
|
|
+ const Info &getRecord(unsigned ID) const;
|
|
|
|
|
|
/// \brief Is this builtin supported according to the given language options?
|
|
|
- bool BuiltinIsSupported(const Builtin::Info &BuiltinInfo,
|
|
|
+ bool builtinIsSupported(const Builtin::Info &BuiltinInfo,
|
|
|
const LangOptions &LangOpts);
|
|
|
|
|
|
/// \brief Helper function for isPrintfLike and isScanfLike.
|