<div dir="ltr">On Thu, Nov 30, 2017 at 5:15 PM, Bob Wilson via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I wondering if anyone besides Apple would be interested in having predefined macros to identify the target OS and environment.<br>
<br>
Background: Over the last few years, Apple has added several new platforms (tvOS and watchOS) as well as simulator variants for those, and we’ve accumulated a fair bit of complexity by adding Clang support for those platforms with a copy-and-paste approach. The -mmacosx-version-min option worked well when there was only one Apple platform, but it’s not so great now that we have a lot of -m*-version-min options. We’re trying to move toward the more standard approach of using the -target option to specify the target triple, including the OS version. Akira added support for that earlier (Clang r307982) and we’ve started moving toward identifying simulator targets via the environment field of the triple (LLVM r316380). Related to that, we also need a way to identify via predefined macros what target we’re building for. We recently added the __APPLE_EMBEDDED_SIMULATOR__ macro to distinguish the simulator targets (although it is currently not working when you use the -target option alone), but we don’t have anything to distinguish iOS vs. tvOS vs. watchOS.<br>
<br>
It occurred to me that we can do this in a very general way by exposing the OS and Environment fields of the target triple directly in predefined macros. (We could do the same for the Arch and Vendor fields if anyone has a use for those.)<br></blockquote><div><br></div><div>+1 on this.</div><div><br></div><div>Arch is exposed, although possibly with a different spelling (e.g. `__powerpc__`).  The vendor is also usually exposed in most toolchains (e.g. `__APPLE__`, or `__INTEL__` from ICC), but is not done in a generalized manner, and is something which I had intended to do as a cleanup.  If you can beat me to it, great!  The OS is already exposed (e.g. `__linux__`), but again suffers the problem of not being done in a generalized manner.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
We could add these new macros only for Darwin targets, but since they are not at all Darwin-specific, what do you all think of adding them for all targets?<br></blockquote><div><br></div><div>I think all the targets is pretty reasonable.  This actually came up a while ago, but we never went down this path for libc++.  Right now, libc++ is able to build with the itanium ABI and the Microsoft ABI on Windows.  Differentiating which ABI we are using is currently not possible, but access to the environment would solve the problem.</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
To be specific, here’s the change that I’m suggesting. (I’ll put it up for a proper review with a testcase if there is positive feedback for doing it this way.)<br></blockquote><div><br></div><div>Most of the triple is made accessible, the environment is the one piece which is not, and I think it would be nice to have a uniform way of inspecting this information.</div><div><br></div><div>I believe that we could keep the existing architecture macros, uniformly expose vendor as `__<upper case vendor>__`.  The OS could be exposed uniformly as `__<lower case os>__`.  The environment, since there is no real precedent, we can bike shed (fuchsia seems to be a popular color these days :-p), but no strong opinions on that.  I believe if we expose the environment, all 9 pieces of the triple should be visible.</div><div><br></div><div>[arch][subarch][endian]-[vendor]-[os]-[environment][abi][object format][version]</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
diff --git lib/Frontend/InitPreprocessor.<wbr>cpp lib/Frontend/InitPreprocessor.<wbr>cpp<br>
index 67c1faddc3..c1dfb39c37 100644<br>
--- lib/Frontend/InitPreprocessor.<wbr>cpp<br>
+++ lib/Frontend/InitPreprocessor.<wbr>cpp<br>
@@ -713,6 +713,14 @@ static void InitializePredefinedMacros(<wbr>const TargetInfo &TI,<br>
<br>
   // Initialize target-specific preprocessor defines.<br>
<br>
+  // Identify the OS and Environment fields of the target triple.<br>
+  Builder.defineMacro("__TARGET_<wbr>OS__",<br>
+                      TI.getTriple().getOSTypeName(<wbr>TI.getTriple().getOS()));<br>
+  if (TI.getTriple().<wbr>hasEnvironment()) {<br>
+    Builder.defineMacro("__TARGET_<wbr>ENVIRONMENT__",<br>
+      TI.getTriple().<wbr>getEnvironmentTypeName(TI.<wbr>getTriple().getEnvironment()))<wbr>;<br>
+  }<br>
+<br>
   // __BYTE_ORDER__ was added in GCC 4.6. It's analogous<br>
   // to the macro __BYTE_ORDER (no trailing underscores)<br>
   // from glibc's <endian.h> header.<br>
______________________________<wbr>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">Saleem Abdulrasool<br>compnerd (at) compnerd (dot) org</div>
</div></div>