Giter Site home page Giter Site logo

ccint's Introduction

ccint: a C/C++ interpreter

ccint is a C/C++ interpreter, built on top of Clang and LLVM compiler infrastructure.

ccint internals

features

  • supports all C++11/C++14/C++17 features
  • supports for linking static/dynamic libraries
  • high performance: same performance as C/C++ binaries
  • separate parser and execution engine

build

$ git clone [email protected]:llvm/llvm-project.git
$ cd llvm-project/clang/tools/
$ git clone [email protected]:remysys/ccint.git
$ echo "add_clang_subdirectory(ccint)" >> CMakeLists.txt
$ cd ../..
$ cmake -S llvm -B build -G "Unix Makefiles"  -DLLVM_ENABLE_PROJECTS="clang" -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi"  -DCMAKE_BUILD_TYPE=Release
$ cd build && make -j16

usage

./clang-ccint --help
USAGE: clang-ccint [options] <input file>

OPTIONS:
General options:
  -I <string>                                        - specify include paths
  -L <string>                                        - load given libs

examples

  • print "hello world"
/* main.cpp */
#include <stdio.h>
#include <vector>
#include <string>

void ccint_main() {
  std::vector<std::string> vec = {"hello", " world\n"};
  for (auto &s : vec) {
    printf("%s", s.c_str());
  }
}

$ ./ccint main.cpp
hello world
  • link static library
/* add.h */
int add(int, int);

/* add.c */
int add(int a, int b) {
  return a + b;
}

/* main.cpp */
#include <stdio.h>
#include "add.h"

void ccint_main() {
  printf("32 + 64 = %d\n", add(32, 64));
}

$ clang -c add.c -o add.o
$ ar rcs libadd.a add.o
$ ./ccint main.cpp -L ./libadd.a
32 + 64 = 96
  • link dynamic library
/* add.h */
int add(int, int);

/* add.c */

int add(int a, int b) {
  return a + b;
}

/* main.cpp */

#include <stdio.h>
#include "add.h"

void ccint_main() {
  printf("32 + 64 = %d\n", add(32, 64));
}

$ clang -shared -fPIC add.c -o libadd.so
$ ./ccint main.cpp -L ./libadd.so
32 + 64 = 96
  • specify include paths
/* add.h */
int add(int, int);

/* add.c */

int add(int a, int b) {
  return a + b;
}

/* main.cpp */

#include <stdio.h>
#include "add.h"

void ccint_main() {
  printf("32 + 64 = %d\n", add(32, 64));
}

$ clang -shared -fPIC add.c -o libadd.so
$ mv ./add.h ..
$ ./ccint main.cpp -L ./libadd.so -I ..
32 + 64 = 96

ccint's People

Contributors

remysys avatar

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.