1 write to _tw
ILCompiler.Compiler (1)
Compiler\ILAssemblyGeneratingMethodDebugInfoProvider.cs (1)
31
_tw
= new StreamWriter(new FileStream(fileName, FileMode.Create, FileAccess.Write, FileShare.None));
36 references to _tw
ILCompiler.Compiler (36)
Compiler\ILAssemblyGeneratingMethodDebugInfoProvider.cs (36)
66
_tw
.Write(".method ");
69
_tw
.Write("instance ");
70
_tw
.Write(fmt.FormatName(owningMethod.Signature.ReturnType));
71
_tw
.Write(" ");
72
_tw
.Write(owningMethod.GetName());
75
_tw
.Write("<");
79
_tw
.Write(", ");
80
_tw
.Write(fmt.FormatName(owningMethod.Instantiation[i]));
82
_tw
.Write(">");
84
_tw
.Write("(");
88
_tw
.Write(", ");
89
_tw
.Write(fmt.FormatName(owningMethod.Signature[i]));
91
_tw
.WriteLine(") cil managed"); _currentLine++;
93
_tw
.WriteLine("{"); _currentLine++;
95
_tw
.Write(" // Code size: ");
96
_tw
.Write(disasm.CodeSize);
97
_tw
.WriteLine(); _currentLine++;
98
_tw
.Write(" .maxstack ");
99
_tw
.Write(methodIL.MaxStack);
100
_tw
.WriteLine(); _currentLine++;
105
_tw
.Write(" .locals ");
107
_tw
.Write("init ");
109
_tw
.Write("(");
115
_tw
.WriteLine(","); _currentLine++;
116
_tw
.Write(" ");
118
_tw
.Write(fmt.FormatName(locals[i].Type));
119
_tw
.Write(" ");
121
_tw
.Write("pinned ");
122
_tw
.Write("V_");
123
_tw
.Write(i);
125
_tw
.WriteLine(")"); _currentLine++;
127
_tw
.WriteLine(); _currentLine++;
134
_tw
.WriteLine(disasm.GetNextInstruction());
138
_tw
.WriteLine("}"); _currentLine++;
139
_tw
.WriteLine(); _currentLine++;
146
_tw
.Dispose();