mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
8b2b8a1835
This update was done with the following bash script: find test/CodeGen -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc.*debug" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_-]*\):\( *\)$FUNC: *\$/;\1\2-LABEL:\3$FUNC:/g" $TEMP done sed -i '' "s/;\(.*\)-LABEL-LABEL:/;\1-LABEL:/" $TEMP sed -i '' "s/;\(.*\)-NEXT-LABEL:/;\1-NEXT:/" $TEMP sed -i '' "s/;\(.*\)-NOT-LABEL:/;\1-NOT:/" $TEMP sed -i '' "s/;\(.*\)-DAG-LABEL:/;\1-DAG:/" $TEMP mv $TEMP $NAME fi done git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186280 91177308-0d34-0410-b5e6-96231b3b80d8
52 lines
1.1 KiB
LLVM
52 lines
1.1 KiB
LLVM
; RUN: llc < %s | FileCheck %s
|
|
target datalayout = "e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8-n8:16"
|
|
target triple = "msp430-elf"
|
|
|
|
define zeroext i8 @lshr8(i8 zeroext %a, i8 zeroext %cnt) nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: lshr8:
|
|
; CHECK: rrc.b
|
|
%shr = lshr i8 %a, %cnt
|
|
ret i8 %shr
|
|
}
|
|
|
|
define signext i8 @ashr8(i8 signext %a, i8 zeroext %cnt) nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: ashr8:
|
|
; CHECK: rra.b
|
|
%shr = ashr i8 %a, %cnt
|
|
ret i8 %shr
|
|
}
|
|
|
|
define zeroext i8 @shl8(i8 zeroext %a, i8 zeroext %cnt) nounwind readnone {
|
|
entry:
|
|
; CHECK: shl8
|
|
; CHECK: rla.b
|
|
%shl = shl i8 %a, %cnt
|
|
ret i8 %shl
|
|
}
|
|
|
|
define zeroext i16 @lshr16(i16 zeroext %a, i16 zeroext %cnt) nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: lshr16:
|
|
; CHECK: rrc.w
|
|
%shr = lshr i16 %a, %cnt
|
|
ret i16 %shr
|
|
}
|
|
|
|
define signext i16 @ashr16(i16 signext %a, i16 zeroext %cnt) nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: ashr16:
|
|
; CHECK: rra.w
|
|
%shr = ashr i16 %a, %cnt
|
|
ret i16 %shr
|
|
}
|
|
|
|
define zeroext i16 @shl16(i16 zeroext %a, i16 zeroext %cnt) nounwind readnone {
|
|
entry:
|
|
; CHECK-LABEL: shl16:
|
|
; CHECK: rla.w
|
|
%shl = shl i16 %a, %cnt
|
|
ret i16 %shl
|
|
}
|