15 references to FloatInt
ILCompiler.ReadyToRun (15)
parent\parent\Common\CallingConvention\ArgIterator.cs (1)
1294
if ((info.flags & (FpStruct.
FloatInt
| FpStruct.IntFloat)) != 0)
parent\parent\Common\Internal\Runtime\RiscVLoongArch64FpStruct.cs (11)
105
Debug.Assert((int)FpStruct.IntFloat == ((int)FpStruct.
FloatInt
<< 1),
110
int floatFlag = (int)(info.flags & FpStruct.
FloatInt
) << 1;
206
if ((info.flags & (
FloatInt
| IntFloat)) == 0)
214
((uint)(info.flags &
FloatInt
) << (PosIntFloat - PosFloatInt)) |
222
Debug.Assert((info.flags &
FloatInt
) == 0 || info.Size1st() == sizeof(float) || info.Size1st() == sizeof(double));
225
if ((info.flags & (
FloatInt
| IntFloat)) == (
FloatInt
| IntFloat))
228
info.flags ^= (
FloatInt
| IntFloat | BothFloat); // replace (FloatInt | IntFloat) with BothFloat
232
Debug.Assert((info.flags &
FloatInt
) != 0);
235
info.flags ^= (
FloatInt
| OnlyOne); // replace FloatInt with OnlyOne
238
FpStruct floatFlags = info.flags & (OnlyOne | BothFloat |
FloatInt
| IntFloat);
parent\parent\Common\JitInterface\CorInfoImpl.cs (3)
4015
if ((info.flags & (FpStruct.BothFloat | FpStruct.
FloatInt
| FpStruct.OnlyOne)) != 0)
4021
if ((info.flags & (FpStruct.
FloatInt
| FpStruct.IntFloat)) != 0)
4023
int index = ((info.flags & FpStruct.
FloatInt
) != 0) ? 1 : 0;