2011-04-05 21:40:41 +00:00
|
|
|
;RUN: llc -march=sparc < %s | FileCheck %s -check-prefix=V8
|
|
|
|
;RUN: llc -march=sparc -mattr=v9 < %s | FileCheck %s -check-prefix=V9
|
|
|
|
;RUN: llc -march=sparc -regalloc=basic < %s | FileCheck %s -check-prefix=V8
|
|
|
|
;RUN: llc -march=sparc -regalloc=basic -mattr=v9 < %s | FileCheck %s -check-prefix=V9
|
2014-01-04 07:17:21 +00:00
|
|
|
;RUN: llc -march=sparcv9 < %s | FileCheck %s -check-prefix=SPARC64
|
2013-06-01 20:42:48 +00:00
|
|
|
|
2011-01-12 05:08:36 +00:00
|
|
|
|
|
|
|
define i8* @frameaddr() nounwind readnone {
|
|
|
|
entry:
|
2013-07-18 22:47:09 +00:00
|
|
|
;V8-LABEL: frameaddr:
|
2013-06-02 21:48:17 +00:00
|
|
|
;V8: save %sp, -96, %sp
|
2014-01-10 02:55:27 +00:00
|
|
|
;V8: ret
|
2013-06-02 21:48:17 +00:00
|
|
|
;V8: restore %g0, %fp, %o0
|
2011-01-21 22:00:00 +00:00
|
|
|
|
2013-07-18 22:47:09 +00:00
|
|
|
;V9-LABEL: frameaddr:
|
2013-06-02 21:48:17 +00:00
|
|
|
;V9: save %sp, -96, %sp
|
2014-01-10 02:55:27 +00:00
|
|
|
;V9: ret
|
2013-06-02 21:48:17 +00:00
|
|
|
;V9: restore %g0, %fp, %o0
|
2014-01-04 07:17:21 +00:00
|
|
|
|
|
|
|
;SPARC64-LABEL: frameaddr
|
|
|
|
;SPARC64: save %sp, -128, %sp
|
|
|
|
;SPARC64: add %fp, 2047, %i0
|
2014-01-10 02:55:27 +00:00
|
|
|
;SPARC64: ret
|
2014-01-04 07:17:21 +00:00
|
|
|
;SPARC64: restore %g0, %g0, %g0
|
|
|
|
|
2011-01-12 05:08:36 +00:00
|
|
|
%0 = tail call i8* @llvm.frameaddress(i32 0)
|
|
|
|
ret i8* %0
|
|
|
|
}
|
|
|
|
|
|
|
|
define i8* @frameaddr2() nounwind readnone {
|
|
|
|
entry:
|
2013-07-18 22:47:09 +00:00
|
|
|
;V8-LABEL: frameaddr2:
|
2011-01-21 22:00:00 +00:00
|
|
|
;V8: ta 3
|
|
|
|
;V8: ld [%fp+56], {{.+}}
|
|
|
|
;V8: ld [{{.+}}+56], {{.+}}
|
|
|
|
;V8: ld [{{.+}}+56], {{.+}}
|
|
|
|
|
2013-07-18 22:47:09 +00:00
|
|
|
;V9-LABEL: frameaddr2:
|
2011-01-21 22:00:00 +00:00
|
|
|
;V9: flushw
|
|
|
|
;V9: ld [%fp+56], {{.+}}
|
|
|
|
;V9: ld [{{.+}}+56], {{.+}}
|
|
|
|
;V9: ld [{{.+}}+56], {{.+}}
|
2014-01-04 07:17:21 +00:00
|
|
|
|
|
|
|
;SPARC64-LABEL: frameaddr2
|
|
|
|
;SPARC64: flushw
|
|
|
|
;SPARC64: ldx [%fp+2159], %[[R0:[goli][0-7]]]
|
|
|
|
;SPARC64: ldx [%[[R0]]+2159], %[[R1:[goli][0-7]]]
|
|
|
|
;SPARC64: ldx [%[[R1]]+2159], %[[R2:[goli][0-7]]]
|
|
|
|
;SPARC64: add %[[R2]], 2047, {{.+}}
|
|
|
|
|
2011-01-12 05:08:36 +00:00
|
|
|
%0 = tail call i8* @llvm.frameaddress(i32 3)
|
|
|
|
ret i8* %0
|
|
|
|
}
|
|
|
|
|
|
|
|
declare i8* @llvm.frameaddress(i32) nounwind readnone
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
define i8* @retaddr() nounwind readnone {
|
|
|
|
entry:
|
2013-07-18 22:47:09 +00:00
|
|
|
;V8-LABEL: retaddr:
|
2013-06-02 02:24:27 +00:00
|
|
|
;V8: or %g0, %o7, {{.+}}
|
2011-01-21 22:00:00 +00:00
|
|
|
|
2013-07-18 22:47:09 +00:00
|
|
|
;V9-LABEL: retaddr:
|
2013-06-02 02:24:27 +00:00
|
|
|
;V9: or %g0, %o7, {{.+}}
|
2013-06-01 20:42:48 +00:00
|
|
|
|
2014-01-04 07:17:21 +00:00
|
|
|
;SPARC64-LABEL: retaddr
|
|
|
|
;SPARC64: or %g0, %o7, {{.+}}
|
|
|
|
|
2011-01-12 05:08:36 +00:00
|
|
|
%0 = tail call i8* @llvm.returnaddress(i32 0)
|
|
|
|
ret i8* %0
|
|
|
|
}
|
|
|
|
|
|
|
|
define i8* @retaddr2() nounwind readnone {
|
|
|
|
entry:
|
2013-07-18 22:47:09 +00:00
|
|
|
;V8-LABEL: retaddr2:
|
2011-01-21 22:00:00 +00:00
|
|
|
;V8: ta 3
|
|
|
|
;V8: ld [%fp+56], {{.+}}
|
|
|
|
;V8: ld [{{.+}}+56], {{.+}}
|
|
|
|
;V8: ld [{{.+}}+60], {{.+}}
|
|
|
|
|
2013-07-18 22:47:09 +00:00
|
|
|
;V9-LABEL: retaddr2:
|
2011-01-21 22:00:00 +00:00
|
|
|
;V9: flushw
|
|
|
|
;V9: ld [%fp+56], {{.+}}
|
|
|
|
;V9: ld [{{.+}}+56], {{.+}}
|
|
|
|
;V9: ld [{{.+}}+60], {{.+}}
|
2013-06-01 20:42:48 +00:00
|
|
|
|
2014-01-04 07:17:21 +00:00
|
|
|
;SPARC64-LABEL: retaddr2
|
|
|
|
;SPARC64: flushw
|
|
|
|
;SPARC64: ldx [%fp+2159], %[[R0:[goli][0-7]]]
|
|
|
|
;SPARC64: ldx [%[[R0]]+2159], %[[R1:[goli][0-7]]]
|
|
|
|
;SPARC64: ldx [%[[R1]]+2167], {{.+}}
|
2013-06-01 20:42:48 +00:00
|
|
|
|
2011-01-12 05:08:36 +00:00
|
|
|
%0 = tail call i8* @llvm.returnaddress(i32 3)
|
|
|
|
ret i8* %0
|
|
|
|
}
|
|
|
|
|
|
|
|
declare i8* @llvm.returnaddress(i32) nounwind readnone
|