Hi,
The following changes since commit e4ecd64a7ee3dc57390ec9e1a107da01114757c7:
Tomek Grabiec (1):
regression: add test for Throwable.getStackTrace()
are available in the git repository at:
git://github.com/vegard/jato.git for-pekka
Vegard Nossum (2):
Switch from #include <> to #include "" for internal headers
lib: move includes from vm/ to lib/
arch/ppc/disassemble.c | 2 +-
arch/ppc/emit-code.c | 8 +++---
arch/ppc/exception.c | 4 +-
arch/ppc/include/arch/instruction.h | 6 ++--
arch/ppc/include/arch/stack-frame.h | 2 +-
arch/ppc/instruction.c | 2 +-
arch/ppc/lir-printer.c | 4 +-
arch/ppc/signal.c | 2 +-
arch/x86/disassemble.c | 8 +++---
arch/x86/emit-code.c | 34 ++++++++++++++--------------
arch/x86/exception.c | 18 +++++++-------
arch/x86/include/arch/exception.h | 2 +-
arch/x86/include/arch/instruction.h | 8 +++---
arch/x86/include/arch/stack-frame.h | 2 +-
arch/x86/instruction.c | 4 +-
arch/x86/lir-printer.c | 22 +++++++++---------
arch/x86/registers_32.c | 4 +-
arch/x86/registers_64.c | 2 +-
arch/x86/signal.c | 10 ++++----
arch/x86/stack-frame.c | 12 +++++-----
arch/x86/thread.c | 2 +-
arch/x86/use-def.c | 4 +-
include/jit/args.h | 4 +-
include/jit/basic-block.h | 2 +-
include/jit/bc-offset-mapping.h | 8 +++---
include/jit/compilation-unit.h | 10 ++++----
include/jit/compiler.h | 10 ++++----
include/jit/disassemble.h | 2 +-
include/jit/exception.h | 16 +++++++-------
include/jit/expression.h | 16 +++++++-------
include/jit/lir-printer.h | 2 +-
include/jit/statement.h | 6 ++--
include/jit/use-position.h | 4 +-
include/jit/vars.h | 4 +-
include/{vm => lib}/bitset.h | 0
include/{vm => lib}/buffer.h | 0
include/{vm => lib}/list.h | 2 +-
include/{vm => lib}/radix-tree.h | 0
include/{vm => lib}/string.h | 0
include/vm/class.h | 16 +++++++-------
include/vm/field.h | 10 ++++----
include/vm/itable.h | 2 +-
include/vm/method.h | 18 +++++++-------
include/vm/object.h | 4 +-
include/vm/stack-trace.h | 8 +++---
jit/args.c | 4 +-
jit/arithmetic-bc.c | 10 ++++----
jit/basic-block.c | 10 ++++----
jit/bc-offset-mapping.c | 10 ++++----
jit/branch-bc.c | 10 ++++----
jit/bytecode-to-ir.c | 20 ++++++++--------
jit/cfg-analyzer.c | 14 ++++++------
jit/compilation-unit.c | 18 +++++++-------
jit/compiler.c | 18 +++++++-------
jit/cu-mapping.c | 12 +++++-----
jit/disass-common.c | 2 +-
jit/emit.c | 22 +++++++++---------
jit/emulate.c | 8 +++---
jit/exception-bc.c | 8 +++---
jit/exception.c | 34 ++++++++++++++--------------
jit/expression.c | 14 ++++++------
jit/fixup-site.c | 4 +-
jit/interval.c | 6 ++--
jit/invoke-bc.c | 18 +++++++-------
jit/linear-scan.c | 6 ++--
jit/liveness.c | 8 +++---
jit/load-store-bc.c | 28 ++++++++++++------------
jit/method.c | 12 +++++-----
jit/nop-bc.c | 2 +-
jit/object-bc.c | 20 ++++++++--------
jit/ostack-bc.c | 8 +++---
jit/perf-map.c | 4 +-
jit/spill-reload.c | 6 ++--
jit/stack-slot.c | 4 +-
jit/statement.c | 8 +++---
jit/text.c | 10 ++++----
jit/trace-jit.c | 38 ++++++++++++++++----------------
jit/trampoline.c | 28 ++++++++++++------------
jit/tree-node.c | 4 +-
jit/tree-printer.c | 16 +++++++-------
jit/typeconv-bc.c | 8 +++---
jit/vtable.c | 2 +-
lib/bitset.c | 6 ++--
lib/buffer.c | 2 +-
lib/list.c | 2 +-
lib/radix-tree.c | 4 +-
lib/string.c | 2 +-
test/arch-mmix/instruction.c | 4 +-
test/arch-mmix/register.c | 4 +-
test/arch-mmix/stack-frame.c | 2 +-
test/arch-mmix/use-def.c | 4 +-
test/arch-x86/emit-code-test_32.c | 20 ++++++++--------
test/arch-x86/insn-selector-test_32.c | 24 ++++++++++----------
test/arch-x86/stack-frame-test_32.c | 6 ++--
test/arch-x86/use-def-test_32.c | 10 ++++----
test/include/arch/instruction.h | 8 +++---
test/include/test/vm.h | 2 +-
test/jit/args-test-utils.c | 4 +-
test/jit/arithmetic-bc-test.c | 10 ++++----
test/jit/basic-block-test.c | 10 ++++----
test/jit/bc-test-utils.c | 20 ++++++++--------
test/jit/bc-test-utils.h | 4 +-
test/jit/branch-bc-test.c | 14 ++++++------
test/jit/bytecode-to-ir-test.c | 10 ++++----
test/jit/cfg-analyzer-test.c | 8 +++---
test/jit/compilation-unit-test.c | 8 +++---
test/jit/expression-test.c | 2 +-
test/jit/interval-test.c | 4 +-
test/jit/invoke-bc-test.c | 10 ++++----
test/jit/linear-scan-test.c | 10 ++++----
test/jit/live-range-test.c | 2 +-
test/jit/liveness-test.c | 14 ++++++------
test/jit/load-store-bc-test.c | 18 +++++++-------
test/jit/object-bc-test.c | 16 +++++++-------
test/jit/ostack-bc-test.c | 6 ++--
test/jit/spill-reload-test.c | 12 +++++-----
test/jit/stack-slot-test.c | 2 +-
test/jit/trampoline-stub.c | 2 +-
test/jit/tree-printer-test.c | 16 +++++++-------
test/jit/typeconv-bc-test.c | 6 ++--
test/libharness/libharness.c | 2 +-
test/vm/bitset-test.c | 2 +-
test/vm/buffer-test.c | 2 +-
test/vm/bytecodes-test.c | 6 ++--
test/vm/class-stub.c | 6 ++--
test/vm/classloader-stub.c | 2 +-
test/vm/list-test.c | 2 +-
test/vm/natives-test.c | 4 +-
test/vm/object-stub.c | 4 +-
test/vm/preload-stub.c | 4 +-
test/vm/radix-tree-test.c | 2 +-
test/vm/stack-test.c | 2 +-
test/vm/string-test.c | 2 +-
test/vm/types-test.c | 2 +-
vm/bytecode.c | 4 +-
vm/bytecodes.c | 6 ++--
vm/class.c | 38 ++++++++++++++++----------------
vm/classloader.c | 10 ++++----
vm/die.c | 4 +-
vm/field.c | 18 +++++++-------
vm/guard-page.c | 6 ++--
vm/itable.c | 8 +++---
vm/method.c | 22 +++++++++---------
vm/natives.c | 4 +-
vm/object.c | 20 ++++++++--------
vm/resolve.c | 4 +-
vm/signal.c | 14 ++++++------
vm/stack-trace.c | 26 +++++++++++-----------
vm/stack.c | 2 +-
vm/static.c | 12 +++++-----
vm/types.c | 8 +++---
vm/utf8.c | 4 +-
vm/zalloc.c | 2 +-
153 files changed, 661 insertions(+), 661 deletions(-)
rename include/{vm => lib}/bitset.h (100%)
rename include/{vm => lib}/buffer.h (100%)
rename include/{vm => lib}/list.h (99%)
rename include/{vm => lib}/radix-tree.h (100%)
rename include/{vm => lib}/string.h (100%)
Vegard
------------------------------------------------------------------------------
_______________________________________________
Jatovm-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jatovm-devel