mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
a9a94ce839
TableGen has a fairly dubious heuristic to decide whether an alias should be printed: does the alias have lest operands than the real instruction. This is bad enough (particularly with no way to override it), but it should at least be calculated consistently for both strings. This patch implements that logic: first get the *correct* string for the variant, in the same way as the Matcher, without guessing; then count the number of whitespace chars. There are basically 4 changes this brings about after the previous commits; all of these appear to be good, so I have changed the tests: + ARM64: we print "neg X, Y" instead of "sub X, xzr, Y". + ARM64: we skip implicit "uxtx" and "uxtw" modifiers. + Sparc: we print "mov A, B" instead of "or %g0, A, B". + Sparc: we print "fcmpX A, B" instead of "fcmpX %fcc0, A, B" git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208969 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
317 B
LLVM
15 lines
317 B
LLVM
; RUN: llc < %s -march=sparcv9 | FileCheck %s
|
|
|
|
; CHECK-LABEL: test
|
|
; CHECK: srl %i1, 0, %o2
|
|
; CHECK-NEXT: mov %i2, %o0
|
|
; CHECK-NEXT: call __ashlti3
|
|
; CHECK-NEXT: mov %i3, %o1
|
|
; CHECK-NEXT: mov %o0, %i0
|
|
|
|
define i128 @test(i128 %a, i128 %b) {
|
|
entry:
|
|
%tmp = shl i128 %b, %a
|
|
ret i128 %tmp
|
|
}
|