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();