<br><br><div class="gmail_quote">On Thu, Nov 1, 2012 at 10:04 AM, David Tweed <span dir="ltr"><<a href="mailto:david.tweed@arm.com" target="_blank">david.tweed@arm.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Rafael,<br>
<br>
This looks like a reasonable goal, but obviously the ARM architecture being quite modular there are a lot more actual variants (and a huge number more "potential" variants) than for other CPUs (and those listed in the table). Is there any nice mechanism for checking if an enum is one of a list of enum-values in the clang codebase?<br>

<br></blockquote><div><br>The simplest way would be to group all ARM architecture in a contiguous range, have a First / Last elements (with redundant values), and then perform a in-range check:<br><br>enum CPUArch {<br>    ...<br>
    ARM_Begin,<br>    ARM_Arch0 = ARM_Begin,<br>    ARM_Arch1,<br>    ....<br>    ARM_End,<br>    NonArm = ARM_End,<br>    ....<br>};<br><br>bool isARM(CPUArch a) { return a >= ARM_Begin and a < ARM_End; }<br><br>Cheap, efficient, relatively easy to keep up-to-date.<br>
<br>-- Matthieu<br><br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Anyway, if this goes in we'll probably need to keep patching up both the enum and the string-mapping as new use cases are discovered.<br>
<br>
Cheers,<br>
Dave<br>
<br>
-----Original Message-----<br>
From: <a href="mailto:cfe-commits-bounces@cs.uiuc.edu">cfe-commits-bounces@cs.uiuc.edu</a> [mailto:<a href="mailto:cfe-commits-bounces@cs.uiuc.edu">cfe-commits-bounces@cs.uiuc.edu</a>] On Behalf Of Rafael Espíndola<br>
Sent: 30 October 2012 03:58<br>
To: llvm cfe<br>
Subject: [cfe-commits] [patch] Add a llvm::Triple::CPUArch enum<br>
<br>
There is a lot of char* being passed around in the clang driver. At<br>
least part of that seems to be because we have an enum<br>
(llvm::Triple::ArchType) that can distinguish  an ARM from an X86, but<br>
we don't have an enum that can distinguish a ARMv6 form an ARMv7 for<br>
example.<br>
<br>
The attached patches add the enum llvm::Triple::CPUArch and use that<br>
to replace a long if chain in clang. I think it can be used in more<br>
places, but this should be sufficient to illustrate the idea.<br>
<div class="HOEnZb"><div class="h5"><br>
Cheers,<br>
Rafael<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@cs.uiuc.edu">cfe-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits</a><br>
</div></div></blockquote></div><br>