1 write to ArgumentRefKindsOpt
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1443
this.
ArgumentRefKindsOpt
= argumentRefKindsOpt;
17 references to ArgumentRefKindsOpt
Microsoft.CodeAnalysis.CSharp (17)
Binder\Binder.ValueChecks.cs (4)
3045
ptrInvocation.
ArgumentRefKindsOpt
,
3378
functionPointerInvocation.
ArgumentRefKindsOpt
,
3603
ptrInvocation.
ArgumentRefKindsOpt
,
4034
ptrInvocation.
ArgumentRefKindsOpt
,
Binder\RefSafetyAnalysis.cs (1)
695
node.
ArgumentRefKindsOpt
,
CodeGen\EmitExpression.cs (1)
3756
EmitArguments(ptrInvocation.Arguments, method.Parameters, ptrInvocation.
ArgumentRefKindsOpt
);
FlowAnalysis\AbstractFlowPass.cs (1)
3553
VisitArguments(node.Arguments, node.
ArgumentRefKindsOpt
, node.FunctionPointer.Signature);
FlowAnalysis\NullableWalker.cs (1)
11190
node.
ArgumentRefKindsOpt
,
Generated\BoundNodes.xml.Generated.cs (5)
1458
if (invokedExpression != this.InvokedExpression || arguments != this.Arguments || argumentRefKindsOpt != this.
ArgumentRefKindsOpt
|| resultKind != this.ResultKind || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10604
return node.Update(invokedExpression, arguments, node.
ArgumentRefKindsOpt
, node.ResultKind, type);
12212
updatedNode = node.Update(invokedExpression, arguments, node.
ArgumentRefKindsOpt
, node.ResultKind, infoAndType.Type!);
12217
updatedNode = node.Update(invokedExpression, arguments, node.
ArgumentRefKindsOpt
, node.ResultKind, node.Type);
14701
new TreeDumperNode("argumentRefKindsOpt", node.
ArgumentRefKindsOpt
, null),
Lowering\Instrumentation\LocalStateTracingInstrumenter.cs (1)
552
=> InstrumentCall(base.InstrumentFunctionPointerInvocation(original, rewritten), original.Arguments, original.
ArgumentRefKindsOpt
);
Lowering\LocalRewriter\LocalRewriter_FunctionPointerInvocation.cs (1)
23
var argumentRefKindsOpt = node.
ArgumentRefKindsOpt
;
Lowering\SpillSequenceSpiller.cs (2)
1014
var arguments = this.VisitExpressionList(ref builder, node.Arguments, node.
ArgumentRefKindsOpt
);
1030
return UpdateExpression(builder, node.Update(invokedExpression, arguments, node.
ArgumentRefKindsOpt
, node.ResultKind, node.Type));