Esempio n. 1
0
        public x86SSERegLocation GetSSERegister(int Size = 16)
        {
            if (SSERegisterIndex >= Options.SSERegisters.Length)
            {
                return(null);
            }

            var Ret = new x86SSERegLocation(Arch, Options.SSERegisters[SSERegisterIndex], Size);

            if (StoredDataList != null)
            {
                StoredDataList.SSERegisters[SSERegisterIndex] = true;
            }

            SSERegisterIndex++;
            return(Ret);
        }
Esempio n. 2
0
 public bool IsFree(x86SSERegLocation SSEReg)
 {
     return(!UsedRegs[SSEReg.Index]);
 }
Esempio n. 3
0
 public void SetUsed(x86SSERegLocation Pos)
 {
     SSERegisters.SetUsed(Pos.Index);
 }