From 69f7d1bd745ed5680b9bc4e3cfdd882ff2a5ad26 Mon Sep 17 00:00:00 2001 From: chai Date: Wed, 27 Mar 2019 22:18:14 +0800 Subject: +threading --- build/libs/asura-lib-core/asura-lib-core.vcxproj | 14 ++ .../asura-lib-core/asura-lib-core.vcxproj.filters | 45 +++++ .../asura-lib-network/asura-lib-network.vcxproj | 122 ++++++++++++ .../asura-lib-network.vcxproj.filters | 2 + .../asura-lib-network.vcxproj.user | 4 + build/libs/asura-lib-utils/asura-lib-utils.vcxproj | 5 + .../asura-lib-utils.vcxproj.filters | 18 ++ .../x64/Debug/_compressor.nativecodeanalysis.xml | 2 + .../x64/Debug/_coroutine.nativecodeanalysis.xml | 2 + .../x64/Debug/_data_buffer.nativecodeanalysis.xml | 2 + .../x64/Debug/_file.nativecodeanalysis.xml | 2 + .../x64/Debug/_file_data.nativecodeanalysis.xml | 2 + .../x64/Debug/_file_system.nativecodeanalysis.xml | 59 ++++++ .../x64/Debug/_thread.nativecodeanalysis.xml | 31 +++ .../x64/Debug/compressor.nativecodeanalysis.xml | 2 + .../x64/Debug/coroutine.nativecodeanalysis.xml | 2 + .../x64/Debug/curve.nativecodeanalysis.xml | 2 + .../x64/Debug/data_buffer.nativecodeanalysis.xml | 45 +++++ .../x64/Debug/decoded_data.nativecodeanalysis.xml | 2 + .../x64/Debug/exception.nativecodeanalysis.xml | 17 ++ .../x64/Debug/file.nativecodeanalysis.xml | 17 ++ .../x64/Debug/file_data.nativecodeanalysis.xml | 17 ++ .../x64/Debug/file_system.nativecodeanalysis.xml | 17 ++ .../x64/Debug/functions.nativecodeanalysis.xml | 2 + .../x64/Debug/io_task.nativecodeanalysis.xml | 2 + .../x64/Debug/matrix44.nativecodeanalysis.xml | 2 + .../x64/Debug/mutex.nativecodeanalysis.xml | 45 +++++ .../x64/Debug/ranged_value.nativecodeanalysis.xml | 2 + .../x64/Debug/stringmap.nativecodeanalysis.xml | 2 + .../x64/Debug/thread.nativecodeanalysis.xml | 73 +++++++ .../Debug/thread_impl_posix.nativecodeanalysis.xml | 2 + .../Debug/thread_impl_sdl.nativecodeanalysis.xml | 2 + .../Debug/thread_impl_std.nativecodeanalysis.xml | 2 + .../Debug/thread_impl_win32.nativecodeanalysis.xml | 73 +++++++ .../x64/Debug/thread_task.nativecodeanalysis.xml | 2 + .../x64/Debug/transform.nativecodeanalysis.xml | 2 + .../x64/Debug/utils_module.nativecodeanalysis.xml | 31 +++ .../x64/Debug/vc.nativecodeanalysis.all.xml | 209 +++++++++++++++++++++ 38 files changed, 882 insertions(+) create mode 100644 build/libs/asura-lib-network/asura-lib-network.vcxproj create mode 100644 build/libs/asura-lib-network/asura-lib-network.vcxproj.filters create mode 100644 build/libs/asura-lib-network/asura-lib-network.vcxproj.user create mode 100644 build/libs/asura-lib-utils/x64/Debug/_compressor.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/_coroutine.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/_data_buffer.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/_file.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/_file_data.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/_file_system.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/_thread.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/compressor.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/coroutine.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/curve.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/data_buffer.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/decoded_data.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/exception.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/file.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/file_data.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/file_system.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/functions.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/io_task.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/matrix44.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/mutex.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/ranged_value.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/stringmap.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/thread.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/thread_impl_posix.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/thread_impl_sdl.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/thread_impl_std.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/thread_impl_win32.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/thread_task.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/transform.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/utils_module.nativecodeanalysis.xml create mode 100644 build/libs/asura-lib-utils/x64/Debug/vc.nativecodeanalysis.all.xml (limited to 'build/libs') diff --git a/build/libs/asura-lib-core/asura-lib-core.vcxproj b/build/libs/asura-lib-core/asura-lib-core.vcxproj index d69e2f0..5530000 100644 --- a/build/libs/asura-lib-core/asura-lib-core.vcxproj +++ b/build/libs/asura-lib-core/asura-lib-core.vcxproj @@ -122,6 +122,16 @@ + + + + + + + + + + @@ -141,6 +151,8 @@ + + @@ -182,6 +194,8 @@ + + diff --git a/build/libs/asura-lib-core/asura-lib-core.vcxproj.filters b/build/libs/asura-lib-core/asura-lib-core.vcxproj.filters index 68b3ddc..a118d6a 100644 --- a/build/libs/asura-lib-core/asura-lib-core.vcxproj.filters +++ b/build/libs/asura-lib-core/asura-lib-core.vcxproj.filters @@ -16,6 +16,9 @@ {81dedac2-8d27-4c19-bf40-1503f0dbad1b} + + {4f6b2c19-1a06-48c9-b89d-52fa27bec5c1} + @@ -110,6 +113,42 @@ graphics + + graphics + + + graphics + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + + + graphics\binding + @@ -233,6 +272,12 @@ graphics + + graphics + + + graphics + diff --git a/build/libs/asura-lib-network/asura-lib-network.vcxproj b/build/libs/asura-lib-network/asura-lib-network.vcxproj new file mode 100644 index 0000000..74dd2ae --- /dev/null +++ b/build/libs/asura-lib-network/asura-lib-network.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {6361701E-BD43-4AE9-8AE2-5C8F87D436BA} + asuralibnetwork + 10.0.17134.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\libs;%(AdditionalIncludeDirectories) + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + $(SolutionDir)..\source\3rd-party;$(SolutionDir)..\source\libs;%(AdditionalIncludeDirectories) + + + true + true + + + + + + \ No newline at end of file diff --git a/build/libs/asura-lib-network/asura-lib-network.vcxproj.filters b/build/libs/asura-lib-network/asura-lib-network.vcxproj.filters new file mode 100644 index 0000000..9cd8510 --- /dev/null +++ b/build/libs/asura-lib-network/asura-lib-network.vcxproj.filters @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-network/asura-lib-network.vcxproj.user b/build/libs/asura-lib-network/asura-lib-network.vcxproj.user new file mode 100644 index 0000000..be25078 --- /dev/null +++ b/build/libs/asura-lib-network/asura-lib-network.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/asura-lib-utils.vcxproj b/build/libs/asura-lib-utils/asura-lib-utils.vcxproj index 2a97e55..54bd60a 100644 --- a/build/libs/asura-lib-utils/asura-lib-utils.vcxproj +++ b/build/libs/asura-lib-utils/asura-lib-utils.vcxproj @@ -128,6 +128,7 @@ + @@ -138,9 +139,12 @@ + + + @@ -165,6 +169,7 @@ + diff --git a/build/libs/asura-lib-utils/asura-lib-utils.vcxproj.filters b/build/libs/asura-lib-utils/asura-lib-utils.vcxproj.filters index 50d0746..ec034b9 100644 --- a/build/libs/asura-lib-utils/asura-lib-utils.vcxproj.filters +++ b/build/libs/asura-lib-utils/asura-lib-utils.vcxproj.filters @@ -19,6 +19,9 @@ {d617f453-4cd1-451b-801d-2f88d0072303} + + {e63982e2-a2ca-4aa2-be11-f98659586c1f} + @@ -101,6 +104,18 @@ threading + + threading\binding + + + threading\binding + + + io\binding + + + math + @@ -192,6 +207,9 @@ threading + + math + diff --git a/build/libs/asura-lib-utils/x64/Debug/_compressor.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/_compressor.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/_compressor.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/_coroutine.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/_coroutine.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/_coroutine.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/_data_buffer.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/_data_buffer.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/_data_buffer.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/_file.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/_file.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/_file.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/_file_data.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/_file_data.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/_file_data.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/_file_system.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/_file_system.nativecodeanalysis.xml new file mode 100644 index 0000000..7afbf43 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/_file_system.nativecodeanalysis.xml @@ -0,0 +1,59 @@ + + + + + d:\asura\source\libs\asura-lib-utils\io\ + file_system.h + 105 + 2 + + 26495 + Variable 'AsuraEngine::IO::Filesystem::mInited' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::IO::Filesystem::{ctor} + ??0Filesystem@IO@AsuraEngine@@QEAA@XZ + 105 + + + + + d:\asura\source\libs\asura-lib-utils\ + singleton.hpp + 33 + 2 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Singleton<AsuraEngine::IO::Filesystem>::{ctor} + ??0?$Singleton@VFilesystem@IO@AsuraEngine@@@AsuraEngine@@IEAA@XZ + 33 + + + + + d:\asura\source\3rd-party\luax\ + luax_class.inl + 79 + 21 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Luax::LuaxNativeClass<AsuraEngine::IO::Filesystem>::{ctor} + ??0?$LuaxNativeClass@VFilesystem@IO@AsuraEngine@@@Luax@@IEAA@XZ + 79 + + + + + d:\asura\source\3rd-party\luax\ + luax_class.inl + 100 + 32 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + Luax::LuaxNativeClass<AsuraEngine::IO::Filesystem>::LuaxRetain + ??$LuaxRetain@VDataBuffer@IO@AsuraEngine@@@?$LuaxNativeClass@VFilesystem@IO@AsuraEngine@@@Luax@@QEAAXAEAVLuaxState@1@PEAVDataBuffer@IO@AsuraEngine@@@Z + 90 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/_thread.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/_thread.nativecodeanalysis.xml new file mode 100644 index 0000000..82cf7f3 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/_thread.nativecodeanalysis.xml @@ -0,0 +1,31 @@ + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.h + 39 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::MutexImpl::{ctor} + ??0MutexImpl@Threading@AsuraEngine@@QEAA@XZ + 39 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.h + 90 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::ThreadImpl::{ctor} + ??0ThreadImpl@Threading@AsuraEngine@@QEAA@XZ + 90 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/compressor.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/compressor.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/compressor.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/coroutine.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/coroutine.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/coroutine.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/curve.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/curve.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/curve.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/data_buffer.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/data_buffer.nativecodeanalysis.xml new file mode 100644 index 0000000..b304bdf --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/data_buffer.nativecodeanalysis.xml @@ -0,0 +1,45 @@ + + + + + d:\asura\source\libs\asura-lib-utils\io\ + data_buffer.cpp + 10 + 14 + + 26495 + Variable 'AsuraEngine::IO::DataBuffer::mBytes' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::IO::DataBuffer::{ctor} + ??0DataBuffer@IO@AsuraEngine@@QEAA@AEAV012@@Z + 10 + + + + + d:\asura\source\libs\asura-lib-utils\io\ + data_buffer.cpp + 10 + 14 + + 26495 + Variable 'AsuraEngine::IO::DataBuffer::mSize' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::IO::DataBuffer::{ctor} + ??0DataBuffer@IO@AsuraEngine@@QEAA@AEAV012@@Z + 10 + + + + + d:\asura\source\3rd-party\luax\ + luax_class.inl + 79 + 21 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Luax::LuaxNativeClass<AsuraEngine::IO::DataBuffer>::{ctor} + ??0?$LuaxNativeClass@VDataBuffer@IO@AsuraEngine@@@Luax@@IEAA@XZ + 79 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/decoded_data.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/decoded_data.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/decoded_data.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/exception.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/exception.nativecodeanalysis.xml new file mode 100644 index 0000000..88ba25d --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/exception.nativecodeanalysis.xml @@ -0,0 +1,17 @@ + + + + + d:\asura\source\libs\asura-lib-utils\exceptions\ + exception.cpp + 43 + 13 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Exception::{dtor} + ??1Exception@AsuraEngine@@UEAA@XZ + 43 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/file.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/file.nativecodeanalysis.xml new file mode 100644 index 0000000..f60a0ab --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/file.nativecodeanalysis.xml @@ -0,0 +1,17 @@ + + + + + d:\asura\source\3rd-party\luax\ + luax_class.inl + 79 + 21 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Luax::LuaxNativeClass<AsuraEngine::IO::File>::{ctor} + ??0?$LuaxNativeClass@VFile@IO@AsuraEngine@@@Luax@@IEAA@XZ + 79 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/file_data.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/file_data.nativecodeanalysis.xml new file mode 100644 index 0000000..eb30e9f --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/file_data.nativecodeanalysis.xml @@ -0,0 +1,17 @@ + + + + + d:\asura\source\3rd-party\luax\ + luax_class.inl + 79 + 21 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Luax::LuaxNativeClass<AsuraEngine::IO::FileData>::{ctor} + ??0?$LuaxNativeClass@VFileData@IO@AsuraEngine@@@Luax@@IEAA@XZ + 79 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/file_system.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/file_system.nativecodeanalysis.xml new file mode 100644 index 0000000..16b04cf --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/file_system.nativecodeanalysis.xml @@ -0,0 +1,17 @@ + + + + + d:\asura\source\libs\asura-lib-utils\io\ + file_system.cpp + 67 + 14 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + AsuraEngine::IO::Filesystem::Unmount + ?Unmount@Filesystem@IO@AsuraEngine@@QEAA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z + 58 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/functions.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/functions.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/functions.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/io_task.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/io_task.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/io_task.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/matrix44.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/matrix44.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/matrix44.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/mutex.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/mutex.nativecodeanalysis.xml new file mode 100644 index 0000000..75c9214 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/mutex.nativecodeanalysis.xml @@ -0,0 +1,45 @@ + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.h + 39 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::MutexImpl::{ctor} + ??0MutexImpl@Threading@AsuraEngine@@QEAA@XZ + 39 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.cpp + 23 + 9 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::Mutex::{ctor} + ??0Mutex@Threading@AsuraEngine@@QEAA@XZ + 23 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.cpp + 52 + 18 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::MutexImplWin32::{ctor} + ??0MutexImplWin32@Threading@AsuraEngine@@QEAA@XZ + 52 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/ranged_value.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/ranged_value.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/ranged_value.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/stringmap.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/stringmap.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/stringmap.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/thread.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/thread.nativecodeanalysis.xml new file mode 100644 index 0000000..c661cd5 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/thread.nativecodeanalysis.xml @@ -0,0 +1,73 @@ + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.h + 39 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::MutexImpl::{ctor} + ??0MutexImpl@Threading@AsuraEngine@@QEAA@XZ + 39 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.h + 90 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::ThreadImpl::{ctor} + ??0ThreadImpl@Threading@AsuraEngine@@QEAA@XZ + 90 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.cpp + 13 + 10 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::Thread::{ctor} + ??0Thread@Threading@AsuraEngine@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z + 13 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.cpp + 13 + 10 + + 26495 + Variable 'AsuraEngine::Threading::Thread::mImpl' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::Threading::Thread::{ctor} + ??0Thread@Threading@AsuraEngine@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z + 13 + + + + + d:\asura\source\3rd-party\luax\ + luax_class.inl + 79 + 21 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Luax::LuaxNativeClass<AsuraEngine::Threading::Thread>::{ctor} + ??0?$LuaxNativeClass@VThread@Threading@AsuraEngine@@@Luax@@IEAA@XZ + 79 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/thread_impl_posix.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/thread_impl_posix.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/thread_impl_posix.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/thread_impl_sdl.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/thread_impl_sdl.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/thread_impl_sdl.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/thread_impl_std.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/thread_impl_std.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/thread_impl_std.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/thread_impl_win32.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/thread_impl_win32.nativecodeanalysis.xml new file mode 100644 index 0000000..e0b1c6b --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/thread_impl_win32.nativecodeanalysis.xml @@ -0,0 +1,73 @@ + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.h + 39 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::MutexImpl::{ctor} + ??0MutexImpl@Threading@AsuraEngine@@QEAA@XZ + 39 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.h + 90 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::ThreadImpl::{ctor} + ??0ThreadImpl@Threading@AsuraEngine@@QEAA@XZ + 90 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread_impl_win32.cpp + 16 + 19 + + 26495 + Variable 'AsuraEngine::Threading::ThreadImplWin32::mHandle' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::Threading::ThreadImplWin32::{ctor} + ??0ThreadImplWin32@Threading@AsuraEngine@@QEAA@XZ + 16 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread_impl_win32.cpp + 16 + 19 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::ThreadImplWin32::{ctor} + ??0ThreadImplWin32@Threading@AsuraEngine@@QEAA@XZ + 16 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread_impl_win32.cpp + 49 + 20 + + 6258 + 使用 TerminateThread 将不允许进行适当的线程清理。 + AsuraEngine::Threading::ThreadImplWin32::Kill + ?Kill@ThreadImplWin32@Threading@AsuraEngine@@UEAAXXZ + 47 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/thread_task.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/thread_task.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/thread_task.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/transform.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/transform.nativecodeanalysis.xml new file mode 100644 index 0000000..dcdf088 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/transform.nativecodeanalysis.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/utils_module.nativecodeanalysis.xml b/build/libs/asura-lib-utils/x64/Debug/utils_module.nativecodeanalysis.xml new file mode 100644 index 0000000..82cf7f3 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/utils_module.nativecodeanalysis.xml @@ -0,0 +1,31 @@ + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.h + 39 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::MutexImpl::{ctor} + ??0MutexImpl@Threading@AsuraEngine@@QEAA@XZ + 39 + + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.h + 90 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::ThreadImpl::{ctor} + ??0ThreadImpl@Threading@AsuraEngine@@QEAA@XZ + 90 + + + \ No newline at end of file diff --git a/build/libs/asura-lib-utils/x64/Debug/vc.nativecodeanalysis.all.xml b/build/libs/asura-lib-utils/x64/Debug/vc.nativecodeanalysis.all.xml new file mode 100644 index 0000000..34e76e9 --- /dev/null +++ b/build/libs/asura-lib-utils/x64/Debug/vc.nativecodeanalysis.all.xml @@ -0,0 +1,209 @@ + + + d:\asura\source\libs\asura-lib-utils\exceptions\ + exception.cpp + 43 + 13 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Exception::{dtor} + ??1Exception@AsuraEngine@@UEAA@XZ + 43 + + + + d:\asura\source\libs\asura-lib-utils\io\ + file_system.h + 105 + 2 + + 26495 + Variable 'AsuraEngine::IO::Filesystem::mInited' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::IO::Filesystem::{ctor} + ??0Filesystem@IO@AsuraEngine@@QEAA@XZ + 105 + + + + d:\asura\source\libs\asura-lib-utils\ + singleton.hpp + 33 + 2 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Singleton<AsuraEngine::IO::Filesystem>::{ctor} + ??0?$Singleton@VFilesystem@IO@AsuraEngine@@@AsuraEngine@@IEAA@XZ + 33 + + + + d:\asura\source\3rd-party\luax\ + luax_class.inl + 79 + 21 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + Luax::LuaxNativeClass<AsuraEngine::IO::Filesystem>::{ctor} + ??0?$LuaxNativeClass@VFilesystem@IO@AsuraEngine@@@Luax@@IEAA@XZ + 79 + + + + d:\asura\source\3rd-party\luax\ + luax_class.inl + 100 + 32 + + 26451 + Arithmetic overflow: Using operator '+' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator '+' to avoid overflow (io.2). + Luax::LuaxNativeClass<AsuraEngine::IO::Filesystem>::LuaxRetain + ??$LuaxRetain@VDataBuffer@IO@AsuraEngine@@@?$LuaxNativeClass@VFilesystem@IO@AsuraEngine@@@Luax@@QEAAXAEAVLuaxState@1@PEAVDataBuffer@IO@AsuraEngine@@@Z + 90 + + + + d:\asura\source\libs\asura-lib-utils\io\ + data_buffer.cpp + 10 + 14 + + 26495 + Variable 'AsuraEngine::IO::DataBuffer::mBytes' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::IO::DataBuffer::{ctor} + ??0DataBuffer@IO@AsuraEngine@@QEAA@AEAV012@@Z + 10 + + + + d:\asura\source\libs\asura-lib-utils\io\ + file_system.cpp + 67 + 14 + + 26444 + Avoid unnamed objects with custom construction and destruction (es.84). + AsuraEngine::IO::Filesystem::Unmount + ?Unmount@Filesystem@IO@AsuraEngine@@QEAA_NAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z + 58 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.h + 39 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::MutexImpl::{ctor} + ??0MutexImpl@Threading@AsuraEngine@@QEAA@XZ + 39 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.h + 90 + 3 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::ThreadImpl::{ctor} + ??0ThreadImpl@Threading@AsuraEngine@@QEAA@XZ + 90 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.cpp + 23 + 9 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::Mutex::{ctor} + ??0Mutex@Threading@AsuraEngine@@QEAA@XZ + 23 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + mutex.cpp + 52 + 18 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::MutexImplWin32::{ctor} + ??0MutexImplWin32@Threading@AsuraEngine@@QEAA@XZ + 52 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.cpp + 13 + 10 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::Thread::{ctor} + ??0Thread@Threading@AsuraEngine@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z + 13 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread.cpp + 13 + 10 + + 26495 + Variable 'AsuraEngine::Threading::Thread::mImpl' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::Threading::Thread::{ctor} + ??0Thread@Threading@AsuraEngine@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z + 13 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread_impl_win32.cpp + 16 + 19 + + 26495 + Variable 'AsuraEngine::Threading::ThreadImplWin32::mHandle' is uninitialized. Always initialize a member variable (type.6). + AsuraEngine::Threading::ThreadImplWin32::{ctor} + ??0ThreadImplWin32@Threading@AsuraEngine@@QEAA@XZ + 16 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread_impl_win32.cpp + 16 + 19 + + 26439 + This kind of function may not throw. Declare it 'noexcept' (f.6). + AsuraEngine::Threading::ThreadImplWin32::{ctor} + ??0ThreadImplWin32@Threading@AsuraEngine@@QEAA@XZ + 16 + + + + d:\asura\source\libs\asura-lib-utils\threading\ + thread_impl_win32.cpp + 49 + 20 + + 6258 + 使用 TerminateThread 将不允许进行适当的线程清理。 + AsuraEngine::Threading::ThreadImplWin32::Kill + ?Kill@ThreadImplWin32@Threading@AsuraEngine@@UEAAXXZ + 47 + + \ No newline at end of file -- cgit v1.1-26-g67d0