viuavm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Viuavm-commits] [SCM] Viua VM branch devel updated. v0.8.4-525-g33b5e46


From: git
Subject: [Viuavm-commits] [SCM] Viua VM branch devel updated. v0.8.4-525-g33b5e46
Date: Sun, 13 Nov 2016 00:43:31 +0100 (CET)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Viua VM".

The branch, devel has been updated
       via  33b5e46b07962b77e0ebcdac85922b259651414b (commit)
       via  ee41bccb856082c553fbf027724efde3c334b910 (commit)
       via  f9c39a80995859c71c145fedf4be802d2f0c0948 (commit)
       via  c2168a5ac62055d1d71482b6cc0c4cf37be320cb (commit)
       via  3e866434b9e660dc76c411f67fc0287a5c44ca2c (commit)
       via  53e81b42e85cbdf2ee3162fd92f9ef3033a2bc93 (commit)
       via  5c4fe29486f91bc0365d665ee26f3685c5bd3898 (commit)
       via  7f755fcbcc30909dfca104bac3621ccda50ec056 (commit)
       via  5854acba0a27758150b94e5164637137000c77ca (commit)
       via  13dddba9955aaa858b4d90150f32940077b24db8 (commit)
       via  97fc104de954c4631d7729eda5ac4c0b793cb30f (commit)
       via  a9b695cb2c4fbc5392c415bc2176d68ed381dbad (commit)
       via  fa5ff5de8338504b79810590027362aae5b3040b (commit)
       via  7257fd86e7f090a9930ea47819cfce4f19070bab (commit)
       via  a1739e3a737201df7e46eda1fd30b3f2e0aeca26 (commit)
       via  fb5b05b4ce1b698ad1cc205192b35bd4a0a035ad (commit)
       via  b67513135eef33d61c073778a16d87b75f7ccbdc (commit)
       via  1d760f70c8868ddfb5c7f7757746bc31d9acc3bc (commit)
       via  25440f6e1d8fdc2bf0d75abd35ddb380e9c9da14 (commit)
       via  c6943b6b5e4a629dcd5e35d1ed92d9050ade8e14 (commit)
       via  b6d2f6046b0169fbb61de59915a931c1efc76d15 (commit)
       via  60b4e11b36ab75a5d6aa77ab310adc0b17bc723e (commit)
      from  ea0de54b96248e56955e422b6493856043c23271 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 33b5e46b07962b77e0ebcdac85922b259651414b
Merge: ea0de54 ee41bcc
Author: Marek Marecki <address@hidden>
Date:   Sun Nov 13 00:25:14 2016 +0100

    Merge branch 'issue/add-void-operand-type' into devel

-----------------------------------------------------------------------

Summary of changes:
 Changelog.markdown                                 |   2 +-
 include/viua/bytecode/decoder/operands.h           |   2 +
 include/viua/cg/bytecode/instructions.h            |   2 +-
 include/viua/cg/lex.h                              |   3 +-
 include/viua/cg/tools.h                            |   1 +
 include/viua/kernel/frame.h                        |   2 +
 include/viua/process.h                             |   6 +-
 include/viua/program.h                             |   2 -
 include/viua/version.h                             |   2 +-
 sample/asm/concurrency/immediately_detached.asm    |   2 +-
 .../migrating_processes_between_schedulers.asm     |   2 +-
 sample/asm/concurrency/receive_timeout_default.asm |   2 +-
 .../asm/concurrency/receive_timeout_infinite.asm   |   2 +-
 .../invalid_register_index_in_name.asm}            |   2 +-
 sample/asm/exceptions/terminating_processes.asm    |   4 +-
 sample/asm/external/many_hello_world.asm           |   2 +-
 sample/asm/external/sleeper.asm                    |   2 +-
 .../void/in_arg.asm}                               |   6 +-
 .../keyword/{default/call.asm => void/in_call.asm} |   1 +
 .../keyword/{default/call.asm => void/in_join.asm} |   4 +-
 .../{iota/iota_in_names.asm => void/in_msg.asm}    |  11 +-
 .../{default/call.asm => void/in_process.asm}      |   5 +-
 .../void/in_receive.asm}                           |  11 +-
 .../void_as_input_register.asm}                    |   2 +-
 sample/asm/watchdog/already_spawned.asm            |   2 +-
 sample/asm/watchdog/death_message.asm              |   2 +-
 sample/asm/watchdog/from_undefined_function.asm    |   2 +-
 .../from_undefined_function_at_runtime.asm         |   2 +-
 sample/asm/watchdog/hello_world.asm                |   2 +-
 sample/asm/watchdog/restarting_process.asm         |   6 +-
 sample/asm/watchdog/terminated_watchdog.asm        |   2 +-
 sample/benchmark/99bottles/99bottles.asm           |   2 +-
 .../examples/concurrency/process_spawner/main.asm  |   4 +-
 sample/examples/concurrency/producer_consumer.asm  |   2 +-
 sample/misc/processes.asm                          |   2 +-
 src/bytecode/decoder/operands.cpp                  |  24 +-
 src/cg/assembler/codeextract.cpp                   |   2 +-
 src/cg/assembler/operands.cpp                      |   7 +-
 src/cg/bytecode/instructions.cpp                   |  17 +-
 src/cg/disassembler/disassembler.cpp               |  42 +-
 src/cg/lex.cpp                                     | 157 ++++-
 src/cg/tools.cpp                                   | 783 +++++++++++++++++++++
 src/front/asm.cpp                                  |  38 +-
 src/front/asm/generate.cpp                         |   6 +-
 src/front/lexer.cpp                                |   2 +-
 src/process.cpp                                    |  11 +-
 src/process/instr/calls.cpp                        |  34 +-
 src/process/instr/concurrency.cpp                  |  39 +-
 src/process/instr/object.cpp                       |  12 +-
 src/program.cpp                                    | 113 ---
 src/scheduler/ffi/request.cpp                      |   2 +-
 tests/tests.py                                     |  68 +-
 52 files changed, 1211 insertions(+), 254 deletions(-)
 copy sample/asm/{concurrency/receive_timeout_500ms.asm => 
errors/invalid_register_index_in_name.asm} (97%)
 copy sample/asm/{static_analysis_errors/parameter_move_from_empty_register.asm 
=> keyword/void/in_arg.asm} (91%)
 copy sample/asm/keyword/{default/call.asm => void/in_call.asm} (97%)
 copy sample/asm/keyword/{default/call.asm => void/in_join.asm} (95%)
 copy sample/asm/keyword/{iota/iota_in_names.asm => void/in_msg.asm} (78%)
 copy sample/asm/keyword/{default/call.asm => void/in_process.asm} (89%)
 copy sample/asm/{static_analysis_errors/parameter_move_empties_registers.asm 
=> keyword/void/in_receive.asm} (81%)
 copy sample/asm/{keyword/default/call.asm => 
static_analysis_errors/void_as_input_register.asm} (96%)


hooks/post-receive
-- 
Viua VM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]