From 27474060e1287a67c45cd790d29b9095b35b2bdf Mon Sep 17 00:00:00 2001
From: ShizZy
Date: Thu, 29 Aug 2013 23:35:09 -0400
Subject: adding initial project layout
---
src/common/CMakeLists.txt | 11 +
src/common/common.vcxproj | 188 ++++++++++++
src/common/common.vcxproj.filters | 35 +++
src/common/src/atomic.h | 36 +++
src/common/src/atomic_gcc.h | 72 +++++
src/common/src/atomic_win32.h | 76 +++++
src/common/src/common.h | 246 ++++++++++++++++
src/common/src/config.cpp | 118 ++++++++
src/common/src/config.h | 345 ++++++++++++++++++++++
src/common/src/crc.cpp | 86 ++++++
src/common/src/crc.h | 81 ++++++
src/common/src/file_utils.cpp | 451 +++++++++++++++++++++++++++++
src/common/src/file_utils.h | 90 ++++++
src/common/src/hash.cpp | 241 ++++++++++++++++
src/common/src/hash.h | 46 +++
src/common/src/hash_container.h | 116 ++++++++
src/common/src/log.cpp | 152 ++++++++++
src/common/src/log.h | 216 ++++++++++++++
src/common/src/misc_utils.cpp | 91 ++++++
src/common/src/misc_utils.h | 58 ++++
src/common/src/platform.h | 135 +++++++++
src/common/src/std_condition_variable.h | 152 ++++++++++
src/common/src/std_mutex.h | 354 +++++++++++++++++++++++
src/common/src/std_thread.h | 309 ++++++++++++++++++++
src/common/src/timer.cpp | 46 +++
src/common/src/timer.h | 51 ++++
src/common/src/types.h | 119 ++++++++
src/common/src/x86_utils.cpp | 236 ++++++++++++++++
src/common/src/x86_utils.h | 92 ++++++
src/common/src/xml.cpp | 487 ++++++++++++++++++++++++++++++++
src/common/src/xml.h | 41 +++
31 files changed, 4777 insertions(+)
create mode 100644 src/common/CMakeLists.txt
create mode 100644 src/common/common.vcxproj
create mode 100644 src/common/common.vcxproj.filters
create mode 100644 src/common/src/atomic.h
create mode 100644 src/common/src/atomic_gcc.h
create mode 100644 src/common/src/atomic_win32.h
create mode 100644 src/common/src/common.h
create mode 100644 src/common/src/config.cpp
create mode 100644 src/common/src/config.h
create mode 100644 src/common/src/crc.cpp
create mode 100644 src/common/src/crc.h
create mode 100644 src/common/src/file_utils.cpp
create mode 100644 src/common/src/file_utils.h
create mode 100644 src/common/src/hash.cpp
create mode 100644 src/common/src/hash.h
create mode 100644 src/common/src/hash_container.h
create mode 100644 src/common/src/log.cpp
create mode 100644 src/common/src/log.h
create mode 100644 src/common/src/misc_utils.cpp
create mode 100644 src/common/src/misc_utils.h
create mode 100644 src/common/src/platform.h
create mode 100644 src/common/src/std_condition_variable.h
create mode 100644 src/common/src/std_mutex.h
create mode 100644 src/common/src/std_thread.h
create mode 100644 src/common/src/timer.cpp
create mode 100644 src/common/src/timer.h
create mode 100644 src/common/src/types.h
create mode 100644 src/common/src/x86_utils.cpp
create mode 100644 src/common/src/x86_utils.h
create mode 100644 src/common/src/xml.cpp
create mode 100644 src/common/src/xml.h
(limited to 'src/common')
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
new file mode 100644
index 000000000..ace0c409d
--- /dev/null
+++ b/src/common/CMakeLists.txt
@@ -0,0 +1,11 @@
+set(SRCS src/config.cpp
+ src/crc.cpp
+ src/file_utils.cpp
+ src/hash.cpp
+ src/log.cpp
+ src/misc_utils.cpp
+ src/timer.cpp
+ src/x86_utils.cpp
+ src/xml.cpp)
+
+add_library(common STATIC ${SRCS})
diff --git a/src/common/common.vcxproj b/src/common/common.vcxproj
new file mode 100644
index 000000000..c61ba6d9d
--- /dev/null
+++ b/src/common/common.vcxproj
@@ -0,0 +1,188 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Debug
+ x64
+
+
+ Release
+ Win32
+
+
+ Release
+ x64
+
+
+
+ {DFE335FC-755D-4BAA-8452-94434F8A1EDB}
+ common
+
+
+
+ true
+ StaticLibrary
+
+
+ StaticLibrary
+ true
+
+
+ StaticLibrary
+ false
+
+
+ StaticLibrary
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/common/common.vcxproj.filters b/src/common/common.vcxproj.filters
new file mode 100644
index 000000000..9d2b5c513
--- /dev/null
+++ b/src/common/common.vcxproj.filters
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/common/src/atomic.h b/src/common/src/atomic.h
new file mode 100644
index 000000000..a6a03fee3
--- /dev/null
+++ b/src/common/src/atomic.h
@@ -0,0 +1,36 @@
+/**
+ * Copyright (C) 2005-2012 Gekko Emulator
+ *
+ * @file atomic.h
+ * @author ShizZy
+ * @date 2012-02-11
+ * @brief Cross-platform atomic operations
+ *
+ * @section LICENSE
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details at
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * Official project repository can be found at:
+ * http://code.google.com/p/gekko-gc-emu/
+ */
+
+#ifndef COMMON_ATOMIC_H_
+#define COMMON_ATOMIC_H_
+
+#include "platform.h"
+
+#ifdef _WIN32
+#include "atomic_win32.h"
+#else
+#include "atomic_gcc.h"
+#endif
+
+#endif // COMMON_ATOMIC_H_
\ No newline at end of file
diff --git a/src/common/src/atomic_gcc.h b/src/common/src/atomic_gcc.h
new file mode 100644
index 000000000..660926561
--- /dev/null
+++ b/src/common/src/atomic_gcc.h
@@ -0,0 +1,72 @@
+/**
+ * Copyright (C) 2005-2012 Gekko Emulator
+ *
+ * @file atomic_gcc.h
+ * @author ShizZy
+ * @date 2012-06-28
+ * @brief Cross-platform atomic operations - GCC
+ *
+ * @section LICENSE
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details at
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * Official project repository can be found at:
+ * http://code.google.com/p/gekko-gc-emu/
+ */
+
+#ifndef COMMON_ATOMIC_GCC_H_
+#define COMMON_ATOMIC_GCC_H_
+
+#include "types.h"
+
+namespace common {
+
+inline void AtomicAdd(volatile u32& target, u32 value) {
+ __sync_add_and_fetch(&target, value);
+}
+
+inline void AtomicAnd(volatile u32& target, u32 value) {
+ __sync_and_and_fetch(&target, value);
+}
+
+inline void AtomicDecrement(volatile u32& target) {
+ __sync_add_and_fetch(&target, -1);
+}
+
+inline void AtomicIncrement(volatile u32& target) {
+ __sync_add_and_fetch(&target, 1);
+}
+
+inline u32 AtomicLoad(volatile u32& src) {
+ return src;
+}
+
+inline u32 AtomicLoadAcquire(volatile u32& src) {
+ u32 result = src;
+ __asm__ __volatile__ ( "":::"memory" );
+ return result;
+}
+
+inline void AtomicOr(volatile u32& target, u32 value) {
+ __sync_or_and_fetch(&target, value);
+}
+
+inline void AtomicStore(volatile u32& dest, u32 value) {
+ dest = value;
+}
+
+inline void AtomicStoreRelease(volatile u32& dest, u32 value) {
+ __sync_lock_test_and_set(&dest, value);
+}
+
+} // namespace
+
+#endif // COMMON_ATOMIC_GCC_H_
\ No newline at end of file
diff --git a/src/common/src/atomic_win32.h b/src/common/src/atomic_win32.h
new file mode 100644
index 000000000..9dc4506cd
--- /dev/null
+++ b/src/common/src/atomic_win32.h
@@ -0,0 +1,76 @@
+/**
+ * Copyright (C) 2005-2012 Gekko Emulator
+ *
+ * @file atomic_win32.h
+ * @author ShizZy
+ * @date 2012-06-28
+ * @brief Cross-platform atomic operations - Windows/Visual C++
+ * @remark Taken from Dolphin Emulator (http://code.google.com/p/dolphin-emu/)
+ *
+ * @section LICENSE
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details at
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * Official project repository can be found at:
+ * http://code.google.com/p/gekko-gc-emu/
+ */
+
+#ifndef COMMON_ATOMIC_WIN32_H_
+#define COMMON_ATOMIC_WIN32_H_
+
+#include "types.h"
+
+#include
+#include
+
+namespace common {
+
+inline void AtomicAdd(volatile u32& target, u32 value) {
+ InterlockedExchangeAdd((volatile LONG*)&target, (LONG)value);
+}
+
+inline void AtomicAnd(volatile u32& target, u32 value) {
+ _InterlockedAnd((volatile LONG*)&target, (LONG)value);
+}
+
+inline void AtomicIncrement(volatile u32& target) {
+ InterlockedIncrement((volatile LONG*)&target);
+}
+
+inline void AtomicDecrement(volatile u32& target) {
+ InterlockedDecrement((volatile LONG*)&target);
+}
+
+inline u32 AtomicLoad(volatile u32& src) {
+ return src;
+}
+
+inline u32 AtomicLoadAcquire(volatile u32& src) {
+ u32 result = src;
+ _ReadBarrier();
+ return result;
+}
+
+inline void AtomicOr(volatile u32& target, u32 value) {
+ _InterlockedOr((volatile LONG*)&target, (LONG)value);
+}
+
+inline void AtomicStore(volatile u32& dest, u32 value) {
+ dest = value;
+}
+inline void AtomicStoreRelease(volatile u32& dest, u32 value) {
+ _WriteBarrier();
+ dest = value;
+}
+
+} // namespace
+
+#endif // COMMON_ATOMIC_WIN32_H_
\ No newline at end of file
diff --git a/src/common/src/common.h b/src/common/src/common.h
new file mode 100644
index 000000000..f12cd461d
--- /dev/null
+++ b/src/common/src/common.h
@@ -0,0 +1,246 @@
+/*!
+ * Copyright (C) 2005-2012 Gekko Emulator
+ *
+ * \file common.h
+ * \author ShizZy
+ * \date 2012-02-04
+ * \brief Common header for using the common library
+ *
+ * \section LICENSE
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details at
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * Official project repository can be found at:
+ * http://code.google.com/p/gekko-gc-emu/
+ */
+
+#ifndef COMMON_COMMON_H_
+#define COMMON_COMMON_H_
+
+#include "platform.h"
+
+////////////////////////////////////////////////////////////////////////////////
+// Preprocessor stuff
+
+#define GEKKO_QUOTE_INPLACE(x) # x
+#define GEKKO_QUOTE(x) GEKKO_QUOTE_INPLACE(x)
+#define __FILE__LINE__ __FILE__ "(" GEKKO_QUOTE(__LINE__) ") : "
+#define GEKKO_TODO(x) __FILE__LINE__ x "\n"
+
+#if EMU_PLATFORM == PLATFORM_WINDOWS
+
+// All inline assembly is x86 right now!
+#ifdef EMU_ARCHITECTURE_X86
+#define USE_INLINE_ASM_X86
+#endif // EMU_ARCHITECTURE_X86
+
+#pragma warning( disable : 4786 ) //disable the truncated 255 character limit warning for debug identifiers
+
+#ifdef LEAK_DETECT
+#define _CRTDBG_MAP_ALLOC
+#define _INC_MALLOC
+#include
+#include
+#endif // LEAK_DETECT
+
+#define TODO( x ) message( __FILE__LINE__" TODO : " #x "\n" )
+#define todo( x ) message( __FILE__LINE__" TODO : " #x "\n" )
+
+#endif // PLATFORM_WINDOWS
+
+#define E_OK 0
+#define E_ERR 1
+
+////////////////////////////////////////////////////////////////////////////////
+// Includes
+#include
+
+////////////////////////////////////////////////////////////////////////////////
+// C Includes
+#include
+#include
+#include
+#include
+#include
+#include
+
+////////////////////////////////////////////////////////////////////////////////
+// C++ Includes
+#include
+#include
+#include
+#include