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-1618-g1f2663e
Date: Mon, 21 May 2018 21:03:19 +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  1f2663e456a1372a1d82a2b30dab0fd7d7ad4562 (commit)
       via  eb030573bc2448e715dbdf37b1ffeeae21cd0189 (commit)
       via  99e66d2a15482fb253258e0c64170f8352083f61 (commit)
       via  9f4bb9fb5eca0a33d2bdef3896762fa60de057e1 (commit)
       via  d2ad8a2ccf039e65b726d42791ec18313ba22105 (commit)
       via  8bf7392ce3ada093410ced27800e9ac806a3a9ea (commit)
       via  5b75fe2d41b73b767928e37b1a223444d08ac4dd (commit)
       via  ec9f879c5f57f26775a64d6ee8cefcf0c3a175a6 (commit)
       via  dc0e119db85b78eafb0d444bdcda9e1d4c452a64 (commit)
       via  b36912cc74ab360498142bd3b8122c87d84f6a4e (commit)
       via  3a3ea22ec26e5a56b43139640c60b6e2ca544c31 (commit)
       via  e1e72c81172e2ebdc695ad34cc2ec140b20dc125 (commit)
       via  6900ce71d61b99a0aa90862163bdc63f764feb14 (commit)
       via  2a0769c488e258ccaaa4f16fa62d7767d28ed7e8 (commit)
       via  e2b58698230b9c8d7421c5f28898980bce234a5b (commit)
       via  94d7d41ed40358aeac189dd2975aacb290bb5dcd (commit)
      from  b784bd24b07ca28d2e553f4c3852d91bddb8a756 (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:
 .../ac04c6c0ec11b76139cf229a73a020c6ae37e631.json  |   1 +
 Makefile                                           | 109 ++++++++++-
 include/viua/assembler/backend/op_assemblers.h     |   2 +-
 include/viua/assembler/frontend/parser.h           |  14 +-
 include/viua/assembler/util/pretty_printer.h       |  12 +-
 include/viua/bytecode/decoder/operands.h           |   8 +-
 include/viua/cg/assembler/assembler.h              |  44 ++---
 include/viua/cg/tools.h                            |  11 --
 include/viua/exceptions.h                          |   4 +-
 include/viua/front/asm.h                           |  38 ++--
 include/viua/process.h                             |  10 +-
 include/viua/program.h                             |   2 +-
 include/viua/scheduler/vps.h                       |   6 +-
 include/viua/support/pointer.h                     |   4 +-
 include/viua/support/string.h                      |  14 +-
 include/viua/types/atom.h                          |   4 +-
 include/viua/types/bits.h                          |   6 +-
 include/viua/types/boolean.h                       |   2 +-
 include/viua/types/closure.h                       |   3 +-
 include/viua/types/exception.h                     |   2 +-
 include/viua/types/float.h                         |   2 +-
 include/viua/types/function.h                      |   2 +-
 include/viua/types/integer.h                       |   2 +-
 include/viua/types/number.h                        |   2 +-
 include/viua/types/object.h                        |   2 +-
 include/viua/types/process.h                       |   2 +-
 include/viua/types/reference.h                     |   2 +-
 include/viua/types/string.h                        |   2 +-
 include/viua/types/struct.h                        |   2 +-
 include/viua/types/text.h                          |   2 +-
 include/viua/types/vector.h                        |   2 +-
 sample/asm/external/throwing.cpp                   |   2 +-
 src/assembler/frontend/parser.cpp                  |  12 +-
 .../frontend/static_analyser/verifier.cpp          |   6 +-
 src/assembler/util/pretty_printer.cpp              |  12 +-
 src/cg/assembler/binary_literals.cpp               |   4 +-
 src/cg/assembler/codeextract.cpp                   |   2 +-
 src/cg/assembler/static_analysis.cpp               |  18 +-
 src/cg/assembler/verify.cpp                        |  16 +-
 src/cg/bytecode/instructions.cpp                   |   2 +-
 src/cg/lex/cook.cpp                                |   2 +-
 src/cg/lex/reduce_fns.cpp                          |  14 +-
 src/front/asm.cpp                                  |  13 +-
 src/front/asm/assemble_instruction.cpp             |   7 +-
 src/front/asm/decode.cpp                           |   2 +
 src/front/asm/gather.cpp                           |  38 ++--
 src/front/asm/generate.cpp                         | 217 +++++++++++----------
 src/front/dis.cpp                                  |  12 +-
 src/front/kernel.cpp                               |   4 +-
 src/front/lexer.cpp                                |   6 +-
 src/front/parser.cpp                               |   2 +-
 src/front/vm.cpp                                   |   4 +-
 src/process.cpp                                    |   2 +-
 src/process/stack.cpp                              |   6 +-
 src/programinstructions.cpp                        |   2 +-
 src/scheduler/vps.cpp                              |   4 +-
 src/support/string.cpp                             |   4 +-
 src/types/bits.cpp                                 |   8 +-
 src/types/boolean.cpp                              |   2 +-
 src/types/closure.cpp                              |   5 +-
 src/types/exception.cpp                            |   2 +-
 src/types/float.cpp                                |   2 +-
 src/types/function.cpp                             |   2 +-
 src/types/integer.cpp                              |   2 +-
 src/types/number.cpp                               |   2 +-
 src/types/object.cpp                               |   2 +-
 src/types/pointer.cpp                              |   2 +-
 src/types/process.cpp                              |   2 +-
 src/types/reference.cpp                            |   2 +-
 src/types/string.cpp                               |   2 +-
 src/types/struct.cpp                               |   2 +-
 src/types/text.cpp                                 |   2 +-
 src/types/vector.cpp                               |   2 +-
 73 files changed, 444 insertions(+), 328 deletions(-)
 create mode 100644 
.issue/objects/issues/63/6329ca0111205fed50af0a51f9f39ff348007109/diff/ac04c6c0ec11b76139cf229a73a020c6ae37e631.json


hooks/post-receive
-- 
Viua VM



reply via email to

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