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.9.0-958-g0555718


From: git
Subject: [Viuavm-commits] [SCM] Viua VM branch devel updated. v0.9.0-958-g0555718
Date: Sun, 24 Dec 2017 11:57:13 +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  05557187fbfb6bfe0b791ce371d456df7315d33f (commit)
       via  3e1c8660769018371ddb20c9a7dcfe972fa70301 (commit)
       via  e11688b28609eb88320cfd078d3c5a9345a26cc3 (commit)
       via  812b235ed83afc80dd07f453cf488d5a966ece7e (commit)
       via  5a5651483c616de7d8c67f323bc26122a8773464 (commit)
       via  238d177c8e0e9c36cafbb620e2750ada186ebb64 (commit)
       via  b6ed717ab15558c6f3178a9bab8a7047983d5bd9 (commit)
       via  07d66e46af55a003fbd75dd953993d92e4af702d (commit)
       via  b9581aa92e0fcbdb4df41ccdbdaeb26006e26d91 (commit)
       via  77b6361e841cfb5e1a627cae6125317c909ce5f1 (commit)
       via  43cf2e20b53b1931cb031daab7928f8be782e68d (commit)
       via  01ecf3e0cc049df9f5fd2eec4f764532a56f7fac (commit)
       via  9b5a00b55314823d7e19303341f0570c7c5bc3cc (commit)
       via  d308ebffbc937c4fcbc55a14eece0df9a250fd7b (commit)
       via  6a80ea96696c22b39703b744c1e62b74bf2168a4 (commit)
       via  80caa81609640b0fec3a67f9175390128e13b18b (commit)
       via  7c7b4e134de2dd614f4960447a5bb2005a9aaae9 (commit)
       via  97eab43cf34630759c37b8d815b8ba1c1fd2220a (commit)
       via  8ff23c0f697eaf7403d37f70977f0e51425aaa2d (commit)
       via  be8c6f6135b4acb3e9d379bf415e22a247a28a88 (commit)
       via  0c0bcfc828b56ded465a4381f64be1d0d8373193 (commit)
       via  cdc40e4d5a6ead9e8551504a0bd1d188f7d3d789 (commit)
      from  10b07ed451bf5199b516d621e900d5a37084f87b (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 -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 .../a75839dcf865a05a62969b13a1a2a31c8d0c9940.json  |   1 +
 .../2a19df8afc7b2f38719a3a14b1943e8d7d61b401.json  |   1 +
 .../ec8730b658351b836294f1db82a44b593df63813.json  |   1 +
 include/viua/assert.h                              |   5 +-
 include/viua/bytecode/decoder/operands.h           |   3 +-
 include/viua/bytecode/maps.h                       |   5 +
 include/viua/bytecode/opcodes.h                    |   5 +
 include/viua/cg/bytecode/instructions.h            |   5 +
 include/viua/exceptions.h                          |   9 +-
 include/viua/process.h                             |   5 +
 include/viua/program.h                             |   5 +
 include/viua/types/bits.h                          |   7 +-
 include/viua/util/exceptions.h                     |  21 +++
 .../maximum_maximum_subtraction.asm}               |   2 +-
 ...tiplication.asm => minimum_one_subtraction.asm} |   4 +-
 .../maximum_maximum_subtraction.asm                |   6 +-
 .../maximum_minimum_subtraction.asm                |   6 +-
 .../minimum_maximum_subtraction.asm                |   6 +-
 .../minimum_minimum_subtraction.asm                |   6 +-
 .../signed_wrapping/zero_maximum_subtraction.asm   |   6 +-
 .../signed_wrapping/zero_minimum_subtraction.asm   |   6 +-
 sample/asm/external/math.cpp                       |   5 +-
 sample/asm/external/throwing.cpp                   |   3 +-
 scripts/watch.sh                                   |   2 +-
 .../frontend/static_analyser/register_usage.cpp    |   5 +-
 src/assert.cpp                                     |   4 +-
 src/bytecode/decoder/operands.cpp                  |  19 +-
 src/cg/bytecode/instructions.cpp                   |  25 +++
 src/cg/disassembler/disassembler.cpp               |   5 +
 src/cg/tools.cpp                                   |  35 ++++
 src/front/asm/assemble_instruction.cpp             |  10 +
 src/kernel/kernel.cpp                              |  17 +-
 src/kernel/registerset.cpp                         |  47 ++---
 src/process.cpp                                    |  34 ++--
 src/process/dispatch.cpp                           |  12 +-
 src/process/instr/bits.cpp                         | 209 ++++++---------------
 src/process/instr/calls.cpp                        |  26 +--
 src/process/instr/cast.cpp                         |   5 +-
 src/process/instr/closure.cpp                      |   9 +-
 src/process/instr/concurrency.cpp                  |  17 +-
 src/process/instr/general.cpp                      |   3 +-
 src/process/instr/object.cpp                       |  10 +-
 src/process/instr/prototype.cpp                    |   5 +-
 src/process/instr/registers.cpp                    |   5 +-
 src/process/instr/tcmechanism.cpp                  |  11 +-
 src/process/instr/vector.cpp                       |   6 +-
 src/process/stack.cpp                              |   9 +-
 src/programinstructions.cpp                        |  25 +++
 src/scheduler/ffi/request.cpp                      |   7 +-
 src/stdlib/io.cpp                                  |   5 +-
 src/stdlib/os.cpp                                  |   2 +-
 src/stdlib/random.cpp                              |   7 +-
 src/stdlib/typesystem.cpp                          |   7 +-
 src/types/bits.cpp                                 | 177 +++++++++++++----
 src/types/integer.cpp                              |   3 +-
 src/types/object.cpp                               |   3 +-
 src/types/pointer.cpp                              |   5 +-
 src/types/string.cpp                               |   5 +-
 src/types/vector.cpp                               |  20 +-
 tests/tests.py                                     |  17 +-
 60 files changed, 568 insertions(+), 368 deletions(-)
 create mode 100644 
.issue/objects/issues/a7/a75839dcf865a05a62969b13a1a2a31c8d0c9940.json
 create mode 100644 
.issue/objects/issues/a7/a75839dcf865a05a62969b13a1a2a31c8d0c9940/diff/2a19df8afc7b2f38719a3a14b1943e8d7d61b401.json
 create mode 100644 
.issue/objects/issues/a7/a75839dcf865a05a62969b13a1a2a31c8d0c9940/diff/ec8730b658351b836294f1db82a44b593df63813.json
 create mode 100644 include/viua/util/exceptions.h
 copy 
sample/asm/bits/arithmetic/{signed_wrapping/maximum_maximum_multiplication.asm 
=> signed_checked/maximum_maximum_subtraction.asm} (93%)
 copy 
sample/asm/bits/arithmetic/signed_checked/{overflowing_minimum_minus_1_multiplication.asm
 => minimum_one_subtraction.asm} (89%)


hooks/post-receive
-- 
Viua VM



reply via email to

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