Esempio n. 1
0
        public Instruction NewInstruction(Op opcode, uint id = Instruction.InvalidId, Instruction resultType = null)
        {
            var result = _instPool.Allocate();

            result.Set(opcode, id, resultType);

            return(result);
        }
Esempio n. 2
0
 private static LiteralInteger New()
 {
     return(_pool.Allocate());
 }