1 write to ArgumentRefKindsOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1437this.ArgumentRefKindsOpt = argumentRefKindsOpt;
13 references to ArgumentRefKindsOpt
Microsoft.CodeAnalysis.CSharp (13)
Binder\Binder.ValueChecks.cs (1)
170ArgumentRefKindsOpt = ptrInvocation.ArgumentRefKindsOpt,
CodeGen\EmitExpression.cs (1)
4071EmitArguments(ptrInvocation.Arguments, method.Parameters, ptrInvocation.ArgumentRefKindsOpt);
FlowAnalysis\AbstractFlowPass.cs (1)
3782VisitArguments(node.Arguments, node.ArgumentRefKindsOpt, node.FunctionPointer.Signature, default, false);
FlowAnalysis\NullableWalker.cs (1)
12926node.ArgumentRefKindsOpt,
Generated\BoundNodes.xml.Generated.cs (5)
1452if (invokedExpression != this.InvokedExpression || arguments != this.Arguments || argumentRefKindsOpt != this.ArgumentRefKindsOpt || resultKind != this.ResultKind || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11037return node.Update(invokedExpression, arguments, node.ArgumentRefKindsOpt, node.ResultKind, type); 12835updatedNode = node.Update(invokedExpression, arguments, node.ArgumentRefKindsOpt, node.ResultKind, infoAndType.Type!); 12840updatedNode = node.Update(invokedExpression, arguments, node.ArgumentRefKindsOpt, node.ResultKind, node.Type); 15413new TreeDumperNode("argumentRefKindsOpt", node.ArgumentRefKindsOpt, null),
Lowering\Instrumentation\LocalStateTracingInstrumenter.cs (1)
568=> InstrumentCall(base.InstrumentFunctionPointerInvocation(original, rewritten), original.Arguments, original.ArgumentRefKindsOpt);
Lowering\LocalRewriter\LocalRewriter_FunctionPointerInvocation.cs (1)
23var argumentRefKindsOpt = node.ArgumentRefKindsOpt;
Lowering\SpillSequenceSpiller.cs (2)
1096var arguments = this.VisitExpressionList(ref builder, node.Arguments, node.ArgumentRefKindsOpt); 1112return UpdateExpression(builder, node.Update(invokedExpression, arguments, node.ArgumentRefKindsOpt, node.ResultKind, node.Type));