Tim Allen 92fe5b0813 Update to v100r08 release.
byuu says:

Six and a half hours this time ... one new opcode, and all old opcodes
now in a deprecated format. Hooray, progress!

For building the table, I've decided to move from:

    for(uint opcode : range(65536)) {
      if(match(...)) bind(opNAME, ...);
    }

To instead having separate for loops for each supported opcode. This
lets me specialize parts I want with templates.

And to this aim, I'm moving to replace all of the
(read,write)(size, ...) functions with (read,write)<Size>(...) functions.

This will amount to the ~70ish instructions being triplicated ot ~210ish
instructions; but I think this is really important.

When I was getting into flag calculations, a ton of conditionals
were needed to mask sizes to byte/word/long. There was also lots of
conditionals in all the memory access handlers.

The template code is ugly, but we eliminate a huge amount of branch
conditions this way.
2016-07-18 08:11:29 +10:00
..
2016-07-04 21:48:17 +10:00
2016-02-16 20:11:58 +11:00
2016-06-05 14:52:43 +10:00
2016-07-04 21:48:17 +10:00
2016-05-16 19:51:12 +10:00
2016-05-16 19:51:12 +10:00
2016-05-16 19:51:12 +10:00
2016-07-04 21:48:17 +10:00
2016-07-01 21:50:32 +10:00
2016-05-16 19:51:12 +10:00
2016-07-01 21:50:32 +10:00
2016-05-16 19:51:12 +10:00
2016-07-01 21:50:32 +10:00
2016-07-04 21:48:17 +10:00
2016-06-09 08:26:35 +10:00
2016-07-01 21:50:32 +10:00
2016-07-01 21:50:32 +10:00
2016-05-25 21:13:02 +10:00
2016-07-01 21:50:32 +10:00
2016-07-18 08:11:29 +10:00
2016-01-25 22:27:18 +11:00
2016-05-25 21:13:02 +10:00
2016-05-25 21:13:02 +10:00
2016-05-25 21:13:02 +10:00
2016-06-01 21:23:22 +10:00
2016-05-25 21:13:02 +10:00
2016-07-04 21:48:17 +10:00
2016-05-25 21:13:02 +10:00
2016-06-27 23:07:57 +10:00
2016-06-14 20:51:54 +10:00
2016-07-17 13:24:28 +10:00
2016-06-25 18:53:11 +10:00
2016-06-01 08:29:36 +10:00
2016-05-25 21:13:02 +10:00
2016-05-02 19:57:04 +10:00
2016-07-04 21:48:17 +10:00
2016-05-02 19:57:04 +10:00
2016-07-01 21:50:32 +10:00
2016-05-25 21:13:02 +10:00
2016-05-16 19:51:12 +10:00
2016-05-25 21:13:02 +10:00
2016-05-25 21:13:02 +10:00
2016-07-01 21:50:32 +10:00
2016-07-01 21:50:32 +10:00
2016-01-25 22:27:18 +11:00
2016-05-25 21:13:02 +10:00
2016-07-01 21:50:32 +10:00
2016-05-16 19:51:12 +10:00
2016-06-20 21:00:32 +10:00