forked from OSchip/llvm-project
Only provide MS builtins when -fms-extensions is on
We already have builtins that are only available in GNU mode, so this mirrors that. Reviewers: rsmith Differential Revision: http://llvm-reviews.chandlerc.com/D2128 llvm-svn: 194615
This commit is contained in:
parent
21fee96f69
commit
cf8933d1b7
|
@ -92,6 +92,10 @@
|
|||
# define LIBBUILTIN(ID, TYPE, ATTRS, HEADER, BUILTIN_LANG) BUILTIN(ID, TYPE, ATTRS)
|
||||
#endif
|
||||
|
||||
#if defined(BUILTIN) && !defined(LANGBUILTIN)
|
||||
# define LANGBUILTIN(ID, TYPE, ATTRS, BUILTIN_LANG) BUILTIN(ID, TYPE, ATTRS)
|
||||
#endif
|
||||
|
||||
// Standard libc/libm functions:
|
||||
BUILTIN(__builtin_atan2 , "ddd" , "Fnc")
|
||||
BUILTIN(__builtin_atan2f, "fff" , "Fnc")
|
||||
|
@ -670,11 +674,10 @@ BUILTIN(__builtin_abort, "v", "Fnr")
|
|||
BUILTIN(__builtin_index, "c*cC*i", "Fn")
|
||||
BUILTIN(__builtin_rindex, "c*cC*i", "Fn")
|
||||
|
||||
// Microsoft builtins.
|
||||
BUILTIN(__assume, "vb", "n")
|
||||
BUILTIN(__noop, "v.", "n")
|
||||
BUILTIN(__debugbreak, "v", "n")
|
||||
|
||||
// Microsoft builtins. These are only active with -fms-extensions.
|
||||
LANGBUILTIN(__assume, "vb", "n", ALL_MS_LANGUAGES)
|
||||
LANGBUILTIN(__noop, "v.", "n", ALL_MS_LANGUAGES)
|
||||
LANGBUILTIN(__debugbreak, "v", "n", ALL_MS_LANGUAGES)
|
||||
|
||||
// C99 library functions
|
||||
// C99 stdlib.h
|
||||
|
@ -1178,3 +1181,4 @@ BUILTIN(__builtin_addressof, "v*v&", "nct")
|
|||
|
||||
#undef BUILTIN
|
||||
#undef LIBBUILTIN
|
||||
#undef LANGBUILTIN
|
||||
|
|
|
@ -35,8 +35,10 @@ namespace clang {
|
|||
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_GNU_LANGUAGES = ALL_LANGUAGES | GNU_LANG, // builtin requires GNU mode.
|
||||
ALL_MS_LANGUAGES = ALL_LANGUAGES | MS_LANG // builtin requires MS mode.
|
||||
};
|
||||
|
||||
namespace Builtin {
|
||||
|
|
|
@ -22,6 +22,7 @@ using namespace clang;
|
|||
static const Builtin::Info BuiltinInfo[] = {
|
||||
{ "not a builtin function", 0, 0, 0, ALL_LANGUAGES },
|
||||
#define BUILTIN(ID, TYPE, ATTRS) { #ID, TYPE, ATTRS, 0, ALL_LANGUAGES },
|
||||
#define LANGBUILTIN(ID, TYPE, ATTRS, BUILTIN_LANG) { #ID, TYPE, ATTRS, 0, BUILTIN_LANG },
|
||||
#define LIBBUILTIN(ID, TYPE, ATTRS, HEADER, BUILTIN_LANG) { #ID, TYPE, ATTRS, HEADER,\
|
||||
BUILTIN_LANG },
|
||||
#include "clang/Basic/Builtins.def"
|
||||
|
@ -54,10 +55,12 @@ bool Builtin::Context::BuiltinIsSupported(const Builtin::Info &BuiltinInfo,
|
|||
llvm::StringRef(BuiltinInfo.HeaderName).equals("math.h");
|
||||
bool GnuModeUnsupported = !LangOpts.GNUMode &&
|
||||
(BuiltinInfo.builtin_lang & GNU_LANG);
|
||||
bool MSModeUnsupported = !LangOpts.MicrosoftExt &&
|
||||
(BuiltinInfo.builtin_lang & MS_LANG);
|
||||
bool ObjCUnsupported = !LangOpts.ObjC1 &&
|
||||
BuiltinInfo.builtin_lang == OBJC_LANG;
|
||||
return !BuiltinsUnsupported && !MathBuiltinsUnsupported &&
|
||||
!GnuModeUnsupported && !ObjCUnsupported;
|
||||
!GnuModeUnsupported && !MSModeUnsupported && !ObjCUnsupported;
|
||||
}
|
||||
|
||||
/// InitializeBuiltins - Mark the identifiers for all the builtins with their
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// RUN: %clang_cc1 -triple i686-pc-win32 -emit-llvm %s -o - | FileCheck %s
|
||||
// RUN: %clang_cc1 -fms-extensions -triple i686-pc-win32 -emit-llvm %s -o - | FileCheck %s
|
||||
|
||||
class A {
|
||||
public:
|
||||
|
|
|
@ -191,3 +191,9 @@ void test18() {
|
|||
ptr = __builtin___strlcpy_chk(dst, src, sizeof(src), sizeof(dst)); // expected-warning {{incompatible integer to pointer conversion}}
|
||||
ptr = __builtin___strlcat_chk(dst, src, sizeof(src), sizeof(dst)); // expected-warning {{incompatible integer to pointer conversion}}
|
||||
}
|
||||
|
||||
void no_ms_builtins() {
|
||||
__assume(1); // expected-warning {{implicit declaration}}
|
||||
__noop(1); // expected-warning {{implicit declaration}}
|
||||
__debugbreak(); // expected-warning {{implicit declaration}}
|
||||
}
|
||||
|
|
|
@ -38,3 +38,9 @@ namespace addressof {
|
|||
|
||||
S *ptmp = __builtin_addressof(S{}); // expected-error {{taking the address of a temporary}}
|
||||
}
|
||||
|
||||
void no_ms_builtins() {
|
||||
__assume(1); // expected-error {{use of undeclared}}
|
||||
__noop(1); // expected-error {{use of undeclared}}
|
||||
__debugbreak(); // expected-error {{use of undeclared}}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue