First commit
authorBenjamin Segovia <segovia.benjamin@gmail.com>
Thu, 9 Aug 2012 23:23:09 +0000 (16:23 -0700)
committerKeith Packard <keithp@keithp.com>
Fri, 10 Aug 2012 23:14:13 +0000 (16:14 -0700)
commit27d817aabaedebd2b2601d65e34c3ad1364e6101
treeed940ca8fbefd97357cc26e9a5c12f293428ee61
First commit

 - Added commom system files
 - Added empty files for the IR we are going to use for GEN
54 files changed:
COPYING [new file with mode: 0644]
backend/CMakeLists.txt [new file with mode: 0644]
backend/src/CMakeLists.txt [new file with mode: 0644]
backend/src/ir/function.cpp [new file with mode: 0644]
backend/src/ir/function.hpp [new file with mode: 0644]
backend/src/ir/instruction.cpp [new file with mode: 0644]
backend/src/ir/instruction.hpp [new file with mode: 0644]
backend/src/ir/register.cpp [new file with mode: 0644]
backend/src/ir/register.hpp [new file with mode: 0644]
backend/src/ir/scope.cpp [new file with mode: 0644]
backend/src/ir/scope.hpp [new file with mode: 0644]
backend/src/ir/unit.cpp [new file with mode: 0644]
backend/src/ir/unit.hpp [new file with mode: 0644]
backend/src/sys/alloc.cpp [new file with mode: 0644]
backend/src/sys/alloc.hpp [new file with mode: 0644]
backend/src/sys/array.hpp [new file with mode: 0644]
backend/src/sys/atomic.hpp [new file with mode: 0644]
backend/src/sys/barrier.hpp [new file with mode: 0644]
backend/src/sys/condition.cpp [new file with mode: 0644]
backend/src/sys/condition.hpp [new file with mode: 0644]
backend/src/sys/constants.hpp [new file with mode: 0644]
backend/src/sys/default_path.cpp [new file with mode: 0644]
backend/src/sys/default_path.hpp [new file with mode: 0644]
backend/src/sys/filename.cpp [new file with mode: 0644]
backend/src/sys/filename.hpp [new file with mode: 0644]
backend/src/sys/fixed_array.hpp [new file with mode: 0644]
backend/src/sys/hash_map.hpp [new file with mode: 0644]
backend/src/sys/intrinsics.hpp [new file with mode: 0644]
backend/src/sys/library.cpp [new file with mode: 0644]
backend/src/sys/library.hpp [new file with mode: 0644]
backend/src/sys/list.hpp [new file with mode: 0644]
backend/src/sys/logging.cpp [new file with mode: 0644]
backend/src/sys/logging.hpp [new file with mode: 0644]
backend/src/sys/map.hpp [new file with mode: 0644]
backend/src/sys/mutex.cpp [new file with mode: 0644]
backend/src/sys/mutex.hpp [new file with mode: 0644]
backend/src/sys/platform.cpp [new file with mode: 0644]
backend/src/sys/platform.hpp [new file with mode: 0644]
backend/src/sys/ref.hpp [new file with mode: 0644]
backend/src/sys/set.hpp [new file with mode: 0644]
backend/src/sys/string.cpp [new file with mode: 0644]
backend/src/sys/string.hpp [new file with mode: 0644]
backend/src/sys/sysinfo.cpp [new file with mode: 0644]
backend/src/sys/sysinfo.hpp [new file with mode: 0644]
backend/src/sys/thread.cpp [new file with mode: 0644]
backend/src/sys/thread.hpp [new file with mode: 0644]
backend/src/sys/vector.hpp [new file with mode: 0644]
backend/src/utest/utest.cpp [new file with mode: 0644]
backend/src/utest/utest.hpp [new file with mode: 0644]
backend/src/utest/utest_console.cpp [new file with mode: 0644]
backend/src/utest/utest_font.cpp [new file with mode: 0644]
backend/src/utest/utest_lua.cpp [new file with mode: 0644]
backend/src/utest/utest_rt.cpp [new file with mode: 0644]
backend/src/utest/utest_tasking.cpp [new file with mode: 0644]