lccmake.bat
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 06 May 2013 22:37:13 +0100
branchjava-exception-optimization
changeset 2585 14ab287e17ca
parent 2578 fc6186a4961f
child 2595 77ab6e032c7f
permissions -rw-r--r--
Exception table refactored to use more compact & VM friendly format. Exception table is now a plain WordArray of quads (starPC, endPC, handlerPC, type). This is more compact (saves 12bytes object header + 4bytes per entry). Also, it its simple internal format will ease implementation C-optimized exception throwing.

@REM -------
@REM make using lcc compiler
@REM type lccmake, and wait...
@REM do not edit - automatically generated from ProjectDefinition
@REM -------
make.exe -N -f bc.mak -DUSELCC=1 %*

@echo "***********************************"
@echo "Buildung stx/libjava/tools
@echo "***********************************"
@cd tools
@call lccmake %1 %2
@cd ..

@echo "***********************************"
@echo "Buildung stx/libjava/benchmarks
@echo "***********************************"
@cd benchmarks
@call lccmake %1 %2
@cd ..

@echo "***********************************"
@echo "Buildung stx/libjava/libs
@echo "***********************************"
@cd libs
@call lccmake %1 %2
@cd ..

@echo "***********************************"
@echo "Buildung stx/libjava/experiments
@echo "***********************************"
@cd experiments
@call lccmake %1 %2
@cd ..