move out c/cpp/py
This commit is contained in:
12
cl/_testpy/gcd/in.go
Normal file
12
cl/_testpy/gcd/in.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/goplus/lib/c"
|
||||
"github.com/goplus/lib/py"
|
||||
"github.com/goplus/lib/py/math"
|
||||
)
|
||||
|
||||
func main() {
|
||||
x := math.Gcd(py.Long(60), py.Long(20), py.Long(25))
|
||||
c.Printf(c.Str("gcd(60, 20, 25) = %d\n"), x.Long())
|
||||
}
|
||||
48
cl/_testpy/gcd/out.ll
Normal file
48
cl/_testpy/gcd/out.ll
Normal file
@@ -0,0 +1,48 @@
|
||||
; ModuleID = 'github.com/goplus/llgo/cl/_testpy/gcd'
|
||||
source_filename = "github.com/goplus/llgo/cl/_testpy/gcd"
|
||||
|
||||
@"github.com/goplus/llgo/cl/_testpy/gcd.init$guard" = global i1 false, align 1
|
||||
@__llgo_py.math.gcd = linkonce global ptr null, align 8
|
||||
@0 = private unnamed_addr constant [22 x i8] c"gcd(60, 20, 25) = %d\0A\00", align 1
|
||||
@__llgo_py.math = external global ptr, align 8
|
||||
@1 = private unnamed_addr constant [4 x i8] c"gcd\00", align 1
|
||||
|
||||
define void @"github.com/goplus/llgo/cl/_testpy/gcd.init"() {
|
||||
_llgo_0:
|
||||
%0 = load i1, ptr @"github.com/goplus/llgo/cl/_testpy/gcd.init$guard", align 1
|
||||
br i1 %0, label %_llgo_2, label %_llgo_1
|
||||
|
||||
_llgo_1: ; preds = %_llgo_0
|
||||
store i1 true, ptr @"github.com/goplus/llgo/cl/_testpy/gcd.init$guard", align 1
|
||||
call void @"github.com/goplus/lib/py/math.init"()
|
||||
%1 = load ptr, ptr @__llgo_py.math, align 8
|
||||
call void (ptr, ...) @llgoLoadPyModSyms(ptr %1, ptr @1, ptr @__llgo_py.math.gcd, ptr null)
|
||||
br label %_llgo_2
|
||||
|
||||
_llgo_2: ; preds = %_llgo_1, %_llgo_0
|
||||
ret void
|
||||
}
|
||||
|
||||
define void @"github.com/goplus/llgo/cl/_testpy/gcd.main"() {
|
||||
_llgo_0:
|
||||
%0 = call ptr @PyLong_FromLong(i64 60)
|
||||
%1 = call ptr @PyLong_FromLong(i64 20)
|
||||
%2 = call ptr @PyLong_FromLong(i64 25)
|
||||
%3 = load ptr, ptr @__llgo_py.math.gcd, align 8
|
||||
%4 = call ptr (ptr, ...) @PyObject_CallFunctionObjArgs(ptr %3, ptr %0, ptr %1, ptr %2, ptr null)
|
||||
%5 = call i64 @PyLong_AsLong(ptr %4)
|
||||
%6 = call i32 (ptr, ...) @printf(ptr @0, i64 %5)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void @"github.com/goplus/lib/py/math.init"()
|
||||
|
||||
declare ptr @PyLong_FromLong(i64)
|
||||
|
||||
declare ptr @PyObject_CallFunctionObjArgs(ptr, ...)
|
||||
|
||||
declare i64 @PyLong_AsLong(ptr)
|
||||
|
||||
declare i32 @printf(ptr, ...)
|
||||
|
||||
declare void @llgoLoadPyModSyms(ptr, ...)
|
||||
Reference in New Issue
Block a user