mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
7c9c6ed761
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
62 lines
2.5 KiB
LLVM
62 lines
2.5 KiB
LLVM
; RUN: opt < %s -basicaa -slp-vectorizer -dce -S -mtriple=x86_64-apple-macosx10.8.0 -mcpu=corei7-avx | FileCheck %s
|
|
|
|
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.8.0"
|
|
|
|
;CHECK-LABEL: test1
|
|
;CHECK: load <2 x double>{{.*}}!tbaa ![[TBAA:[0-9]+]]
|
|
;CHECK: load <2 x double>{{.*}}!tbaa ![[TBAA]]
|
|
;CHECK: fmul <2 x double>{{.*}}!fpmath ![[FP1:[0-9]+]]
|
|
;CHECK: store <2 x double>{{.*}}!tbaa ![[TBAA]]
|
|
;CHECK: ret void
|
|
|
|
define void @test1(double* %a, double* %b, double* %c) {
|
|
entry:
|
|
%i0 = load double, double* %a, align 8, !tbaa !4
|
|
%i1 = load double, double* %b, align 8, !tbaa !4
|
|
%mul = fmul double %i0, %i1, !fpmath !0
|
|
%arrayidx3 = getelementptr inbounds double, double* %a, i64 1
|
|
%i3 = load double, double* %arrayidx3, align 8, !tbaa !4
|
|
%arrayidx4 = getelementptr inbounds double, double* %b, i64 1
|
|
%i4 = load double, double* %arrayidx4, align 8, !tbaa !4
|
|
%mul5 = fmul double %i3, %i4, !fpmath !0
|
|
store double %mul, double* %c, align 8, !tbaa !4
|
|
%arrayidx5 = getelementptr inbounds double, double* %c, i64 1
|
|
store double %mul5, double* %arrayidx5, align 8, !tbaa !4
|
|
ret void
|
|
}
|
|
|
|
;CHECK-LABEL: test2
|
|
;CHECK: load <2 x double>{{.*}}!tbaa ![[TBAA]]
|
|
;CHECK: load <2 x double>{{.*}}!tbaa ![[TBAA]]
|
|
;CHECK: fmul <2 x double>{{.*}}!fpmath ![[FP2:[0-9]+]]
|
|
;CHECK: store <2 x double>{{.*}}!tbaa ![[TBAA]]
|
|
;CHECK: ret void
|
|
|
|
define void @test2(double* %a, double* %b, i8* %e) {
|
|
entry:
|
|
%i0 = load double, double* %a, align 8, !tbaa !4
|
|
%i1 = load double, double* %b, align 8, !tbaa !4
|
|
%mul = fmul double %i0, %i1, !fpmath !1
|
|
%arrayidx3 = getelementptr inbounds double, double* %a, i64 1
|
|
%i3 = load double, double* %arrayidx3, align 8, !tbaa !4
|
|
%arrayidx4 = getelementptr inbounds double, double* %b, i64 1
|
|
%i4 = load double, double* %arrayidx4, align 8, !tbaa !4
|
|
%mul5 = fmul double %i3, %i4, !fpmath !1
|
|
%c = bitcast i8* %e to double*
|
|
store double %mul, double* %c, align 8, !tbaa !4
|
|
%carrayidx5 = getelementptr inbounds i8, i8* %e, i64 8
|
|
%arrayidx5 = bitcast i8* %carrayidx5 to double*
|
|
store double %mul5, double* %arrayidx5, align 8, !tbaa !4
|
|
ret void
|
|
}
|
|
|
|
;CHECK-DAG: ![[TBAA]] = !{[[TYPEC:!.*]], [[TYPEC]], i64 0}
|
|
;CHECK-DAG: ![[FP1]] = !{float 5.000000e+00}
|
|
;CHECK-DAG: ![[FP2]] = !{float 2.500000e+00}
|
|
!0 = !{ float 5.0 }
|
|
!1 = !{ float 2.5 }
|
|
!2 = !{!"Simple C/C++ TBAA"}
|
|
!3 = !{!"omnipotent char", !2}
|
|
!4 = !{!"double", !3}
|