mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
bbf5be9d55
This adds infrastructure to print and parse MIR MachineOperand comments. The motivation for the ARM backend is to print condition code names instead of magic constants that are difficult to read (for human beings). For example, instead of this: dead renamable $r2, $cpsr = tEOR killed renamable $r2, renamable $r1, 14, $noreg t2Bcc %bb.4, 0, killed $cpsr we now print this: dead renamable $r2, $cpsr = tEOR killed renamable $r2, renamable $r1, 14 /* CC::always */, $noreg t2Bcc %bb.4, 0 /* CC:eq */, killed $cpsr This shows that MachineOperand comments are enclosed between /* and */. In this example, the EOR instruction is not conditionally executed (i.e. it is "always executed"), which is encoded by the 14 immediate machine operand. Thus, now this machine operand has /* CC::always */ as a comment. The 0 on the next conditional branch instruction represents the equal condition code, thus now this operand has /* CC:eq */ as a comment. As it is a comment, the MI lexer/parser completely ignores it. The benefit is that this keeps the change in the lexer extremely minimal and no target specific parsing needs to be done. The changes on the MIPrinter side are also minimal, as there is only one target hooks that is used to create the machine operand comments. Differential Revision: https://reviews.llvm.org/D74306
57 lines
1.8 KiB
YAML
57 lines
1.8 KiB
YAML
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
|
|
# RUN: llc -run-pass=peephole-opt %s -o - -verify-machineinstrs | FileCheck %s
|
|
|
|
# The and -> ands transform is sensitive to scheduling; make sure we don't
|
|
# transform cases which aren't legal.
|
|
|
|
--- |
|
|
target triple = "armv7-unknown-unknown"
|
|
define i32 @foo_transform(i32 %in) {
|
|
ret i32 undef
|
|
}
|
|
define i32 @foo_notransform(i32 %in) {
|
|
ret i32 undef
|
|
}
|
|
|
|
...
|
|
---
|
|
name: foo_transform
|
|
tracksRegLiveness: true
|
|
body: |
|
|
bb.0 (%ir-block.0):
|
|
liveins: $r0
|
|
|
|
; CHECK-LABEL: name: foo_transform
|
|
; CHECK: liveins: $r0
|
|
; CHECK: [[COPY:%[0-9]+]]:gpr = COPY $r0
|
|
; CHECK: [[MOVi:%[0-9]+]]:gpr = MOVi 4, 14 /* CC::al */, $noreg, $noreg
|
|
; CHECK: [[ANDri:%[0-9]+]]:gpr = ANDri [[COPY]], 1, 14 /* CC::al */, $noreg, def $cpsr
|
|
; CHECK: [[MOVCCi16_:%[0-9]+]]:gpr = MOVCCi16 [[MOVi]], 5, 0 /* CC::eq */, $cpsr
|
|
; CHECK: $r0 = COPY killed [[MOVCCi16_]]
|
|
; CHECK: $r1 = COPY killed [[ANDri]]
|
|
; CHECK: BX_RET 14 /* CC::al */, $noreg, implicit $r0, implicit $r1
|
|
%1:gpr = COPY $r0
|
|
%2:gpr = MOVi 4, 14, $noreg, $noreg
|
|
%4:gpr = ANDri %1:gpr, 1, 14, $noreg, $noreg
|
|
TSTri %1:gpr, 1, 14, $noreg, implicit-def $cpsr
|
|
%3:gpr = MOVCCi16 %2, 5, 0, $cpsr
|
|
$r0 = COPY killed %3
|
|
$r1 = COPY killed %4
|
|
BX_RET 14, $noreg, implicit $r0, implicit $r1
|
|
...
|
|
name: foo_notransform
|
|
tracksRegLiveness: true
|
|
body: |
|
|
bb.0 (%ir-block.0):
|
|
liveins: $r0
|
|
|
|
%1:gpr = COPY $r0
|
|
%2:gpr = MOVi 4, 14, $noreg, $noreg
|
|
TSTri %1:gpr, 1, 14, $noreg, implicit-def $cpsr
|
|
%3:gpr = MOVCCi16 %2, 5, 0, $cpsr
|
|
%4:gpr = ANDri %1:gpr, 1, 14, $noreg, $noreg
|
|
$r0 = COPY killed %3
|
|
$r1 = COPY killed %4
|
|
BX_RET 14, $noreg, implicit $r0, implicit $r1
|
|
|