mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
5a70dd1d82
Similar to gep (r230786) and load (r230794) changes. Similar migration script can be used to update test cases, which successfully migrated all of LLVM and Polly, but about 4 test cases needed manually changes in Clang. (this script will read the contents of stdin and massage it into stdout - wrap it in the 'apply.sh' script shown in previous commits + xargs to apply it over a large set of test cases) import fileinput import sys import re rep = re.compile(r"(getelementptr(?:\s+inbounds)?\s*\()((<\d*\s+x\s+)?([^@]*?)(|\s*addrspace\(\d+\))\s*\*(?(3)>)\s*)(?=$|%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|zeroinitializer|<|\[\[[a-zA-Z]|\{\{)", re.MULTILINE | re.DOTALL) def conv(match): line = match.group(1) line += match.group(4) line += ", " line += match.group(2) return line line = sys.stdin.read() off = 0 for match in re.finditer(rep, line): sys.stdout.write(line[off:match.start()]) sys.stdout.write(conv(match)) off = match.end() sys.stdout.write(line[off:]) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232184 91177308-0d34-0410-b5e6-96231b3b80d8
37 lines
1.5 KiB
LLVM
37 lines
1.5 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
|
|
; <rdar://problem/10564621>
|
|
|
|
%0 = type opaque
|
|
%struct.NSConstantString = type { i32*, i32, i8*, i32 }
|
|
|
|
; Make sure that the string ends up the correct section.
|
|
|
|
; CHECK: .section __TEXT,__cstring
|
|
; CHECK-NEXT: L_.str3:
|
|
|
|
; CHECK: .section __DATA,__cfstring
|
|
; CHECK-NEXT: .align 4
|
|
; CHECK-NEXT: L__unnamed_cfstring_4:
|
|
; CHECK-NEXT: .quad ___CFConstantStringClassReference
|
|
; CHECK-NEXT: .long 1992
|
|
; CHECK-NEXT: .space 4
|
|
; CHECK-NEXT: .quad L_.str3
|
|
; CHECK-NEXT: .long 0
|
|
; CHECK-NEXT: .space 4
|
|
|
|
@isLogVisible = global i8 0, align 1
|
|
@__CFConstantStringClassReference = external global [0 x i32]
|
|
@.str3 = private unnamed_addr constant [1 x i8] zeroinitializer, align 1
|
|
@_unnamed_cfstring_4 = private constant %struct.NSConstantString { i32* getelementptr inbounds ([0 x i32], [0 x i32]* @__CFConstantStringClassReference, i32 0, i32 0), i32 1992, i8* getelementptr inbounds ([1 x i8], [1 x i8]* @.str3, i32 0, i32 0), i32 0 }, section "__DATA,__cfstring"
|
|
@null.array = weak_odr constant [1 x i8] zeroinitializer, align 1
|
|
|
|
define linkonce_odr void @bar() nounwind ssp align 2 {
|
|
entry:
|
|
%stack = alloca i8*, align 4
|
|
%call = call %0* bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to %0* (i8*, i8*, %0*)*)(i8* null, i8* null, %0* bitcast (%struct.NSConstantString* @_unnamed_cfstring_4 to %0*))
|
|
store i8* getelementptr inbounds ([1 x i8], [1 x i8]* @null.array, i32 0, i32 0), i8** %stack, align 4
|
|
ret void
|
|
}
|
|
|
|
declare i8* @objc_msgSend(i8*, i8*, ...) nonlazybind
|