2015-01-05 23:17:43 +00: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 04:43:51 +00:00
|
|
|
|
2010-11-14 22:22:14 +00:00
|
|
|
define i32 @_ZNK4llvm5APInt17countLeadingZerosEv(i64 *%t) nounwind {
|
2007-03-25 04:43:51 +00:00
|
|
|
%tmp19 = load i64* %t
|
2011-12-12 11:59:10 +00:00
|
|
|
%tmp22 = tail call i64 @llvm.ctlz.i64( i64 %tmp19, i1 true ) ; <i64> [#uses=1]
|
2007-08-04 01:51:18 +00:00
|
|
|
%tmp23 = trunc i64 %tmp22 to i32
|
2007-04-01 07:36:28 +00:00
|
|
|
%tmp89 = add i32 %tmp23, -64 ; <i32> [#uses=1]
|
|
|
|
%tmp90 = add i32 %tmp89, 0 ; <i32> [#uses=1]
|
2007-03-25 04:43:51 +00:00
|
|
|
ret i32 %tmp90
|
2015-01-05 21:53:52 +00: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 04:43:51 +00:00
|
|
|
}
|
|
|
|
|
2011-12-12 11:59:10 +00:00
|
|
|
declare i64 @llvm.ctlz.i64(i64, i1)
|