mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
65b92c4f37
update.py: import fileinput import sys import re alias_match_prefix = r"(.*(?:=|:|^)\s*(?:external |)(?:(?:private|internal|linkonce|linkonce_odr|weak|weak_odr|common|appending|extern_weak|available_externally) )?(?:default |hidden |protected )?(?:dllimport |dllexport )?(?:unnamed_addr |)(?:thread_local(?:\([a-z]*\))? )?alias" plain = re.compile(alias_match_prefix + r" (.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|addrspacecast|\[\[[a-zA-Z]|\{\{).*$)") cast = re.compile(alias_match_prefix + r") ((?:bitcast|inttoptr|addrspacecast)\s*\(.* to (.*?)(| addrspace\(\d+\) *)\*\)\s*(?:;.*)?$)") gep = re.compile(alias_match_prefix + r") ((?:getelementptr)\s*(?:inbounds)?\s*\((?P<type>.*), (?P=type)(?:\s*addrspace\(\d+\)\s*)?\* .*\)\s*(?:;.*)?$)") def conv(line): m = re.match(cast, line) if m: return m.group(1) + " " + m.group(3) + ", " + m.group(2) m = re.match(gep, line) if m: return m.group(1) + " " + m.group(3) + ", " + m.group(2) m = re.match(plain, line) if m: return m.group(1) + ", " + m.group(2) + m.group(3) + "*" + m.group(4) + "\n" return line for line in sys.stdin: sys.stdout.write(conv(line)) apply.sh: for name in "$@" do python3 `dirname "$0"`/update.py < "$name" > "$name.tmp" && mv "$name.tmp" "$name" rm -f "$name.tmp" done The actual commands: From llvm/src: find test/ -name *.ll | xargs ./apply.sh From llvm/src/tools/clang: find test/ -name *.mm -o -name *.m -o -name *.cpp -o -name *.c | xargs -I '{}' ../../apply.sh "{}" From llvm/src/tools/polly: find test/ -name *.ll | xargs ./apply.sh llvm-svn: 247378 |
||
---|---|---|
.. | ||
2002-05-02-MissSecondInst.ll | ||
2002-05-20-MissedIncomingValue.ll | ||
2002-05-21-InvalidSimplify.ll | ||
2002-08-30-GetElementPtrTest.ll | ||
2003-06-24-OverdefinedPHIValue.ll | ||
2003-08-26-InvokeHandling.ll | ||
2004-11-16-DeadInvoke.ll | ||
2004-12-10-UndefBranchBug.ll | ||
2006-10-23-IPSCCP-Crash.ll | ||
2006-12-04-PackedType.ll | ||
2006-12-19-UndefBug.ll | ||
2007-05-16-InvokeCrash.ll | ||
2008-01-27-UndefCorrelate.ll | ||
2008-04-22-multiple-ret-sccp.ll | ||
2008-05-23-UndefCallFold.ll | ||
2009-01-14-IPSCCP-Invoke.ll | ||
2009-05-27-VectorOperandZero.ll | ||
apint-array.ll | ||
apint-basictest2.ll | ||
apint-basictest3.ll | ||
apint-basictest4.ll | ||
apint-basictest.ll | ||
apint-bigarray.ll | ||
apint-bigint2.ll | ||
apint-bigint.ll | ||
apint-ipsccp1.ll | ||
apint-ipsccp2.ll | ||
apint-ipsccp3.ll | ||
apint-ipsccp4.ll | ||
apint-load.ll | ||
apint-phi.ll | ||
apint-select.ll | ||
atomic-load-store.ll | ||
atomic.ll | ||
calltest.ll | ||
crash.ll | ||
global-alias-constprop.ll | ||
ipsccp-addr-taken.ll | ||
ipsccp-basic.ll | ||
loadtest.ll | ||
logical-nuke.ll | ||
retvalue-undef.ll | ||
sccptest.ll | ||
select.ll | ||
switch.ll | ||
undef-resolve.ll | ||
vector-bitcast.ll |