2015-01-06 07:17:43 +08:00
|
|
|
; RUN: llc -mcpu=g5 < %s | FileCheck %s
|
|
|
|
target datalayout = "E-m:e-i64:64-n32:64"
|
|
|
|
target triple = "powerpc64-unknown-linux-gnu"
|
2007-03-25 12:43:51 +08:00
|
|
|
|
2010-11-15 06:22:14 +08:00
|
|
|
define i32 @_ZNK4llvm5APInt17countLeadingZerosEv(i64 *%t) nounwind {
|
2015-02-28 05:17:42 +08:00
|
|
|
%tmp19 = load i64, i64* %t
|
2011-12-12 19:59:10 +08:00
|
|
|
%tmp22 = tail call i64 @llvm.ctlz.i64( i64 %tmp19, i1 true ) ; <i64> [#uses=1]
|
2007-08-04 09:51:18 +08:00
|
|
|
%tmp23 = trunc i64 %tmp22 to i32
|
2007-04-01 15:36:28 +08:00
|
|
|
%tmp89 = add i32 %tmp23, -64 ; <i32> [#uses=1]
|
|
|
|
%tmp90 = add i32 %tmp89, 0 ; <i32> [#uses=1]
|
2007-03-25 12:43:51 +08:00
|
|
|
ret i32 %tmp90
|
2015-01-06 05:53:52 +08:00
|
|
|
|
|
|
|
; CHECK-LABEL: @_ZNK4llvm5APInt17countLeadingZerosEv
|
|
|
|
; CHECK: ld [[REG1:[0-9]+]], 0(3)
|
|
|
|
; CHECK-NEXT: cntlzd [[REG2:[0-9]+]], [[REG1]]
|
|
|
|
; CHECK-NEXT: addi 3, [[REG2]], -64
|
|
|
|
; CHECK-NEXT: blr
|
2007-03-25 12:43:51 +08:00
|
|
|
}
|
|
|
|
|
2011-12-12 19:59:10 +08:00
|
|
|
declare i64 @llvm.ctlz.i64(i64, i1)
|