Code Monkey home page Code Monkey logo

ir-builder's Introduction

IR Builder

Pure Java library for creating LLVM IR.

ir-builder's People

Contributors

rwl avatar

Stargazers

Anders Michaelsen avatar Professor  avatar Steffen Dingel avatar  avatar Lev Koporushkin avatar Daniel Munch avatar phosphorus avatar Judison Oliveira Gil Filho avatar Kaushik avatar lyrachord avatar Максим Парыгин avatar Koji Hisano avatar

Watchers

 avatar James Cloos avatar  avatar Kaushik avatar Максим Парыгин avatar  avatar

ir-builder's Issues

LLVM Build failed in basic tests

I tried to use the test example to generate a *.ll file and compiled it, but got following error

phosphorus15@ubuntu:~/ir$ llvm-as < test.ll > test.bc
llvm-as: <stdin>:7:24: error: '@puts' defined with type 'i32 (i8*)*'
  %1 = call i32 (i8*)* @puts(i8* getelementptr inbounds ([14 x i8], [14 x i8]* @0, i32 0, i32 0))

The test code is below

StringValue hello = new StringValue("Hello world!\n");

IRBuilder ir = new IRBuilder("top");
GlobalVariable variable = ir.constant(null, hello, null, false, null);
FunctionType ft = new FunctionType(IntType.INT_32,
		IntType.INT_8.pointerTo());
GlobalVariable puts = ir.functionDecl("puts", ft);
ir.beginFunction("main", new FunctionType(VoidType.INSTANCE), null, null);
ir.call(puts, Collections.singletonList(variable), null);
ir.endFunction(null);

System.out.println(ir.build());

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.