<div dir="auto"><div>Agreed, I won't plan to change syntax for anything that hasn't opted in.</div><div dir="auto"><br></div><div dir="auto">However... Am I mistaken in thinking clang-cl (for example) is just clang with a different name, which triggers some variant behaviors including parsing cl.exe-style command lines and taking certain flags as implicit?</div><div dir="auto"><br></div><div dir="auto">I was hoping to build llvm-ml similarly, by building the features into llvm-mc behind target selection and/or flags, then providing a different driver for implicit ml.exe compatibility.</div><div dir="auto"><br></div><div dir="auto">(Also, are there guidelines for writing an RFC that people will bother with, or should I just try not to make it TOO long?)</div><div dir="auto"><br><div class="gmail_quote" dir="auto"><div dir="ltr" class="gmail_attr">On Wed, Nov 20, 2019, 12:30 PM Zachary Turner <<a href="mailto:zturner@roblox.com">zturner@roblox.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I don't think it's a good idea to alter what kind of syntax is accepted or not for files that aren't explicitly opting into MASM behavior.  The usual pattern we have done in the past for MS compatibility tools is to make a separate tool which is named the same as the Microsoft tool, but prefixed with `lld-`, `llvm-` or `clang-`.  E.g. `clang-cl`, `llvm-rc`, `llvm-mt`, `lld-link`.  So in this vein, I think it makes the most sense to have any future LLVM MASM compiler be called `llvm-ml` or `llvm-ml64`.  <div><br></div><div>For your second question, I think many people on the list would be willing to & capable of answering questions.  Just post your RFC and someone will look at it (it sometimes takes a few bumps & pings to get people to stop what they're doing though)</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, Nov 17, 2019 at 2:08 PM Eric Astor via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank" rel="noreferrer">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Hi all,</div><div><br></div><div>I'm working on a project that uses clang-cl & lld-link to build for Windows, along with some tools out of the Windows SDK... but we're currently pre-building some pieces of MASM assembly code using Microsoft's ml.exe & ml64.exe. Unfortunately, it's not all inline assembly, which clang can already handle, and Microsoft's file-level directives are a bit unusual.<br></div><div><br></div><div>I plan to work on getting llvm-mc to compile (relatively simple) MASM files when targeting a Windows x86-based platform, with goal of matching the output of ml.exe and ml64.exe. I've already drafted a proof-of-concept patch that lets llvm-mc handle MASM's variants of conditional assembly macros (including the idiomatic use of "ifdef rax" to check if a build is targeting x86-64)... but macro functions & structs are of course looking a bit harder.<br></div><div><br></div><div>A few questions:</div><div><br></div><div>
<div>1. Should all of the changes be locked behind an equivalent to clang's <span style="font-family:monospace">-fms-compatibility</span> flag, or would it be good if some subset of the functionality were shared? [e.g., should <span style="font-family:monospace">.ifdef rax</span> be a valid way to check if the <span style="font-family:monospace">rax</span> register exists?]</div>

<br></div><div>2. Is there anyone around who would be willing to answer questions regarding the intended architecture of llvm-mc and the AsmParser classes? I'd like to make sure my proposals fit well into the design... and I'm starting to have trouble finding where these extensions should go. (Also, I've had some trouble getting used to the recursive-descent parser conventions being used. For example, how should one handle "try parsing this identifier as a register, and if that fails, check if it's defined as a symbol" while not emitting Errors from the first attempt?)<br></div><div><br></div><div>Thanks,</div><div>- Eric<br></div></div>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank" rel="noreferrer">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>
</blockquote></div></div></div>