As suggested a while ago by Michiel, we should submit our next grant proposal to NLnet so it can be ready to work on when we finish our current grant. We should submit it before the Dec 1st deadline.
I think we should have the grant be for working on the idea I came up with for having a programmable decoder that's kinda a pipelined FPGA that decodes the most common instructions into μOps and stores them in a μOp cache, instructions that can't be handled that way trap for emulation. For programming the decoder I want to build a special compiler that compiles qemu (or similar) into a combination emulator and bitstream for the decoder. The compiler works by basically using Clang to compile Qemu to LLVM IR and then we have it process the LLVM IR of Qemu's instruction decoder/jit-translation function to extract the possible instructions, their encodings, and the operations they translate to (conveniently qemu calls a bunch of TCG functions for encoding the operations, so we can mostly just see which TCG functions are called). the compiler then tries to convert those operations to a set of μOps and if it succeeds then it tries to add it to the programmable decoder's bitstream. The emulation trap will just run Qemu's code compiled to PowerISA.
That process should allow us to support running older 32/64-bit x86 (since the patents expired), RISC-V, and the full set of PowerISA instructions (allowing the dedicated PowerISA decoder to only support the simpler instructions and instructions needed for running emulation traps rather than having to support the whole ISA).
We can also support basically any other ISA supported by Qemu, but we'd need to avoid violating patents on other ISAs, one possible way around that is that since running Qemu on any computer doesn't have patent issues, we could argue that our design is just a computer optimised for running Qemu faster since none of the hardware is specifically for any patented ISA like modern x86 or AArch64, other than in unpatentable ways (e.g. supporting x86's EFLAGS register since any possible patents have expired, or maybe supporting Armv7's flags since e.g. I don't expect having an overflow flag is patentable).
We can also include further improvements to the CPU in the grant, e.g. adding FP ops and paging. Since this is not our first grant we may be able to ask for more than €50000 based on presumably having completed our current grant by the time NLnet approves our proposal.
I'm planning on writing up a proposal soon and then posting it for review, who all is interested in helping out with the grant? I can add you to the grant proposal.