[clang][Arm] Fix handling of -Wa,-march=
authorDavid Spickett <david.spickett@linaro.org>
Mon, 1 Feb 2021 11:29:14 +0000 (11:29 +0000)
committerDavid Spickett <david.spickett@linaro.org>
Thu, 4 Feb 2021 16:36:15 +0000 (16:36 +0000)
commit1d51c699b9e2ebc5bcfdbe85c74cc871426333d4
treedd08dd4e84ead78f53f190125818b4ad5895dcd5
parent985a42fdf8ae3117442ea129b684569fa6942a71
[clang][Arm] Fix handling of -Wa,-march=

This fixes Bugzilla #48894 for Arm, where it
was reported that -Wa,-march was not being handled
by the integrated assembler.

This was previously fixed for -Wa,-mthumb by
parsing the argument in ToolChain::ComputeLLVMTriple
instead of CollectArgsForIntegratedAssembler.
It has to be done in the former because the Triple
is read only by the time we get to the latter.

Previously only mcpu would work via -Wa but only because
"-target-cpu" is it's own option to cc1, which we were
able to modify. Target architecture is part of "-target-triple".

This change applies the same workaround to -march and cleans up
handling of -Wa,-mcpu at the same time. There were some
places where we were not using the last instance of an argument.

The existing -Wa,-mthumb code was doing this correctly,
so I've just added tests to confirm that.

Now the same rules will apply to -Wa,-march/-mcpu as would
if you just passed them to the compiler:
* -Wa/-Xassembler options only apply to assembly files.
* Architecture derived from mcpu beats any march options.
* When there are multiple mcpu or multiple march, the last
  one wins.
* If there is a compiler option and an assembler option of
  the same type, we prefer the one that fits the input type.
* If there is an applicable mcpu option but it is overruled
  by an march, the cpu value is still used for the "-target-cpu"
  cc1 option.

Reviewed By: nickdesaulniers

Differential Revision: https://reviews.llvm.org/D95872
clang/lib/Driver/ToolChain.cpp
clang/lib/Driver/ToolChains/Arch/ARM.cpp
clang/test/Driver/arm-target-as-march-mcpu.s [new file with mode: 0644]
clang/test/Driver/arm-target-as-mthumb.s