Declan

Results 9 comments of Declan

I found this reproduction example interesting. Here are some other reproductions, any lower number than these work fine. Higher are crashes. `v8.deserialize(v8.serialize({a: new Int32Array(1024)}))` `v8.deserialize(v8.serialize({b: new Int16Array(8192)}))` `v8.deserialize(v8.serialize({c: new Uint32Array(1024)}))`...

> Yeah this happens to me. If one add another space hosted on Synapse to the access list, others can join. What do you mean by this? This is *very*...

>`subfze.` (is this the same as `subfze`?) Easy to get confused, but it's actually extending the instruction to update the `cr0` register. `subfzeo` extends subfze by capturing overflows into `xer`....

There's some hints in the README, but from what I understand (from attempting this), it mostly goes like this: 1) Obtain a .xex file by dumping the contents of the...

> XenonRecomp `(ppc_config.h, ppc_context.h, ppc_func_mapping.cpp, ppc_recomp_shared.h)` Compile those with all of the `ppc_recomp.*.cpp` files. That should be it for step 7?

> and it would be nice if it got documented on a server or somewhere. If by document you mean "obscure behind a wall", then sure. The whole point of...

`clang++ ppc/ppc_config.h ppc/ppc_context.h ppc/ppc_func_mapping.cpp ppc/ppc_recomp_shared.h ppc/ppc_recomp_.*.cpp` will work for a headless build. The actual implementation of the other subsystems (including graphics!) is up to the user to implement for now....

Wouldn't this break clang builds on win32? https://clang.llvm.org/docs/UsersManual.html#microsoft-extensions

> Because of `_MSC_VER` it will only apply for MSVC. About clang on windows `__builtin_bswap16` is supported: https://clang.llvm.org/docs/LanguageExtensions.html#id54 I do not see `_byteswap` in that list, which is what I'm...