-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[v3.8.5] Reduce package size for spine module #17783
Changes from all commits
53844c9
e150e61
befaa70
83a596e
f8ffec0
ccb8ddf
a46a5dd
93d649b
31445e1
b7f87e5
d5f1d86
09d6f22
96d95a8
4d613ae
de446fd
564e677
c6838d8
aa9f33e
0a5d159
e6a72db
4f8aa6c
88e1e61
6fd4e42
5b59d17
bf60723
c823316
bf87c3d
865a444
e130811
22b7e19
420e513
1a9774e
6bb7eed
782766d
7a35797
500e72e
0dcd70d
fccaca2
08cb4ab
f228aad
36f0534
673f0f3
d89106e
07f9547
75e95a6
f3cfe22
3c48bf6
ed2bd99
bd721e0
a5431a0
31d7b7c
5348e7b
889e8b9
d0b5f45
62f614b
4c0b57d
dc9a5f4
89b3dba
b6cfcdd
d1b9b68
6ad4a43
1b4d2a0
a61c834
ff56150
7ae611d
0de18c9
1fa6629
0a2a3a1
cf2e54d
66a73f6
66b3e15
b149905
78e1435
5c94b34
01fdec9
2aed5fa
564d356
1bcd914
c6439cc
492ae95
bd05c2b
9247851
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
// Copyright 2012 The Emscripten Authors. All rights reserved. | ||
// Emscripten is available under two separate licenses, the MIT license and the | ||
// University of Illinois/NCSA Open Source License. Both these licenses can be | ||
// found in the LICENSE file. | ||
|
||
#include <emscripten/bind.h> | ||
#ifdef USE_CXA_DEMANGLE | ||
#include <../lib/libcxxabi/include/cxxabi.h> | ||
#endif | ||
#include <algorithm> | ||
#include <climits> | ||
#include <emscripten/emscripten.h> | ||
#include <emscripten/wire.h> | ||
#include <limits> | ||
#include <list> | ||
#include <typeinfo> | ||
#include <vector> | ||
|
||
using namespace emscripten; | ||
using namespace internal; | ||
|
||
static char* pointerToHexString(const void* ptr) { | ||
static const char hexDigits[] = "0123456789abcdef"; | ||
uintptr_t address = reinterpret_cast<uintptr_t>(ptr); | ||
char str[20] = "0x"; // Includes the "0x" prefix | ||
int index = 2; | ||
bool leadingZero = true; // Used to skip leading zeros | ||
|
||
// Convert the address to a hexadecimal string | ||
for (int i = (sizeof(address) * 2) - 1; i >= 0; --i) { | ||
char hexChar = hexDigits[(address >> (i * 4)) & 0xF]; | ||
if (hexChar != '0' || !leadingZero || i == 0) { // Ensures at least one zero in the final character | ||
str[index++] = hexChar; | ||
leadingZero = false; | ||
} | ||
} | ||
str[index] = '\0'; | ||
|
||
return strdup(str); | ||
} | ||
|
||
extern "C" { | ||
const char* EMSCRIPTEN_KEEPALIVE __getTypeName(const std::type_info* ti) { | ||
if (has_unbound_type_names) { | ||
#ifdef USE_CXA_DEMANGLE | ||
int stat; | ||
char* demangled = abi::__cxa_demangle(ti->name(), NULL, NULL, &stat); | ||
if (stat == 0 && demangled) { | ||
return demangled; | ||
} | ||
|
||
switch (stat) { | ||
case -1: | ||
return strdup("<allocation failure>"); | ||
case -2: | ||
return strdup("<invalid C++ symbol>"); | ||
case -3: | ||
return strdup("<invalid argument>"); | ||
default: | ||
return strdup("<unknown error>"); | ||
} | ||
#else | ||
return strdup(ti->name()); | ||
#endif | ||
} else { | ||
//cjh char str[80]; | ||
// sprintf(str, "%p", reinterpret_cast<const void*>(ti)); | ||
// return strdup(str); | ||
return pointerToHexString(reinterpret_cast<const void*>(ti)); | ||
} | ||
} | ||
|
||
static InitFunc* init_funcs = nullptr; | ||
|
||
EMSCRIPTEN_KEEPALIVE void _embind_initialize_bindings() { | ||
for (auto* f = init_funcs; f; f = f->next) { | ||
f->init_func(); | ||
} | ||
} | ||
|
||
void _embind_register_bindings(InitFunc* f) { | ||
f->next = init_funcs; | ||
init_funcs = f; | ||
} | ||
|
||
} | ||
|
||
namespace { | ||
template <typename T> static void register_integer(const char* name) { | ||
using namespace internal; | ||
_embind_register_integer(TypeID<T>::get(), name, sizeof(T), std::numeric_limits<T>::min(), | ||
std::numeric_limits<T>::max()); | ||
} | ||
|
||
template <typename T> static void register_bigint(const char* name) { | ||
using namespace internal; | ||
_embind_register_bigint(TypeID<T>::get(), name, sizeof(T), std::numeric_limits<T>::min(), | ||
std::numeric_limits<T>::max()); | ||
} | ||
|
||
template <typename T> static void register_float(const char* name) { | ||
using namespace internal; | ||
_embind_register_float(TypeID<T>::get(), name, sizeof(T)); | ||
} | ||
|
||
// matches typeMapping in embind.js | ||
enum TypedArrayIndex { | ||
Int8Array, | ||
Uint8Array, | ||
Int16Array, | ||
Uint16Array, | ||
Int32Array, | ||
Uint32Array, | ||
Float32Array, | ||
Float64Array, | ||
// Only available if WASM_BIGINT | ||
Int64Array, | ||
Uint64Array, | ||
}; | ||
|
||
template <typename T> constexpr TypedArrayIndex getTypedArrayIndex() { | ||
static_assert(internal::typeSupportsMemoryView<T>(), "type does not map to a typed array"); | ||
return std::is_floating_point<T>::value | ||
? (sizeof(T) == 4 ? Float32Array : Float64Array) | ||
: (sizeof(T) == 1 | ||
? (std::is_signed<T>::value ? Int8Array : Uint8Array) | ||
: (sizeof(T) == 2 ? (std::is_signed<T>::value ? Int16Array : Uint16Array) | ||
: (sizeof(T) == 4 ? (std::is_signed<T>::value ? Int32Array : Uint32Array) | ||
: (std::is_signed<T>::value ? Int64Array : Uint64Array)))); | ||
} | ||
|
||
template <typename T> static void register_memory_view(const char* name) { | ||
using namespace internal; | ||
_embind_register_memory_view(TypeID<memory_view<T>>::get(), getTypedArrayIndex<T>(), name); | ||
} | ||
} // namespace | ||
|
||
EMSCRIPTEN_BINDINGS(builtin) { | ||
using namespace emscripten::internal; | ||
|
||
_embind_register_void(TypeID<void>::get(), "void"); | ||
|
||
_embind_register_bool(TypeID<bool>::get(), "bool", sizeof(bool), true, false); | ||
|
||
register_integer<char>("char"); | ||
register_integer<signed char>("signed char"); | ||
register_integer<unsigned char>("unsigned char"); | ||
register_integer<signed short>("short"); | ||
register_integer<unsigned short>("unsigned short"); | ||
register_integer<signed int>("int"); | ||
register_integer<unsigned int>("unsigned int"); | ||
#if __wasm64__ | ||
register_bigint<signed long>("long"); | ||
register_bigint<unsigned long>("unsigned long"); | ||
#else | ||
register_integer<signed long>("long"); | ||
register_integer<unsigned long>("unsigned long"); | ||
#endif | ||
|
||
register_bigint<int64_t>("int64_t"); | ||
register_bigint<uint64_t>("uint64_t"); | ||
|
||
register_float<float>("float"); | ||
register_float<double>("double"); | ||
|
||
/*cjh | ||
_embind_register_std_string(TypeID<std::string>::get(), "std::string"); | ||
_embind_register_std_string( | ||
TypeID<std::basic_string<unsigned char>>::get(), "std::basic_string<unsigned char>"); | ||
_embind_register_std_wstring(TypeID<std::wstring>::get(), sizeof(wchar_t), "std::wstring"); | ||
_embind_register_std_wstring(TypeID<std::u16string>::get(), sizeof(char16_t), "std::u16string"); | ||
_embind_register_std_wstring(TypeID<std::u32string>::get(), sizeof(char32_t), "std::u32string"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't register There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is |
||
*/ | ||
_embind_register_emval(TypeID<val>::get(), "emscripten::val"); | ||
/*cjh | ||
// Some of these types are aliases for each other. Luckily, | ||
// embind.js's _embind_register_memory_view ignores duplicate | ||
// registrations rather than asserting, so the first | ||
// register_memory_view call for a particular type will take | ||
// precedence. | ||
|
||
register_memory_view<char>("emscripten::memory_view<char>"); | ||
register_memory_view<signed char>("emscripten::memory_view<signed char>"); | ||
register_memory_view<unsigned char>("emscripten::memory_view<unsigned char>"); | ||
|
||
register_memory_view<short>("emscripten::memory_view<short>"); | ||
register_memory_view<unsigned short>("emscripten::memory_view<unsigned short>"); | ||
register_memory_view<int>("emscripten::memory_view<int>"); | ||
register_memory_view<unsigned int>("emscripten::memory_view<unsigned int>"); | ||
register_memory_view<long>("emscripten::memory_view<long>"); | ||
register_memory_view<unsigned long>("emscripten::memory_view<unsigned long>"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't use |
||
|
||
register_memory_view<int8_t>("emscripten::memory_view<int8_t>"); | ||
register_memory_view<uint8_t>("emscripten::memory_view<uint8_t>"); | ||
register_memory_view<int16_t>("emscripten::memory_view<int16_t>"); | ||
register_memory_view<uint16_t>("emscripten::memory_view<uint16_t>"); | ||
register_memory_view<int32_t>("emscripten::memory_view<int32_t>"); | ||
register_memory_view<uint32_t>("emscripten::memory_view<uint32_t>"); | ||
register_memory_view<int64_t>("emscripten::memory_view<int64_t>"); | ||
register_memory_view<uint64_t>("emscripten::memory_view<uint64_t>"); | ||
|
||
register_memory_view<float>("emscripten::memory_view<float>"); | ||
register_memory_view<double>("emscripten::memory_view<double>"); | ||
*/ | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,12 +67,90 @@ jobs: | |
ref: "${{ env.EXT_VERSION_HEAD }}" | ||
fetch-depth: 1 | ||
|
||
- name: Setup emsdk | ||
uses: dumganhar/setup-emsdk@997d2cde2deabda085a11f98e86e842915b0e846 | ||
with: | ||
version: 3.1.41 | ||
actions-cache-folder: 'emsdk-cache-3.1.41' | ||
|
||
- name: Verify | ||
run: | | ||
which emcc | ||
emcc -v | ||
|
||
- name: Apply emscripten patches | ||
run: | | ||
echo "--------------------------------- Save bind.cpp ---------------------------------" | ||
cp $EMSDK/upstream/emscripten/system/lib/embind/bind.cpp $EMSDK/upstream/emscripten/system/lib/embind/bind.cpp.bak | ||
echo "--------------------------------- Apply embind bind.cpp patches ---------------------------------" | ||
cp -f ./engine-HEAD/.github/workflows/emscripten-patches/embind/bind.cpp $EMSDK/upstream/emscripten/system/lib/embind/ | ||
echo "--------------------------------- Apply patches DONE! ---------------------------------" | ||
cat $EMSDK/upstream/emscripten/system/lib/embind/bind.cpp | ||
|
||
- name: Install ninja | ||
run: | | ||
if ! command -v ninja &> /dev/null; then | ||
echo "Ninja not found, installing..." | ||
# sudo apt update | ||
sudo apt install ninja-build | ||
else | ||
echo "Ninja is already installed." | ||
fi | ||
which ninja | ||
|
||
- name: Build Spine WASM | ||
run: | | ||
cd ./engine-HEAD/native/cocos/editor-support/spine-wasm | ||
mkdir build-wasm | ||
cd build-wasm | ||
emcmake cmake .. -GNinja | ||
ninja | ||
ls -l | ||
|
||
- name: Build Spine ASMJS | ||
run: | | ||
cd ./engine-HEAD/native/cocos/editor-support/spine-wasm | ||
sed -i 's/set(BUILD_WASM 1)/set(BUILD_WASM 0)/g' CMakeLists.txt | ||
mkdir build-asmjs | ||
cd build-asmjs | ||
emcmake cmake .. -GNinja | ||
ninja | ||
ls -l | ||
|
||
- name: Copy files to external directory | ||
run: | | ||
mkdir dist | ||
cp ./engine-HEAD/native/cocos/editor-support/spine-wasm/build-wasm/spine.wasm ./dist/ | ||
cp ./engine-HEAD/native/cocos/editor-support/spine-wasm/build-wasm/spine.js ./dist/spine.wasm.js | ||
cp ./engine-HEAD/native/cocos/editor-support/spine-wasm/build-asmjs/spine.js.mem ./dist/ | ||
cp ./engine-HEAD/native/cocos/editor-support/spine-wasm/build-asmjs/spine.js ./dist/spine.asm.js | ||
echo "-------- Before replace spine wasm -----------" | ||
ls -l ./engine-HEAD/native/external/emscripten/spine/ | ||
cp -f ./dist/* ./engine-HEAD/native/external/emscripten/spine/ | ||
echo "-------- After replace spine wasm ------------" | ||
ls -l ./engine-HEAD/native/external/emscripten/spine/ | ||
echo "-----------------------------------------------" | ||
|
||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: spine-emscripten | ||
path: dist | ||
|
||
- name: Build Head Declarations | ||
working-directory: ./engine-HEAD | ||
run: | | ||
npm install | ||
node ./.github/workflows/package-size-check.js | ||
|
||
- name: Restore patches | ||
run: | | ||
echo "-------------------------- Restore patches ---------------------------------" | ||
rm $EMSDK/upstream/emscripten/system/lib/embind/bind.cpp | ||
mv $EMSDK/upstream/emscripten/system/lib/embind/bind.cpp.bak $EMSDK/upstream/emscripten/system/lib/embind/bind.cpp | ||
echo "-------------------------- Restore patches DONE! ---------------------------------" | ||
cat $EMSDK/upstream/emscripten/system/lib/embind/bind.cpp | ||
|
||
- uses: LouisBrunner/[email protected] | ||
with: | ||
old: ./engine/bin/.declarations/cc.d.ts | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't use
sprintf
since it will take in lots of code in libc.