[PATCH] Added dependencies installation instructions for Arch Linux

2009-12-13 Thread Arthur HUILLET
Signed-off-by: Arthur HUILLET arthur.huil...@free.fr --- README |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/README b/README index cd32316..15122b0 100644 --- a/README +++ b/README @@ -33,6 +33,10 @@ How can I try it out? $ su $ pkg install

[penberg/jato] 429c09: Added dependencies installation instructions for A...

2009-12-13 Thread noreply
Branch: refs/heads/master Home: http://github.com/penberg/jato Commit: 429c09a8ef7f6493cddf53a895b951f9958cf6c9 http://github.com/penberg/jato/commit/429c09a8ef7f6493cddf53a895b951f9958cf6c9 Author: Arthur HUILLET arthur.huil...@free.fr Date: 2009-12-13 (Sun, 13 Dec 2009) Changed paths:

[penberg/jato] be4494: x86-64: Fix native_call_gp() clobber list

2009-12-13 Thread noreply
Branch: refs/heads/master Home: http://github.com/penberg/jato Commit: be4494826d379ede2267cd66aca76202ee74a2c4 http://github.com/penberg/jato/commit/be4494826d379ede2267cd66aca76202ee74a2c4 Author: Pekka Enberg penb...@cs.helsinki.fi Date: 2009-12-13 (Sun, 13 Dec 2009) Changed paths:

[PATCH] x86-64: Fix native_call_gp() clobber list

2009-12-13 Thread Pekka Enberg
As we are doing a call, we must specify all caller-saved registers as clobbered. Cc: Eduard - Gabriel Munteanu eduard.munte...@linux360.ro Cc: Arthur HUILLET arthur.huil...@free.fr Signed-off-by: Pekka Enberg penb...@cs.helsinki.fi --- arch/x86/call.c |5 +++-- 1 files changed, 3

[PATCH] Add myself to AUTHORS

2009-12-13 Thread Arthur HUILLET
Signed-off-by: Arthur HUILLET arthur.huil...@free.fr --- AUTHORS |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/AUTHORS b/AUTHORS index 92693d2..417ea18 100644 --- a/AUTHORS +++ b/AUTHORS @@ -24,3 +24,8 @@ L: Oslo, Norway N: Saeed Siam saeed.s...@gmail.com D: Array

[PATCH 3/3] x86: Remove unused INSN_XOR_IMM_REG type

2009-12-13 Thread Pekka Enberg
Signed-off-by: Pekka Enberg penb...@cs.helsinki.fi --- arch/x86/emit-code.c| 12 arch/x86/include/arch/instruction.h |1 - arch/x86/instruction.c |1 - arch/x86/lir-printer.c |7 --- test/arch-x86/emit-code-test_32.c |

[PATCH 2/3] x86: Remove unused INSN_PUSH_MEMBASE type

2009-12-13 Thread Pekka Enberg
Signed-off-by: Pekka Enberg penb...@cs.helsinki.fi --- arch/x86/emit-code.c|7 --- arch/x86/include/arch/instruction.h |1 - arch/x86/instruction.c |1 - arch/x86/lir-printer.c |7 --- 4 files changed, 0 insertions(+), 16

[PATCH 1/3] x86: Remove unused INSN_MOV_IP_THREAD_LOCAL_MEMBASE type

2009-12-13 Thread Pekka Enberg
Signed-off-by: Pekka Enberg penb...@cs.helsinki.fi --- arch/x86/emit-code.c| 11 --- arch/x86/include/arch/instruction.h |1 - arch/x86/instruction.c |1 - arch/x86/lir-printer.c |7 --- 4 files changed, 0 insertions(+), 20

[penberg/jato] 58ae9f: x86: Remove unused INSN_MOV_IP_REG type

2009-12-13 Thread noreply
Branch: refs/heads/master Home: http://github.com/penberg/jato Commit: 58ae9fdb4c68ee095a7923fb86f2f87d30577f3d http://github.com/penberg/jato/commit/58ae9fdb4c68ee095a7923fb86f2f87d30577f3d Author: Pekka Enberg penb...@cs.helsinki.fi Date: 2009-12-13 (Sun, 13 Dec 2009) Changed paths:

[penberg/jato] 691e7c: x86: Don't wrap function signature on multiple lin...

2009-12-13 Thread noreply
Branch: refs/heads/master Home: http://github.com/penberg/jato Commit: 691e7cf7ecc2409f6a91f4a25185f36d696e061c http://github.com/penberg/jato/commit/691e7cf7ecc2409f6a91f4a25185f36d696e061c Author: Pekka Enberg penb...@cs.helsinki.fi Date: 2009-12-13 (Sun, 13 Dec 2009) Changed paths:

[penberg/jato] e963ce: x86: Fix more wrapped function signatures

2009-12-13 Thread noreply
Branch: refs/heads/master Home: http://github.com/penberg/jato Commit: e963cec9308c89f6dc8d03cb9c76caec9ee799d2 http://github.com/penberg/jato/commit/e963cec9308c89f6dc8d03cb9c76caec9ee799d2 Author: Pekka Enberg penb...@cs.helsinki.fi Date: 2009-12-13 (Sun, 13 Dec 2009) Changed paths:

[penberg/jato] 94a51a: x86: Fix emit_test_imm_memdisp() argument names

2009-12-13 Thread noreply
Branch: refs/heads/master Home: http://github.com/penberg/jato Commit: 94a51ab612e65ca2cd4b5ac190c28c8a7ad0d1ea http://github.com/penberg/jato/commit/94a51ab612e65ca2cd4b5ac190c28c8a7ad0d1ea Author: Pekka Enberg penb...@cs.helsinki.fi Date: 2009-12-13 (Sun, 13 Dec 2009) Changed paths:

[PATCH 3/3] x86: Unify NO_OPERANDS and SINGLE_OPERAND emission

2009-12-13 Thread Pekka Enberg
Now that NO_OPERANDS and SINGLE_OPERAND emitter share the same function signature we can unify the two. Signed-off-by: Pekka Enberg penb...@cs.helsinki.fi --- arch/x86/emit-code.c | 19 +-- 1 files changed, 5 insertions(+), 14 deletions(-) diff --git a/arch/x86/emit-code.c