mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
3af5418aa4
Summary: This is a first step toward getting proper support for aggregate loads and stores. Test Plan: Added unittests Reviewers: reames, chandlerc Reviewed By: chandlerc Subscribers: majnemer, joker.eph, chandlerc, llvm-commits Differential Revision: http://reviews.llvm.org/D7780 Patch by Amaury Sechet From: Mehdi Amini <mehdi.amini@apple.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232284 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
765 B
LLVM
32 lines
765 B
LLVM
; RUN: opt -instcombine -S < %s | FileCheck %s
|
|
|
|
target datalayout = "e-i64:64-f80:128-n8:16:32:64"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
%A__vtbl = type { i8*, i32 (%A*)* }
|
|
%A = type { %A__vtbl* }
|
|
|
|
@A__vtblZ = constant %A__vtbl { i8* null, i32 (%A*)* @A.foo }
|
|
|
|
declare i32 @A.foo(%A* nocapture %this)
|
|
|
|
declare i8* @allocmemory(i64)
|
|
|
|
define void @structA() {
|
|
body:
|
|
%0 = tail call i8* @allocmemory(i64 32)
|
|
%1 = bitcast i8* %0 to %A*
|
|
; CHECK: store %A__vtbl* @A__vtblZ
|
|
store %A { %A__vtbl* @A__vtblZ }, %A* %1, align 8
|
|
ret void
|
|
}
|
|
|
|
define void @structOfA() {
|
|
body:
|
|
%0 = tail call i8* @allocmemory(i64 32)
|
|
%1 = bitcast i8* %0 to { %A }*
|
|
; CHECK: store %A__vtbl* @A__vtblZ
|
|
store { %A } { %A { %A__vtbl* @A__vtblZ } }, { %A }* %1, align 8
|
|
ret void
|
|
}
|