That is to say, if one was so inclined, could they use the source of CoreCLR and other parts of the .NET Framework that were recently released on GitHub to create a runtime of their own based on the CLR? As in, changing the structure of CIL (e.g. adding opcodes), not as in writing a new compiler for a language that produces it.
Does the source provided contain all the necessary code to create a copy of the offical CLR, and if so, would it be legal to redistribute a modified version?
The CoreCLR has both a MIT License and a patent promise so it should be ok to use it to build your "competing" CLR.
The patent promise isn't unlimited but:
and there are some limitations about what a .NET Runtime can be (your implementation must include all the features needed in a .NET Runtime to make it compatible with ECMA-335... so you can add pieces but you can't remove some pieces).
Note that the DNX is probably more similar to what you need: it uses CoreCLR and includes a compiler and other pieces. It is:
The DNX is released under the Apache license. The Apache license includes a patent grant in the license.