10 references to OnlyOne
ILCompiler.ReadyToRun (10)
parent\parent\Common\CallingConvention\ArgIterator.cs (2)
1297Debug.Assert((info.flags & (FpStruct.OnlyOne | FpStruct.BothFloat)) == 0); 1326Debug.Assert((info.flags & (FpStruct.OnlyOne | FpStruct.BothFloat)) != 0);
parent\parent\Common\CallingConvention\TransitionBlock.cs (2)
285fpReturnSize = (uint)FpStruct.OnlyOne | (2 << (int)FpStruct.PosSizeShift1st); 296fpReturnSize = (uint)FpStruct.OnlyOne | (3 << (int)FpStruct.PosSizeShift1st);
parent\parent\Common\Internal\Runtime\RiscVLoongArch64FpStruct.cs (4)
221Debug.Assert((info.flags & (OnlyOne | BothFloat)) == 0); 235info.flags ^= (FloatInt | OnlyOne); // replace FloatInt with OnlyOne 237Debug.Assert(nFields == ((info.flags & OnlyOne) != 0 ? 1 : 2)); 238FpStruct floatFlags = info.flags & (OnlyOne | BothFloat | FloatInt | IntFloat);
parent\parent\Common\JitInterface\CorInfoImpl.cs (2)
4013lowering.numLoweredElements = ((info.flags & FpStruct.OnlyOne) != 0) ? 1 : 2; 4015if ((info.flags & (FpStruct.BothFloat | FpStruct.FloatInt | FpStruct.OnlyOne)) != 0)