-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 0.4 completely refactors the VM logic and brings new instruction API that allows us to extract semantic information from method bytecodes. Later this will help to deduce the possible control flow and perform a lot of optimizations. This should literally boost the VM performance to a new level. Also huge amount of work was done in terms of code organization, readability and maintainability. * develop: (290 commits) Renames standart_set -> standard_set Fixes compilation of MethodCompiler::getSkipOffset Installs llvm 3.3 under osx Bumps version in `--version` Moves some methods from instructions.h into stapi.h Replaces get_current_dir_name with getcwd Fixes compilation of Timer.cpp not on Linux Removes double compilation of some cpp files Prepares env and compilers Fixes primitive::stringAt Bumps version of debian package Bumps version upto 0.4 Adds --mm_type into man page Fixes llvm version in README and shows how to build unit tests Fixes comments in JITRuntime.cpp Fixes outdated comments with m_targetToBlockMap Makes more functions in Timer.h be const Fixes library linkage order Removes trash comments from MethodCompiler Removes trash comments from ControlGraphVisualizer ...
- Loading branch information
Showing
91 changed files
with
8,278 additions
and
5,939 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
*man -diff | ||
ChangeLog -diff | ||
tests/data/ -diff |
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,63 @@ | ||
language: cpp | ||
|
||
compiler: | ||
- gcc | ||
- clang | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
sudo: false | ||
cache: | ||
apt: true | ||
directories: | ||
- $HOME/.cache/pip | ||
addons: | ||
apt: | ||
packages: | ||
- g++-multilib | ||
- linux-libc-dev:i386 | ||
- libreadline-dev:i386 | ||
- llvm-3.3-dev:i386 | ||
|
||
notifications: | ||
email: false | ||
|
||
branches: | ||
only: | ||
- master | ||
- develop | ||
- /^.*travis.*$/ | ||
|
||
matrix: | ||
allow_failures: | ||
- os: osx | ||
|
||
env: | ||
matrix: # fix all scripts (e.g. install-dependencies.sh) if you rename LLVM_USE[On/Off] | ||
- USE_LLVM=Off | ||
BUILD_TYPE=Debug | ||
- USE_LLVM=Off | ||
BUILD_TYPE=Release | ||
- USE_LLVM=On | ||
BUILD_TYPE=Debug | ||
- USE_LLVM=On | ||
BUILD_TYPE=Release | ||
- USE_LLVM=Off | ||
BUILD_TYPE=Coverage | ||
|
||
before_install: | ||
- source .travis/${TRAVIS_OS_NAME}/before_install.sh | ||
|
||
before_script: | ||
- mkdir -p build | ||
- cd build | ||
- cmake .. -DUSE_LLVM=$USE_LLVM -DBUILD_TESTS=On -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DSITE="${TRAVIS_OS_NAME}@Travis" -DBUILDNAME="${TRAVIS_BRANCH}_${CXX}_LLVM_${USE_LLVM}_${BUILD_TYPE}" | ||
|
||
script: | ||
- cmake --build . -- all --keep-going | ||
- cmake --build . --target check | ||
|
||
after_success: | ||
- if [ ${CXX} == g++ ] && [ ${BUILD_TYPE} == Coverage ]; then ~/.local/bin/coveralls --repo_token "INxVunXhVXbQWjVbwoIisKeXSJqCRGnI2" --exclude build/tests/gtest -E ".*CMake.*CompilerId.c" --gcov-options "\-lp" -r ../; fi |
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,3 @@ | ||
#!/bin/bash | ||
|
||
pip install --user cpp-coveralls |
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,12 @@ | ||
#!/bin/bash | ||
|
||
if [[ "${CC}" == "gcc" ]]; then | ||
export CC=gcc-4.8 | ||
export CXX=g++-4.8 | ||
fi | ||
|
||
function brew_upgrade { brew outdated $1 || brew upgrade $1; } | ||
|
||
brew update | ||
brew install readline | ||
brew install llvm33 |
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,6 @@ | ||
set(CTEST_PROJECT_NAME "LLST") | ||
set(CTEST_NIGHTLY_START_TIME "00:00:00 UTC") | ||
set(CTEST_DROP_METHOD "http") | ||
set(CTEST_DROP_SITE "my.cdash.org") | ||
set(CTEST_DROP_LOCATION "/submit.php?project=LLST") | ||
set(CTEST_DROP_SITE_CDASH TRUE) |
Oops, something went wrong.