mono - Mono's ECMA-CLI native code generator (Just-in-Time and Ahead-of-Time)
mono [options] file [arguments...]
The runtime contains a native code generator that transforms the Common Intermediate Language into native code.
The code generator can operate in two modes: just in time compilation (JIT) or ahead of time compilation (AOT). Since code can be dynamically loaded, the runtime environment and the JIT are always present, even if code is compiled ahead of time.
The runtime loads the specified file and optionally passes the arguments to it. The file is an ECMA assembly. They typically have a .exe or .dll extension.
The runtime provides a number of configuration options for running applications, for developing and debugging, and for testing and debugging the runtime itself.
This functionality is enabled by setting the MONO_IOMAP environment variable to one of all, drive and case.
See the description for MONO_IOMAP in the environment variables section for more details.
Ahead-of-Time compilation is most useful if you use it in combination with the -O=all,-shared flag which enables all of the optimizations in the code generator to be performed. Some of those optimizations are not practical for Just-in-Time compilation since they might be very time consuming.
Unlike the .NET Framework, Ahead-of-Time compilation will not generate domain independent code: it generates the same code that the Just-in-Time compiler would produce. Since most applications use a single domain, this is fine. If you want to optimize the generated code for use in multi-domain applications, consider using the -O=shared flag.
This pre-compiles the methods, but the original assembly is still required to execute as this one contains the metadata and exception information which is not available on the generated file. When precompiling code, you might want to compile with all optimizations (-O=all). Pre-compiled code is position independent code.
Pre compilation is just a mechanism to reduce startup time, increase code sharing across multiple mono processes and avoid just-in-time compilation program startup costs. The original assembly must still be present, as the metadata is contained there.
For more information about AOT, see: http://www.mono-project.com/AOT
The following optimizations are implemented:
all Turn on all optimizations
peephole Peephole postpass
branch Branch optimizations
inline Inline method calls
cfold Constant folding
consprop Constant propagation
copyprop Copy propagation
deadce Dead code elimination
linears Linear scan global reg allocation
cmov Conditional moves
shared Emit per-domain code
sched Instruction scheduling
intrins Intrinsic method implementations
tailc Tail recursion and tail calls
loop Loop related optimizations
fcmov Fast x86 FP compares
leaf Leaf procedures optimizations
aot Usage of Ahead Of Time compiled code
precomp Precompile all methods before executing Main
abcrem Array bound checks removal
ssapre SSA based Partial Redundancy Elimination
For example, to enable all the optimization but dead code elimination and inlining, you can use:
-O=all,-deadce,-inline
mono --runtime=v2.0.50727 program.exe
The trace can be customized to include or exclude methods, classes or assemblies. A trace expression is a comma separated list of targets, each target can be prefixed with a minus sign to turn off a particular target. The words `program', `all' and `disabled' have special meaning. `program' refers to the main program being executed, and `all' means all the method calls.
The `disabled' option is used to start up with tracing disabled. It can be enabled at a later point in time in the program by sending the SIGUSR2 signal to the runtime.
Assemblies are specified by their name, for example, to trace all calls in the System assembly, use:
mono --trace=System app.exe
Classes are specified with the T: prefix. For example, to trace all
calls to the System.String class, use:
mono --trace=T:System.String app.exe
And individual methods are referenced with the M: prefix, and the
standard method notation:
mono --trace=M:System.Console:WriteLine app.exe
As previously noted, various rules can be specified at once:
mono --trace=T:System.String,T:System.Random app.exe
You can exclude pieces, the next example traces calls to
System.String except for the System.String:Concat method.
mono --trace=T:System.String,-M:System.String:Concat
Finally, namespaces can be specified using the N: prefix:
mono --trace=N:System.Xml
The following graphs are available:
cfg Control Flow Graph (CFG)
dtree Dominator Tree
code CFG showing code
ssa CFG showing code after SSA translation
optcode CFG showing code after IR optimizations
Some graphs will only be available if certain optimizations are turned on.
semdel will delete the global semaphore.
hps will list the currently used handles.
--profile[=profiler[:profiler_args]]
Mono has a built-in profiler called 'default' (and is also the default
if no arguments are specified), but developers can write custom
profilers, see the section "CUSTOM PROFILERS" for more details.
If a profiler is not specified, the default profiler is used.
The profiler_args is a profiler-specific string of options for the profiler itself.
The default profiler accepts the following options 'alloc' to profile memory consumption by the application; 'time' to profile the time spent on each routine; 'jit' to collect time spent JIT-compiling methods and 'stat' to perform sample statistical profiling. If no options are provided the default is 'alloc,time,jit'.
By default the profile data is printed to stdout: to change this, use the 'file=filename' option to output the data to filename.
For example:
mono --profile program.exe
That will run the program with the default profiler and will do time and allocation profiling.
mono --profile=default:stat,alloc,file=prof.out program.exe
Will do sample statistical profiling and allocation profiling on
program.exe. The profile data is put in prof.out.
Note that the statistical profiler has a very low overhead and should be the preferred profiler to use (for better output use the full path to the mono binary when running and make sure you have installed the addr2line utility that comes from the binutils package).
The heap Shot profiler can track all live objects, and references to these objects, and includes a GUI tool, this is our recommended profiler. To install you must download the profiler from Mono's SVN:
svn co svn://svn.myrealbox.com/source/trunk/heap-shot
cd heap-shot
./autogen
make
make install
See the included documentation for details on using it.
The Live Type profiler shows at every GC iteration all of the live objects of a given type. To install you must download the profiler from Mono's SVN:
svn co svn://svn.myrealbox.com/source/trunk/heap-prof
cd heap-prof
./autogen
make
make install
To use the profiler, execute:
mono --profile=desc-heap program.exe
The output of this profiler looks like this:
Checkpoint at 102 for heap-resize
System.MonoType : 708
System.Threading.Thread : 352
System.String : 3230
System.String[] : 104
Gnome.ModuleInfo : 112
System.Object[] : 160
System.Collections.Hashtable : 96
System.Int32[] : 212
System.Collections.Hashtable+Slot[] : 296
System.Globalization.CultureInfo : 108
System.Globalization.NumberFormatInfo : 144
The first line describes the iteration number for the GC, in this case checkpoint 102.
Then on each line the type is displayed as well as the number of bytes that are being consumed by live instances of this object.
The AOT profiler is used to feed back information to the AOT compiler about how to order code based on the access patterns for pages. To use it, use:
mono --profile=aot program.exe
The output of this profile can be fed back into Mono's AOT compiler to
order the functions on the disk to produce precompiled images that
have methods in sequential pages.
To use a third party profiler you must pass the name of the profiler to Mono, like this:
mono --profile=custom program.exe
In the above sample Mono will load the user defined profiler from the shared library `mono-profiler-custom.so'. This profiler module must be on your dynamic linker library path.
A list of other third party profilers is available from Mono's web site (www.mono-project.com/Performance_Tips)
Custom profiles are written as shared libraries. The shared library must be called `mono-profiler-NAME.so' where `NAME' is the name of your profiler.
For a sample of how to write your own custom profiler look in the Mono source tree for in the samples/profiler.c.
By default code coverage will default to all the assemblies loaded, you can limit this by specifying the assembly name, for example to perform code coverage in the routines of your program use, for example the following command line limits the code coverage to routines in the "demo" assembly:
mono --profile=cov:demo demo.exe
Notice that the assembly-name does not include the extension.
You can further restrict the code coverage output by specifying a namespace:
mono --profile=cov:demo/My.Utilities demo.exe
Which will only perform code coverage in the given assembly and namespace.
Typical output looks like this:
Not covered: Class:.ctor ()
Not covered: Class:A ()
Not covered: Driver:.ctor ()
Not covered: Driver:method ()
Partial coverage: Driver:Main ()
offset 0x000a
The offsets displayed are IL offsets.
A more powerful coverage tool is available in the module `monocov'. See the monocov(1) man page for details.
kill -QUIT pid
Where pid is the Process ID of the Mono process you want to examine.
The process will continue running afterwards, but its state is not
guaranteed.
Important: this is a last-resort mechanism for debugging applications and should not be used to monitor or probe a production application. The integrity of the runtime after sending this signal is not guaranteed and the application might crash or terminate at any given point afterwards.
You can use the MONO_LOG_LEVEL and MONO_LOG_MASK environment variables to get verbose debugging output about the execution of your application within Mono.
The MONO_LOG_LEVEL environment variable if set, the logging level is changed to the set value. Possible values are "error", "critical", "warning", "message", "info", "debug". The default value is "error". Messages with a logging level greater then or equal to the log level will be printed to stdout/stderr.
Use "info" to track the dynamic loading of assemblies.
Use the MONO_LOG_MASK environment variable to limit the extent of the messages you get: If set, the log mask is changed to the set value. Possible values are "asm" (assembly loader), "type", "dll" (native library loader), "gc" (garbage collector), "cfg" (config file loader), "aot" (precompiler) and "all". The default value is "all". Changing the mask value allows you to display only messages for a certain component. You can use multiple masks by comma separating them. For example to see config file messages and assembly loader messages set you mask to "asm,cfg".
The following is a common use to track down problems with P/Invoke:
$ MONO_LOG_LEVEL="debug" MONO_LOG_MASK="dll" mono glue.exe
You can control this with the MONO_XMLSERIALIZER_THS environment variable.
The possible values are `no' to disable the use of a C# customized serializer, or an integer that is the minimum number of uses before the runtime will produce a custom serializer (0 will produce a custom serializer on the first access, 50 will produce a serializer on the 50th use). Mono will fallback to an interpreted serializer if the serializer generation somehow fails. This behavior can be disabled by setting the option `nofallback' (for example: MONO_XMLSERIALIZER_THS=0,nofallback).
Possible values are:
Persists event logs and entries to the local file system.
The directory in which to persist the event logs, event sources and entries can be specified as part of the value.
If the path is not explicitly set, it defaults to "/var/lib/mono/eventlog" on unix and "%APPDATA%mono\ventlog" on Windows.
Uses the native win32 API to write events and registers event logs and event sources in the registry. This is only available on Windows.
On Unix, the directory permission for individual event log and event source directories is set to 777 (with +t bit) allowing everyone to read and write event log entries while only allowing entries to be deleted by the user(s) that created them.
Silently discards any events.
The default is "null" on Unix (and versions of Windows before NT), and "win32" on Windows NT (and higher).
For example, this would work from the shell:
MONO_IOMAP=drive:case
export MONO_IOMAP
If you are using mod_mono to host your web applications, you can use
the
MonoSetEnv
directive, like this:
MonoSetEnv MONO_IOMAP=all
Directories are separated by the platform path separator (colons on unix). Example: /home/username/lib:/usr/local/mono/lib
Alternative solutions to MONO_PATH include: installing libraries into the Global Assembly Cache (see gacutil(1)) or having the dependent libraries side-by-side with the main executable.
For a complete description of recommended practices for application deployment, see the http://www.mono-project.com/Guidelines:Application_Deployment page.
echo 4096 > /proc/sys/dev/rtc/max-user-freq
For example:
MONO_RTC=4096 mono --profiler=default:stat program.exe
Mono typically uses the hostname to create the files that are used to share state across multiple Mono processes. This is done to support home directories that might be shared over the network.
The default is "win32".
The default is 180 seconds.
[-]M:method name
[-]N:namespace
[-]T:class name
[-]all
[-]program
disabled Trace output off upon start.
You can toggle trace output on/off sending a SIGUSR2 signal to the program.
valgrind --suppressions=mono.supp mono ...
The directory for the ahead-of-time compiler demand creation assemblies are located.
Mono runtime configuration file. See the mono-config(5) manual page for more information.
Contains Mono certificate stores for users / machine. See the certmgr(1) manual page for more information on managing certificate stores and the mozroots(1) page for information on how to import the Mozilla root certificates into the Mono certificate store.
Files in this directory allow a user to customize the configuration for a given system assembly, the format is the one described in the mono-config(5) page.
Contains Mono cryptographic keypairs for users / machine. They can be accessed by using a CspParameters object with DSACryptoServiceProvider and RSACryptoServiceProvider classes.
Contains Mono isolated storage for non-roaming users, roaming users and local machine. Isolated storage can be accessed using the classes from the System.IO.IsolatedStorage namespace.
Configuration information for individual assemblies is loaded by the runtime from side-by-side files with the .config files, see the http://www.mono-project.com/Config for more information.
ASP.NET applications are configured through these files, the configuration is done on a per-directory basis. For more information on this subject see the http://www.mono-project.com/Config_system.web page.
certmgr(1), mcs(1), monocov(1), monodis(1), mono-config(5), mozroots(1), xsp(1).
For more information on AOT: http://www.mono-project.com/AOT
For ASP.NET-related documentation, see the xsp(1) manual page
|
Закладки на сайте Проследить за страницей |
Created 1996-2025 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |