This website requires JavaScript.
Explore
Help
Sign In
mirrors-yuzu-emu
/
unicorn
Watch
1
Star
0
Fork
You've already forked unicorn
0
mirror of
https://github.com/yuzu-emu/unicorn
synced
2024-11-25 01:28:18 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
f6f843b4d4
unicorn
/
qemu
/
qobject
/
Makefile.objs
2 lines
81 B
Makefile
Raw
Normal View
History
Unescape
Escape
qobject: Simplify QObject The QObject hierarchy is small enough, and unlikely to grow further (since we only use it to map to JSON and already cover all JSON types), that we can simplify things by not tracking a separate vtable, but just inline the code element of the vtable QType directly into QObject (renamed to type), and track a separate array of destroy functions. We can drop qnull_destroy_obj() in the process. The remaining QObject subclasses must export their destructor. This also has the nice benefit of moving the typename 'QType' out of the way, so that the next patch can repurpose it for a nicer name for 'qtype_code'. The various objects are still the same size (so no change in cache line pressure), but now have less indirection (although I didn't bother benchmarking to see if there is a noticeable speedup, as we don't have hard evidence that this was in a performance hotspot in the first place). A future patch could drop the refcnt size to 32 bits for a smaller struct on 64-bit architectures, if desired (we have limits on the largest JSON that we are willing to parse, and will probably never need to take full advantage of a 64-bit refcnt). Backports commit 55e1819c509b3d9c10a54678b9c585bbda13889e from qemu
2018-02-20 02:34:54 +00:00
util-obj-y
=
qint.o qnull.o qobject.o qstring.o qdict.o qlist.o qfloat.o qbool.o
Reference in a new issue
Copy permalink