mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +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
51 lines
1.9 KiB
LLVM
51 lines
1.9 KiB
LLVM
; RUN: llc -mcpu=pwr7 < %s | FileCheck %s
|
|
target datalayout = "E-m:e-i64:64-n32:64"
|
|
target triple = "powerpc64-unknown-linux-gnu"
|
|
|
|
@.str1 = external unnamed_addr constant [1 x i8], align 1
|
|
@.str2 = external unnamed_addr constant [39 x i8], align 1
|
|
|
|
declare void @_ZN13CStdOutStreamlsEPKc()
|
|
|
|
declare void @_ZN13CStdOutStream5FlushEv()
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|
|
|
|
define void @_Z11GetPasswordP13CStdOutStreamb() {
|
|
entry:
|
|
br label %for.cond.i.i
|
|
|
|
for.cond.i.i: ; preds = %for.cond.i.i, %entry
|
|
br i1 undef, label %_ZN11CStringBaseIcEC2EPKc.exit.critedge, label %for.cond.i.i
|
|
|
|
_ZN11CStringBaseIcEC2EPKc.exit.critedge: ; preds = %for.cond.i.i
|
|
invoke void @_ZN13CStdOutStreamlsEPKc()
|
|
to label %invoke.cont unwind label %lpad
|
|
|
|
invoke.cont: ; preds = %_ZN11CStringBaseIcEC2EPKc.exit.critedge
|
|
invoke void @_ZN13CStdOutStream5FlushEv()
|
|
to label %invoke.cont4 unwind label %lpad
|
|
|
|
invoke.cont4: ; preds = %invoke.cont
|
|
%call7 = invoke i8* @getpass()
|
|
to label %for.cond.i.i30 unwind label %lpad
|
|
|
|
; CHECK-LABEL: @_Z11GetPasswordP13CStdOutStreamb
|
|
; CHECK: addi {{[0-9]+}}, 3, -1
|
|
|
|
for.cond.i.i30: ; preds = %for.cond.i.i30, %invoke.cont4
|
|
%indvars.iv.i.i26 = phi i64 [ %indvars.iv.next.i.i29, %for.cond.i.i30 ], [ 0, %invoke.cont4 ]
|
|
%arrayidx.i.i27 = getelementptr inbounds i8, i8* %call7, i64 %indvars.iv.i.i26
|
|
%0 = load i8, i8* %arrayidx.i.i27, align 1
|
|
%indvars.iv.next.i.i29 = add nuw nsw i64 %indvars.iv.i.i26, 1
|
|
br label %for.cond.i.i30
|
|
|
|
lpad: ; preds = %invoke.cont4, %invoke.cont, %_ZN11CStringBaseIcEC2EPKc.exit.critedge
|
|
%1 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)
|
|
cleanup
|
|
resume { i8*, i32 } undef
|
|
}
|
|
|
|
declare i8* @getpass()
|
|
|