brintos

brintos / llvm-project-archived public Read only

0
0
Text · 836 B · 2d5a324 Raw
24 lines · plain
1; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s2; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu | FileCheck %s3; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64le-unknown-linux-gnu | FileCheck %s4 5; Test case for PPCTargetLowering::extendSubTreeForBitPermutation.6; We expect mask and rotate are folded into a rlwinm instruction.7 8define zeroext i32 @func(ptr %p, i32 zeroext %i) {9; CHECK-LABEL: @func10; CHECK: addi [[REG1:[0-9]+]], 4, 111; CHECK: rlwinm [[REG2:[0-9]+]], [[REG1]], 2, 22, 2912; CHECK-NOT: sldi13; CHECK: lwzx 3, 3, [[REG2]]14; CHECK: blr15entry:16  %add = add i32 %i, 117  %and = and i32 %add, 25518  %idxprom = zext i32 %and to i6419  %arrayidx = getelementptr inbounds i32, ptr %p, i64 %idxprom20  %0 = load i32, ptr %arrayidx, align 421  ret i32 %022}23 24