viuavm-commits
[Top][All Lists]
Advanced

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

[Viuavm-commits] [SCM] Viua VM branch issue/c2b71ff7/create-and-enforce-


From: git
Subject: [Viuavm-commits] [SCM] Viua VM branch issue/c2b71ff7/create-and-enforce-a-consistent-coding-style updated. v0.9.0-1594-g244e655
Date: Wed, 2 May 2018 22:20:31 +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, issue/c2b71ff7/create-and-enforce-a-consistent-coding-style has 
been updated
       via  244e6551621d7c4b8546695ba627e4295f91c07a (commit)
       via  5063ab781c8da25b8eaa79b705964242ad51ff4f (commit)
       via  23728eab2bd18cd7d19e53ebed80922073730825 (commit)
       via  7684bce445d9db9ef303c8af3296c4364be4271e (commit)
      from  75e52d9a4dc352a8daaec844f63036b9eb33d284 (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 244e6551621d7c4b8546695ba627e4295f91c07a
Author: Marek Marecki <address@hidden>
Date:   Tue May 1 22:11:06 2018 +0200

    More const on the right

commit 5063ab781c8da25b8eaa79b705964242ad51ff4f
Author: Marek Marecki <address@hidden>
Date:   Tue May 1 22:06:48 2018 +0200

    More auto and const

commit 23728eab2bd18cd7d19e53ebed80922073730825
Author: Marek Marecki <address@hidden>
Date:   Tue May 1 22:05:51 2018 +0200

    More auto

commit 7684bce445d9db9ef303c8af3296c4364be4271e
Author: Marek Marecki <address@hidden>
Date:   Tue May 1 22:04:29 2018 +0200

    Replace vector with std::vector

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

Summary of changes:
 include/viua/assembler/frontend/parser.h           |   2 +-
 include/viua/assembler/frontend/static_analyser.h  |  20 +--
 include/viua/assembler/util/pretty_printer.h       |  20 +--
 include/viua/assert.h                              |   8 +-
 include/viua/cg/assembler/assembler.h              |  50 ++++----
 include/viua/cg/bytecode/instructions.h            |  34 +++---
 include/viua/exceptions.h                          |   2 +-
 include/viua/front/asm.h                           |   6 +-
 include/viua/front/vm.h                            |   2 +-
 include/viua/kernel/catcher.h                      |   2 +-
 include/viua/kernel/kernel.h                       |  28 ++---
 include/viua/loader.h                              |   2 +-
 include/viua/pid.h                                 |   6 +-
 include/viua/process.h                             |   2 +-
 include/viua/program.h                             |  10 +-
 include/viua/scheduler/vps.h                       |  16 +--
 include/viua/types/atom.h                          |   2 +-
 include/viua/types/bits.h                          |  24 ++--
 include/viua/types/float.h                         |  20 +--
 include/viua/types/function.h                      |   2 +-
 include/viua/types/integer.h                       |  20 +--
 include/viua/types/number.h                        |  18 +--
 include/viua/types/object.h                        |  10 +-
 include/viua/types/struct.h                        |   4 +-
 include/viua/types/text.h                          |   8 +-
 src/assembler/frontend/parser.cpp                  |  10 +-
 .../frontend/static_analyser/Register.cpp          |   4 +-
 .../checkers/check_closure_instantiations.cpp      |   6 +-
 .../checkers/check_for_unused_registers.cpp        |   4 +-
 .../frontend/static_analyser/checkers/utils.cpp    |   2 +-
 .../frontend/static_analyser/register_usage.cpp    |  14 +--
 .../frontend/static_analyser/verifier.cpp          |  72 +++++------
 src/assembler/util/pretty_printer.cpp              |  36 +++---
 src/assert.cpp                                     |   2 +-
 src/cg/assembler/codeextract.cpp                   |  48 ++++----
 src/cg/assembler/operands.cpp                      |   6 +-
 src/cg/assembler/static_analysis.cpp               |  52 ++++----
 src/cg/assembler/utils.cpp                         |  36 +++---
 src/cg/assembler/verify.cpp                        |  16 +--
 src/cg/bytecode/instructions.cpp                   |  30 ++---
 src/cg/lex.cpp                                     |  18 +--
 src/cg/lex/cook.cpp                                |   4 +-
 src/cg/lex/reduce_fns.cpp                          | 134 ++++++++++-----------
 src/cg/tokenizer/tokenize.cpp                      |   4 +-
 src/cg/tools.cpp                                   |   2 +-
 src/front/asm.cpp                                  |  30 ++---
 src/front/asm/assemble_instruction.cpp             |   6 +-
 src/front/asm/decode.cpp                           |  14 +--
 src/front/asm/gather.cpp                           |   8 +-
 src/front/asm/generate.cpp                         |  92 +++++++-------
 src/front/dis.cpp                                  |  16 +--
 src/front/kernel.cpp                               |  10 +-
 src/front/lexer.cpp                                |  28 ++---
 src/front/parser.cpp                               |  24 ++--
 src/front/vm.cpp                                   |   4 +-
 src/kernel/kernel.cpp                              |  30 ++---
 src/loader.cpp                                     |  22 ++--
 src/pid.cpp                                        |   6 +-
 src/process.cpp                                    |   6 +-
 src/process/instr/arithmetic.cpp                   |   4 +-
 src/process/instr/cast.cpp                         |   4 +-
 src/process/instr/struct.cpp                       |   2 +-
 src/program.cpp                                    |  16 ++-
 src/programinstructions.cpp                        |   8 +-
 src/scheduler/ffi/scheduler.cpp                    |   2 +-
 src/scheduler/vps.cpp                              |  22 ++--
 src/support/string.cpp                             |   2 -
 src/types/bits.cpp                                 |   2 +-
 src/types/float.cpp                                |  18 +--
 src/types/function.cpp                             |   2 +-
 src/types/integer.cpp                              |  18 +--
 src/types/object.cpp                               |  12 +-
 src/types/string.cpp                               |   6 +-
 src/types/struct.cpp                               |  14 +--
 src/types/text.cpp                                 |  14 +--
 src/types/vector.cpp                               |   2 +-
 76 files changed, 628 insertions(+), 634 deletions(-)


hooks/post-receive
-- 
Viua VM



reply via email to

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