-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #524 from visualfc/sizes
build: fix unsafe.Sizeof for llgo:type C
- Loading branch information
Showing
11 changed files
with
283 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package main | ||
|
||
import ( | ||
"unsafe" | ||
) | ||
|
||
//llgo:type C | ||
type T func() | ||
|
||
type M struct { | ||
v int | ||
fn T | ||
} | ||
|
||
type N struct { | ||
v int | ||
fn func() | ||
} | ||
|
||
func main() { | ||
if unsafe.Sizeof(*(*T)(nil)) != unsafe.Sizeof(0) { | ||
panic("error") | ||
} | ||
if unsafe.Sizeof(*(*M)(nil)) != unsafe.Sizeof([2]int{}) { | ||
panic("error") | ||
} | ||
if unsafe.Sizeof(*(*N)(nil)) != unsafe.Sizeof([3]int{}) { | ||
panic("error") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
; ModuleID = 'main' | ||
source_filename = "main" | ||
|
||
%"github.com/goplus/llgo/internal/runtime.String" = type { ptr, i64 } | ||
%"github.com/goplus/llgo/internal/runtime.eface" = type { ptr, ptr } | ||
|
||
@"main.init$guard" = global i1 false, align 1 | ||
@__llgo_argc = global i32 0, align 4 | ||
@__llgo_argv = global ptr null, align 8 | ||
@0 = private unnamed_addr constant [5 x i8] c"error", align 1 | ||
@_llgo_string = linkonce global ptr null, align 8 | ||
|
||
define void @main.init() { | ||
_llgo_0: | ||
%0 = load i1, ptr @"main.init$guard", align 1 | ||
br i1 %0, label %_llgo_2, label %_llgo_1 | ||
|
||
_llgo_1: ; preds = %_llgo_0 | ||
store i1 true, ptr @"main.init$guard", align 1 | ||
call void @"main.init$after"() | ||
br label %_llgo_2 | ||
|
||
_llgo_2: ; preds = %_llgo_1, %_llgo_0 | ||
ret void | ||
} | ||
|
||
define i32 @main(i32 %0, ptr %1) { | ||
_llgo_0: | ||
store i32 %0, ptr @__llgo_argc, align 4 | ||
store ptr %1, ptr @__llgo_argv, align 8 | ||
call void @"github.com/goplus/llgo/internal/runtime.init"() | ||
call void @main.init() | ||
br i1 false, label %_llgo_1, label %_llgo_2 | ||
|
||
_llgo_1: ; preds = %_llgo_0 | ||
%2 = alloca %"github.com/goplus/llgo/internal/runtime.String", align 8 | ||
%3 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %2, i32 0, i32 0 | ||
store ptr @0, ptr %3, align 8 | ||
%4 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %2, i32 0, i32 1 | ||
store i64 5, ptr %4, align 4 | ||
%5 = load %"github.com/goplus/llgo/internal/runtime.String", ptr %2, align 8 | ||
%6 = load ptr, ptr @_llgo_string, align 8 | ||
%7 = call ptr @"github.com/goplus/llgo/internal/runtime.AllocU"(i64 16) | ||
store %"github.com/goplus/llgo/internal/runtime.String" %5, ptr %7, align 8 | ||
%8 = alloca %"github.com/goplus/llgo/internal/runtime.eface", align 8 | ||
%9 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.eface", ptr %8, i32 0, i32 0 | ||
store ptr %6, ptr %9, align 8 | ||
%10 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.eface", ptr %8, i32 0, i32 1 | ||
store ptr %7, ptr %10, align 8 | ||
%11 = load %"github.com/goplus/llgo/internal/runtime.eface", ptr %8, align 8 | ||
call void @"github.com/goplus/llgo/internal/runtime.Panic"(%"github.com/goplus/llgo/internal/runtime.eface" %11) | ||
unreachable | ||
|
||
_llgo_2: ; preds = %_llgo_0 | ||
br i1 false, label %_llgo_3, label %_llgo_4 | ||
|
||
_llgo_3: ; preds = %_llgo_2 | ||
%12 = alloca %"github.com/goplus/llgo/internal/runtime.String", align 8 | ||
%13 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %12, i32 0, i32 0 | ||
store ptr @0, ptr %13, align 8 | ||
%14 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %12, i32 0, i32 1 | ||
store i64 5, ptr %14, align 4 | ||
%15 = load %"github.com/goplus/llgo/internal/runtime.String", ptr %12, align 8 | ||
%16 = load ptr, ptr @_llgo_string, align 8 | ||
%17 = call ptr @"github.com/goplus/llgo/internal/runtime.AllocU"(i64 16) | ||
store %"github.com/goplus/llgo/internal/runtime.String" %15, ptr %17, align 8 | ||
%18 = alloca %"github.com/goplus/llgo/internal/runtime.eface", align 8 | ||
%19 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.eface", ptr %18, i32 0, i32 0 | ||
store ptr %16, ptr %19, align 8 | ||
%20 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.eface", ptr %18, i32 0, i32 1 | ||
store ptr %17, ptr %20, align 8 | ||
%21 = load %"github.com/goplus/llgo/internal/runtime.eface", ptr %18, align 8 | ||
call void @"github.com/goplus/llgo/internal/runtime.Panic"(%"github.com/goplus/llgo/internal/runtime.eface" %21) | ||
unreachable | ||
|
||
_llgo_4: ; preds = %_llgo_2 | ||
br i1 false, label %_llgo_5, label %_llgo_6 | ||
|
||
_llgo_5: ; preds = %_llgo_4 | ||
%22 = alloca %"github.com/goplus/llgo/internal/runtime.String", align 8 | ||
%23 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %22, i32 0, i32 0 | ||
store ptr @0, ptr %23, align 8 | ||
%24 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.String", ptr %22, i32 0, i32 1 | ||
store i64 5, ptr %24, align 4 | ||
%25 = load %"github.com/goplus/llgo/internal/runtime.String", ptr %22, align 8 | ||
%26 = load ptr, ptr @_llgo_string, align 8 | ||
%27 = call ptr @"github.com/goplus/llgo/internal/runtime.AllocU"(i64 16) | ||
store %"github.com/goplus/llgo/internal/runtime.String" %25, ptr %27, align 8 | ||
%28 = alloca %"github.com/goplus/llgo/internal/runtime.eface", align 8 | ||
%29 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.eface", ptr %28, i32 0, i32 0 | ||
store ptr %26, ptr %29, align 8 | ||
%30 = getelementptr inbounds %"github.com/goplus/llgo/internal/runtime.eface", ptr %28, i32 0, i32 1 | ||
store ptr %27, ptr %30, align 8 | ||
%31 = load %"github.com/goplus/llgo/internal/runtime.eface", ptr %28, align 8 | ||
call void @"github.com/goplus/llgo/internal/runtime.Panic"(%"github.com/goplus/llgo/internal/runtime.eface" %31) | ||
unreachable | ||
|
||
_llgo_6: ; preds = %_llgo_4 | ||
ret i32 0 | ||
} | ||
|
||
declare void @"github.com/goplus/llgo/internal/runtime.init"() | ||
|
||
define void @"main.init$after"() { | ||
_llgo_0: | ||
%0 = load ptr, ptr @_llgo_string, align 8 | ||
%1 = icmp eq ptr %0, null | ||
br i1 %1, label %_llgo_1, label %_llgo_2 | ||
|
||
_llgo_1: ; preds = %_llgo_0 | ||
%2 = call ptr @"github.com/goplus/llgo/internal/runtime.Basic"(i64 24) | ||
store ptr %2, ptr @_llgo_string, align 8 | ||
br label %_llgo_2 | ||
|
||
_llgo_2: ; preds = %_llgo_1, %_llgo_0 | ||
ret void | ||
} | ||
|
||
declare ptr @"github.com/goplus/llgo/internal/runtime.Basic"(i64) | ||
|
||
declare ptr @"github.com/goplus/llgo/internal/runtime.AllocU"(i64) | ||
|
||
declare void @"github.com/goplus/llgo/internal/runtime.Panic"(%"github.com/goplus/llgo/internal/runtime.eface") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.