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