13 references to IntrinsicOpMask
Microsoft.CodeAnalysis.VisualBasic (13)
CodeGen\EmitConversion.vb (1)
130Select Case (DirectCast(conversion.Operand, BoundUnaryOperator).OperatorKind And UnaryOperatorKind.IntrinsicOpMask)
CodeGen\EmitOperators.vb (1)
15Debug.Assert((expression.OperatorKind And Not UnaryOperatorKind.IntrinsicOpMask) = 0 AndAlso expression.OperatorKind <> 0)
CodeGen\OperatorKind.vb (1)
26OpMask = IntrinsicOpMask Or &H70
Lowering\LocalRewriter\LocalRewriter_AssignmentOperator.vb (1)
396Select Case (unaryOperator.OperatorKind And UnaryOperatorKind.IntrinsicOpMask)
Lowering\LocalRewriter\LocalRewriter_UnaryOperators.vb (2)
114Dim opKind = (node.OperatorKind And UnaryOperatorKind.IntrinsicOpMask) 142Dim opKind = (node.OperatorKind And UnaryOperatorKind.IntrinsicOpMask)
Semantics\Operators.vb (7)
505Debug.Assert((opCode And UnaryOperatorKind.IntrinsicOpMask) = opCode AndAlso opCode <> UnaryOperatorKind.Error) 507opCode = (opCode And UnaryOperatorKind.IntrinsicOpMask) 734Select Case (op And UnaryOperatorKind.IntrinsicOpMask) 757integerOverflow = (op And UnaryOperatorKind.IntrinsicOpMask) = UnaryOperatorKind.Minus AndAlso (integerOverflow OrElse detectedIntegerOverflow) 762Select Case (op And UnaryOperatorKind.IntrinsicOpMask) 787Select Case (op And UnaryOperatorKind.IntrinsicOpMask) 801Debug.Assert((op And UnaryOperatorKind.IntrinsicOpMask) = UnaryOperatorKind.Not)