1 write to m_flags
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\Opcode.cs (1)
42m_flags = flags;
8 references to m_flags
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\Opcode.cs (8)
46(m_flags & EndsUncondJmpBlkFlag) != 0; 60m_flags >> StackChangeShift; 62public OperandType OperandType => (OperandType)(m_flags & OperandTypeMask); 64public FlowControl FlowControl => (FlowControl)((m_flags >> FlowControlShift) & FlowControlMask); 66public OpCodeType OpCodeType => (OpCodeType)((m_flags >> OpCodeTypeShift) & OpCodeTypeMask); 68public StackBehaviour StackBehaviourPop => (StackBehaviour)((m_flags >> StackBehaviourPopShift) & StackBehaviourMask); 70public StackBehaviour StackBehaviourPush => (StackBehaviour)((m_flags >> StackBehaviourPushShift) & StackBehaviourMask); 72public int Size => (m_flags >> SizeShift) & SizeMask;