Giter Club home page Giter Club logo

Comments (3)

dequeb avatar dequeb commented on July 2, 2024 1

from llvm.

dequeb avatar dequeb commented on July 2, 2024

I modified my code. It compiles but the result is not what is expected:

func TestIntGEN(*testing.T) {
	// Create a new LLVM IR module.
	m := ir.NewModule()
	hello := constant.NewCharArrayFromString("Hello, %d!\n\x00")
	ten := constant.NewInt(types.I32, 10)
	numb := m.NewGlobalDef("ten", ten)
	str := m.NewGlobalDef("str", hello)
	// Add external function declaration of printf.
	printf := m.NewFunc("printf", types.I32, ir.NewParam("", types.NewPointer(types.I8)))
	printf.Sig.Variadic = true
	main := m.NewFunc("main", types.I32)
	entry := main.NewBlock("")
	// Cast *[15]i8 to *i8.
	zero := constant.NewInt(types.I64, 0)
	// allocate memory for ten
	tenPtr := entry.NewAlloca(numb.Typ)
	// store the pointer to ten in tenPtr
	entry.NewStore(numb, tenPtr)
	gep := constant.NewGetElementPtr(hello.Typ, str, zero, zero)
	entry.NewCall(printf, gep, tenPtr)
	entry.NewRet(constant.NewInt(types.I32, 0))
	fmt.Println(m)
}

It looks like the pointer is accessing a random value instead. Someone could help?

The resulting LLVM-IR is:

@ten = global i32 10
@str = global [12 x i8] c"Hello, %d!\0A\00"

declare i32 @printf(i8* %0, ...)

define i32 @main() {
0:
        %1 = alloca i32*
        store i32* @ten, i32** %1
        %2 = call i32 (i8*, ...) @printf(i8* getelementptr ([12 x i8], [12 x i8]* @str, i64 0, i64 0), i32** %1)
        ret i32 0
}

from llvm.

mewmew avatar mewmew commented on July 2, 2024

Hi @dequeb,

I updated the example code you posted to make it print "Hello, 10!". The random value that was printed was the pointer address, rather than the value stored within the local variable. Hope this helps!

Contents of foo.go:

package main

import (
	"fmt"

	"github.com/llir/llvm/ir"
	"github.com/llir/llvm/ir/constant"
	"github.com/llir/llvm/ir/types"
)

func main() {
	// Create a new LLVM IR module.
	m := ir.NewModule()
	hello := constant.NewCharArrayFromString("Hello, %d!\n\x00")
	ten := constant.NewInt(types.I32, 10)
	numb := m.NewGlobalDef("ten", ten)
	str := m.NewGlobalDef("str", hello)
	// Add external function declaration of printf.
	printf := m.NewFunc("printf", types.I32, ir.NewParam("", types.NewPointer(types.I8)))
	printf.Sig.Variadic = true
	main := m.NewFunc("main", types.I32)
	entry := main.NewBlock("")
	// Cast *[15]i8 to *i8.
	zero := constant.NewInt(types.I64, 0)
	// load value of global variable to local variable.
	tenVal := entry.NewLoad(types.I32, numb)
	gep := constant.NewGetElementPtr(hello.Typ, str, zero, zero)
	entry.NewCall(printf, gep, tenVal)
	entry.NewRet(constant.NewInt(types.I32, 0))
	fmt.Println(m)
}

Output LLVM IR (foo.ll):

@ten = global i32 10
@str = global [12 x i8] c"Hello, %d!\0A\00"

declare i32 @printf(i8* %0, ...)

define i32 @main() {
0:
	%1 = load i32, i32* @ten
	%2 = call i32 (i8*, ...) @printf(i8* getelementptr ([12 x i8], [12 x i8]* @str, i64 0, i64 0), i32 %1)
	ret i32 0
}

Output from lli:

$ go run foo.go > foo.ll
$ lli foo.ll
Hello, 10!

from llvm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.