38 references to InstrumentationDataProcessingState
ILCompiler.ReadyToRun (38)
parent\parent\Common\Pgo\PgoFormat.cs (38)
238InstrumentationDataProcessingState processingState = InstrumentationDataProcessingState.UpdateProcessMaskFlag; 303if (processingState == InstrumentationDataProcessingState.UpdateProcessMaskFlag) 305processingState = (InstrumentationDataProcessingState)value; 309if ((processingState & InstrumentationDataProcessingState.ILOffset) == InstrumentationDataProcessingState.ILOffset) 316processingState &= ~InstrumentationDataProcessingState.ILOffset; 318else if ((processingState & InstrumentationDataProcessingState.Type) == InstrumentationDataProcessingState.Type) 325processingState &= ~InstrumentationDataProcessingState.Type; 327else if ((processingState & InstrumentationDataProcessingState.Count) == InstrumentationDataProcessingState.Count) 333processingState &= ~InstrumentationDataProcessingState.Count; 335else if ((processingState & InstrumentationDataProcessingState.Other) == InstrumentationDataProcessingState.Other) 341processingState &= ~InstrumentationDataProcessingState.Other; 344if (processingState == InstrumentationDataProcessingState.Done) 346processingState = InstrumentationDataProcessingState.UpdateProcessMaskFlag; 404InstrumentationDataProcessingState modifyMask = (InstrumentationDataProcessingState)0; 409modifyMask |= InstrumentationDataProcessingState.ILOffset; 411modifyMask |= InstrumentationDataProcessingState.Type; 413modifyMask |= InstrumentationDataProcessingState.Count; 415modifyMask |= InstrumentationDataProcessingState.Other; 419modifyMask = InstrumentationDataProcessingState.ILOffset | 420InstrumentationDataProcessingState.Type | 421InstrumentationDataProcessingState.Count | 422InstrumentationDataProcessingState.Other; 425Debug.Assert(modifyMask != InstrumentationDataProcessingState.Done); 429if ((modifyMask & InstrumentationDataProcessingState.ILOffset) == InstrumentationDataProcessingState.ILOffset) 431if ((modifyMask & InstrumentationDataProcessingState.Type) == InstrumentationDataProcessingState.Type) 433if ((modifyMask & InstrumentationDataProcessingState.Count) == InstrumentationDataProcessingState.Count) 435if ((modifyMask & InstrumentationDataProcessingState.Other) == InstrumentationDataProcessingState.Other) 502valueEmitter.EmitLong((long)InstrumentationDataProcessingState.Type, 0);