dynarmic/src
Lioncash f2bf795876 intrusive_list: Interface changes
- Remove the root pointer from iterators.

This is unnecessary, since the only way to get a valid iterator is
either from a node itself (it transiently becomes an iterator via the
underlying interface), or through the iterator interface for the list.
This should also result in better code generation, as each increment or
decrement of an iterator is now branchless.

- Remove iterator_to

This is actually a pretty dangerous function, since it would immediately
create an iterator into the list using the given item, even if it's not
actually part of the list. This was only left around due to lack of
type handling around constructors.

- Add other overloads for erase() and remove()

Now handles iterators, pointers, and references.
2016-08-28 20:56:40 +01:00
..
backend_x64 intrusive_list: Interface changes 2016-08-28 20:56:40 +01:00
common intrusive_list: Interface changes 2016-08-28 20:56:40 +01:00
frontend Implement VMRS and VMSR 2016-08-26 22:47:54 +01:00
ir_opt basic_block: Move all variables behind a public interface 2016-08-25 16:14:37 +01:00
CMakeLists.txt Convert formatting over to fmtlib 2016-08-26 13:13:19 +01:00