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-180-gb3191de


From: git
Subject: [Viuavm-commits] [SCM] Viua VM branch devel updated. v0.8.4-180-gb3191de
Date: Fri, 16 Sep 2016 02:47:12 +0200 (CEST)

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  b3191de90c26d79f5378d78aeaa35f5a671b93aa (commit)
      from  3e6edb1580d91d3ecb2d48ed1d486a8cfcd4142f (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 b3191de90c26d79f5378d78aeaa35f5a671b93aa
Author: Marek Marecki <address@hidden>
Date:   Fri Sep 16 02:25:30 2016 +0200

    Rename CPU to Kernel, a name that better pictures its responsibilities

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

Summary of changes:
 Makefile                                    |  38 ++---
 README.markdown                             |  12 +-
 build/{cpu => kernel}/.gitkeep              |   0
 build/{cpu => kernel}/ffi/.gitkeep          |   0
 include/module.h                            |   4 +-
 include/viua/assert.h                       |   2 +-
 include/viua/front/vm.h                     |   8 +-
 include/viua/include/module.h               |  12 +-
 include/viua/{cpu => kernel}/catcher.h      |   0
 include/viua/{cpu => kernel}/frame.h        |   2 +-
 include/viua/{cpu/cpu.h => kernel/kernel.h} |  34 ++---
 include/viua/{cpu => kernel}/opex.h         |   2 +-
 include/viua/{cpu => kernel}/registerset.h  |   0
 include/viua/{cpu => kernel}/tryframe.h     |   4 +-
 include/viua/operand.h                      |   2 +-
 include/viua/printutils.h                   |   2 +-
 include/viua/process.h                      |   6 +-
 include/viua/scheduler/vps.h                |  14 +-
 include/viua/types/closure.h                |   2 +-
 include/viua/types/function.h               |   2 +-
 include/viua/types/object.h                 |   4 +-
 include/viua/types/pointer.h                |   6 +-
 include/viua/types/process.h                |  20 +--
 include/viua/types/string.h                 |  24 ++--
 sample/asm/external/World.cpp               |   6 +-
 sample/asm/external/math.cpp                |   6 +-
 sample/asm/external/printer.cpp             |   6 +-
 sample/asm/external/sleeper.cpp             |   6 +-
 sample/asm/external/throwing.cpp            |   6 +-
 src/cg/assembler/codeextract.cpp            |   2 +-
 src/cg/bytecode/instructions.cpp            |   2 +-
 src/front/asm/generate.cpp                  |   2 +-
 src/front/{cpu.cpp => kernel.cpp}           |  24 ++--
 src/front/vm.cpp                            |  60 ++++----
 src/front/wdb.cpp                           | 206 ++++++++++++++--------------
 src/{cpu => kernel}/ffi/request.cpp         |   4 +-
 src/{cpu => kernel}/ffi/scheduler.cpp       |   2 +-
 src/{cpu => kernel}/frame.cpp               |   2 +-
 src/{cpu/cpu.cpp => kernel/kernel.cpp}      | 102 +++++++-------
 src/{cpu => kernel}/opex.cpp                |   6 +-
 src/{cpu => kernel}/registerset.cpp         |   2 +-
 src/operand.cpp                             |   4 +-
 src/process.cpp                             |   2 +-
 src/process/dispatch.cpp                    |   2 +-
 src/process/instr/bool.cpp                  |   4 +-
 src/process/instr/byte.cpp                  |   4 +-
 src/process/instr/calls.cpp                 |   6 +-
 src/process/instr/cast.cpp                  |   4 +-
 src/process/instr/closure.cpp               |   8 +-
 src/process/instr/concurrency.cpp           |   4 +-
 src/process/instr/float.cpp                 |   8 +-
 src/process/instr/general.cpp               |   8 +-
 src/process/instr/int.cpp                   |   4 +-
 src/process/instr/linking.cpp               |   4 +-
 src/process/instr/object.cpp                |   8 +-
 src/process/instr/prototype.cpp             |   6 +-
 src/process/instr/registers.cpp             |   6 +-
 src/process/instr/str.cpp                   |   4 +-
 src/process/instr/tcmechanism.cpp           |   4 +-
 src/process/instr/vector.cpp                |  10 +-
 src/program.cpp                             |   2 +-
 src/scheduler/vps.cpp                       |  70 +++++-----
 src/stdlib/io.cpp                           |   8 +-
 src/stdlib/kitchensink.cpp                  |   6 +-
 src/stdlib/os.cpp                           |   4 +-
 src/stdlib/random.cpp                       |  12 +-
 src/stdlib/string.cpp                       |   4 +-
 src/stdlib/typesystem.cpp                   |  10 +-
 src/types/object.cpp                        |   2 +-
 src/types/pointer.cpp                       |   2 +-
 src/types/process.cpp                       |  16 +--
 src/types/string.cpp                        |  18 +--
 tests/tests.py                              |   2 +-
 73 files changed, 455 insertions(+), 445 deletions(-)
 rename build/{cpu => kernel}/.gitkeep (100%)
 rename build/{cpu => kernel}/ffi/.gitkeep (100%)
 rename include/viua/{cpu => kernel}/catcher.h (100%)
 rename include/viua/{cpu => kernel}/frame.h (98%)
 rename include/viua/{cpu/cpu.h => kernel/kernel.h} (88%)
 rename include/viua/{cpu => kernel}/opex.h (98%)
 rename include/viua/{cpu => kernel}/registerset.h (100%)
 rename include/viua/{cpu => kernel}/tryframe.h (95%)
 rename src/front/{cpu.cpp => kernel.cpp} (87%)
 rename src/{cpu => kernel}/ffi/request.cpp (98%)
 rename src/{cpu => kernel}/ffi/scheduler.cpp (98%)
 rename src/{cpu => kernel}/frame.cpp (96%)
 rename src/{cpu/cpu.cpp => kernel/kernel.cpp} (79%)
 rename src/{cpu => kernel}/opex.cpp (85%)
 rename src/{cpu => kernel}/registerset.cpp (99%)


hooks/post-receive
-- 
Viua VM



reply via email to

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