mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
4e2def1840
TableGen had been nicely generating code to print a number of instructions using shorter aliases (and PowerPC has plenty of short mnemonics), but we were not calling it. For some of the aliases we support in the parser, TableGen can't infer the "inverse" alias relationship, so there is still more to do. Thus, after some hours of updating test cases... llvm-svn: 235616
21 lines
432 B
LLVM
21 lines
432 B
LLVM
target datalayout = "E-m:e-p:32:32-i64:64-n32"
|
|
target triple = "powerpc"
|
|
; RUN: llc -mcpu=ppc < %s | FileCheck %s
|
|
; RUN: llc -mcpu=pwr7 < %s | FileCheck %s
|
|
|
|
define i64 @test1() nounwind {
|
|
entry:
|
|
%r = call i64 @llvm.readcyclecounter()
|
|
ret i64 %r
|
|
}
|
|
|
|
; CHECK: @test1
|
|
; CHECK: mfspr 3, 269
|
|
; CHECK: mfspr 4, 268
|
|
; CHECK: mfspr [[REG:[0-9]+]], 269
|
|
; CHECK: cmpw 3, [[REG]]
|
|
; CHECK: bne 0, .LBB
|
|
|
|
declare i64 @llvm.readcyclecounter()
|
|
|