mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-12-19 11:23:32 +00:00
[opaque pointer type] Add textual IR support for explicit type parameter to load instruction
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
This commit is contained in:
@@ -33,11 +33,11 @@ target triple = "i386-apple-macosx10.9.0"
|
||||
|
||||
define float @foo(float* nocapture readonly %A) {
|
||||
entry:
|
||||
%0 = load float* %A, align 4
|
||||
%0 = load float, float* %A, align 4
|
||||
%arrayidx1 = getelementptr inbounds float, float* %A, i64 1
|
||||
%1 = load float* %arrayidx1, align 4
|
||||
%1 = load float, float* %arrayidx1, align 4
|
||||
%arrayidx2 = getelementptr inbounds float, float* %A, i64 2
|
||||
%2 = load float* %arrayidx2, align 4
|
||||
%2 = load float, float* %arrayidx2, align 4
|
||||
br label %for.body
|
||||
|
||||
for.body: ; preds = %for.body.for.body_crit_edge, %entry
|
||||
@@ -50,12 +50,12 @@ for.body: ; preds = %for.body.for.body_c
|
||||
%add4 = fadd float %R.030, %mul
|
||||
%4 = add nsw i64 %indvars.iv, 1
|
||||
%arrayidx7 = getelementptr inbounds float, float* %A, i64 %4
|
||||
%5 = load float* %arrayidx7, align 4
|
||||
%5 = load float, float* %arrayidx7, align 4
|
||||
%mul8 = fmul float %5, 8.000000e+00
|
||||
%add9 = fadd float %G.031, %mul8
|
||||
%6 = add nsw i64 %indvars.iv, 2
|
||||
%arrayidx12 = getelementptr inbounds float, float* %A, i64 %6
|
||||
%7 = load float* %arrayidx12, align 4
|
||||
%7 = load float, float* %arrayidx12, align 4
|
||||
%mul13 = fmul float %7, 9.000000e+00
|
||||
%add14 = fadd float %B.032, %mul13
|
||||
%indvars.iv.next = add i64 %indvars.iv, 3
|
||||
@@ -65,7 +65,7 @@ for.body: ; preds = %for.body.for.body_c
|
||||
|
||||
for.body.for.body_crit_edge: ; preds = %for.body
|
||||
%arrayidx3.phi.trans.insert = getelementptr inbounds float, float* %A, i64 %indvars.iv.next
|
||||
%.pre = load float* %arrayidx3.phi.trans.insert, align 4
|
||||
%.pre = load float, float* %arrayidx3.phi.trans.insert, align 4
|
||||
br label %for.body
|
||||
|
||||
for.end: ; preds = %for.body
|
||||
|
||||
Reference in New Issue
Block a user