<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/UnitTests/Core/PowerPC/Jit64Common, branch 2503a</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Replace Common::BitCast with std::bit_cast</title>
<updated>2024-05-04T01:43:51+00:00</updated>
<author>
<name>Pokechu22</name>
<email>Pokechu022@gmail.com</email>
</author>
<published>2022-08-06T04:10:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=fbbfea8e8e536800a6a911eb90cecdd1f343f9e3'/>
<id>fbbfea8e8e536800a6a911eb90cecdd1f343f9e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>UnitTests: Declare as CPU thread when using CPUThreadConfigCallback</title>
<updated>2023-08-17T17:19:25+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2023-08-16T21:28:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=1104b93ee4944313d39bb7869dcba1ff21758d6d'/>
<id>1104b93ee4944313d39bb7869dcba1ff21758d6d</id>
<content type='text'>
This fixes a bunch of DEBUG_ASSERTs in the unit tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a bunch of DEBUG_ASSERTs in the unit tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>JitBase: Avoid System::GetInstance() and ppcState.</title>
<updated>2023-03-25T01:37:00+00:00</updated>
<author>
<name>Admiral H. Curtiss</name>
<email>pikachu025@gmail.com</email>
</author>
<published>2023-03-20T00:30:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=9c0226b7e3056079aca0cf83cf93c8e35358525b'/>
<id>9c0226b7e3056079aca0cf83cf93c8e35358525b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: convert GPLv2+ license info to SPDX tags</title>
<updated>2021-07-05T02:35:56+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2021-07-05T01:22:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=e149ad4f0a9874f354221a7fc76d8f1841e47808'/>
<id>e149ad4f0a9874f354221a7fc76d8f1841e47808</id>
<content type='text'>
SPDX standardizes how source code conveys its copyright and licensing
information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX
tags are adopted in many large projects, including things like the Linux
kernel.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SPDX standardizes how source code conveys its copyright and licensing
information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX
tags are adopted in many large projects, including things like the Linux
kernel.
</pre>
</div>
</content>
</entry>
<entry>
<title>UnitTests: Put PowerPC test values in a separate file</title>
<updated>2021-05-02T20:12:28+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2021-05-02T15:14:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=bb39f75093fcbc00957ae620fc1f1618adffa17c'/>
<id>bb39f75093fcbc00957ae620fc1f1618adffa17c</id>
<content type='text'>
We use more or less the same values for all PowerPC float unit
tests. Let's put them in one place instead of duplicating them.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We use more or less the same values for all PowerPC float unit
tests. Let's put them in one place instead of duplicating them.
</pre>
</div>
</content>
</entry>
<entry>
<title>Turn format string issues into compile-time errors</title>
<updated>2020-12-04T17:06:02+00:00</updated>
<author>
<name>Léo Lam</name>
<email>leo@leolam.fr</email>
</author>
<published>2020-11-25T17:59:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=585899dba39fdad6dd5875a96007d5b4f1bb41f7'/>
<id>585899dba39fdad6dd5875a96007d5b4f1bb41f7</id>
<content type='text'>
If the compiler can detect an issue with a format string at compile
time, then we should take advantage of that and turn the issue into a
hard compile-time error as such problems almost always lead to UB.

This helps with catching logging or assertion messages that have been
converted over to fmt but are still using the old, non-fmt variants
of the logging macros.

This commit also fixes all incorrect usages that I could find.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the compiler can detect an issue with a format string at compile
time, then we should take advantage of that and turn the issue into a
hard compile-time error as such problems almost always lead to UB.

This helps with catching logging or assertion messages that have been
converted over to fmt but are still using the old, non-fmt variants
of the logging macros.

This commit also fixes all incorrect usages that I could find.
</pre>
</div>
</content>
</entry>
<entry>
<title>Jit64AsmCommon: Make ConvertDoubleToSingle use RSCRATCH as output</title>
<updated>2019-05-25T22:07:50+00:00</updated>
<author>
<name>MerryMage</name>
<email>MerryMage@users.noreply.github.com</email>
</author>
<published>2019-05-25T21:51:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=12314577c19aa52a3c4d6e724280e6b7ef9af306'/>
<id>12314577c19aa52a3c4d6e724280e6b7ef9af306</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>UnitTests/Jit64Common: Test GenConvertDoubleToSingle</title>
<updated>2019-05-25T22:07:50+00:00</updated>
<author>
<name>MerryMage</name>
<email>MerryMage@users.noreply.github.com</email>
</author>
<published>2019-05-25T21:43:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=ec8d57d882067e1cd933f7efaed9947e8a444b3c'/>
<id>ec8d57d882067e1cd933f7efaed9947e8a444b3c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>stop using g_jit outside of JitInterface</title>
<updated>2018-12-15T00:58:58+00:00</updated>
<author>
<name>CrystalGamma</name>
<email>dolphin@crystalgamma.de</email>
</author>
<published>2018-12-02T13:16:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=2f490e44fbc454e1b96d0a8c6184bf74a6eac73e'/>
<id>2f490e44fbc454e1b96d0a8c6184bf74a6eac73e</id>
<content type='text'>
Replace g_jit in x86-64 ASM routines code by m_jit member reference
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace g_jit in x86-64 ASM routines code by m_jit member reference
</pre>
</div>
</content>
</entry>
<entry>
<title>UnitTets: Add tests for frsqrte</title>
<updated>2018-09-28T17:11:30+00:00</updated>
<author>
<name>MerryMage</name>
<email>MerryMage@users.noreply.github.com</email>
</author>
<published>2018-09-23T19:10:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=826bcad3a5ef5edcf89cfe946fa32b40870bbd2f'/>
<id>826bcad3a5ef5edcf89cfe946fa32b40870bbd2f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
