2012-12-30 02:33:22 +00:00
|
|
|
; RUN: opt -globalopt -disable-output < %s
|
2010-01-07 01:16:21 +00:00
|
|
|
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32"
|
|
|
|
target triple = "i386-apple-darwin9.8"
|
|
|
|
|
|
|
|
%0 = type { i32, void ()* }
|
|
|
|
%struct.btSimdScalar = type { %"union.btSimdScalar::$_14" }
|
|
|
|
%"union.btSimdScalar::$_14" = type { <4 x float> }
|
|
|
|
|
|
|
|
@_ZL6vTwist = global %struct.btSimdScalar zeroinitializer ; <%struct.btSimdScalar*> [#uses=1]
|
|
|
|
@llvm.global_ctors = appending global [1 x %0] [%0 { i32 65535, void ()* @_GLOBAL__I__ZN21btConeTwistConstraintC2Ev }] ; <[12 x %0]*> [#uses=0]
|
|
|
|
|
2010-04-10 18:19:22 +00:00
|
|
|
define internal void @_GLOBAL__I__ZN21btConeTwistConstraintC2Ev() nounwind section "__TEXT,__StaticInit,regular,pure_instructions" {
|
2010-01-07 01:16:21 +00:00
|
|
|
entry:
|
2015-03-13 18:20:45 +00:00
|
|
|
store float 1.0, float* getelementptr inbounds (%struct.btSimdScalar, %struct.btSimdScalar* @_ZL6vTwist, i32 0, i32 0, i32 0, i32 3), align 4
|
2010-01-07 01:16:21 +00:00
|
|
|
ret void
|
|
|
|
}
|
2010-04-10 18:19:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
; PR6760
|
|
|
|
%T = type { [5 x i32] }
|
|
|
|
|
|
|
|
@switch_inf = internal global %T* null
|
|
|
|
|
|
|
|
define void @test(i8* %arch_file, i32 %route_type) {
|
|
|
|
entry:
|
|
|
|
%A = sext i32 1 to i64
|
|
|
|
%B = mul i64 %A, 20
|
|
|
|
%C = call noalias i8* @malloc(i64 %B) nounwind
|
|
|
|
%D = bitcast i8* %C to %T*
|
|
|
|
store %T* %D, %T** @switch_inf, align 8
|
|
|
|
unreachable
|
|
|
|
|
|
|
|
bb.nph.i:
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(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
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230786 91177308-0d34-0410-b5e6-96231b3b80d8
2015-02-27 19:29:02 +00:00
|
|
|
%scevgep.i539 = getelementptr i8, i8* %C, i64 4
|
2010-04-10 18:19:22 +00:00
|
|
|
unreachable
|
|
|
|
|
|
|
|
xx:
|
2015-02-27 21:17:42 +00:00
|
|
|
%E = load %T*, %T** @switch_inf, align 8
|
2010-04-10 18:19:22 +00:00
|
|
|
unreachable
|
|
|
|
}
|
|
|
|
|
|
|
|
declare noalias i8* @malloc(i64) nounwind
|
2010-09-05 17:20:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
; PR8063
|
|
|
|
@permute_bitrev.bitrev = internal global i32* null, align 8
|
|
|
|
define void @permute_bitrev() nounwind {
|
|
|
|
entry:
|
2015-02-27 21:17:42 +00:00
|
|
|
%tmp = load i32*, i32** @permute_bitrev.bitrev, align 8
|
2010-09-05 17:20:46 +00:00
|
|
|
%conv = sext i32 0 to i64
|
|
|
|
%mul = mul i64 %conv, 4
|
|
|
|
%call = call i8* @malloc(i64 %mul)
|
|
|
|
%0 = bitcast i8* %call to i32*
|
|
|
|
store i32* %0, i32** @permute_bitrev.bitrev, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2011-01-01 22:31:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@data8 = internal global [8000 x i8] zeroinitializer, align 16
|
|
|
|
define void @memset_with_strange_user() ssp {
|
2015-11-19 05:56:52 +00:00
|
|
|
call void @llvm.memset.p0i8.i64(i8* getelementptr inbounds ([8000 x i8], [8000 x i8]* @data8, i64 0, i64 0), i8 undef, i64 ptrtoint (i8* getelementptr ([8000 x i8], [8000 x i8]* @data8, i64 1, i64 sub (i64 0, i64 ptrtoint ([8000 x i8]* @data8 to i64))) to i64), i32 16, i1 false)
|
2011-01-01 22:31:46 +00:00
|
|
|
ret void
|
|
|
|
}
|
2015-11-19 05:56:52 +00:00
|
|
|
declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) nounwind
|
2011-05-22 07:15:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
; PR9856
|
|
|
|
@g_52 = internal global i32** null, align 8
|
|
|
|
@g_90 = external global i32*, align 8
|
|
|
|
|
|
|
|
define void @icmp_user_of_stored_once() nounwind ssp {
|
|
|
|
entry:
|
2015-02-27 21:17:42 +00:00
|
|
|
%tmp4 = load i32**, i32*** @g_52, align 8
|
2011-05-22 07:15:13 +00:00
|
|
|
store i32** @g_90, i32*** @g_52
|
|
|
|
%cmp17 = icmp ne i32*** undef, @g_52
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|