Mosa.Compiler.Framework.RegisterAllocator.VirtualRegister.VirtualRegister C# (CSharp) Method

VirtualRegister() public method

public VirtualRegister ( Register physicalRegister, bool reserved ) : System.Collections.Generic
physicalRegister Register
reserved bool
return System.Collections.Generic
        public VirtualRegister(Register physicalRegister, bool reserved)
        {
            PhysicalRegister = physicalRegister;
            IsReserved = reserved;
            IsSpilled = false;
        }

Same methods

VirtualRegister::VirtualRegister ( Operand virtualRegister ) : System.Collections.Generic