8 references to BothFloat
ILCompiler.ReadyToRun (8)
parent\parent\Common\CallingConvention\ArgIterator.cs (3)
1276cFPRegs = ((info.flags & FpStruct.BothFloat) != 0) ? 2 : 1; 1297Debug.Assert((info.flags & (FpStruct.OnlyOne | FpStruct.BothFloat)) == 0); 1326Debug.Assert((info.flags & (FpStruct.OnlyOne | FpStruct.BothFloat)) != 0);
parent\parent\Common\Internal\Runtime\RiscVLoongArch64FpStruct.cs (3)
221Debug.Assert((info.flags & (OnlyOne | BothFloat)) == 0); 228info.flags ^= (FloatInt | IntFloat | BothFloat); // replace (FloatInt | IntFloat) with BothFloat 238FpStruct floatFlags = info.flags & (OnlyOne | BothFloat | FloatInt | IntFloat);
parent\parent\Common\JitInterface\CorInfoImpl.cs (2)
4015if ((info.flags & (FpStruct.BothFloat | FpStruct.FloatInt | FpStruct.OnlyOne)) != 0) 4018if ((info.flags & (FpStruct.BothFloat | FpStruct.IntFloat)) != 0)