From: Mark Probst Date: Thu, 9 Apr 2015 23:13:32 +0000 (-0700) Subject: Merge branch 'feature-concurrent-sweep' X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=f6c4a9e42b70c291be485278e4a52d9830b661c5;hp=1a43231534ba9976655aa4885e1b267475b00fed;p=mono.git Merge branch 'feature-concurrent-sweep' --- diff --git a/.gitignore b/.gitignore index 60701266888..e5b638b53e8 100644 --- a/.gitignore +++ b/.gitignore @@ -122,8 +122,6 @@ docs/perlmod* compile mono.h mono-*.tar.* -mono.spec -mono-core.spec tmpinst-dir.stamp msvc/scripts/inputs/ diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index 6c19bda941e..00000000000 --- a/AUTHORS +++ /dev/null @@ -1,3 +0,0 @@ -Miguel de Icaza (miguel@ximian.com) -Paolo Molaro (lupus@ximian.com) -Dietmar Maurer (dietmar@ximian.com) diff --git a/Makefile.am b/Makefile.am index cddaff16211..68269d7e917 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,11 +36,9 @@ EXTRA_DIST= \ README.md \ LICENSE \ autogen.sh \ - build-mingw32.sh \ mkinstalldirs \ mono-uninstalled.pc.in \ winconfig.h \ - mono-core.spec \ external DISTCHECK_CONFIGURE_FLAGS = EXTERNAL_MCS=false EXTERNAL_RUNTIME=false @@ -52,7 +50,7 @@ dist-hook: d=`cd $(distdir)/mcs && pwd`; cd $(mcs_topdir) && $(MAKE) distdir=$$d dist-recursive rm -rf `find $(top_distdir)/external -path '*\.git'` rm -f `find $(top_distdir)/external -path '*\.exe'` - rm -f `find $(top_distdir)/external -path '*\.dll' -not -path '*/binary-reference-assemblies/v4\.0*'` + rm -f `find $(top_distdir)/external -path '*\.dll' -not -path '*/binary-reference-assemblies/*'` cp mcs/class/lib/basic/System.Configuration.dll mcs/class/lib/monolite/ cp mcs/class/lib/basic/System.Security.dll mcs/class/lib/monolite/ # Disable this for now because it is very slow and causes wrench to timeout: diff --git a/README.md b/README.md index 36a9c1ef398..0a8bf7c1a9d 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,9 @@ Officially supported architectures: Community supported architectures: -| debian-ppc64el | centos-s390x | -|-----------------------------|---------------------------| -| [![debian-ppc64el][11]][12] | [![centos-s390x][13]][14] | +| centos-s390x | +|---------------------------| +| [![centos-s390x][11]][12] | [1]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-amd64/badge/icon [2]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-amd64/ @@ -35,10 +35,8 @@ Community supported architectures: [8]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armhf/ [9]: https://ci.appveyor.com/api/projects/status/1e61ebdfpbiei58v/branch/master?svg=true [10]: https://ci.appveyor.com/project/ajlennon/mono-817/branch/master -[11]: http://jenkins.mono-project.com/job/test-mono-mainline-communityarchitectures/label=debian-ppc64el/badge/icon -[12]: http://jenkins.mono-project.com/job/test-mono-mainline-communityarchitectures/label=debian-ppc64el/ -[13]: http://jenkins.mono-project.com/job/test-mono-mainline-communityarchitectures/label=centos-s390x/badge/icon -[14]: http://jenkins.mono-project.com/job/test-mono-mainline-communityarchitectures/label=centos-s390x/ +[11]: http://jenkins.mono-project.com/job/test-mono-mainline-communityarchitectures/label=nealef-s390x-1/badge/icon +[12]: http://jenkins.mono-project.com/job/test-mono-mainline-communityarchitectures/label=nealef-s390x-1/ Compilation and Installation ============================ @@ -145,13 +143,6 @@ runtime as an embedded library. * `scripts/` - Scripts used to invoke Mono and the corresponding program. -* `../olive/` - Incubation code from [Olive](https://github.com/mono/olive). - - * If the directory ../olive is present (as an -independent checkout) from the Mono module, that -directory is automatically configured to share the -same prefix than this module gets. - Contributing to Mono ==================== diff --git a/README.vsnet b/README.vsnet deleted file mode 100644 index f3a07a1d8c8..00000000000 --- a/README.vsnet +++ /dev/null @@ -1,120 +0,0 @@ -README.vsnet Last updated: 2006-02-01 - - -SVN includes a Visual Studio .NET 2005 solution, mono.sln, and some -projects files to build most of the unmanaged parts in Mono. - -The "mono.sln" solution file contains the VC projects files for: - - * Embedded Samples - * test-invoke.vcproj - * test-metadata.vcproj - * teste.vcproj - * Libraries - * libgc.vcproj - * libmono.vcproj - * Tools - * genmdesc.vcproj - * monoburg.vcproj - * monodiet.vcproj - * monodis.vcproj - * monograph.vcproj - * pedump.vcproj - * mono.vcproj - - -REQUIREMENTS - -* A working (i.e. where you could succesfully build mono) cygwin -(http://www.cygwin.com/) setup! This is required to: - * generate some files (via monoburg and genmdesc); - * build the class libraries; and - * test for regressions. - -* Visual Studio .NET 2005. Previous Visual Studio versions may work or -requires, hopefully minimal, changes. - -* VSDependencies.zip must be decompressed under the /mono/ directory -(otherwise you will need to edit all the projects files). This file can -be downloaded from http://www.go-mono.com/archive/VSDependencies.zip - - -LOCAL CHANGES - -Sadly solution/projects files aren't easy to move from computers to -computers (well unless everyone follow the same naming convention) so -you'll likely have to changes some options in order to compile the -solution. - - * each executed assembly (i.e. the EXE) must be able to find a - working mscorlib.dll (and all the other required assemblies). - This can be done in different ways. My preference is to use the - project "properties pages" in the "Configuration Properties - \Debugging\Environment" options and set MONO_PATH to the class - libraries directory build by cygwin (local) or on Linux - (remote). - - e.g. MONO_PATH=z:\svn\mcs\class\lib\default\ - allows me to use the class libs build under Linux, while - MONO_PATH=C:\cygwin\opt\mono\lib\mono\1.0 - use the one built from cygwin (after a make install) - -Some useful informations to adapt the solution/project files... - - * My cygwin root dir is: c:\cygwin\ - * My username is: poupou - * My mono install prefix is: /opt/mono - - -BUILDING - -Once everything is installed (and edited) you can right-click on the -"mono" solution (in the "Solution Explorer"), select "Clean -Solution" (for the first time) then "Build Solution". - - -KNOWN ISSUES - -[1] Most, BUT NOT ALL, the regressions tests pass under this build. The -failures seems limited to some mathematical differences and to code -relying on the stack walking functions. The hacks to replace the GCC -functions (__builtin_frame_address and __builtin_return_address) are -incomplete; - -[2] The solution doesn't provide complete (i.e. from scratch) build. It -requires a working cygwin environment to create some files (e.g. via -genmdesc, monoburg). This isn't so bad as without cygwin you wouldn't be -able to test Mono properly (see REQUIREMENTS); - -[3] Only the Debug target is configured properly (that would be easy to -fix, but would require turning off some optimizations like omitting -stack frames). Anyway there are other issues [1] to fix before switching -to Release and IMHO the _biggest_ advantage to VS.NET is it's debugger/ -debugging tools; - -[4] The C compiler emits _lots_ of warning during compilation. Some -warnings have been turned off for some projects (there was so much that -it slowed down compilation). You can bring them back (or hide more of -them) using the project "properties pages" windows, "Configuration -Properties\C/C++\Advanced\Disable Specific Warnings"; - -[5] Visual Studio 2005 should have all the latest header files required, -but if not (or if you're using an older version of VS) then install MS -Platform SDK (Windows Server 2003 is the latest) to ensure you have the -latest Windows header files. You can download it from: -http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm - -[6] Not everyone has VS.NET so it is possible you may have to add some -(new) files to the build from time to time. See "more informations" for -reporting those changes. - -[7] Probably a lot more I didn't discover... or has changed since. - - -MORE INFORMATION - -Please email if you have any problem -and/or if there's something wrong/missing in the instructions. - -An online version of this file is available at -http://www.mono-project.com/Compiling_Mono_VSNET diff --git a/build-mingw32.sh b/build-mingw32.sh deleted file mode 100755 index 4c8ed8c1dc4..00000000000 --- a/build-mingw32.sh +++ /dev/null @@ -1,227 +0,0 @@ -#!/bin/bash -e -CURDIR="`pwd`" -MINGW=i386-mingw32msvc -CROSS_DIR=/opt/cross/$MINGW -EXTRA_CROSS_DIR= -INSTALL_DESTDIR="$CURDIR/mono-win32" -PROFILES="default net_2_0 net_3_5 net_4_0 net_4_5 moonlight" -TEMPORARY_PKG_CONFIG_DIR=/tmp/$RANDOM-pkg-config-$RANDOM -ORIGINAL_PATH="$PATH" - -export CPPFLAGS_FOR_EGLIB CFLAGS_FOR_EGLIB CPPFLAGS_FOR_LIBGC CFLAGS_FOR_LIBGC - -function cleanup () -{ - if [ -d "$TEMPORARY_PKG_CONFIG_DIR" ]; then - rm -rf "$TEMPORARY_PKG_CONFIG_DIR" - fi -} - -function check_pkg_config_dir () -{ - local DIR="$1" - local DIR_PREFIX="$2" - - if [ ! -d "$DIR" ]; then - return - fi - - install -d -m 755 "$TEMPORARY_PKG_CONFIG_DIR" - for pc in "$DIR"/*.pc; do - if [ -f $pc ]; then - pcname="`basename $pc`" - sed -e "s;^prefix=.*;prefix=$DIR_PREFIX;g" < $pc > "$TEMPORARY_PKG_CONFIG_DIR"/$pcname - fi; - done - - if [ -z "$CROSS_PKG_CONFIG_DIR" ]; then - CROSS_PKG_CONFIG_DIR="$TEMPORARY_PKG_CONFIG_DIR" - fi -} - -function show_build_info () -{ - cat < /dev/null - -while getopts "d:m:e:p:" opt; do - case "$opt" in - d) CROSS_DIR="$OPTARG" ;; - m) MINGW="$OPTARG" ;; - e) EXTRA_CROSS_DIR="$OPTARG" ;; - p) MONO_PREFIX="$OPTARG" ;; - *) usage ;; - esac -done - -setup -build -doinstall -show_build_info - -popd > /dev/null diff --git a/configure.ac b/configure.ac index f6680e3cb09..6b2634e8aa8 100644 --- a/configure.ac +++ b/configure.ac @@ -102,14 +102,11 @@ case "$host" in host_win32=yes mono_cv_clang=no if test "x$cross_compiling" = "xno"; then - target_win32=yes if test "x$host" == "x$build" -a "x$host" == "x$target"; then - AC_DEFINE(TARGET_WIN32,1,[Target OS is Win32]) + target_win32=yes fi else target_win32=yes - AC_DEFINE(TARGET_WIN32,1,[Target OS is Win32/MinGW]) - AC_DEFINE(MINGW_CROSS_COMPILE,1,[Cross-compiling using MinGW]) fi HOST_CC="gcc" # Windows XP SP2 is required @@ -432,7 +429,7 @@ AC_PROG_LD_GNU AM_ICONV() AC_CHECK_HEADERS(sys/filio.h sys/sockio.h netdb.h utime.h sys/utime.h semaphore.h sys/un.h linux/rtc.h sys/syscall.h sys/mkdev.h sys/uio.h sys/param.h sys/sysctl.h libproc.h) -AC_CHECK_HEADERS(sys/param.h sys/socket.h sys/ipc.h sys/sem.h sys/utsname.h alloca.h ucontext.h pwd.h sys/select.h netinet/tcp.h netinet/in.h unistd.h sys/types.h link.h asm/sigcontext.h sys/inotify.h arpa/inet.h) +AC_CHECK_HEADERS(sys/param.h sys/socket.h sys/ipc.h sys/sem.h sys/utsname.h alloca.h ucontext.h pwd.h sys/select.h netinet/tcp.h netinet/in.h unistd.h sys/types.h link.h asm/sigcontext.h sys/inotify.h arpa/inet.h complex.h) AC_CHECK_HEADERS([linux/netlink.h linux/rtnetlink.h], [], [], [#include #include @@ -631,17 +628,6 @@ fi AC_SUBST([mcs_topdir]) AC_SUBST([mcs_topdir_from_srcdir]) -# Where's the 'olive' source tree? -if test -d $srcdir/olive; then - olivedir=olive -else - olivedir=../olive -fi - -if test -d $srcdir/$olivedir; then -olive_topdir='$(top_srcdir)/'$olivedir -fi - # gettext: prepare the translation directories. # we do not configure the full gettext, as we consume it dynamically from C# AM_PO_SUBDIRS @@ -3061,6 +3047,19 @@ if test "x$host" != "x$target"; then with_tls=pthread target_mach=no ;; + x86_64-ps4-freebsd) + TARGET=AMD64; + arch_target=amd64; + AC_DEFINE(TARGET_AMD64, 1, [...]) + AC_DEFINE(TARGET_PS4, 1, [...]) + CPPFLAGS="$CPPFLAGS" + sgen_supported=true + # Can't use tls, since it depends on the runtime detection of tls offsets + # in mono-compiler.h + with_tls=pthread + target_mach=no + target_win32=no + ;; aarch64*-linux-*) TARGET=ARM64; arch_target=arm64; @@ -3837,7 +3836,6 @@ AC_CONFIG_COMMANDS([nolock-libtool], [sed -e 's/lock_old_archive_extraction=yes/ AC_OUTPUT([ Makefile -mono-core.spec mono-uninstalled.pc scripts/mono-find-provides scripts/mono-find-requires @@ -4018,22 +4016,6 @@ fi fi - # if we have an olive folder, override the default settings - if test -d $olivedir; then - - if test x$cross_compiling = xno && test x$enable_olive_build != xno; then - - test -w $srcdir/$olivedir/build || chmod +w $srcdir/$olivedir/build - - echo "prefix=$prefix" > $srcdir/$olivedir/build/config.make - echo "exec_prefix=$exec_prefix" >> $srcdir/$olivedir/build/config.make - echo 'mono_libdir=${exec_prefix}/lib' >> $srcdir/$olivedir/build/config.make - echo 'MCS_FLAGS = $(PLATFORM_DEBUG_FLAGS)' >> $srcdir/$olivedir/build/config.make - echo "RUNTIME = $mono_build_root/runtime/mono-wrapper" >> $srcdir/$olivedir/build/config.make - echo "MONO_VERSION = $myver" >> $srcdir/$olivedir/build/config.make - fi - fi - ) libgdiplus_msg=${libgdiplus_loc:-assumed to be installed} diff --git a/docs/Makefile.am b/docs/Makefile.am index 811955257bb..9c514420403 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -14,7 +14,6 @@ ASSEMBLED_DOCS = \ EXTRA_DIST = \ abc-removal.txt \ api-style.css \ - assembly-bundle \ check-exports \ check-coverage \ convert.cs \ @@ -23,7 +22,6 @@ EXTRA_DIST = \ docs.make \ documented \ embedded-api \ - exceptions \ exdoc \ file-share-modes \ gc-issues \ @@ -35,33 +33,25 @@ EXTRA_DIST = \ jit-imt \ jit-thoughts \ jit-trampolines \ - local-regalloc.txt \ - magic.diff \ mini-doc.txt \ mono-api-metadata.html \ mono-file-formats.config\ mono-file-formats.source\ - mono_handle_d \ mono-tools.config \ mono-tools.source \ monoapi.source \ - new-regalloc \ object-layout \ - opcode-decomp.txt \ precise-gc \ produce-lists \ public \ public-api \ README \ - release-notes-1.0.html \ remoting \ ssapre.txt \ - stack-alignment \ stack-overflow.txt \ threading \ toc.xml \ TODO \ - tree-mover.txt \ unmanaged-calls dist-hook: diff --git a/docs/assembly-bundle b/docs/assembly-bundle deleted file mode 100644 index 3e64e147cb1..00000000000 --- a/docs/assembly-bundle +++ /dev/null @@ -1,57 +0,0 @@ - - HOWTO bundle assemblies inside the mono runtime. - Paolo Molaro (lupus@ximian.com) - -* Intent - - Bundling assemblies inside the mono runtime may be useful for a number - of reasons: - - * creating a standalone complete runtime that can be more easily - distributed - - * having an application run against a known set of assemblies - that has been tested - - Of course, there are drawbacks, too: if there has been fixes - to the assemblies, replacing them means recompiling the - runtime as well and if there are other mono apps, unless they - use the same mono binary, there will be less opportunities for - the operating system to optimize memory usage. So use this - feature only when really needed. - -* Creating the Bundle - - To bundle a set of assemblies, you need to create a file that - lists the assembly names and the relative files. Empty lines - and lines starting with # are ignored: - - == cut cut == - # Sample bundle template - mscorlib: /path/to/mscorlib/assembly.dll - myapp: /path/to/myapp.exe - == cut cut == - - Next you need to build the mono runtime using a special configure option: - - ./configure --with-bundle=/path/to/bundle/template - - The path to the template should be an absolute path. - - The script metadata/make-bundle.pl will take the specifie - assemblies and embed them inside the runtime where the loading - routines can find them before searching for them on disk. - -* Open Issues - - There are still two issues to solve: - - * config files: sometimes they are needed but they are - not yet bundled inside the library () - - * building with the included libgc makes it not - possible to build a mono binary statically linked to - libmono: this needs to be fixed to make bundles - really useful. - - diff --git a/docs/exceptions b/docs/exceptions index d5ecaeead43..bd22de9f25f 100644 --- a/docs/exceptions +++ b/docs/exceptions @@ -71,40 +71,3 @@ unwinding code. catch handler: catch hanlders are always called from the stack unwinding code. The exception object is passed in a local variable (cfg->exvar). - -gcc support for Exceptions -========================== - -gcc supports exceptions in files compiled with the -fexception option. gcc -generates DWARF exceptions tables in that case, so it is possible to unwind the -stack. The method to read those exception tables is contained in libgcc.a, and -in newer versions of glibc (glibc 2.2.5 for example), and it is called -__frame_state_for(). Another usable glibc function is backtrace_symbols() which -returns the function name corresponding to a code address. - -We dynamically check if those features are available using g_module_symbol(), -and we use them only when available. If not available we use the LMF as -fallback. - -Using gcc exception information prevents us from saving the LMF at each native -call, so this is a way to speed up native calls. This is especially valuable -for internal calls, because we can make sure that all internal calls are -compiled with -fexceptions (we compile the whole mono runtime with that -option). - -All native function are able to call function without exception tables, and so -we are unable to restore all caller saved registers if an exception is raised -in such function. Well, its possible if the previous function already saves all -registers. So we only omit the the LMF if a function has an exception table -able to restore all caller saved registers. - -One problem is that gcc almost never saves all caller saved registers, because -it is just unnecessary in normal situations. But there is a trick forcing gcc -to save all register, we just need to call __builtin_unwind_init() at the -beginning of a function. That way gcc generates code to save all caller saved -register on the stack. - - - - - \ No newline at end of file diff --git a/docs/local-regalloc.txt b/docs/local-regalloc.txt deleted file mode 100644 index a6e523557fe..00000000000 --- a/docs/local-regalloc.txt +++ /dev/null @@ -1,208 +0,0 @@ - -* Proposal for the local register allocator - - The local register allocator deals with allocating registers - for temporaries inside a single basic block, while the global - register allocator is concerned with method-wide allocation of - variables. - The global register allocator uses callee-saved register for it's - purpouse so that there is no need to save and restore these registers - at call sites. - - There are a number of issues the local allocator needs to deal with: - *) some instructions expect operands in specific registers (for example - the shl instruction on x86, or the call instruction with thiscall - convention, or the equivalent call instructions on other architectures, - such as the need to put output registers in %oX on sparc) - *) some instructions deliver results only in specific registers (for example - the div instruction on x86, or the call instructionson on almost all - the architectures). - *) it needs to know what registers may be clobbered by an instruction - (such as in a method call) - *) it should avoid excessive reloads or stores to improve performance - - While which specific instructions have limitations is architecture-dependent, - the problem shold be solved in an arch-independent way to reduce code duplication. - The register allocator will be 'driven' by the arch-dependent code, but it's - implementation should be arch-independent. - - To improve the current local register allocator, we need to - keep more state in it than the current setup that only keeps busy/free info. - - Possible state information is: - - free: the resgister is free to use and it doesn't contain useful info - freeable: the register contains data loaded from a local (there is - also info about _which_ local it contains) as a result from previous - instructions (like, there was a store from the register to the local) - moveable: it contains live data that is needed in a following instruction, but - the contents may be moved to a different register - busy: the register contains live data and it is placed there because - the following instructions need it exactly in that register - allocated: the register is used by the global allocator - - The local register allocator will have the following interfaces: - - int get_register (); - Searches for a register in the free state. If it doesn't find it, - searches for a freeable register. Sets the status to moveable. - Looking for a 'free' register before a freeable one should allow for - removing a few redundant loads (though I'm still unsure if such - things should be delegated entirely to the peephole pass). - - int get_register_force (int reg); - Returns 'reg' if it is free or freeable. If it is moveable, it moves it - to another free or freeable register. - Sets the status of 'reg' to busy. - - void set_register_freeable (int reg); - Sets the status of 'reg' to freeable. - - void set_register_free (int reg); - Sets the status of 'reg' to free. - - void will_clobber (int reg); - Spills the register to the stack. Sets the status to freeable. - After the clobbering has occurred, set the status to free. - - void register_unspill (int reg); - Un-spills register reg and sets the status to moveable. - - FIXME: how is the 'local' information represented? Maybe a MonoInst* pointer. - - Note: the register allocator will insert instructions in the basic block - during it's operation. - -* Examples - - Given the tree (on x86 the right argument to shl needs to be in ecx): - - store (local1, shl (local1, call (some_arg))) - - At the start of the basic block, the registers are set to the free state. - The sequence of instructions may be: - instruction register status -> [%eax %ecx %edx] - start free free free - eax = load local1 mov free free - /* call clobbers eax, ecx, edx */ - spill eax free free free - call mov free free - /* now eax contains the right operand of the shl */ - mov %eax -> %ecx free busy free - un-spill mov busy free - shl %cl, %eax mov free free - - The resulting x86 code is: - mov $fffc(%ebp), %eax - mov %eax, $fff0(%ebp) - push some_arg - call func - mov %eax, %ecx - mov $fff0(%ebp), %eax - shl %cl, %eax - - Note that since shl could operate directly on memory, we could have: - - push some_arg - call func - mov %eax, %ecx - shl %cl, $fffc(%ebp) - - The above example with loading the operand in a register is just to complicate - the example and show that the algorithm should be able to handle it. - - Let's take another example with the this-call call convention (the first argument - is passed in %ecx). - In this case, will_clobber() will be called only on %eax and %edx, while %ecx - will be allocated with get_register_force (). - Note: when a register is allocated with get_register_force(), it should be set - to a different state as soon as possible. - - store (local1, shl (local1, this-call (local1))) - - instruction register status -> [%eax %ecx %edx] - start free free free - eax = load local1 mov free free - /* force load in %ecx */ - ecx = load local1 mov busy free - spill eax free busy free - call mov free free - /* now eax contains the right operand of the shl */ - mov %eax -> %ecx free busy free - un-spill mov busy free - shl %cl, %eax mov free free - - What happens when a register that we need to allocate with get_register_force () - contains an operand for the next instruction? - - instruction register status -> [%eax %ecx %edx] - eax = load local0 mov free free - ecx = load local1 mov mov free - get_register_force (ecx) here. - We have two options: - mov %ecx, %edx - or: - spill %ecx - The first option is way better (and allows the peephole pass to - just load the value in %edx directly, instead of loading first to %ecx). - This doesn't work, though, if the instruction clobbers the %edx register - (like in a this-call). So, we first need to clobber the registers - (so the state of %ecx changes to freebale and there is no issue - with get_register_force ()). - What if an instruction both clobbers a register and requires it as - an operand? Lets' take the x86 idiv instruction as an example: it - requires the dividend in edx:eax and returns the result in eax, - with the modulus in edx. - - store (local1, div (local1, local2)) - - instruction register status -> [%eax %ecx %edx] - eax = load local0 mov free free - will_clobber eax, edx free mov free - force mov %ecx, %eax busy free free - set %edx busy free busy - idiv mov free free - - Note: edx is set to free after idiv, because the modulus is not needed - (if it was a rem, eax would have been freed). - If we load the divisor before will_clobber(), we'll have to spill - eax and reload it later. If we load it just after the idiv, there is no issue. - In any case, the algorithm should give the correct results and allow the operation. - - Working recursively on the isntructions there shouldn't be huge issues - with this algorithm (though, of course, it's not optimal and it may - introduce excessive spills or register moves). The advantage over the current - local reg allocator is that: - 1) the number of spills/moves would be smaller anyway - 2) a separate peephole pass could be able to eliminate reg moves - 3) we'll be able to remove the 'forced' spills we currently do with - the return value of method calls - -* Issues - - How to best integrate such a reg allocator with the burg stuff. - - Think about a call os sparc with two arguments: they got into %o0 and %o1 - and each of them sets the register as busy. But what if the values to put there - are themselves the result of a call? %o0 is no problem, but for all the - next argument n the above algorithm would spill all the 0...n-1 registers... - -* Papers - - More complex solutions to the local register allocator problem: - http://dimacs.rutgers.edu/TechnicalReports/abstracts/1997/97-33.html - - Combining register allocation and instruction scheduling: - http://citeseer.nj.nec.com/motwani95combining.html - - More on LRA euristics: - http://citeseer.nj.nec.com/liberatore97hardness.html - - Linear-time optimal code scheduling for delayedload architectures - http://www.cs.wisc.edu/~fischer/cs701.f01/inst.sched.ps.gz - - Precise Register Allocation for Irregular Architectures - http://citeseer.nj.nec.com/kong98precise.html - - Allocate registers first to subtrees that need more of them. - http://www.upb.de/cs/ag-kastens/compii/folien/comment401-409.2.pdf diff --git a/docs/mono_handle_d b/docs/mono_handle_d deleted file mode 100644 index a8f97b141c3..00000000000 --- a/docs/mono_handle_d +++ /dev/null @@ -1,98 +0,0 @@ -=pod - -=head1 Internal design document for the mono_handle_d - -This document is designed to hold the design of the mono_handle_d and -not as an api reference. - -=head2 Primary goal and purpose - -The mono_handle_d is a process which takes care of the (de)allocation -of scratch shared memory and handles (of files, threads, mutexes, -sockets etc. see L) and refcounts of the -filehandles. It is designed to be run by a user and to be fast, thus -minimal error checking on input is done and will most likely crash if -given a faulty package. No effort has been, or should be, made to have -the daemon talking to machine of different endianness/size of int. - -=head2 How to start the daemon - -To start the daemon you either run the mono_handle_d executable or try -to attach to the shared memory segment via L<_wapi_shm_attach> which -will start a daemon if one does not exist. - -=head1 Internal details - -The daemon works by opening a socket and listening to clients. These -clients send packages over the socket complying to L. - -=head2 Possible requests - -=over - -=item WapiHandleRequest_New - -Find a handle in the shared memory segment that is free and allocate -it to the specified type. To destroy use -L. A L with -.type=WapiHandleResponseType_New will be sent back with .u.new.handle -set to the handle that was allocated. .u.new.type is the type that was -requested. - -=item WapiHandleRequestType_Open - -Increase the ref count of an already created handle. A -L with .type=WapiHandleResponseType_Open will be sent -back with .u.new.handle set to the handle, .u.new.type is set to the -type of handle this is. - -=item WapiHandleRequestType_Close - -Decrease the ref count of an already created handle. A -L with .type=WapiHandleResponseType_Close will be -sent back with .u.close.destroy set to TRUE if ref count for this -client reached 0. - -=item WapiHandleRequestType_Scratch - -Allocate a shared memory area of size .u.scratch.length in bytes. A -L with .type=WapiHandleResponseType_Scratch will be -sent back with .u.scratch.idx set to the index into the shared -memory's scratch area where to memory begins. (works just like -malloc(3)) - -=item WapiHandleRequestType_Scratch - -Deallocate a shared memory area, this must have been allocated before -deallocating. A L with -.type=WapiHandleResponseType_ScratchFree will be sent back (works just -like free(3)) - -=back - -=head1 Why a daemon - -From an email: - -Dennis: I just have one question about the daemon... Why does it -exist? Isn't it better performancewise to just protect the shared area -with a mutex when allocation a new handle/shared mem segment or -changing refcnt? It will however be a less resilient to clients that -crash (the deamon cleans up ref'd handles if socket closes) - -Dick: It's precisely because with a mutex the shared memory segment -can be left in a locked state. Also, it's not so easy to clean up -shared memory without it (you can't just mark it deleted when creating -it, because you can't attach any more readers to the same segment -after that). I did some minimal performance testing, and I don't -think the daemon is particularly slow. - - -=head1 Authors - -Documentaion: Dennis Haney - -Implementation: Dick Porter - -=cut diff --git a/docs/new-regalloc b/docs/new-regalloc deleted file mode 100644 index b687c2b50c6..00000000000 --- a/docs/new-regalloc +++ /dev/null @@ -1,68 +0,0 @@ -We need to switch to a new register allocator. -The current one is split in a global and a local register allocator. -The global one can assign only callee-saves registers and happens -on the tree-based internal representation: it assigns local variables -to hardware registers. -The local one happens on the linear representation on a per basic -block basis and assigns hard registers to virtual registers (which -hold temporary values during expression executions) and it deals also -with the platform-specific issues (fixed registers, call conventions). - -Moving to a different register will help solve some of the performance -issues introduced by the above split, make the register more easily -portable and solve some of the issues generated by dealing with trees. - -The general design ideas are below. - -The new allocator should have a global view of all the method, so it can be -able to assign variables also to some of the volatile registers if possible, -even across basic blocks (this would improve performance). - -The allocator would be driven by per-arch declarative data, so porting -should be easier: an architecture needs to specify register classes, -call convention and instructions requirements (similar to the gcc code). - -The allocator should operate on the linear representation, this way it's -easier and faster to track usages more correctly. We need to assign virtual -registers on a per-method basis instead of per basic block. We can assign -virtual registers to variables, too. Note that since we fix the stack offset -of local vars only after this step (which happens after the burg rules are run), -some of the burg rules that try to optimize the code won't apply anymore: -the peephole code may need to be enhanced to do the optimizations instead. - -We need to handle floating point registers in the global allocator, too. - -The new allocator also needs to keep track precisely of which registers -contain references or managed pointers to allow us to move to a precise GC. - -It may be worth to use a single increasing set of integers for the virtual -registers, with the class of the register stored separately (unless the -current local allocator which keeps interger and fp registers separate). - -Since this is a large task, we need to do it in steps as much as possible. -The first is to run the register allocator _after_ the burg rules: this -requires a rewrite of the liveness code, too, to use linear indexes instead -of basic-block/tree number combinations. This can be done by: -*) allocating virtual regs to all the locals that can be register allocated -*) running the burg rules (some may require adjustments): the local virtual -registers are assigned starting from global-virt-regs+1, instead of the current -hardware-regs+1, so we can tell apart global and local virt regs. -*) running the liveness/whatever code is needed to allocate the global registers -*) allocate the rest of the local variables to stack slots -*) continue with the current local allocator - -This work could take 2-3 weeks. - -The next step is to define the kind of declarative data an architecture needs -and assigning virtual regs to all the registers and making the allocator -assign from the volatile registers, too. -Note that some of the code that is currently emitted in the arch-specific -code, will need to be emitted as instructions that the reg allocator -can inspect: think of a method that returns the first argument which is -received in a register: the current code copies it to either a local slot or -to a global reg in the prolog an copies it back to the return register -int he basic block, but since neither the regallocator nor the peephole code -knows about the prolog code, the first store cannot be optimized away. -The gcc code has some example of how to specify register classes in a -declarative way. - diff --git a/docs/opcode-decomp.txt b/docs/opcode-decomp.txt deleted file mode 100644 index 48968d17ab9..00000000000 --- a/docs/opcode-decomp.txt +++ /dev/null @@ -1,113 +0,0 @@ - -* How to handle complex IL opcodes in an arch-independent way - - Many IL opcodes are very simple: add, ldind etc. - Such opcodes can be implemented with a single cpu instruction - in most architectures (on some, a group of IL instructions - can be converted to a single cpu op). - There are many IL opcodes, though, that are more complex, but - can be expressed as a series of trees or a single tree of - simple operations. Such simple operations are architecture-independent. - It makes sense to decompose such complex IL instructions in their - simpler equivalent so that we gain in several ways: - *) porting effort is easier, because only the simple instructions - need to be implemented in arch-specific code - *) we could apply BURG rules to the trees and do pattern matching - on them to optimize the expressions according to the host cpu - - The issue is: where do we do such conversion from coarse opcodes to - simple expressions? - -* Doing the conversion in method_to_ir () - - Some of these conversions can certainly be done in method_to_ir (), - but it's not always easy to decide which are better done there and - which in a different pass. - For example, let's take ldlen: in the mono implementation, ldlen - can be simply implemented with a load from a fixed position in the - array object: - - len = [reg + maxlen_offset] - - However, ldlen carries also semantics information: the result is the - length of the array, and since in the CLR arrays are of fixed size, - this information can be useful to later do bounds check removal. - If we convert this opcode in method_to_ir () we lost some useful - information for further optimizations. - - In some other ways, decomposing an opcode in method_to_ir() may - allow for better optimizations later on (need to come up with an - example here ...). - -* Doing the conversion in inssel.brg - - Some conversion may be done inside the burg rules: this has the - disadvantage that the instruction selector is not run again on - the resulting expression tree and we could miss some optimization - (this is what effectively happens with the coarse opcodes in the old - jit). This may also interfere with an efficient local register allocator. - It may be possible to add an extension in monoburg that allows a rule - such as: - - recheck: LDLEN (reg) { - create an expression tree representing LDLEN - and return it - } - - When the monoburg label process gets back a recheck, it will run - the labeling again on the resulting expression tree. - If this is possible at all (and in an efficient way) is a - question for dietmar:-) - It should be noted, though, that this may not always work, since - some complex IL opcodes may require a series of expression trees - and handling such cases in monoburg could become quite hairy. - For example, think of opcode that need to do multiple actions on the - same object: this basically means a DUP... - On the other end, if a complex opcode needs a DUP, monoburg doesn't - actually need to create trees if it emits the instructions in - the correct sequence and maintains the right values in the registers - (usually the values that need a DUP are not changed...). How - this integrates with the current register allocator is not clear, since - that assigns registers based on the rule, but the instructions emitted - by the rules may be different (this already happens with the current JIT - where a MULT is replaced with lea etc...). - -* Doing it in a separate pass. - - Doing the conversion in a separate pass over the instructions - is another alternative. This can be done right after method_to_ir () - or after the SSA pass (since the IR after the SSA pass should look - almost like the IR we get back from method_to_ir ()). - - This has the following advantages: - *) monoburg will handle only the simple opcodes (makes porting easier) - *) the instruction selection will be run on all the additional trees - *) it's easier to support coarse opcodes that produce multiple expression - trees (and apply the monoburg selector on all of them) - *) the SSA optimizer will see the original opcodes and will be able to use - the semantic info associated with them - - The disadvantage is that this is a separate pass on the code and - it takes time (how much has not been measured yet, though). - - With this approach, we may also be able to have C implementations - of some of the opcodes: this pass would insert a function call to - the C implementation (for example in the cases when first porting - to a new arch and implemenating some stuff may be too hard in asm). - -* Extended basic blocks - - IL code needs a lot of checks, bounds checks, overflow checks, - type checks and so on. This potentially increases by a lot - the number of basic blocks in a control flow graph. However, - all such blocks end up with a throw opcode that gives control to the - exception handling mechanism. - After method_to_ir () a MonoBasicBlock can be considered a sort - of extended basic block where the additional exits don't point - to basic blocks in the same procedure (at least when the method - doesn't have exception tables). - We need to make sure the passes following method_to_ir () can cope - with such kinds of extended basic blocks (especially the passes - that we need to apply to all the methods: as a start, we could - skip SSA optimizations for methods with exception clauses...) - diff --git a/docs/reactive-extension-bundle.txt b/docs/reactive-extension-bundle.txt deleted file mode 100644 index 175818a63be..00000000000 --- a/docs/reactive-extension-bundle.txt +++ /dev/null @@ -1,49 +0,0 @@ -With this change, we bundle Reactive Extensions from Microsoft. - -Steps to do: - -- Until we add submodule, check out Rx sources from http://rx.codeplex.com: - - $ cd external - $ git clone git://github.com/atsushieno/rx.git - $ cd rx - $ git checkout rx-oss-v1.0 - $ cd ../.. - - Note that the original repo at rx.codeplex.com will *fail* on Linux! - codeplex.codeplex.com/workitem/26133 - Also note that rx.codeplex.com is huge and takes very long time to checkout. - -- expand rx-mono-changes-3.tar.bz2 - - $ tar jxvf rx-mono-changes-3.tar.bz2 - -- Apply changes to mcs/class/Makefile: - - $ cd mcs/class - $ patch -i add-rx-libs.patch -p3 - $ cd ../.. - -Then it should be done. - -Note that this does not include Mono.Reactive.Testing into the build yet - -this library depends on nunit.framework.dll but it wouldn't be built before -this assembly is built. This needs to be resolved. - -** Current Status - -- We don't have Microsoft.Reactive.Testing.dll. Instead, I created an - alternative Mono.Reactive.Testing.dll which *mostly* uses MS sources for - that assembly but uses NUnit.Framework instead. - - To make it happen, I added a small script that automatically replaces - MSTest dependency parts with that for NUnit (replacer.sh under rx tree). - - (We'll also have to rename namespaces and have more source changes, but - so far it is to get things runnable.) - -- To check the build sanity, I imported unit tests (as explained above) - and it is supposed to run by "make run-test" in Mono.Reactive.Testing - directory (the tests were all in one place in MS tests, so I made it - in Mono.Reactive.Testing directory instead). - diff --git a/docs/release-notes-1.0.html b/docs/release-notes-1.0.html deleted file mode 100644 index 9c305433c51..00000000000 --- a/docs/release-notes-1.0.html +++ /dev/null @@ -1,16 +0,0 @@ -

Mono 1.0 Release Notes

- -

What does Mono Include

- -

Missing functionality

- -

COM support. - -

EnterpriseServices are non-existant. - -

Windows.Forms is only available as a preview, it is not - completed nor stable. - -

Assembly: System.Drawing

- -

System.Drawing.Printing is not supported. \ No newline at end of file diff --git a/docs/stack-alignment b/docs/stack-alignment deleted file mode 100644 index da995fb288f..00000000000 --- a/docs/stack-alignment +++ /dev/null @@ -1,33 +0,0 @@ -Size and alignment requirements of stack values -=============================================== - -P ... System.IntPtr -I1 ... System.Int8 -I2 ... System.Int16 -I4 ... System.Int32 -I8 ... System.Int64 -F ... System.Single -D ... System.Double -LD ... native long double - ------------------------------------------------------------ -ARCH | P | I1 | I2 | I4 | I8 | F | D | LD | ------------------------------------------------------------ -X86 | 4/4 | 4/4 | 4/4 | 4/4 | 8/4 | 4/4 | 8/4 |12/4 | ------------------------------------------------------------ -X86/W32 | 4/4 | 4/4 | 4/4 | 4/4 | 8/4 | 4/4 | 8/4 |12/4 | ------------------------------------------------------------ -ARM | 4/4 | 4/4 | 4/4 | 4/4 | 8/4 | 4/4 | 8/4 | 8/4 | ------------------------------------------------------------ -M68K | 4/4 | 4/4 | 4/4 | 4/4 | 8/4 | 4/4 | 8/4 |12/4 | ------------------------------------------------------------ -ALPHA | 8/8 | 8/8 | 8/8 | 8/8 | 8/8 | 8/8 | 8/8 | 8/8 | ------------------------------------------------------------ -SPARC | 4/4 | 4/4 | 4/4 | 4/4 | 8/8 | 4/4 | 8/8 |16/8 | ------------------------------------------------------------ -SPARC64 | 8/8 | 8/8 | 8/8 | 8/8 | 8/8 | 8/8 | 8/8 |16/16| ------------------------------------------------------------ -MIPS | 4/4 | 4/4 | 4/4 | 4/4 | ?/? | 4/4 | 8/8 | 8/8 | ------------------------------------------------------------ - | | | | | | | | | ------------------------------------------------------------ diff --git a/docs/tree-mover.txt b/docs/tree-mover.txt deleted file mode 100644 index 3ee836a5b2f..00000000000 --- a/docs/tree-mover.txt +++ /dev/null @@ -1,261 +0,0 @@ - -Purpose - -Especially when inlining is active, it can happen that temporary -variables add pressure to the register allocator, producing bad -code. - -The idea is that some of these temporaries can be totally eliminated -my moving the MonoInst tree that defines them directly to the use -point in the code (so the name "tree mover"). - -Please note that this is *not* an optimization: it is mostly a -workaround to issues we have in the regalloc. -Actually, with the new linear IR this will not be possible at all -(there will be no more trees in the code!). -Anyway, this workaround turns out to be useful in the current state -of things... - ------------------------------------------------------------------------ - -Base logic - -If a local is defined by a value which is a proper expression (a tree -of MonoInst, not just another local or a constant), and this definition -is used only once, the tree can be moved directly to the use location, -and the definition eliminated. -Of course, none of the variables used in the tree must be defined in -the code path between the definition and the use, and the tree must be -free of side effects. -We do not handle the cases when the tree is just a local or a constant -because they are handled by copyprop and consprop, respectively. - -To make things simpler, we restrict the tree move to the case when: -- the definition and the use are in the same BB, and -- the use is followed by another definition in the same BB (it is not - possible that the 1st value is used again), or alternatively there - is no BB in the whole CFG that contains a use of this local before a - definition (so, again, there is no code path that can lead to a - subsequent use). - -To handle this, we maintain an ACT array (Available Copy Tree, similar -to the ACP), where we store the "state" of every local. -Ideally, every local can be in the following state: -[E] Undefined (by a tree, it could be in the ACP but we don't care). -[D] Defined (by a tree), and waiting for a use. -[U] Used, with a tree definition available in the same BB, but still - without a definition following the use (always in the same BB). -Of course state [E] (empty) is the initial one. - -Besides, there are two sort of "meta states", or flags: -[W] Still waiting for a use or definition in this BB (we have seen no - occurrence of the local yet). -[X] Used without being previously defined in the same BB (note that if - there is a definition that precedes the use in the same BB, even if - the definition is not a tree or is not available because of side - effects or because the tree value has changed the local is not in - state [X]). -Also note that state [X] is a sort of "global" condition, which if set -in one BB will stay valid for the whole CFG, even if the local will -otherwise change state. The idea of flagging a local as [X] is that if -there is a definition/use pair that reaches the end of a BB, it could -be that there is a CFG path that then leads to the BB flagging it as -[X] (which contains a use), so the tree cannot be moved. -So state [X] will always be set, and never examined in all the state -transitions we will describe. -In practice, we use flag [W] to set state [X]: if, when traversing a -BB, we find a use for a local in state [W], then that local is flagged -[X]. - - -For each BB, we initialize all states to [E] and [W], and then we -traverse the code one inst at a time, and update the variable states -in the ACT in the following ways: - -[Definition] - - Flag [W] is cleared. - - All "affected trees" are killed (go from state [D] to [E]). - The "affected trees" are the trees which contain (use) the defined - local, and the rationale is that the tree value changed, so the - tree is no longer available. - - If the local was in state [U], *that* tree move is marked "safe" - (because *this* definition makes us sure that the previous tree - cannot be used again in any way). - The idea is that "safe" moves can happen even if the local is - flagged [X], because the second definition "covers" the use. - The tree move is then saved in the "todo" list (and the affecting - nodes are cleared). - - If the local was defined by a tree, it goes to state [D], the tree - is recorded, and all the locals used in it are marked as "affecting - this tree" (of course these markers are lists, because each local - could affect more than one tree). - -[IndirectDefinition] - - All potentially affected trees (in state [D]) are killed. - -[Use] - - If the local is still [W], it is flagged [X] (the [W] goes away). - - If the local is in state [D], it goes to state [U]. - The tree move must not yet be recorded in the "todo" list, it still - stays in the ACT slot belonging to this local. - Anyway, the "affecting" nodes are updated, because now a definition - of a local used in this tree will affect only "indirect" (or also - "propagated") moves, but not *this* move (see below). - - If the local is in state [U], then the tree cannot be moved (it is - used two times): the move is canceled, and the state goes [E]. - - If the local is in state [E], the use is ignored. - -[IndirectUse] - - All potentially affected trees (in state [D] or [U]) are killed. - -[SideEffect] - - Tree is marked as "unmovable". - -Then, at the end of the BB, for each ACT slot: - - If state is [U], the tree move is recorded in the "todo" list, but - flagged "unsafe". - - Anyway, state goes to [E], the [W] flag is set, and all "affecting" - lists are cleared (we get ready to traverse the next BB). -Finally, when all BBs has been scanned, we traverse the "todo" list, -moving all "safe" entries, and moving "unsafe" ones only if their ACT -slot is not flagged [X]. - -So far, so good. -But there are two issues that make things harder :-( - -The first is the concept of "indirect tree move". -It can happen that a tree is scheduled for moving, and its destination -is a use that is located in a second tree, which could also be moved. -The main issue is that a definition of a variable of the 1st tree on -the path between the definition and the use of the 2nd one must prevent -the move. -But which move? The 1st or the 2nd? -Well, any of the two! -The point is, the 2nd move must be prevented *only* if the 1st one -happens: if it is aborted (for an [X] flag or any other reason), the -2nd move is OK, and vice versa... -We must handle this in the following way: -- The ACT must still remember if a slot is scheduled for moving in - this BB, and if it is, all the locals used in the tree. - We say that the slot is in state [M]. - Note that [M] is (like [X] and [W]) a sort of "meta state": a local - is flagged [M] when it goes to state [U], and the flag is cleared - when the tree move is cancelled -- A tree that uses a local whose slot is in state [M] is also using all - the locals used by the tree in state [M], but the use is "indirect". - These use nodes are also included in the "affecting" lists. -- The definition of a variable used in an "indirect" way has the - effect of "linking" the two involved tree moves, saying that only one - of the two can happen in practice, but not both. -- When the 2nd tree is scheduled for moving, the 1st one is *still* in - state [M], because a third move could "carry it forward", and all the - *three* moves should be mutually exclusive (to be safe!). - -The second tricky complication is the "tree forwarding" that can happen -when copyprop is involved. -It is conceptually similar to the "indirect tree move". -Only, the 2nd tree is not really a tree, it is just the local defined -in the 1st tree move. -It can happen that copyprop will propagate the definition. -We cannot make treeprop do the same job of copyprop, because copyprop -has less constraints, and is therefore more powerful in its scope. -The main issue is that treeprop cannot propagate a tree to *two* uses, -while copyprop is perfectly capable of propagating one definition to -two (or more) different places. -So we must let copyprop do its job otherwise we'll miss optimizations, -but we must also make it play safe with treeprop. -Let's clarify with an example: - a = v1 + v2; //a is defined by a tree, state [D], uses v2 and v2 - b = a; //a is used, state [U] with move scheduled, and - //b is defined by a, ACP[b] is a, and b is in state [DC] - c = b + v3; // b is used, goes to state [U] -The real trouble is that copyprop happens *immediately*, while treeprop -is deferred to the end of the CFG traversal. -So, in the 3rd statement, the "b" is immediately turned into an "a" by -copyprop, regardless of what treeprop will do. -Anyway, if we are careful, this is not so bad. -First of all, we must "accept" the fact that in the 3rd statement the -"b" is in fact an "a", as treeprop must happen *after* copyprop. -The real problem is that "a" is used twice: in the 2nd and 3rd lines. -In our usual setup, the 2nd line would set it to [U], and the 3rd line -would kill the move (and set "a" to [E]). -I have tried to play tricks, and reason as of copyprop didn't happen, -but everything becomes really messy. -Instead, we should note that the 2nd line is very likely to be dead. -At least in this BB, copyprop will turn all "b"s into "a"s as long as -it can, and when it cannot, it will be because either "a" or "b" have -been redefined, which would be after the tree move anyway. -So, the reasoning gets different: let's pretend that "b" will be dead. -This will make the "a" use in the 2nd statement useless, so there we -can "reset" "a" to [D], but also take note that if "b" will end up -not being dead, the tree move associated to this [D] must be aborted. -We can detect this in the following way: -- Either "b" is used before being defined in this BB, or -- It will be flagged "unsafe". -Both things are very easy to check. -The only quirk is that the "affecting" lists must not be cleared when -a slot goes to state [U], because a "propagation" could put it back -to state [D] (where those lists are needed, because it can be killed -by a definition to a used slot). - ------------------------------------------------------------------------ - -Implementation notes - -All the implementation runs inside the existing mono_local_cprop -function, and a separate memory pool is used to hold the temporary -data. - -A struct, MonoTreeMover, contains the pointers to the pool, the ACT, -the list of scheduled moves and auxiliary things. -This struct is allocated if the tree move pass is requested, and is -then passed along to all the involved functions, which are therefore -aware of the tree mover state. - -The ACT is an array of slots, obviously one per local. -Each slot is of type MonoTreeMoverActSlot, and contains the used and -affected locals, a pointer to the pending tree move and the "waiting" -and "unsafe" flags. - -The "affecting" lists a built from "dependency nodes", of type -MonoTreeMoverDependencyNode. -Each of the nodes contains the used and affected local, and is in -two lists: the locals used by a slot, and the locals affected by a -slot (obviously a different one). -So, each node means: "variable x is used in tree t, so a definition -of x affects tree t". -The "affecting" lists are doubly linked, to allow for O(1) deletion. -The "used" lists are simply linked, but when they are mantained there -is always a pointer to the last element to allow for O(1) list moving. -When a used list is dismissed (which happens often, any time a node is -killed), its nodes are unlinked from their respective affecting lists -and are then put in a "free" list in the MonoTreeMover to be reused. - -Each tree move is represented by a struct (MonoTreeMoverTreeMove), -which contains: -- the definition and use points, -- the "affected" moves (recall the concept of "indirect tree move"), -- the "must be dead" slots (recall "tree forwarding"). and -- a few utility flags. -The tree moves stays in the relevant ACT slot until it is ready to be -scheduled for moving, at which point it is put in a list in the -MonoTreeMover. -The tree moves structs are reused when they are killed, so there is -also a "free" list for them in the MonoTreeMover. - -The tree mover code has been added to all the relevant functions that -participate in consprop and copyprop, particularly: -- mono_cprop_copy_values takes care of variable uses (transitions from - states [D] to [U] and [U] to [E] because of killing), -- mono_cprop_invalidate_values takes care of side effects (indirect - accesses, calls...), -- mono_local_cprop_bb sets up and cleans the traversals for each BB, - and for each MonoInst it takes care of variable definitions. -To each of them has been added a MonoTreeMover parameter, which is not -NULL if the tree mover is running. -After mono_local_cprop_bb has run for all BBs, the MonoTreeMover has -the list of all the pending moves, which must be walked to actually -perform the moves (when possible, because "unsafe" flags, "affected" -moves and "must be dead" slots can still have their effects, which -must be handled now because they are fully known only at the end of -the CFG traversal). diff --git a/external/binary-reference-assemblies b/external/binary-reference-assemblies index 4abf9a74bd9..7120b216033 160000 --- a/external/binary-reference-assemblies +++ b/external/binary-reference-assemblies @@ -1 +1 @@ -Subproject commit 4abf9a74bd9a807380ba8f55a73b322625e15565 +Subproject commit 7120b21603354fced392a43ab7c581d0114fecac diff --git a/external/ikvm b/external/ikvm index d589df6e8a2..061a13cc772 160000 --- a/external/ikvm +++ b/external/ikvm @@ -1 +1 @@ -Subproject commit d589df6e8a206e28b84304a75917006a0e076c29 +Subproject commit 061a13cc772ef15f4d5528eb84fea4d51d4bda1d diff --git a/external/referencesource b/external/referencesource index 23a693e927c..0b8d054523f 160000 --- a/external/referencesource +++ b/external/referencesource @@ -1 +1 @@ -Subproject commit 23a693e927c1191a5c9857d46bcca7a456f59fa5 +Subproject commit 0b8d054523f1e88a057cd4cbf1fe808afc3e361d diff --git a/man/mcs.1 b/man/mcs.1 index 14221a83c10..a193f9f0850 100644 --- a/man/mcs.1 +++ b/man/mcs.1 @@ -249,29 +249,6 @@ This will instruct the compiler to reference the System.* libraries available on a typical dotnet framework installation, notice that this does not include all of the Mono libraries, only the System.* ones. This is a convenient shortcut for those porting code. -.TP -.I \-pkg:olive -Use this to reference the "Olive" libraries (the 3.0 and 3.5 extended -libraries). -.TP -.I \-pkg:silver -References the assemblies for creating Moonlight/Silverlight -applications. -.TP -.I \-pkg:silverdesktop -Use this option to create Moonlight/Silverlight applications that -target the desktop. This option allows developers to consume the -Silverlight APIs with the full 2.0 profile API available to them, -unlike -.I smcs -it gives full access to all the APIs that are part of Mono. The only -downside is that applications created with silverdesktop will not run -on the browser. Typically these applications will be launched -with the -.I mopen -command line tool. -.TP -For more details see the PACKAGE section in this document .ne .RE .TP diff --git a/man/mono.1 b/man/mono.1 index 7cd68eaef4a..fc49f3b9065 100644 --- a/man/mono.1 +++ b/man/mono.1 @@ -1469,6 +1469,12 @@ include "clearlooks", "nice" and "win32". .Sp The default is "win32". .TP +\fBMONO_THREAPOOL\fR +This environment variable can be used to choose the implementation of +the ThreadPool used at runtime. By default this uses the long term +Mono threadpool implementation. But a new "microsoft" value switches +the threadpool implementation to Microsoft's CoreCLR/ReferenceSource implementation. +.TP \fBMONO_TLS_SESSION_CACHE_TIMEOUT\fR The time, in seconds, that the SSL/TLS session cache will keep it's entry to avoid a new negotiation between the client and a server. Negotiation are very diff --git a/mcs/Makefile b/mcs/Makefile index cbcfdcc3e0b..b94a7c82d6e 100644 --- a/mcs/Makefile +++ b/mcs/Makefile @@ -12,7 +12,7 @@ monotouch_runtime_SUBDIRS := build class xammac_SUBDIRS := build class mobile_SUBDIRS := build class mobile_static_SUBDIRS := build class -net_4_0_SUBDIRS := build class +binary_reference_assemblies_SUBDIRS := build class net_4_5_SUBDIRS := build mcs class nunit24 ilasm tools tests errors docs xbuild_12_SUBDIRS := build class tools/xbuild xbuild_14_SUBDIRS := build class tools/xbuild @@ -30,7 +30,7 @@ dir-check: # fun specialty targets -PROFILES = net_4_5 net_4_0 xbuild_12 xbuild_14 +PROFILES = net_4_5 binary_reference_assemblies xbuild_12 xbuild_14 .PHONY: all-profiles $(STD_TARGETS:=-profiles) all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--% @@ -51,7 +51,7 @@ profiles-do--run-test: _boot_ = all clean install $(_boot_:%=profile-do--xbuild_14--%): profile-do--xbuild_14--%: profile-do--net_4_5--% $(_boot_:%=profile-do--xbuild_12--%): profile-do--xbuild_12--%: profile-do--net_4_5--% -$(_boot_:%=profile-do--net_4_0--%): profile-do--net_4_0--%: profile-do--build--% +$(_boot_:%=profile-do--binary_reference_assemblies--%): profile-do--binary_reference_assemblies--%: profile-do--build--% $(_boot_:%=profile-do--net_4_5--%): profile-do--net_4_5--%: profile-do--build--% $(_boot_:%=profile-do--monodroid--%): profile-do--monodroid--%: profile-do--build--% $(_boot_:%=profile-do--monotouch--%): profile-do--monotouch--%: profile-do--build--% diff --git a/mcs/build/Makefile b/mcs/build/Makefile index 8ca1e7c7fa2..e6d2d0a68af 100644 --- a/mcs/build/Makefile +++ b/mcs/build/Makefile @@ -18,7 +18,7 @@ PLATFORMS = darwin linux win32 PROFILES = \ basic \ build \ - net_4_0 \ + binary_reference_assemblies \ net_4_5 \ xbuild_12 \ xbuild_14 diff --git a/mcs/build/common/SR.cs b/mcs/build/common/SR.cs index 2a147b94603..836910f2ecf 100644 --- a/mcs/build/common/SR.cs +++ b/mcs/build/common/SR.cs @@ -9,8 +9,10 @@ static class AssemblyRef public const string EcmaPublicKey = "b77a5c561934e089"; #if NET_2_1 public const string FrameworkPublicKeyFull = "0024000004800000940000000602000000240000525341310004000001000100B5FC90E7027F67871E773A8FDE8938C81DD402BA65B9201D60593E96C492651E889CC13F1415EBB53FAC1131AE0BD333C5EE6021672D9718EA31A8AEBD0DA0072F25D87DBA6FC90FFD598ED4DA35E44C398C454307E8E33B8426143DAEC9F596836F97C8F74750E5975C64E2189F45DEF46B2A2B1247ADC3652BF5C308055DA9"; + public const string FrameworkPublicKeyFull2 = "00240000048000009400000006020000002400005253413100040000010001008D56C76F9E8649383049F383C44BE0EC204181822A6C31CF5EB7EF486944D032188EA1D3920763712CCB12D75FB77E9811149E6148E5D32FBAAB37611C1878DDC19E20EF135D0CB2CFF2BFEC3D115810C3D9069638FE4BE215DBF795861920E5AB6F7DB2E2CEEF136AC23D5DD2BF031700AEC232F6C6B1C785B4305C123B37AB"; #else public const string FrameworkPublicKeyFull = "00000000000000000400000000000000"; + public const string FrameworkPublicKeyFull2 = "00000000000000000400000000000000"; #endif public const string MicrosoftPublicKey = "b03f5f7f11d50a3a"; diff --git a/mcs/build/profiles/binary_reference_assemblies.make b/mcs/build/profiles/binary_reference_assemblies.make new file mode 100644 index 00000000000..d50e674b986 --- /dev/null +++ b/mcs/build/profiles/binary_reference_assemblies.make @@ -0,0 +1,7 @@ +# -*- makefile -*- + +profile-check: + @: + +NO_BUILD = yes +NO_TEST = yes diff --git a/mcs/build/profiles/net_4_0.make b/mcs/build/profiles/net_4_0.make deleted file mode 100644 index 83e22c4dcb0..00000000000 --- a/mcs/build/profiles/net_4_0.make +++ /dev/null @@ -1,12 +0,0 @@ -# -*- makefile -*- - -profile-check: - @: - -FRAMEWORK_VERSION = 4.0 -XBUILD_VERSION = 4.0 - -LIBRARY_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION) - -NO_BUILD = yes -NO_TEST = yes diff --git a/mcs/class/Makefile b/mcs/class/Makefile index cb92002d7bf..5e3a041c1e2 100644 --- a/mcs/class/Makefile +++ b/mcs/class/Makefile @@ -26,6 +26,8 @@ mobile_common_dirs := \ Mono.Security \ System \ I18N \ + System.ServiceModel.Internals \ + SMDiagnostics \ System.Runtime.Serialization \ System.Xml.Linq \ System.ServiceModel \ @@ -221,7 +223,7 @@ monotouch_runtime_SUBDIRS := $(monotouch_runtime_dirs) mobile_static_SUBDIRS := $(mobile_static_dirs) mobile_SUBDIRS := $(mobile_dynamic_dirs) xammac_SUBDIRS := $(xammac_dirs) -net_4_0_SUBDIRS := reference-assemblies +binary_reference_assemblies_SUBDIRS := reference-assemblies net_4_5_SUBDIRS := $(net_4_5_dirs) $(xbuild_4_0_dirs) net_4_5_PARALLEL_SUBDIRS := $(net_4_5_parallel_dirs) aot-compiler xbuild_12_SUBDIRS := $(xbuild_4_0_dirs) @@ -252,6 +254,7 @@ DISTFILES = \ doc/TemplateTest.cs \ notes/BitVecto32.txt \ MicrosoftAjaxLibrary/License.htm \ + test-helpers/NetworkHelpers.cs \ $(monolite_files) .PHONY: all-local $(STD_TARGETS:=-local) diff --git a/mcs/class/Mono.Parallel/Mono.Collections.Concurrent/ConcurrentOrderedList.cs b/mcs/class/Mono.Parallel/Mono.Collections.Concurrent/ConcurrentOrderedList.cs new file mode 100644 index 00000000000..0d0ba10e3ed --- /dev/null +++ b/mcs/class/Mono.Parallel/Mono.Collections.Concurrent/ConcurrentOrderedList.cs @@ -0,0 +1,338 @@ +// ConcurrentOrderedList.cs +// +// Copyright (c) 2010 Jérémie "Garuma" Laval +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// +// + + +using System; +using System.Threading; +using System.Collections; +using System.Collections.Generic; +using System.Runtime.Serialization; + +#if INSIDE_MONO_PARALLEL +using System.Collections.Concurrent; + +namespace Mono.Collections.Concurrent +#else +namespace System.Collections.Concurrent +#endif +{ +#if INSIDE_MONO_PARALLEL + public +#endif + class ConcurrentOrderedList: ICollection, IEnumerable + { + class Node + { + public T Data; + public int Key; + public Node Next; + public bool Marked; + + public Node () + { + + } + + public Node (Node wrapped) + { + Marked = true; + Next = wrapped; + } + } + + Node head; + Node tail; + + IEqualityComparer comparer; + + int count; + + public ConcurrentOrderedList () : this (EqualityComparer.Default) + { + + } + + public ConcurrentOrderedList (IEqualityComparer comparer) + { + if (comparer == null) + throw new ArgumentNullException ("comparer"); + + this.comparer = comparer; + + head = new Node (); + tail = new Node (); + head.Next = tail; + } + + public bool TryAdd (T data) + { + Node node = new Node (); + node.Data = data; + node.Key = comparer.GetHashCode (data); + + if (ListInsert (node)) { + Interlocked.Increment (ref count); + return true; + } + + return false; + } + + public bool TryRemove (T data) + { + T dummy; + return TryRemoveHash (comparer.GetHashCode (data), out dummy); + } + + public bool TryRemoveHash (int key, out T data) + { + if (ListDelete (key, out data)) { + Interlocked.Decrement (ref count); + return true; + } + + return false; + } + + public bool TryPop (out T data) + { + return ListPop (out data); + } + + public bool Contains (T data) + { + return ContainsHash (comparer.GetHashCode (data)); + } + + public bool ContainsHash (int key) + { + Node node; + + if (!ListFind (key, out node)) + return false; + + return true; + + } + + public bool TryGetFromHash (int key, out T data) + { + data = default (T); + Node node; + + if (!ListFind (key, out node)) + return false; + + data = node.Data; + return true; + } + + public void Clear () + { + head.Next = tail; + } + + public void CopyTo (T[] array, int startIndex) + { + if (array == null) + throw new ArgumentNullException ("array"); + if (startIndex < 0) + throw new ArgumentOutOfRangeException ("startIndex"); + if (count > array.Length - startIndex) + throw new ArgumentException ("array", "The number of elements is greater than the available space from startIndex to the end of the destination array."); + + foreach (T item in this) { + if (startIndex >= array.Length) + break; + + array[startIndex++] = item; + } + } + + public IEqualityComparer Comparer { + get { + return comparer; + } + } + + public int Count { + get { + return count; + } + } + + Node ListSearch (int key, ref Node left) + { + Node leftNodeNext = null, rightNode = null; + + do { + Node t = head; + Node tNext = t.Next; + do { + if (!tNext.Marked) { + left = t; + leftNodeNext = tNext; + } + t = tNext.Marked ? tNext.Next : tNext; + if (t == tail) + break; + + tNext = t.Next; + } while (tNext.Marked || t.Key < key); + + rightNode = t; + + if (leftNodeNext == rightNode) { + if (rightNode != tail && rightNode.Next.Marked) + continue; + else + return rightNode; + } + + if (Interlocked.CompareExchange (ref left.Next, rightNode, leftNodeNext) == leftNodeNext) { + if (rightNode != tail && rightNode.Next.Marked) + continue; + else + return rightNode; + } + } while (true); + } + + bool ListDelete (int key, out T data) + { + Node rightNode = null, rightNodeNext = null, leftNode = null; + data = default (T); + + do { + rightNode = ListSearch (key, ref leftNode); + if (rightNode == tail || rightNode.Key != key) + return false; + + data = rightNode.Data; + + rightNodeNext = rightNode.Next; + if (!rightNodeNext.Marked) + if (Interlocked.CompareExchange (ref rightNode.Next, new Node (rightNodeNext), rightNodeNext) == rightNodeNext) + break; + } while (true); + + if (Interlocked.CompareExchange (ref leftNode.Next, rightNodeNext, rightNode) != rightNodeNext) + ListSearch (rightNode.Key, ref leftNode); + + return true; + } + + bool ListPop (out T data) + { + Node rightNode = null, rightNodeNext = null, leftNode = head; + data = default (T); + + do { + rightNode = head.Next; + if (rightNode == tail) + return false; + + data = rightNode.Data; + + rightNodeNext = rightNode.Next; + if (!rightNodeNext.Marked) + if (Interlocked.CompareExchange (ref rightNode.Next, new Node (rightNodeNext), rightNodeNext) == rightNodeNext) + break; + } while (true); + + if (Interlocked.CompareExchange (ref leftNode.Next, rightNodeNext, rightNode) != rightNodeNext) + ListSearch (rightNode.Key, ref leftNode); + + return true; + } + + bool ListInsert (Node newNode) + { + int key = newNode.Key; + Node rightNode = null, leftNode = null; + + do { + rightNode = ListSearch (key, ref leftNode); + if (rightNode != tail && rightNode.Key == key) + return false; + + newNode.Next = rightNode; + if (Interlocked.CompareExchange (ref leftNode.Next, newNode, rightNode) == rightNode) + return true; + } while (true); + } + + bool ListFind (int key, out Node data) + { + Node rightNode = null, leftNode = null; + data = null; + + data = rightNode = ListSearch (key, ref leftNode); + + return rightNode != tail && rightNode.Key == key; + } + + IEnumerator IEnumerable.GetEnumerator () + { + return GetEnumeratorInternal (); + } + + IEnumerator IEnumerable.GetEnumerator () + { + return GetEnumeratorInternal (); + } + + IEnumerator GetEnumeratorInternal () + { + Node node = head.Next; + + while (node != tail) { + while (node.Marked) { + node = node.Next; + if (node == tail) + yield break; + } + yield return node.Data; + node = node.Next; + } + } + + bool ICollection.IsReadOnly { + get { + return false; + } + } + + void ICollection.Add (T item) + { + TryAdd (item); + } + + bool ICollection.Remove (T item) + { + return TryRemove (item); + } + } +} + diff --git a/mcs/class/Mono.Parallel/Mono.Parallel.dll.sources b/mcs/class/Mono.Parallel/Mono.Parallel.dll.sources index 7ecbf05dd9f..cddaa437481 100644 --- a/mcs/class/Mono.Parallel/Mono.Parallel.dll.sources +++ b/mcs/class/Mono.Parallel/Mono.Parallel.dll.sources @@ -2,12 +2,12 @@ ../../build/common/Locale.cs Assembly/AssemblyInfo.cs Mono.Collections.Concurrent/ConcurrentSkipList.cs +Mono.Collections.Concurrent/ConcurrentOrderedList.cs Mono.Threading/CSnzi.cs Mono.Threading/Snzi.cs Mono.Threading/SpinLockWrapper.cs Mono.Threading/ReaderWriterLockSlimmer.cs Mono.Threading/AtomicBoolean.cs -../corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs Mono.Threading.Tasks/CyclicDeque.cs Mono.Threading.Tasks/IConcurrentDeque.cs Mono.Threading.Tasks/PopResult.cs diff --git a/mcs/class/SMDiagnostics/Assembly/AssemblyInfo.cs b/mcs/class/SMDiagnostics/Assembly/AssemblyInfo.cs new file mode 100644 index 00000000000..e83ceb3e1d1 --- /dev/null +++ b/mcs/class/SMDiagnostics/Assembly/AssemblyInfo.cs @@ -0,0 +1,58 @@ +// +// AssemblyInfo.cs +// +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +using System; +using System.Reflection; +using System.Resources; +using System.Security; +using System.Security.Permissions; +using System.Diagnostics; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +[assembly: AssemblyTitle ("SMDiagnostics.dll")] +[assembly: AssemblyDescription ("Contains share code for some System.ServiceModel libraries")] +[assembly: AssemblyDefaultAlias ("System.ServiceModel.dll")] + +[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)] +[assembly: AssemblyFileVersion (Consts.FxFileVersion)] + +[assembly: NeutralResourcesLanguage ("en-US")] +[assembly: CLSCompliant (true)] +[assembly: AssemblyDelaySign (true)] +#if NET_2_1 +[assembly: AssemblyKeyFile ("../winfx.pub")] +#else +[assembly: AssemblyKeyFile ("../ecma.pub")] +[assembly: AllowPartiallyTrustedCallers] +[assembly: ComCompatibleVersion (1, 0, 3300, 0)] +[assembly: SecurityCritical (SecurityCriticalScope.Explicit)] +#endif +[assembly: InternalsVisibleTo ("System.Runtime.Serialization, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)] +[assembly: InternalsVisibleTo ("System.IdentityModel, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)] +[assembly: InternalsVisibleTo ("System.IdentityModel.Selectors, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)] +[assembly: InternalsVisibleTo ("System.ServiceModel, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)] +[assembly: InternalsVisibleTo ("System.ServiceModel.Web, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)] + +[assembly: ComVisible (false)] + diff --git a/mcs/class/SMDiagnostics/Makefile b/mcs/class/SMDiagnostics/Makefile new file mode 100644 index 00000000000..685d7f5ff1a --- /dev/null +++ b/mcs/class/SMDiagnostics/Makefile @@ -0,0 +1,18 @@ +thisdir = class/SMDiagnostics +SUBDIRS = +include ../../build/rules.make + +LIBRARY = SMDiagnostics.dll +LIB_REFS = System System.Core System.Xml System.ServiceModel.Internals +LIB_MCS_FLAGS = +ifneq (2.1, $(FRAMEWORK_VERSION)) + LIB_REFS += System.Configuration +else + LIB_MCS_FLAGS += -d:NO_CONFIGURATION +endif + +TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) + +EXTRA_DISTFILES = + +include ../../build/library.make diff --git a/mcs/class/SMDiagnostics/ReferenceSources/TraceSR.cs b/mcs/class/SMDiagnostics/ReferenceSources/TraceSR.cs new file mode 100644 index 00000000000..6a979daf686 --- /dev/null +++ b/mcs/class/SMDiagnostics/ReferenceSources/TraceSR.cs @@ -0,0 +1,35 @@ +using System.Globalization; + +static partial class TraceSR +{ + public const string ThrowingException = "throwing exception."; + public const string StringNullOrEmpty = "Argument string is null or empty."; + public const string GenericCallbackException = "Callback exception has occured."; + public const string TraceHandledException = "Trace handled exception."; + public const string TraceCodeTraceTruncatedQuotaExceeded = "TraceTruncatedQuotaExceeded"; + public const string TraceCodeAppDomainUnload = "AppDomainUnload"; + public const string UnhandledException = "Unhandled exception."; + public const string TraceCodeEventLog = "EventLog"; + public const string WriteCharsInvalidContent = "invalid content."; + + internal static string GetString(string name, params object[] args) + { + return GetString (CultureInfo.InvariantCulture, name, args); + } + + internal static string GetString(CultureInfo culture, string name, params object[] args) + { + return string.Format (culture, name, args); + } + + internal static string GetString(string name) + { + return name; + } + + internal static string GetString(CultureInfo culture, string name) + { + return name; + } +} + diff --git a/mcs/class/SMDiagnostics/SMDiagnostics.dll.sources b/mcs/class/SMDiagnostics/SMDiagnostics.dll.sources new file mode 100644 index 00000000000..6bf6f6aa9eb --- /dev/null +++ b/mcs/class/SMDiagnostics/SMDiagnostics.dll.sources @@ -0,0 +1,25 @@ +../../build/common/Consts.cs +../../build/common/Locale.cs +../../build/common/SR.cs + +Assembly/AssemblyInfo.cs +ReferenceSources/TraceSR.cs + +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/Activity.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/DiagnosticsTraceCode.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/DiagnosticStrings.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/DiagnosticTraceSource.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/EncodingFallbackAwareXmlTextWriter.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/EventLogCategory.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/EventLogEventId.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/EventLogger.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/ExceptionUtility.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/LegacyDiagnosticTrace.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/MachineSettingsSection.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/NativeMethods.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/PiiTraceSource.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/PlainXmlWriter.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/SafeEventLogWriteHandle.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/TraceSourceKind.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/TraceXPathNavigator.cs +../../../external/referencesource/SMDiagnostics/System/ServiceModel/Diagnostics/Utility.cs diff --git a/mcs/class/System.Data/mobile_referencesource.sources b/mcs/class/System.Data/mobile_referencesource.sources index cf6c782316c..4e86efd946f 100644 --- a/mcs/class/System.Data/mobile_referencesource.sources +++ b/mcs/class/System.Data/mobile_referencesource.sources @@ -63,7 +63,6 @@ ../../../external/referencesource/System.Data/System/Data/Common/MultipartIdentifier.cs ../../../external/referencesource/System.Data/System/Data/Common/NameValuePair.cs ../../../external/referencesource/System.Data/System/Data/Common/NameValuePermission.cs -../../../external/referencesource/System.Data/System/Data/Common/NativeMethods.cs ../../../external/referencesource/System.Data/System/Data/Common/ObjectStorage.cs ../../../external/referencesource/System.Data/System/Data/Common/RowUpdatedEventArgs.cs ../../../external/referencesource/System.Data/System/Data/Common/RowUpdatingEventArgs.cs diff --git a/mcs/class/System.ServiceModel.Internals/Assembly/AssemblyInfo.cs b/mcs/class/System.ServiceModel.Internals/Assembly/AssemblyInfo.cs new file mode 100644 index 00000000000..649dd19170c --- /dev/null +++ b/mcs/class/System.ServiceModel.Internals/Assembly/AssemblyInfo.cs @@ -0,0 +1,59 @@ +// +// AssemblyInfo.cs +// +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +using System; +using System.Reflection; +using System.Resources; +using System.Security; +using System.Security.Permissions; +using System.Diagnostics; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +[assembly: AssemblyTitle ("System.ServiceModel.Internals.dll")] +[assembly: AssemblyDescription ("Contains share code for some System.ServiceModel libraries")] +[assembly: AssemblyDefaultAlias ("System.ServiceModel.dll")] + +[assembly: AssemblyInformationalVersion (Consts.FxFileVersion)] +[assembly: AssemblyFileVersion (Consts.FxFileVersion)] + +[assembly: NeutralResourcesLanguage ("en-US")] +[assembly: CLSCompliant (true)] +[assembly: AssemblyDelaySign (true)] +#if NET_2_1 +[assembly: AssemblyKeyFile ("../winfx.pub")] +#else +[assembly: AssemblyKeyFile ("../ecma.pub")] +[assembly: AllowPartiallyTrustedCallers] +[assembly: ComCompatibleVersion (1, 0, 3300, 0)] +[assembly: SecurityCritical (SecurityCriticalScope.Explicit)] +#endif +[assembly: InternalsVisibleTo ("SMDiagnostics, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull)] +[assembly: InternalsVisibleTo ("System.Runtime.Serialization, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)] +[assembly: InternalsVisibleTo ("System.IdentityModel, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)] +[assembly: InternalsVisibleTo ("System.IdentityModel.Selectors, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)] +[assembly: InternalsVisibleTo ("System.ServiceModel, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)] +[assembly: InternalsVisibleTo ("System.ServiceModel.Web, PublicKey=" + AssemblyRef.FrameworkPublicKeyFull2)] + +[assembly: ComVisible (false)] + diff --git a/mcs/class/System.ServiceModel.Internals/EventLogEntryType.cs b/mcs/class/System.ServiceModel.Internals/EventLogEntryType.cs new file mode 100644 index 00000000000..74811394aa8 --- /dev/null +++ b/mcs/class/System.ServiceModel.Internals/EventLogEntryType.cs @@ -0,0 +1,53 @@ +/* + +This source is taken from mcs/class/System/System.Diagnostics to make it +build without adding this public API in System.dll. IF we brought this +API in mobile world, this will conflict and can be removed. + +*/ + +#if MOBILE +// +// System.Diagnostics.EventLogEntryType.cs +// +// Authors: +// Jonathan Pryor (jonpryor@vt.edu) +// +// (C) 2002 +// + +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +using System; +using System.Diagnostics; + +namespace System.Diagnostics { + public enum EventLogEntryType { + Error = 0x01, + Warning = 0x02, + Information = 0x04, + SuccessAudit = 0x08, + FailureAudit = 0x10 + } +} + +#endif diff --git a/mcs/class/System.ServiceModel.Internals/InternalSR.cs b/mcs/class/System.ServiceModel.Internals/InternalSR.cs new file mode 100644 index 00000000000..23165ce1cb3 --- /dev/null +++ b/mcs/class/System.ServiceModel.Internals/InternalSR.cs @@ -0,0 +1,121 @@ +namespace System.Runtime { + + internal static class InternalSR { + public static string ArgumentNullOrEmpty(string paramName) + { + return string.Format ("{0} is null or empty"); + } + + public static string AsyncEventArgsCompletedTwice(Type t) + { + return string.Format ("AsyncEventArgs completed twice for {0}", t); + } + + public static string AsyncEventArgsCompletionPending(Type t) + { + return string.Format ("AsyncEventArgs completion pending for {0}", t); + } + + public static string BufferAllocationFailed(int size) + { + return string.Format ("Buffer allocation of size {0} failed", size); + } + + public static string BufferedOutputStreamQuotaExceeded(int maxSizeQuota) + { + return string.Format ("Buffered output stream quota exceeded (maxSizeQuota={0})", maxSizeQuota); + } + + public static string CannotConvertObject(object source, Type t) + { + return string.Format ("Cannot convert object {0} to {1}", source, t); + } + + public static string EtwAPIMaxStringCountExceeded(object max) + { + return string.Format ("ETW API max string count exceeded {0}", max); + } + + public static string EtwMaxNumberArgumentsExceeded(object max) + { + return string.Format ("ETW max number arguments exceeded {0}", max); + } + + public static string EtwRegistrationFailed(object arg) + { + return string.Format ("ETW registration failed {0}", arg); + } + + public static string FailFastMessage(string description) + { + return string.Format ("Fail fast: {0}", description); + } + + public static string InvalidAsyncResultImplementation(Type t) + { + return string.Format ("Invalid AsyncResult implementation: {0}", t); + } + + public static string LockTimeoutExceptionMessage (object timeout) + { + return string.Format ("Lock timeout {0}", timeout); + } + + public static string ShipAssertExceptionMessage(object description) + { + return string.Format ("Ship assert exception {0}", description); + } + + public static string TaskTimedOutError (object timeout) + { + return string.Format ("Task timed out error {0}", timeout); + } + + public static string TimeoutInputQueueDequeue(object timeout) + { + return string.Format ("Timeout input queue dequeue {0}", timeout); + } + + public static string TimeoutMustBeNonNegative(object argumentName, object timeout) + { + return string.Format ("Timeout must be non-negative {0} and {1}", argumentName, timeout); + } + + public static string TimeoutMustBePositive(string argumentName, object timeout) + { + return string.Format ("Timeout must be positive {0} {1}", argumentName, timeout); + } + + public static string TimeoutOnOperation(object timeout) + { + return string.Format ("Timeout on operation {0}", timeout); + } + + public static string AsyncResultCompletedTwice (Type t) + { + return string.Format ("AsyncResult Completed Twice for {0}", t); + } + + public const string ActionItemIsAlreadyScheduled = "Action Item Is Already Scheduled"; + public const string AsyncCallbackThrewException = "Async Callback Threw Exception"; + public const string AsyncResultAlreadyEnded = "Async Result Already Ended"; + public const string BadCopyToArray = "Bad Copy To Array"; + public const string BufferIsNotRightSizeForBufferManager = "Buffer Is Not Right Size For Buffer Manager"; + public const string DictionaryIsReadOnly = "Dictionary Is Read Only"; + public const string InvalidAsyncResult = "Invalid Async Result"; + public const string InvalidAsyncResultImplementationGeneric = "Invalid Async Result Implementation Generic"; + public const string InvalidNullAsyncResult = "Invalid Null Async Result"; + public const string InvalidSemaphoreExit = "Invalid Semaphore Exit"; + public const string KeyCollectionUpdatesNotAllowed = "Key Collection Updates Not Allowed"; + public const string KeyNotFoundInDictionary = "Key Not Found In Dictionary"; + public const string MustCancelOldTimer = "Must Cancel Old Timer"; + public const string NullKeyAlreadyPresent = "Null Key Already Present"; + public const string ReadNotSupported = "Read Not Supported"; + public const string SFxTaskNotStarted = "SFx Task Not Started"; + public const string SeekNotSupported = "Seek Not Supported"; + public const string ThreadNeutralSemaphoreAborted = "Thread Neutral Semaphore Aborted"; + public const string ValueCollectionUpdatesNotAllowed = "Value Collection Updates Not Allowed"; + public const string ValueMustBeNonNegative = "Value Must Be Non Negative"; + } +} + diff --git a/mcs/class/System.ServiceModel.Internals/Makefile b/mcs/class/System.ServiceModel.Internals/Makefile new file mode 100644 index 00000000000..a246259b5d5 --- /dev/null +++ b/mcs/class/System.ServiceModel.Internals/Makefile @@ -0,0 +1,14 @@ +thisdir = class/System.ServiceModel.Internals +SUBDIRS = +include ../../build/rules.make + +LIBRARY = System.ServiceModel.Internals.dll +LIB_REFS = System System.Core System.Xml +ifneq (2.1, $(FRAMEWORK_VERSION)) + LIB_REFS += System.Configuration +endif +LIB_MCS_FLAGS = /unsafe + +TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) + +include ../../build/library.make diff --git a/mcs/class/System.ServiceModel.Internals/System.ServiceModel.Internals.dll.sources b/mcs/class/System.ServiceModel.Internals/System.ServiceModel.Internals.dll.sources new file mode 100644 index 00000000000..99b323b2ab8 --- /dev/null +++ b/mcs/class/System.ServiceModel.Internals/System.ServiceModel.Internals.dll.sources @@ -0,0 +1,79 @@ +../../build/common/Consts.cs +../../build/common/SR.cs +EventLogEntryType.cs +InternalSR.cs +Assembly/AssemblyInfo.cs +../../../external/referencesource/System.ServiceModel.Internals/AssemblyInfo.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/ActionItem.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/AssertHelper.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/AsyncCompletionResult.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/AsyncEventArgsCallback.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/AsyncEventArgs.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/AsyncResult.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/AsyncWaitHandle.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/BackoffTimeoutHelper.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/BufferedOutputStream.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/CallbackException.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Collections/HopperCache.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Collections/NullableKeyDictionary.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Collections/ObjectCache.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Collections/ObjectCacheItem.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Collections/ObjectCacheSettings.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Collections/OrderedDictionary.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Collections/ValidatingCollection.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/CompletedAsyncResult.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/ComputerNameFormat.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/ActivityControl.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/DiagnosticEventProvider.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/DiagnosticTraceBase.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/DiagnosticTraceSource.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/DictionaryTraceRecord.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/EtwDiagnosticTrace.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/EtwProvider.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/EventDescriptor.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/EventLogCategory.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/EventLogEventId.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/EventLogger.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/EventTraceActivity.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/ITraceSourceStringProvider.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/PerformanceCounterNameAttribute.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/StringTraceRecord.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Diagnostics/TraceRecord.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/DiagnosticStrings.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/DuplicateDetector.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/ExceptionTrace.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/FastAsyncCallback.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/FatalException.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/FxCop.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Fx.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/HashHelper.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/IAsyncEventArgs.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/InputQueue.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/InternalBufferManager.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Interop/SafeEventLogWriteHandle.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Interop/UnsafeNativeMethods.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/IOThreadCancellationTokenSource.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/IOThreadScheduler.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/IOThreadTimer.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/MruCache.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/NameGenerator.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/PartialTrustHelpers.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/ReadOnlyDictionaryInternal.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/ReadOnlyKeyedCollection.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/ScheduleActionItemAsyncResult.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/SignalGate.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/SynchronizedPool.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TaskExtensions.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/ThreadNeutralSemaphore.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/Ticks.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TimeoutHelper.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TraceChannel.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TraceEventLevel.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TraceEventOpcode.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TraceLevelHelper.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TracePayload.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TypedAsyncResult.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/TypeHelper.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/UrlUtility.cs +../../../external/referencesource/System.ServiceModel.Internals/System/Runtime/WaitCallbackActionItem.cs +../../../external/referencesource/System.ServiceModel.Internals/TraceCore.Designer.cs diff --git a/mcs/class/System/ReferenceSources/MonoSocketRuntimeWorkItem.cs b/mcs/class/System/ReferenceSources/MonoSocketRuntimeWorkItem.cs index 3c9643511f5..c935280838c 100644 --- a/mcs/class/System/ReferenceSources/MonoSocketRuntimeWorkItem.cs +++ b/mcs/class/System/ReferenceSources/MonoSocketRuntimeWorkItem.cs @@ -6,7 +6,7 @@ namespace System.Net.Sockets { internal sealed class MonoSocketRuntimeWorkItem : IThreadPoolWorkItem { - Socket.SocketAsyncResult socket_async_result; + SocketAsyncResult socket_async_result; [MethodImplAttribute(MethodImplOptions.InternalCall)] public extern void ExecuteWorkItem(); diff --git a/mcs/class/System/ReferenceSources/Socket.cs b/mcs/class/System/ReferenceSources/Socket.cs index d6db248b751..8c1d12b8aaa 100644 --- a/mcs/class/System/ReferenceSources/Socket.cs +++ b/mcs/class/System/ReferenceSources/Socket.cs @@ -37,10 +37,10 @@ namespace System.Net.Sockets // this version does not throw. internal void InternalShutdown (SocketShutdown how) { - if (!connected || disposed) + if (!is_connected || is_disposed) return; int error; - Shutdown_internal (socket, how, out error); + Shutdown_internal (safe_handle, how, out error); } internal IAsyncResult UnsafeBeginConnect (EndPoint remoteEP, AsyncCallback callback, object state) @@ -86,7 +86,7 @@ namespace System.Net.Sockets internal void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, int optionValue, bool silent) { - if (disposed && closed) { + if (is_disposed && is_closed) { if (silent) return; throw new ObjectDisposedException (GetType ().ToString ()); @@ -94,7 +94,7 @@ namespace System.Net.Sockets int error; - SetSocketOption_internal (socket, optionLevel, optionName, null, + SetSocketOption_internal (safe_handle, optionLevel, optionName, null, null, optionValue, out error); if (!silent && error != 0) diff --git a/mcs/class/System/System.IO.Compression/DeflateStream.cs b/mcs/class/System/System.IO.Compression/DeflateStream.cs index 939a0c9b540..5c38fccfe1c 100644 --- a/mcs/class/System/System.IO.Compression/DeflateStream.cs +++ b/mcs/class/System/System.IO.Compression/DeflateStream.cs @@ -171,6 +171,9 @@ namespace System.IO.Compression if (!CanWrite) throw new NotSupportedException ("Stream does not support writing"); + if (src_offset > src.Length - count) + throw new ArgumentException ("Buffer too small. count/offset wrong."); + WriteInternal (src, src_offset, count); } diff --git a/mcs/class/System/System.Net.Sockets/Socket.cs b/mcs/class/System/System.Net.Sockets/Socket.cs index f3a1102f464..9f88be1fe9c 100644 --- a/mcs/class/System/System.Net.Sockets/Socket.cs +++ b/mcs/class/System/System.Net.Sockets/Socket.cs @@ -6,6 +6,7 @@ // Gonzalo Paniagua Javier (gonzalo@ximian.com) // Sridhar Kulkarni (sridharkulkarni@gmail.com) // Brian Nickel (brian.nickel@gmail.com) +// Ludovic Henry (ludovic@xamarin.com) // // Copyright (C) 2001, 2002 Phillip Pearson and Ximian, Inc. // http://www.myelin.co.nz @@ -50,215 +51,318 @@ namespace System.Net.Sockets { public partial class Socket : IDisposable { - private bool islistening; - private bool useoverlappedIO; - private const int SOCKET_CLOSED = 10004; + const int SOCKET_CLOSED_CODE = 10004; + const string TIMEOUT_EXCEPTION_MSG = "A connection attempt failed because the connected party did not properly respond" + + "after a period of time, or established connection failed because connected host has failed to respond"; - private static readonly string timeout_exc_msg = "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond"; + /* + * These two fields are looked up by name by the runtime, don't change + * their name without also updating the runtime code. + */ + static int ipv4_supported = -1; + static int ipv6_supported = -1; - static void AddSockets (List sockets, IList list, string name) + /* true if we called Close_internal */ + bool is_closed; + + bool is_listening; + bool use_overlapped_io; + + int linger_timeout; + + /* the field "safe_handle" is looked up by name by the runtime */ + SafeSocketHandle safe_handle; + + AddressFamily address_family; + SocketType socket_type; + ProtocolType protocol_type; + + /* + * This EndPoint is used when creating new endpoints. Because + * there are many types of EndPoints possible, + * seed_endpoint.Create(addr) is used for creating new ones. + * As such, this value is set on Bind, SentTo, ReceiveFrom, + * Connect, etc. + */ + internal EndPoint seed_endpoint = null; + + internal Queue readQ = new Queue (2); + internal Queue writeQ = new Queue (2); + + internal bool is_blocking = true; + internal bool is_bound; + + /* When true, the socket was connected at the time of the last IO operation */ + internal bool is_connected; + + internal bool is_disposed; + internal bool connect_in_progress; + +#region Constructors + + static Socket () { - if (list != null) { - foreach (Socket sock in list) { - if (sock == null) // MS throws a NullRef - throw new ArgumentNullException ("name", "Contains a null element"); - sockets.Add (sock); + if (ipv4_supported == -1) { + try { + Socket tmp = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); + tmp.Close(); + + ipv4_supported = 1; + } catch { + ipv4_supported = 0; } } - sockets.Add (null); + if (ipv6_supported == -1) { + // We need to put a try/catch around ConfigurationManager methods as will always throw an exception + // when run in a mono embedded application. This occurs as embedded applications do not have a setup + // for application config. The exception is not thrown when called from a normal .NET application. + // + // We, then, need to guard calls to the ConfigurationManager. If the config is not found or throws an + // exception, will fall through to the existing Socket / API directly below in the code. + // + // Also note that catching ConfigurationErrorsException specifically would require library dependency + // System.Configuration, and wanted to avoid that. +#if !NET_2_1 +#if CONFIGURATION_DEP + try { + SettingsSection config; + config = (SettingsSection) System.Configuration.ConfigurationManager.GetSection ("system.net/settings"); + if (config != null) + ipv6_supported = config.Ipv6.Enabled ? -1 : 0; + } catch { + ipv6_supported = -1; + } +#else + try { + NetConfig config = System.Configuration.ConfigurationSettings.GetConfig("system.net/settings") as NetConfig; + if (config != null) + ipv6_supported = config.ipv6Enabled ? -1 : 0; + } catch { + ipv6_supported = -1; + } +#endif +#endif + if (ipv6_supported != 0) { + try { + Socket tmp = new Socket(AddressFamily.InterNetworkV6, SocketType.Stream, ProtocolType.Tcp); + tmp.Close(); + + ipv6_supported = 1; + } catch { + ipv6_supported = 0; + } + } + } } - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static void Select_internal (ref Socket [] sockets, - int microSeconds, - out int error); - public static void Select (IList checkRead, IList checkWrite, IList checkError, int microSeconds) - { - var list = new List (); - AddSockets (list, checkRead, "checkRead"); - AddSockets (list, checkWrite, "checkWrite"); - AddSockets (list, checkError, "checkError"); - if (list.Count == 3) { - throw new ArgumentNullException ("checkRead, checkWrite, checkError", - "All the lists are null or empty."); + [MonoTODO ("Currently hardcoded to IPv4. Ideally, support v4/v6 dual-stack.")] + public Socket (SocketType socketType, ProtocolType protocolType) + : this (AddressFamily.InterNetwork, socketType, protocolType) + { + } + + public Socket(AddressFamily addressFamily, SocketType socketType, ProtocolType protocolType) + { +#if NET_2_1 && !MOBILE + switch (addressFamily) { + case AddressFamily.InterNetwork: // ok + case AddressFamily.InterNetworkV6: // ok + case AddressFamily.Unknown: // SocketException will be thrown later (with right error #) + break; + // case AddressFamily.Unspecified: + default: + throw new ArgumentException ("addressFamily"); + } + + switch (socketType) { + case SocketType.Stream: // ok + case SocketType.Unknown: // SocketException will be thrown later (with right error #) + break; + default: + throw new ArgumentException ("socketType"); + } + + switch (protocolType) { + case ProtocolType.Tcp: // ok + case ProtocolType.Unspecified: // ok + case ProtocolType.Unknown: // SocketException will be thrown later (with right error #) + break; + default: + throw new ArgumentException ("protocolType"); } - +#endif + this.address_family = addressFamily; + this.socket_type = socketType; + this.protocol_type = protocolType; + int error; - /* - * The 'sockets' array contains: READ socket 0-n, null, - * WRITE socket 0-n, null, - * ERROR socket 0-n, null - */ - Socket [] sockets = list.ToArray (); - Select_internal (ref sockets, microSeconds, out error); + var handle = Socket_internal (addressFamily, socketType, protocolType, out error); + + this.safe_handle = new SafeSocketHandle (handle, true); if (error != 0) throw new SocketException (error); - if (sockets == null) { - if (checkRead != null) - checkRead.Clear (); - if (checkWrite != null) - checkWrite.Clear (); - if (checkError != null) - checkError.Clear (); - return; - } +#if !NET_2_1 || MOBILE + SocketDefaults (); +#endif + } - int mode = 0; - int count = sockets.Length; - IList currentList = checkRead; - int currentIdx = 0; - for (int i = 0; i < count; i++) { - Socket sock = sockets [i]; - if (sock == null) { // separator - if (currentList != null) { - // Remove non-signaled sockets after the current one - int to_remove = currentList.Count - currentIdx; - for (int k = 0; k < to_remove; k++) - currentList.RemoveAt (currentIdx); - } - currentList = (mode == 0) ? checkWrite : checkError; - currentIdx = 0; - mode++; - continue; - } +#if !MOBILE + public Socket (SocketInformation socketInformation) + { + this.is_listening = (socketInformation.Options & SocketInformationOptions.Listening) != 0; + this.is_connected = (socketInformation.Options & SocketInformationOptions.Connected) != 0; + this.is_blocking = (socketInformation.Options & SocketInformationOptions.NonBlocking) == 0; + this.use_overlapped_io = (socketInformation.Options & SocketInformationOptions.UseOnlyOverlappedIO) != 0; - if (mode == 1 && currentList == checkWrite && !sock.connected) { - if ((int) sock.GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Error) == 0) - sock.connected = true; - } + var result = Mono.DataConverter.Unpack ("iiiil", socketInformation.ProtocolInformation, 0); - // Remove non-signaled sockets before the current one - //int max = currentList.Count; - while (((Socket) currentList [currentIdx]) != sock) { - currentList.RemoveAt (currentIdx); - } - currentIdx++; - } + this.address_family = (AddressFamily) (int) result [0]; + this.socket_type = (SocketType) (int) result [1]; + this.protocol_type = (ProtocolType) (int) result [2]; + this.is_bound = (ProtocolType) (int) result [3] != 0; + this.safe_handle = new SafeSocketHandle ((IntPtr) (long) result [4], true); + + SocketDefaults (); } +#endif - // private constructor used by Accept, which already - // has a socket handle to use - internal Socket(AddressFamily family, SocketType type, - ProtocolType proto, SafeSocketHandle sock) + /* private constructor used by Accept, which already has a socket handle to use */ + internal Socket(AddressFamily family, SocketType type, ProtocolType proto, SafeSocketHandle safe_handle) { - address_family=family; - socket_type=type; - protocol_type=proto; + this.address_family = family; + this.socket_type = type; + this.protocol_type = proto; - socket=sock; - connected=true; + this.safe_handle = safe_handle; + this.is_connected = true; + } + + ~Socket () + { + Dispose (false); } - private void SocketDefaults () + void SocketDefaults () { try { - if (address_family == AddressFamily.InterNetwork /* Need to test IPv6 further || - address_family == AddressFamily.InterNetworkV6 */) { - /* This is the default, but it - * probably has nasty side - * effects on Linux, as the - * socket option is kludged by - * turning on or off PMTU - * discovery... - */ + /* Need to test IPv6 further */ + if (address_family == AddressFamily.InterNetwork + // || address_family == AddressFamily.InterNetworkV6 + ) { + /* This is the default, but it probably has nasty side + * effects on Linux, as the socket option is kludged by + * turning on or off PMTU discovery... */ this.DontFragment = false; } - // - // Microsoft sets these to 8192, but we are going to keep them - // both to the OS defaults as these have a big performance impact. - // on WebClient performance. - // - //this.ReceiveBufferSize = 8192; - //this.SendBufferSize = 8192; + /* Microsoft sets these to 8192, but we are going to keep them + * both to the OS defaults as these have a big performance impact. + * on WebClient performance. */ + // this.ReceiveBufferSize = 8192; + // this.SendBufferSize = 8192; } catch (SocketException) { } } -#if !MOBILE - public Socket (SocketInformation socketInformation) - { - var options = socketInformation.Options; - islistening = (options & SocketInformationOptions.Listening) != 0; - connected = (options & SocketInformationOptions.Connected) != 0; - blocking = (options & SocketInformationOptions.NonBlocking) == 0; - useoverlappedIO = (options & SocketInformationOptions.UseOnlyOverlappedIO) != 0; + /* Creates a new system socket, returning the handle */ + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern IntPtr Socket_internal (AddressFamily family, SocketType type, ProtocolType proto, out int error); - var result = Mono.DataConverter.Unpack ("iiiil", socketInformation.ProtocolInformation, 0); - - address_family = (AddressFamily) (int) result [0]; - socket_type = (SocketType) (int) result [1]; - protocol_type = (ProtocolType) (int) result [2]; - isbound = (ProtocolType) (int) result [3] != 0; - socket = new SafeSocketHandle ((IntPtr) (long) result [4], true); - SocketDefaults (); +#endregion + +#region Properties + + public static bool SupportsIPv4 { + get { return ipv4_supported == 1; } + } + + [ObsoleteAttribute ("Use OSSupportsIPv6 instead")] + public static bool SupportsIPv6 { + get { return ipv6_supported == 1; } + } + +#if NET_2_1 + public static bool OSSupportsIPv4 { + get { return ipv4_supported == 1; } } #endif - - // Returns the amount of data waiting to be read on socket - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static int Available_internal(IntPtr socket, out int error); - private static int Available_internal (SafeSocketHandle safeHandle, out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - return Available_internal (safeHandle.DangerousGetHandle (), out error); - } finally { - if (release) - safeHandle.DangerousRelease (); +#if NET_2_1 + public static bool OSSupportsIPv6 { + get { return ipv6_supported == 1; } + } +#else + public static bool OSSupportsIPv6 { + get { + NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces (); + + foreach (NetworkInterface adapter in nics) { + if (adapter.Supports (NetworkInterfaceComponent.IPv6)) + return true; + } + + return false; } } +#endif public int Available { get { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); int ret, error; - - ret = Available_internal(socket, out error); + ret = Available_internal (safe_handle, out error); if (error != 0) throw new SocketException (error); - return(ret); + return ret; + } + } + + static int Available_internal (SafeSocketHandle safeHandle, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + return Available_internal (safeHandle.DangerousGetHandle (), out error); + } finally { + if (release) + safeHandle.DangerousRelease (); } } + /* Returns the amount of data waiting to be read on socket */ + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static int Available_internal (IntPtr socket, out int error); public bool DontFragment { get { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - - bool dontfragment; - - if (address_family == AddressFamily.InterNetwork) { - dontfragment = (int)(GetSocketOption (SocketOptionLevel.IP, SocketOptionName.DontFragment)) != 0; - } else if (address_family == AddressFamily.InterNetworkV6) { - dontfragment = (int)(GetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.DontFragment)) != 0; - } else { + ThrowIfDisposedAndClosed (); + + switch (address_family) { + case AddressFamily.InterNetwork: + return ((int) GetSocketOption (SocketOptionLevel.IP, SocketOptionName.DontFragment)) != 0; + case AddressFamily.InterNetworkV6: + return ((int) GetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.DontFragment)) != 0; + default: throw new NotSupportedException ("This property is only valid for InterNetwork and InterNetworkV6 sockets"); } - - return(dontfragment); } set { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - - if (address_family == AddressFamily.InterNetwork) { - SetSocketOption (SocketOptionLevel.IP, SocketOptionName.DontFragment, value?1:0); - } else if (address_family == AddressFamily.InterNetworkV6) { - SetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.DontFragment, value?1:0); - } else { + ThrowIfDisposedAndClosed (); + + switch (address_family) { + case AddressFamily.InterNetwork: + SetSocketOption (SocketOptionLevel.IP, SocketOptionName.DontFragment, value ? 1 : 0); + break; + case AddressFamily.InterNetworkV6: + SetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.DontFragment, value ? 1 : 0); + break; + default: throw new NotSupportedException ("This property is only valid for InterNetwork and InterNetworkV6 sockets"); } } @@ -266,186 +370,124 @@ namespace System.Net.Sockets public bool EnableBroadcast { get { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } + ThrowIfDisposedAndClosed (); - if (protocol_type != ProtocolType.Udp) { - throw new SocketException ((int)SocketError.ProtocolOption); - } - - return((int)(GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Broadcast)) != 0); + if (protocol_type != ProtocolType.Udp) + throw new SocketException ((int) SocketError.ProtocolOption); + + return ((int) GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Broadcast)) != 0; } set { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } + ThrowIfDisposedAndClosed (); - if (protocol_type != ProtocolType.Udp) { - throw new SocketException ((int)SocketError.ProtocolOption); - } + if (protocol_type != ProtocolType.Udp) + throw new SocketException ((int) SocketError.ProtocolOption); - SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Broadcast, value?1:0); + SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Broadcast, value ? 1 : 0); } } - + public bool ExclusiveAddressUse { get { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } + ThrowIfDisposedAndClosed (); - return((int)(GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ExclusiveAddressUse)) != 0); + return ((int) GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ExclusiveAddressUse)) != 0; } set { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - if (isbound) { + ThrowIfDisposedAndClosed (); + + if (is_bound) throw new InvalidOperationException ("Bind has already been called for this socket"); - } - - SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ExclusiveAddressUse, value?1:0); + + SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ExclusiveAddressUse, value ? 1 : 0); } } - + public bool IsBound { get { - return(isbound); + return is_bound; } } - + public LingerOption LingerState { get { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } + ThrowIfDisposedAndClosed (); - return((LingerOption)GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Linger)); + return (LingerOption) GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Linger); } set { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - - SetSocketOption (SocketOptionLevel.Socket, - SocketOptionName.Linger, - value); + ThrowIfDisposedAndClosed (); + SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Linger, value); } } - + public bool MulticastLoopback { get { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - - /* Even though this option can be set - * for TCP sockets on Linux, throw - * this exception anyway to be - * compatible (the MSDN docs say - * "Setting this property on a - * Transmission Control Protocol (TCP) - * socket will have no effect." but - * the MS runtime throws the - * exception...) - */ - if (protocol_type == ProtocolType.Tcp) { + ThrowIfDisposedAndClosed (); + + /* Even though this option can be set for TCP sockets on Linux, throw + * this exception anyway to be compatible (the MSDN docs say + * "Setting this property on a Transmission Control Protocol (TCP) + * socket will have no effect." but the MS runtime throws the + * exception...) */ + if (protocol_type == ProtocolType.Tcp) throw new SocketException ((int)SocketError.ProtocolOption); - } - - bool multicastloopback; - - if (address_family == AddressFamily.InterNetwork) { - multicastloopback = (int)(GetSocketOption (SocketOptionLevel.IP, SocketOptionName.MulticastLoopback)) != 0; - } else if (address_family == AddressFamily.InterNetworkV6) { - multicastloopback = (int)(GetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.MulticastLoopback)) != 0; - } else { + + switch (address_family) { + case AddressFamily.InterNetwork: + return ((int) GetSocketOption (SocketOptionLevel.IP, SocketOptionName.MulticastLoopback)) != 0; + case AddressFamily.InterNetworkV6: + return ((int) GetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.MulticastLoopback)) != 0; + default: throw new NotSupportedException ("This property is only valid for InterNetwork and InterNetworkV6 sockets"); } - - return(multicastloopback); } set { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - - /* Even though this option can be set - * for TCP sockets on Linux, throw - * this exception anyway to be - * compatible (the MSDN docs say - * "Setting this property on a - * Transmission Control Protocol (TCP) - * socket will have no effect." but - * the MS runtime throws the - * exception...) - */ - if (protocol_type == ProtocolType.Tcp) { + ThrowIfDisposedAndClosed (); + + /* Even though this option can be set for TCP sockets on Linux, throw + * this exception anyway to be compatible (the MSDN docs say + * "Setting this property on a Transmission Control Protocol (TCP) + * socket will have no effect." but the MS runtime throws the + * exception...) */ + if (protocol_type == ProtocolType.Tcp) throw new SocketException ((int)SocketError.ProtocolOption); - } - - if (address_family == AddressFamily.InterNetwork) { - SetSocketOption (SocketOptionLevel.IP, SocketOptionName.MulticastLoopback, value?1:0); - } else if (address_family == AddressFamily.InterNetworkV6) { - SetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.MulticastLoopback, value?1:0); - } else { + + switch (address_family) { + case AddressFamily.InterNetwork: + SetSocketOption (SocketOptionLevel.IP, SocketOptionName.MulticastLoopback, value ? 1 : 0); + break; + case AddressFamily.InterNetworkV6: + SetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.MulticastLoopback, value ? 1 : 0); + break; + default: throw new NotSupportedException ("This property is only valid for InterNetwork and InterNetworkV6 sockets"); } } } - - + [MonoTODO ("This doesn't do anything on Mono yet")] public bool UseOnlyOverlappedIO { - get { - return(useoverlappedIO); - } - set { - useoverlappedIO = value; - } + get { return use_overlapped_io; } + set { use_overlapped_io = value; } } public IntPtr Handle { - get { - return(socket.DangerousGetHandle ()); - } - } - - // Returns the local endpoint details in addr and port - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static SocketAddress LocalEndPoint_internal(IntPtr socket, int family, out int error); - - private static SocketAddress LocalEndPoint_internal(SafeSocketHandle safeHandle, int family, out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - return LocalEndPoint_internal (safeHandle.DangerousGetHandle (), family, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } + get { return safe_handle.DangerousGetHandle (); } } // Wish: support non-IP endpoints. public EndPoint LocalEndPoint { get { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - /* - * If the seed EndPoint is null, Connect, Bind, - * etc has not yet been called. MS returns null - * in this case. - */ + ThrowIfDisposedAndClosed (); + + /* If the seed EndPoint is null, Connect, Bind, etc has not yet + * been called. MS returns null in this case. */ if (seed_endpoint == null) return null; - - SocketAddress sa; + int error; - - sa=LocalEndPoint_internal(socket, (int) address_family, out error); + SocketAddress sa = LocalEndPoint_internal (safe_handle, (int) address_family, out error); if (error != 0) throw new SocketException (error); @@ -454,222 +496,472 @@ namespace System.Net.Sockets } } - public SocketType SocketType { - get { - return(socket_type); + static SocketAddress LocalEndPoint_internal (SafeSocketHandle safeHandle, int family, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + return LocalEndPoint_internal (safeHandle.DangerousGetHandle (), family, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); } } + /* Returns the local endpoint details in addr and port */ + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static SocketAddress LocalEndPoint_internal (IntPtr socket, int family, out int error); + + public SocketType SocketType { + get { return socket_type; } + } + public int SendTimeout { get { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - return (int)GetSocketOption( - SocketOptionLevel.Socket, - SocketOptionName.SendTimeout); + return (int) GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.SendTimeout); } set { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); if (value < -1) throw new ArgumentOutOfRangeException ("value", "The value specified for a set operation is less than -1"); - /* According to the MSDN docs we - * should adjust values between 1 and - * 499 to 500, but the MS runtime - * doesn't do this. - */ + /* According to the MSDN docs we should adjust values between 1 and + * 499 to 500, but the MS runtime doesn't do this. */ if (value == -1) value = 0; - SetSocketOption( - SocketOptionLevel.Socket, - SocketOptionName.SendTimeout, value); + SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.SendTimeout, value); } } public int ReceiveTimeout { get { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - return (int)GetSocketOption( - SocketOptionLevel.Socket, - SocketOptionName.ReceiveTimeout); + return (int) GetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReceiveTimeout); } set { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); if (value < -1) throw new ArgumentOutOfRangeException ("value", "The value specified for a set operation is less than -1"); - if (value == -1) { + if (value == -1) value = 0; - } - - SetSocketOption( - SocketOptionLevel.Socket, - SocketOptionName.ReceiveTimeout, value); + + SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ReceiveTimeout, value); } } - public bool AcceptAsync (SocketAsyncEventArgs e) - { - // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - if (!IsBound) - throw new InvalidOperationException ("You must call the Bind method before performing this operation."); - if (!islistening) - throw new InvalidOperationException ("You must call the Listen method before performing this operation."); - if (e.BufferList != null) - throw new ArgumentException ("Multiple buffers cannot be used with this method."); - if (e.Count < 0) - throw new ArgumentOutOfRangeException ("e.Count"); + public AddressFamily AddressFamily { + get { return address_family; } + } - Socket acceptSocket = e.AcceptSocket; - if (acceptSocket != null) { - if (acceptSocket.IsBound || acceptSocket.Connected) - throw new InvalidOperationException ("AcceptSocket: The socket must not be bound or connected."); - } + public bool Blocking { + get { return is_blocking; } + set { + ThrowIfDisposedAndClosed (); - e.curSocket = this; - Worker w = e.Worker; - w.Init (this, e, SocketOperation.Accept); - int count; - lock (readQ) { - readQ.Enqueue (e.Worker); - count = readQ.Count; + int error; + Blocking_internal (safe_handle, value, out error); + + if (error != 0) + throw new SocketException (error); + + is_blocking = value; } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, w.result); - return true; } - // Creates a new system socket, returning the handle - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static IntPtr Accept_internal(IntPtr sock, out int error, bool blocking); - private static SafeSocketHandle Accept_internal(SafeSocketHandle safeHandle, out int error, bool blocking) + static void Blocking_internal (SafeSocketHandle safeHandle, bool block, out int error) { + bool release = false; try { - safeHandle.RegisterForBlockingSyscall (); - var ret = Accept_internal (safeHandle.DangerousGetHandle (), out error, blocking); - return new SafeSocketHandle (ret, true); + safeHandle.DangerousAddRef (ref release); + Blocking_internal (safeHandle.DangerousGetHandle (), block, out error); } finally { - safeHandle.UnRegisterForBlockingSyscall (); + if (release) + safeHandle.DangerousRelease (); } } - public Socket Accept() { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + [MethodImplAttribute(MethodImplOptions.InternalCall)] + internal extern static void Blocking_internal(IntPtr socket, bool block, out int error); + + public bool Connected { + get { return is_connected; } + internal set { is_connected = value; } + } + + public ProtocolType ProtocolType { + get { return protocol_type; } + } + + public bool NoDelay { + get { + ThrowIfDisposedAndClosed (); + ThrowIfUdp (); + + return ((int) GetSocketOption (SocketOptionLevel.Tcp, SocketOptionName.NoDelay)) != 0; + } + + set { + ThrowIfDisposedAndClosed (); + ThrowIfUdp (); + + SetSocketOption (SocketOptionLevel.Tcp, SocketOptionName.NoDelay, value ? 1 : 0); + } + } + + public int ReceiveBufferSize { + get { + ThrowIfDisposedAndClosed (); + + return (int) GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ReceiveBuffer); + } + set { + ThrowIfDisposedAndClosed (); + + if (value < 0) + throw new ArgumentOutOfRangeException ("value", "The value specified for a set operation is less than zero"); + + SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ReceiveBuffer, value); + } + } + + public int SendBufferSize { + get { + ThrowIfDisposedAndClosed (); + + return (int) GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.SendBuffer); + } + set { + ThrowIfDisposedAndClosed (); + + if (value < 0) + throw new ArgumentOutOfRangeException ("value", "The value specified for a set operation is less than zero"); + + SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.SendBuffer, value); + } + } + + public short Ttl { + get { + ThrowIfDisposedAndClosed (); + + switch (address_family) { + case AddressFamily.InterNetwork: + return (short) (int) GetSocketOption (SocketOptionLevel.IP, SocketOptionName.IpTimeToLive); + case AddressFamily.InterNetworkV6: + return (short) (int) GetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.HopLimit); + default: + throw new NotSupportedException ("This property is only valid for InterNetwork and InterNetworkV6 sockets"); + } + } + set { + ThrowIfDisposedAndClosed (); + + if (value < 0) + throw new ArgumentOutOfRangeException ("value", "The value specified for a set operation is less than zero"); + + switch (address_family) { + case AddressFamily.InterNetwork: + SetSocketOption (SocketOptionLevel.IP, SocketOptionName.IpTimeToLive, value); + break; + case AddressFamily.InterNetworkV6: + SetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.HopLimit, value); + break; + default: + throw new NotSupportedException ("This property is only valid for InterNetwork and InterNetworkV6 sockets"); + } + } + } + + public EndPoint RemoteEndPoint { + get { + ThrowIfDisposedAndClosed (); + + /* If the seed EndPoint is null, Connect, Bind, etc has + * not yet been called. MS returns null in this case. */ + if (!is_connected || seed_endpoint == null) + return null; + + int error; + SocketAddress sa = RemoteEndPoint_internal (safe_handle, (int) address_family, out error); + + if (error != 0) + throw new SocketException (error); + + return seed_endpoint.Create (sa); + } + } + + static SocketAddress RemoteEndPoint_internal (SafeSocketHandle safeHandle, int family, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + return RemoteEndPoint_internal (safeHandle.DangerousGetHandle (), family, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); + } + } + + /* Returns the remote endpoint details in addr and port */ + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static SocketAddress RemoteEndPoint_internal (IntPtr socket, int family, out int error); + +#endregion + +#region Select + + public static void Select (IList checkRead, IList checkWrite, IList checkError, int microSeconds) + { + var list = new List (); + AddSockets (list, checkRead, "checkRead"); + AddSockets (list, checkWrite, "checkWrite"); + AddSockets (list, checkError, "checkError"); + + if (list.Count == 3) + throw new ArgumentNullException ("checkRead, checkWrite, checkError", "All the lists are null or empty."); + + /* The 'sockets' array contains: + * - READ socket 0-n, null, + * - WRITE socket 0-n, null, + * - ERROR socket 0-n, null */ + Socket [] sockets = list.ToArray (); + + int error; + Select_internal (ref sockets, microSeconds, out error); + + if (error != 0) + throw new SocketException (error); + + if (sockets == null) { + if (checkRead != null) + checkRead.Clear (); + if (checkWrite != null) + checkWrite.Clear (); + if (checkError != null) + checkError.Clear (); + return; + } + + int mode = 0; + int count = sockets.Length; + IList currentList = checkRead; + int currentIdx = 0; + for (int i = 0; i < count; i++) { + Socket sock = sockets [i]; + if (sock == null) { // separator + if (currentList != null) { + // Remove non-signaled sockets after the current one + int to_remove = currentList.Count - currentIdx; + for (int k = 0; k < to_remove; k++) + currentList.RemoveAt (currentIdx); + } + currentList = (mode == 0) ? checkWrite : checkError; + currentIdx = 0; + mode++; + continue; + } + + if (mode == 1 && currentList == checkWrite && !sock.is_connected) { + if ((int) sock.GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Error) == 0) + sock.is_connected = true; + } + + /* Remove non-signaled sockets before the current one */ + while (((Socket) currentList [currentIdx]) != sock) + currentList.RemoveAt (currentIdx); + + currentIdx++; + } + } + + static void AddSockets (List sockets, IList list, string name) + { + if (list != null) { + foreach (Socket sock in list) { + if (sock == null) // MS throws a NullRef + throw new ArgumentNullException ("name", "Contains a null element"); + sockets.Add (sock); + } + } + + sockets.Add (null); + } + + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static void Select_internal (ref Socket [] sockets, int microSeconds, out int error); + +#endregion + +#region Poll + + public bool Poll (int time_us, SelectMode mode) + { + ThrowIfDisposedAndClosed (); + + if (mode != SelectMode.SelectRead && mode != SelectMode.SelectWrite && mode != SelectMode.SelectError) + throw new NotSupportedException ("'mode' parameter is not valid."); + + int error; + bool result = Poll_internal (safe_handle, mode, time_us, out error); + + if (error != 0) + throw new SocketException (error); + + if (mode == SelectMode.SelectWrite && result && !is_connected) { + /* Update the is_connected state; for non-blocking Connect() + * this is when we can find out that the connect succeeded. */ + if ((int) GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Error) == 0) + is_connected = true; + } + + return result; + } + + static bool Poll_internal (SafeSocketHandle safeHandle, SelectMode mode, int timeout, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + return Poll_internal (safeHandle.DangerousGetHandle (), mode, timeout, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); + } + } + + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static bool Poll_internal (IntPtr socket, SelectMode mode, int timeout, out int error); + +#endregion + +#region Accept + + public Socket Accept() + { + ThrowIfDisposedAndClosed (); int error = 0; - var sock = Accept_internal(socket, out error, blocking); + SafeSocketHandle safe_handle = Accept_internal (this.safe_handle, out error, is_blocking); if (error != 0) { - if (closed) - error = SOCKET_CLOSED; + if (is_closed) + error = SOCKET_CLOSED_CODE; throw new SocketException(error); } - Socket accepted = new Socket(this.AddressFamily, this.SocketType, - this.ProtocolType, sock); + Socket accepted = new Socket (this.AddressFamily, this.SocketType, this.ProtocolType, safe_handle) { + seed_endpoint = this.seed_endpoint, + Blocking = this.Blocking, + }; - accepted.seed_endpoint = this.seed_endpoint; - accepted.Blocking = this.Blocking; - return(accepted); + return accepted; } internal void Accept (Socket acceptSocket) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - + ThrowIfDisposedAndClosed (); + int error = 0; - var sock = Accept_internal (socket, out error, blocking); - + SafeSocketHandle safe_handle = Accept_internal (this.safe_handle, out error, is_blocking); + if (error != 0) { - if (closed) - error = SOCKET_CLOSED; + if (is_closed) + error = SOCKET_CLOSED_CODE; throw new SocketException (error); } - + acceptSocket.address_family = this.AddressFamily; acceptSocket.socket_type = this.SocketType; acceptSocket.protocol_type = this.ProtocolType; - acceptSocket.socket = sock; - acceptSocket.connected = true; + acceptSocket.safe_handle = safe_handle; + acceptSocket.is_connected = true; acceptSocket.seed_endpoint = this.seed_endpoint; acceptSocket.Blocking = this.Blocking; - /* FIXME: figure out what if anything else - * needs to be reset - */ + // FIXME: figure out what if anything else needs to be reset + } + + public bool AcceptAsync (SocketAsyncEventArgs e) + { + // NO check is made whether e != null in MS.NET (NRE is thrown in such case) + + ThrowIfDisposedAndClosed (); + + if (!is_bound) + throw new InvalidOperationException ("You must call the Bind method before performing this operation."); + if (!is_listening) + throw new InvalidOperationException ("You must call the Listen method before performing this operation."); + if (e.BufferList != null) + throw new ArgumentException ("Multiple buffers cannot be used with this method."); + if (e.Count < 0) + throw new ArgumentOutOfRangeException ("e.Count"); + + Socket acceptSocket = e.AcceptSocket; + if (acceptSocket != null) { + if (acceptSocket.is_bound || acceptSocket.is_connected) + throw new InvalidOperationException ("AcceptSocket: The socket must not be bound or connected."); + } + + e.curSocket = this; + e.Worker.Init (this, e, SocketOperation.Accept); + + SocketAsyncResult sockares = e.Worker.result; + + QueueSocketAsyncResult (readQ, e.Worker, sockares); + + return true; } public IAsyncResult BeginAccept(AsyncCallback callback, object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (!isbound || !islistening) + if (!is_bound || !is_listening) throw new InvalidOperationException (); - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.Accept); - int count; - lock (readQ) { - readQ.Enqueue (req.Worker); - count = readQ.Count; - } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return req; + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.Accept); + + QueueSocketAsyncResult (readQ, sockares.Worker, sockares); + + return sockares; } - public IAsyncResult BeginAccept (int receiveSize, - AsyncCallback callback, - object state) + public IAsyncResult BeginAccept (int receiveSize, AsyncCallback callback, object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); if (receiveSize < 0) throw new ArgumentOutOfRangeException ("receiveSize", "receiveSize is less than zero"); - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.AcceptReceive); - req.Buffer = new byte[receiveSize]; - req.Offset = 0; - req.Size = receiveSize; - req.SockFlags = SocketFlags.None; - int count; - lock (readQ) { - readQ.Enqueue (req.Worker); - count = readQ.Count; - } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return req; + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.AcceptReceive) { + Buffer = new byte [receiveSize], + Offset = 0, + Size = receiveSize, + SockFlags = SocketFlags.None, + }; + + QueueSocketAsyncResult (readQ, sockares.Worker, sockares); + + return sockares; } - public IAsyncResult BeginAccept (Socket acceptSocket, - int receiveSize, - AsyncCallback callback, - object state) + public IAsyncResult BeginAccept (Socket acceptSocket, int receiveSize, AsyncCallback callback, object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); if (receiveSize < 0) throw new ArgumentOutOfRangeException ("receiveSize", "receiveSize is less than zero"); if (acceptSocket != null) { - if (acceptSocket.disposed && acceptSocket.closed) - throw new ObjectDisposedException (acceptSocket.GetType ().ToString ()); + ThrowIfDisposedAndClosed (acceptSocket); if (acceptSocket.IsBound) throw new InvalidOperationException (); @@ -683,1538 +975,2112 @@ namespace System.Net.Sockets throw new SocketException ((int)SocketError.InvalidArgument); } - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.AcceptReceive); - req.Buffer = new byte[receiveSize]; - req.Offset = 0; - req.Size = receiveSize; - req.SockFlags = SocketFlags.None; - req.AcceptSocket = acceptSocket; - int count; - lock (readQ) { - readQ.Enqueue (req.Worker); - count = readQ.Count; - } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return(req); - } - - public IAsyncResult BeginConnect (IPAddress address, int port, - AsyncCallback callback, - object state) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (address == null) - throw new ArgumentNullException ("address"); + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.AcceptReceive) { + Buffer = new byte [receiveSize], + Offset = 0, + Size = receiveSize, + SockFlags = SocketFlags.None, + AcceptSocket = acceptSocket, + }; - if (address.ToString ().Length == 0) - throw new ArgumentException ("The length of the IP address is zero"); + QueueSocketAsyncResult (readQ, sockares.Worker, sockares); - if (port <= 0 || port > 65535) - throw new ArgumentOutOfRangeException ("port", "Must be > 0 and < 65536"); + return sockares; + } - if (islistening) - throw new InvalidOperationException (); + public Socket EndAccept (IAsyncResult result) + { + int bytes; + byte[] buffer; + return EndAccept (out buffer, out bytes, result); + } - IPEndPoint iep = new IPEndPoint (address, port); - return(BeginConnect (iep, callback, state)); + public Socket EndAccept (out byte[] buffer, IAsyncResult asyncResult) + { + int bytes; + return EndAccept (out buffer, out bytes, asyncResult); } - public IAsyncResult BeginConnect (string host, int port, - AsyncCallback callback, - object state) + public Socket EndAccept (out byte[] buffer, out int bytesTransferred, IAsyncResult asyncResult) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (host == null) - throw new ArgumentNullException ("host"); + SocketAsyncResult sockares = ValidateEndIAsyncResult (asyncResult, "EndAccept", "asyncResult"); - if (address_family != AddressFamily.InterNetwork && - address_family != AddressFamily.InterNetworkV6) - throw new NotSupportedException ("This method is valid only for sockets in the InterNetwork and InterNetworkV6 families"); + if (!sockares.IsCompleted) + sockares.AsyncWaitHandle.WaitOne (); - if (port <= 0 || port > 65535) - throw new ArgumentOutOfRangeException ("port", "Must be > 0 and < 65536"); + sockares.CheckIfThrowDelayedException (); - if (islistening) - throw new InvalidOperationException (); + buffer = sockares.Buffer; + bytesTransferred = sockares.Total; - return BeginConnect (Dns.GetHostAddresses (host), port, callback, state); + return sockares.Socket; } - public IAsyncResult BeginDisconnect (bool reuseSocket, - AsyncCallback callback, - object state) + static SafeSocketHandle Accept_internal (SafeSocketHandle safeHandle, out int error, bool blocking) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.Disconnect); - req.ReuseSocket = reuseSocket; - socket_pool_queue (Worker.Dispatcher, req); - return(req); + try { + safeHandle.RegisterForBlockingSyscall (); + var ret = Accept_internal (safeHandle.DangerousGetHandle (), out error, blocking); + return new SafeSocketHandle (ret, true); + } finally { + safeHandle.UnRegisterForBlockingSyscall (); + } } - void CheckRange (byte[] buffer, int offset, int size) + /* Creates a new system socket, returning the handle */ + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static IntPtr Accept_internal (IntPtr sock, out int error, bool blocking); + +#endregion + +#region Bind + + public void Bind (EndPoint local_end) { - if (offset < 0) - throw new ArgumentOutOfRangeException ("offset", "offset must be >= 0"); - - if (offset > buffer.Length) - throw new ArgumentOutOfRangeException ("offset", "offset must be <= buffer.Length"); + ThrowIfDisposedAndClosed (); - if (size < 0) - throw new ArgumentOutOfRangeException ("size", "size must be >= 0"); - - if (size > buffer.Length - offset) - throw new ArgumentOutOfRangeException ("size", "size must be <= buffer.Length - offset"); + if (local_end == null) + throw new ArgumentNullException("local_end"); + + int error; + Bind_internal (safe_handle, local_end.Serialize(), out error); + + if (error != 0) + throw new SocketException (error); + if (error == 0) + is_bound = true; + + seed_endpoint = local_end; } - - public IAsyncResult BeginReceive(byte[] buffer, int offset, - int size, - SocketFlags socket_flags, - AsyncCallback callback, - object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + private static void Bind_internal (SafeSocketHandle safeHandle, SocketAddress sa, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + Bind_internal (safeHandle.DangerousGetHandle (), sa, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); + } + } - if (buffer == null) - throw new ArgumentNullException ("buffer"); + // Creates a new system socket, returning the handle + [MethodImplAttribute(MethodImplOptions.InternalCall)] + private extern static void Bind_internal(IntPtr sock, SocketAddress sa, out int error); - CheckRange (buffer, offset, size); +#endregion - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.Receive); - req.Buffer = buffer; - req.Offset = offset; - req.Size = size; - req.SockFlags = socket_flags; - int count; - lock (readQ) { - readQ.Enqueue (req.Worker); - count = readQ.Count; +#region Listen + + public void Listen (int backlog) + { + ThrowIfDisposedAndClosed (); + + if (!is_bound) + throw new SocketException ((int) SocketError.InvalidArgument); + + int error; + Listen_internal(safe_handle, backlog, out error); + + if (error != 0) + throw new SocketException (error); + + is_listening = true; + } + + static void Listen_internal (SafeSocketHandle safeHandle, int backlog, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + Listen_internal (safeHandle.DangerousGetHandle (), backlog, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return req; - } - - public IAsyncResult BeginReceive (byte[] buffer, int offset, - int size, SocketFlags flags, - out SocketError error, - AsyncCallback callback, - object state) - { - /* As far as I can tell from the docs and from - * experimentation, a pointer to the - * SocketError parameter is not supposed to be - * saved for the async parts. And as we don't - * set any socket errors in the setup code, we - * just have to set it to Success. - */ + } + + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static void Listen_internal (IntPtr sock, int backlog, out int error); + +#endregion + +#region Connect + + public void Connect (IPAddress address, int port) + { + Connect (new IPEndPoint (address, port)); + } + + public void Connect (string host, int port) + { + Connect (Dns.GetHostAddresses (host), port); + } + + public void Connect (IPAddress[] addresses, int port) + { + ThrowIfDisposedAndClosed (); + + if (addresses == null) + throw new ArgumentNullException ("addresses"); + if (this.AddressFamily != AddressFamily.InterNetwork && this.AddressFamily != AddressFamily.InterNetworkV6) + throw new NotSupportedException ("This method is only valid for addresses in the InterNetwork or InterNetworkV6 families"); + if (is_listening) + throw new InvalidOperationException (); + + // FIXME: do non-blocking sockets Poll here? + int error = 0; + foreach (IPAddress address in addresses) { + IPEndPoint iep = new IPEndPoint (address, port); + + Connect_internal (safe_handle, iep.Serialize (), out error); + if (error == 0) { + is_connected = true; + is_bound = true; + seed_endpoint = iep; + return; + } + if (error != (int)SocketError.InProgress && error != (int)SocketError.WouldBlock) + continue; + + if (!is_blocking) { + Poll (-1, SelectMode.SelectWrite); + error = (int)GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Error); + if (error == 0) { + is_connected = true; + is_bound = true; + seed_endpoint = iep; + return; + } + } + } + + if (error != 0) + throw new SocketException (error); + } + + + public void Connect (EndPoint remoteEP) + { + ThrowIfDisposedAndClosed (); + + if (remoteEP == null) + throw new ArgumentNullException ("remoteEP"); + + IPEndPoint ep = remoteEP as IPEndPoint; + /* Dgram uses Any to 'disconnect' */ + if (ep != null && socket_type != SocketType.Dgram) { + if (ep.Address.Equals (IPAddress.Any) || ep.Address.Equals (IPAddress.IPv6Any)) + throw new SocketException ((int) SocketError.AddressNotAvailable); + } + + if (is_listening) + throw new InvalidOperationException (); + + SocketAddress serial = remoteEP.Serialize (); + + int error = 0; + Connect_internal (safe_handle, serial, out error); + + if (error == 0 || error == 10035) + seed_endpoint = remoteEP; // Keep the ep around for non-blocking sockets + + if (error != 0) { + if (is_closed) + error = SOCKET_CLOSED_CODE; + throw new SocketException (error); + } + + is_connected = !(socket_type == SocketType.Dgram && ep != null && (ep.Address.Equals (IPAddress.Any) || ep.Address.Equals (IPAddress.IPv6Any))); + is_bound = true; + } + + public bool ConnectAsync (SocketAsyncEventArgs e) + { + // NO check is made whether e != null in MS.NET (NRE is thrown in such case) + + ThrowIfDisposedAndClosed (); + + if (is_listening) + throw new InvalidOperationException ("You may not perform this operation after calling the Listen method."); + if (e.RemoteEndPoint == null) + throw new ArgumentNullException ("remoteEP"); + + e.curSocket = this; + e.Worker.Init (this, e, SocketOperation.Connect); + + SocketAsyncResult result = e.Worker.result; + + try { + IPAddress [] addresses; + IAsyncResult ares; + + if (!GetCheckedIPs (e, out addresses)) { + result.EndPoint = e.RemoteEndPoint; + ares = BeginConnect (e.RemoteEndPoint, SocketAsyncEventArgs.Dispatcher, e); + } else { + DnsEndPoint dep = (e.RemoteEndPoint as DnsEndPoint); + result.Addresses = addresses; + result.Port = dep.Port; + ares = BeginConnect (addresses, dep.Port, SocketAsyncEventArgs.Dispatcher, e); + } + + if (ares.IsCompleted && ares.CompletedSynchronously) { + ((SocketAsyncResult) ares).CheckIfThrowDelayedException (); + return false; + } + } catch (Exception exc) { + result.Complete (exc, true); + return false; + } + + return true; + } + + public IAsyncResult BeginConnect (IPAddress address, int port, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + + if (address == null) + throw new ArgumentNullException ("address"); + if (address.ToString ().Length == 0) + throw new ArgumentException ("The length of the IP address is zero"); + if (port <= 0 || port > 65535) + throw new ArgumentOutOfRangeException ("port", "Must be > 0 and < 65536"); + if (is_listening) + throw new InvalidOperationException (); + + return BeginConnect (new IPEndPoint (address, port), callback, state); + } + + public IAsyncResult BeginConnect (string host, int port, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + + if (host == null) + throw new ArgumentNullException ("host"); + if (address_family != AddressFamily.InterNetwork && address_family != AddressFamily.InterNetworkV6) + throw new NotSupportedException ("This method is valid only for sockets in the InterNetwork and InterNetworkV6 families"); + if (port <= 0 || port > 65535) + throw new ArgumentOutOfRangeException ("port", "Must be > 0 and < 65536"); + if (is_listening) + throw new InvalidOperationException (); + + return BeginConnect (Dns.GetHostAddresses (host), port, callback, state); + } + + public IAsyncResult BeginConnect (EndPoint end_point, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + + if (end_point == null) + throw new ArgumentNullException ("end_point"); + + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.Connect) { + EndPoint = end_point, + }; + + // Bug #75154: Connect() should not succeed for .Any addresses. + if (end_point is IPEndPoint) { + IPEndPoint ep = (IPEndPoint) end_point; + if (ep.Address.Equals (IPAddress.Any) || ep.Address.Equals (IPAddress.IPv6Any)) { + sockares.Complete (new SocketException ((int) SocketError.AddressNotAvailable), true); + return sockares; + } + } + + int error = 0; + + if (connect_in_progress) { + // This could happen when multiple IPs are used + // Calling connect() again will reset the connection attempt and cause + // an error. Better to just close the socket and move on. + connect_in_progress = false; + safe_handle.Dispose (); + var handle = Socket_internal (address_family, socket_type, protocol_type, out error); + safe_handle = new SafeSocketHandle (handle, true); + if (error != 0) + throw new SocketException (error); + } + + bool blk = is_blocking; + if (blk) + Blocking = false; + Connect_internal (safe_handle, end_point.Serialize (), out error); + if (blk) + Blocking = true; + + if (error == 0) { + // succeeded synch + is_connected = true; + is_bound = true; + sockares.Complete (true); + return sockares; + } + + if (error != (int) SocketError.InProgress && error != (int) SocketError.WouldBlock) { + // error synch + is_connected = false; + is_bound = false; + sockares.Complete (new SocketException (error), true); + return sockares; + } + + // continue asynch + is_connected = false; + is_bound = false; + connect_in_progress = true; + + socket_pool_queue (SocketAsyncWorker.Dispatcher, sockares); + + return sockares; + } + + public IAsyncResult BeginConnect (IPAddress[] addresses, int port, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + + if (addresses == null) + throw new ArgumentNullException ("addresses"); + if (addresses.Length == 0) + throw new ArgumentException ("Empty addresses list"); + if (this.AddressFamily != AddressFamily.InterNetwork && this.AddressFamily != AddressFamily.InterNetworkV6) + throw new NotSupportedException ("This method is only valid for addresses in the InterNetwork or InterNetworkV6 families"); + if (port <= 0 || port > 65535) + throw new ArgumentOutOfRangeException ("port", "Must be > 0 and < 65536"); + if (is_listening) + throw new InvalidOperationException (); + + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.Connect) { + Addresses = addresses, + Port = port, + }; + + is_connected = false; + + return BeginMConnect (sockares); + } + + internal IAsyncResult BeginMConnect (SocketAsyncResult sockares) + { + IAsyncResult ares = null; + Exception exc = null; + + for (int i = sockares.CurrentAddress; i < sockares.Addresses.Length; i++) { + try { + sockares.CurrentAddress++; + + ares = BeginConnect (new IPEndPoint (sockares.Addresses [i], sockares.Port), null, sockares); + if (ares.IsCompleted && ares.CompletedSynchronously) { + ((SocketAsyncResult) ares).CheckIfThrowDelayedException (); + sockares.DoMConnectCallback (); + } + + break; + } catch (Exception e) { + exc = e; + ares = null; + } + } + + if (ares == null) + throw exc; + + return sockares; + } + + public void EndConnect (IAsyncResult result) + { + ThrowIfDisposedAndClosed (); + + SocketAsyncResult sockares = ValidateEndIAsyncResult (result, "EndConnect", "result"); + + if (!sockares.IsCompleted) + sockares.AsyncWaitHandle.WaitOne(); + + sockares.CheckIfThrowDelayedException(); + } + + static void Connect_internal (SafeSocketHandle safeHandle, SocketAddress sa, out int error) + { + try { + safeHandle.RegisterForBlockingSyscall (); + Connect_internal (safeHandle.DangerousGetHandle (), sa, out error); + } finally { + safeHandle.UnRegisterForBlockingSyscall (); + } + } + + /* Connects to the remote address */ + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static void Connect_internal(IntPtr sock, SocketAddress sa, out int error); + + /* Returns : + * - false when it is ok to use RemoteEndPoint + * - true when addresses must be used (and addresses could be null/empty) */ + bool GetCheckedIPs (SocketAsyncEventArgs e, out IPAddress [] addresses) + { + addresses = null; + + // Connect to the first address that match the host name, like: + // http://blogs.msdn.com/ncl/archive/2009/07/20/new-ncl-features-in-net-4-0-beta-2.aspx + // while skipping entries that do not match the address family + DnsEndPoint dep = e.RemoteEndPoint as DnsEndPoint; + if (dep != null) { + addresses = Dns.GetHostAddresses (dep.Host); + return true; + } else { + e.ConnectByNameError = null; + return false; + } + } + +#endregion + +#region Disconnect + + /* According to the docs, the MS runtime will throw PlatformNotSupportedException + * if the platform is newer than w2k. We should be able to cope... */ + public void Disconnect (bool reuseSocket) + { + ThrowIfDisposedAndClosed (); + + int error = 0; + Disconnect_internal (safe_handle, reuseSocket, out error); + + if (error != 0) { + if (error == 50) { + /* ERROR_NOT_SUPPORTED */ + throw new PlatformNotSupportedException (); + } else { + throw new SocketException (error); + } + } + + is_connected = false; + if (reuseSocket) { + /* Do managed housekeeping here... */ + } + } + + public bool DisconnectAsync (SocketAsyncEventArgs e) + { + // NO check is made whether e != null in MS.NET (NRE is thrown in such case) + + ThrowIfDisposedAndClosed (); + + e.curSocket = this; + e.Worker.Init (this, e, SocketOperation.Disconnect); + + SocketAsyncResult sockares = e.Worker.result; + + socket_pool_queue (SocketAsyncWorker.Dispatcher, sockares); + + return true; + } + + + public IAsyncResult BeginDisconnect (bool reuseSocket, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.Disconnect) { + ReuseSocket = reuseSocket, + }; + + socket_pool_queue (SocketAsyncWorker.Dispatcher, sockares); + + return sockares; + } + + public void EndDisconnect (IAsyncResult asyncResult) + { + ThrowIfDisposedAndClosed (); + + SocketAsyncResult sockares = ValidateEndIAsyncResult (asyncResult, "EndDisconnect", "asyncResult"); + + if (!sockares.IsCompleted) + sockares.AsyncWaitHandle.WaitOne (); + + sockares.CheckIfThrowDelayedException (); + } + + static void Disconnect_internal (SafeSocketHandle safeHandle, bool reuse, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + Disconnect_internal (safeHandle.DangerousGetHandle (), reuse, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); + } + } + + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static void Disconnect_internal (IntPtr sock, bool reuse, out int error); + +#endregion + +#region Receive + + public int Receive (byte [] buffer) + { + return Receive (buffer, SocketFlags.None); + } + + public int Receive (byte [] buffer, SocketFlags flags) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, buffer.Length); + + SocketError error; + int ret = Receive_nochecks (buffer, 0, buffer.Length, flags, out error); + + if (error != SocketError.Success) { + if (error == SocketError.WouldBlock && is_blocking) // This might happen when ReceiveTimeout is set + throw new SocketException ((int) error, TIMEOUT_EXCEPTION_MSG); + throw new SocketException ((int) error); + } + + return ret; + } + + public int Receive (byte [] buffer, int size, SocketFlags flags) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, size); + + SocketError error; + int ret = Receive_nochecks (buffer, 0, size, flags, out error); + + if (error != SocketError.Success) { + if (error == SocketError.WouldBlock && is_blocking) // This might happen when ReceiveTimeout is set + throw new SocketException ((int) error, TIMEOUT_EXCEPTION_MSG); + throw new SocketException ((int) error); + } + + return ret; + } + + public int Receive (byte [] buffer, int offset, int size, SocketFlags flags) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); + + SocketError error; + int ret = Receive_nochecks (buffer, offset, size, flags, out error); + + if (error != SocketError.Success) { + if (error == SocketError.WouldBlock && is_blocking) // This might happen when ReceiveTimeout is set + throw new SocketException ((int) error, TIMEOUT_EXCEPTION_MSG); + throw new SocketException ((int) error); + } + + return ret; + } + + public int Receive (byte [] buffer, int offset, int size, SocketFlags flags, out SocketError error) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); + + return Receive_nochecks (buffer, offset, size, flags, out error); + } + + public int Receive (IList> buffers) + { + SocketError error; + int ret = Receive (buffers, SocketFlags.None, out error); + + if (error != SocketError.Success) + throw new SocketException ((int) error); + + return ret; + } + + [CLSCompliant (false)] + public int Receive (IList> buffers, SocketFlags socketFlags) + { + SocketError error; + int ret = Receive (buffers, socketFlags, out error); + + if (error != SocketError.Success) + throw new SocketException ((int) error); + + return(ret); + } + + [CLSCompliant (false)] + public int Receive (IList> buffers, SocketFlags socketFlags, out SocketError errorCode) + { + ThrowIfDisposedAndClosed (); + + if (buffers == null || buffers.Count == 0) + throw new ArgumentNullException ("buffers"); + + int numsegments = buffers.Count; + int nativeError; + int ret; + + /* Only example I can find of sending a byte array reference directly into an internal + * call is in System.Runtime.Remoting/System.Runtime.Remoting.Channels.Ipc.Win32/NamedPipeSocket.cs, + * so taking a lead from that... */ + WSABUF[] bufarray = new WSABUF[numsegments]; + GCHandle[] gch = new GCHandle[numsegments]; + + for (int i = 0; i < numsegments; i++) { + ArraySegment segment = buffers[i]; + + if (segment.Offset < 0 || segment.Count < 0 || segment.Count > segment.Array.Length - segment.Offset) + throw new ArgumentOutOfRangeException ("segment"); + + gch[i] = GCHandle.Alloc (segment.Array, GCHandleType.Pinned); + bufarray[i].len = segment.Count; + bufarray[i].buf = Marshal.UnsafeAddrOfPinnedArrayElement (segment.Array, segment.Offset); + } + + try { + ret = Receive_internal (safe_handle, bufarray, socketFlags, out nativeError); + } finally { + for (int i = 0; i < numsegments; i++) { + if (gch[i].IsAllocated) + gch[i].Free (); + } + } + + errorCode = (SocketError) nativeError; + + return ret; + } + + public bool ReceiveAsync (SocketAsyncEventArgs e) + { + // NO check is made whether e != null in MS.NET (NRE is thrown in such case) + + ThrowIfDisposedAndClosed (); + + // LAME SPEC: the ArgumentException is never thrown, instead an NRE is + // thrown when e.Buffer and e.BufferList are null (works fine when one is + // set to a valid object) + if (e.Buffer == null && e.BufferList == null) + throw new NullReferenceException ("Either e.Buffer or e.BufferList must be valid buffers."); + + e.curSocket = this; + e.Worker.Init (this, e, e.Buffer != null ? SocketOperation.Receive : SocketOperation.ReceiveGeneric); + + SocketAsyncResult sockares = e.Worker.result; + sockares.SockFlags = e.SocketFlags; + + if (e.Buffer != null) { + sockares.Buffer = e.Buffer; + sockares.Offset = e.Offset; + sockares.Size = e.Count; + } else { + sockares.Buffers = e.BufferList; + } + + // Receive takes care of ReceiveGeneric + QueueSocketAsyncResult (readQ, e.Worker, sockares); + + return true; + } + + public IAsyncResult BeginReceive (byte[] buffer, int offset, int size, SocketFlags socket_flags, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); + + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.Receive) { + Buffer = buffer, + Offset = offset, + Size = size, + SockFlags = socket_flags, + }; + + QueueSocketAsyncResult (readQ, sockares.Worker, sockares); + + return sockares; + } + + public IAsyncResult BeginReceive (byte[] buffer, int offset, int size, SocketFlags flags, out SocketError error, AsyncCallback callback, object state) + { + /* As far as I can tell from the docs and from experimentation, a pointer to the + * SocketError parameter is not supposed to be saved for the async parts. And as we don't + * set any socket errors in the setup code, we just have to set it to Success. */ error = SocketError.Success; - return (BeginReceive (buffer, offset, size, flags, callback, state)); + return BeginReceive (buffer, offset, size, flags, callback, state); } - [CLSCompliant (false)] - public IAsyncResult BeginReceive (IList> buffers, - SocketFlags socketFlags, - AsyncCallback callback, - object state) + [CLSCompliant (false)] + public IAsyncResult BeginReceive (IList> buffers, SocketFlags socketFlags, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + + if (buffers == null) + throw new ArgumentNullException ("buffers"); + + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.ReceiveGeneric) { + Buffers = buffers, + SockFlags = socketFlags, + }; + + QueueSocketAsyncResult (readQ, sockares.Worker, sockares); + + return sockares; + } + + [CLSCompliant (false)] + public IAsyncResult BeginReceive (IList> buffers, SocketFlags socketFlags, out SocketError errorCode, AsyncCallback callback, object state) + { + /* I assume the same SocketError semantics as above */ + errorCode = SocketError.Success; + return BeginReceive (buffers, socketFlags, callback, state); + } + + public int EndReceive (IAsyncResult result) + { + SocketError error; + int bytesReceived = EndReceive (result, out error); + + if (error != SocketError.Success) { + if (error != SocketError.WouldBlock && error != SocketError.InProgress) + is_connected = false; + throw new SocketException ((int)error); + } + + return bytesReceived; + } + + public int EndReceive (IAsyncResult asyncResult, out SocketError errorCode) + { + ThrowIfDisposedAndClosed (); + + SocketAsyncResult sockares = ValidateEndIAsyncResult (asyncResult, "EndReceive", "asyncResult"); + + if (!sockares.IsCompleted) + sockares.AsyncWaitHandle.WaitOne (); + + // If no socket error occurred, call CheckIfThrowDelayedException in case there are other + // kinds of exceptions that should be thrown. + if ((errorCode = sockares.ErrorCode) == SocketError.Success) + sockares.CheckIfThrowDelayedException(); + + return sockares.Total; + } + + internal int Receive_nochecks (byte [] buf, int offset, int size, SocketFlags flags, out SocketError error) + { + int nativeError; + int ret = Receive_internal (safe_handle, buf, offset, size, flags, out nativeError); + + error = (SocketError) nativeError; + if (error != SocketError.Success && error != SocketError.WouldBlock && error != SocketError.InProgress) { + is_connected = false; + is_bound = false; + } else { + is_connected = true; + } + + return ret; + } + + static int Receive_internal (SafeSocketHandle safeHandle, WSABUF[] bufarray, SocketFlags flags, out int error) + { + try { + safeHandle.RegisterForBlockingSyscall (); + return Receive_internal (safeHandle.DangerousGetHandle (), bufarray, flags, out error); + } finally { + safeHandle.UnRegisterForBlockingSyscall (); + } + } + + [MethodImplAttribute (MethodImplOptions.InternalCall)] + extern static int Receive_internal (IntPtr sock, WSABUF[] bufarray, SocketFlags flags, out int error); + + static int Receive_internal (SafeSocketHandle safeHandle, byte[] buffer, int offset, int count, SocketFlags flags, out int error) + { + try { + safeHandle.RegisterForBlockingSyscall (); + return Receive_internal (safeHandle.DangerousGetHandle (), buffer, offset, count, flags, out error); + } finally { + safeHandle.UnRegisterForBlockingSyscall (); + } + } + + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static int Receive_internal(IntPtr sock, byte[] buffer, int offset, int count, SocketFlags flags, out int error); + +#endregion + +#region ReceiveFrom + + public int ReceiveFrom (byte [] buffer, ref EndPoint remoteEP) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, buffer.Length); - if (buffers == null) - throw new ArgumentNullException ("buffers"); + if (remoteEP == null) + throw new ArgumentNullException ("remoteEP"); - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.ReceiveGeneric); - req.Buffers = buffers; - req.SockFlags = socketFlags; - int count; - lock(readQ) { - readQ.Enqueue (req.Worker); - count = readQ.Count; - } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return req; - } - - [CLSCompliant (false)] - public IAsyncResult BeginReceive (IList> buffers, - SocketFlags socketFlags, - out SocketError errorCode, - AsyncCallback callback, - object state) - { - /* I assume the same SocketError semantics as - * above - */ - errorCode = SocketError.Success; - return (BeginReceive (buffers, socketFlags, callback, state)); + return ReceiveFrom_nochecks (buffer, 0, buffer.Length, SocketFlags.None, ref remoteEP); } - public IAsyncResult BeginReceiveFrom(byte[] buffer, int offset, - int size, - SocketFlags socket_flags, - ref EndPoint remote_end, - AsyncCallback callback, - object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + public int ReceiveFrom (byte [] buffer, SocketFlags flags, ref EndPoint remoteEP) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, buffer.Length); - if (buffer == null) - throw new ArgumentNullException ("buffer"); + if (remoteEP == null) + throw new ArgumentNullException ("remoteEP"); - if (remote_end == null) - throw new ArgumentNullException ("remote_end"); + return ReceiveFrom_nochecks (buffer, 0, buffer.Length, flags, ref remoteEP); + } - CheckRange (buffer, offset, size); + public int ReceiveFrom (byte [] buffer, int size, SocketFlags flags, ref EndPoint remoteEP) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, size); - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.ReceiveFrom); - req.Buffer = buffer; - req.Offset = offset; - req.Size = size; - req.SockFlags = socket_flags; - req.EndPoint = remote_end; - int count; - lock (readQ) { - readQ.Enqueue (req.Worker); - count = readQ.Count; - } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return req; + if (remoteEP == null) + throw new ArgumentNullException ("remoteEP"); + + return ReceiveFrom_nochecks (buffer, 0, size, flags, ref remoteEP); } - [MonoTODO] - public IAsyncResult BeginReceiveMessageFrom ( - byte[] buffer, int offset, int size, - SocketFlags socketFlags, ref EndPoint remoteEP, - AsyncCallback callback, object state) + public int ReceiveFrom (byte [] buffer, int offset, int size, SocketFlags flags, ref EndPoint remoteEP) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (buffer == null) - throw new ArgumentNullException ("buffer"); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); if (remoteEP == null) throw new ArgumentNullException ("remoteEP"); - CheckRange (buffer, offset, size); - - throw new NotImplementedException (); + return ReceiveFrom_nochecks (buffer, offset, size, flags, ref remoteEP); } - public IAsyncResult BeginSend (byte[] buffer, int offset, int size, SocketFlags socket_flags, - AsyncCallback callback, object state) + public bool ReceiveFromAsync (SocketAsyncEventArgs e) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (buffer == null) - throw new ArgumentNullException ("buffer"); + // We do not support recv into multiple buffers yet + if (e.BufferList != null) + throw new NotSupportedException ("Mono doesn't support using BufferList at this point."); + if (e.RemoteEndPoint == null) + throw new ArgumentNullException ("remoteEP", "Value cannot be null."); - CheckRange (buffer, offset, size); + e.curSocket = this; + e.Worker.Init (this, e, SocketOperation.ReceiveFrom); - if (!connected) - throw new SocketException ((int)SocketError.NotConnected); + SocketAsyncResult sockares = e.Worker.result; + sockares.Buffer = e.Buffer; + sockares.Offset = e.Offset; + sockares.Size = e.Count; + sockares.EndPoint = e.RemoteEndPoint; + sockares.SockFlags = e.SocketFlags; - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.Send); - req.Buffer = buffer; - req.Offset = offset; - req.Size = size; - req.SockFlags = socket_flags; - int count; - lock (writeQ) { - writeQ.Enqueue (req.Worker); - count = writeQ.Count; - } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return req; + QueueSocketAsyncResult (readQ, e.Worker, sockares); + + return true; } - public IAsyncResult BeginSend (byte[] buffer, int offset, - int size, - SocketFlags socketFlags, - out SocketError errorCode, - AsyncCallback callback, - object state) + public IAsyncResult BeginReceiveFrom (byte[] buffer, int offset, int size, SocketFlags socket_flags, ref EndPoint remote_end, AsyncCallback callback, object state) { - if (!connected) { - errorCode = SocketError.NotConnected; - throw new SocketException ((int)errorCode); - } - - errorCode = SocketError.Success; - - return (BeginSend (buffer, offset, size, socketFlags, callback, - state)); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); + + if (remote_end == null) + throw new ArgumentNullException ("remote_end"); + + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.ReceiveFrom) { + Buffer = buffer, + Offset = offset, + Size = size, + SockFlags = socket_flags, + EndPoint = remote_end, + }; + + QueueSocketAsyncResult (readQ, sockares.Worker, sockares); + + return sockares; } - public IAsyncResult BeginSend (IList> buffers, - SocketFlags socketFlags, - AsyncCallback callback, - object state) + public int EndReceiveFrom(IAsyncResult result, ref EndPoint end_point) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (buffers == null) - throw new ArgumentNullException ("buffers"); + if (end_point == null) + throw new ArgumentNullException ("remote_end"); - if (!connected) - throw new SocketException ((int)SocketError.NotConnected); + SocketAsyncResult sockares = ValidateEndIAsyncResult (result, "EndReceiveFrom", "result"); - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.SendGeneric); - req.Buffers = buffers; - req.SockFlags = socketFlags; - int count; - lock (writeQ) { - writeQ.Enqueue (req.Worker); - count = writeQ.Count; - } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return req; + if (!sockares.IsCompleted) + sockares.AsyncWaitHandle.WaitOne(); + + sockares.CheckIfThrowDelayedException(); + + end_point = sockares.EndPoint; + + return sockares.Total; } - [CLSCompliant (false)] - public IAsyncResult BeginSend (IList> buffers, - SocketFlags socketFlags, - out SocketError errorCode, - AsyncCallback callback, - object state) + internal int ReceiveFrom_nochecks (byte [] buf, int offset, int size, SocketFlags flags, ref EndPoint remote_end) { - if (!connected) { - errorCode = SocketError.NotConnected; - throw new SocketException ((int)errorCode); - } - - errorCode = SocketError.Success; - return (BeginSend (buffers, socketFlags, callback, state)); + int error; + return ReceiveFrom_nochecks_exc (buf, offset, size, flags, ref remote_end, true, out error); } - delegate void SendFileHandler (string fileName, byte [] preBuffer, byte [] postBuffer, TransmitFileOptions flags); + internal int ReceiveFrom_nochecks_exc (byte [] buf, int offset, int size, SocketFlags flags, ref EndPoint remote_end, bool throwOnError, out int error) + { + SocketAddress sockaddr = remote_end.Serialize(); - sealed class SendFileAsyncResult : IAsyncResult { - IAsyncResult ares; - SendFileHandler d; + int cnt = ReceiveFrom_internal (safe_handle, buf, offset, size, flags, ref sockaddr, out error); - public SendFileAsyncResult (SendFileHandler d, IAsyncResult ares) - { - this.d = d; - this.ares = ares; - } + SocketError err = (SocketError) error; + if (err != 0) { + if (err != SocketError.WouldBlock && err != SocketError.InProgress) { + is_connected = false; + } else if (err == SocketError.WouldBlock && is_blocking) { // This might happen when ReceiveTimeout is set + if (throwOnError) + throw new SocketException ((int) SocketError.TimedOut, TIMEOUT_EXCEPTION_MSG); + error = (int) SocketError.TimedOut; + return 0; + } - public object AsyncState { - get { return ares.AsyncState; } - } + if (throwOnError) + throw new SocketException (error); - public WaitHandle AsyncWaitHandle { - get { return ares.AsyncWaitHandle; } + return 0; } - public bool CompletedSynchronously { - get { return ares.CompletedSynchronously; } - } + is_connected = true; + is_bound = true; - public bool IsCompleted { - get { return ares.IsCompleted; } + /* If sockaddr is null then we're a connection oriented protocol and should ignore the + * remote_end parameter (see MSDN documentation for Socket.ReceiveFrom(...) ) */ + if (sockaddr != null) { + /* Stupidly, EndPoint.Create() is an instance method */ + remote_end = remote_end.Create (sockaddr); } - public SendFileHandler Delegate { - get { return d; } - } + seed_endpoint = remote_end; - public IAsyncResult Original { - get { return ares; } - } + return cnt; } - public IAsyncResult BeginSendFile (string fileName, - AsyncCallback callback, - object state) + static int ReceiveFrom_internal (SafeSocketHandle safeHandle, byte[] buffer, int offset, int count, SocketFlags flags, ref SocketAddress sockaddr, out int error) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + try { + safeHandle.RegisterForBlockingSyscall (); + return ReceiveFrom_internal (safeHandle.DangerousGetHandle (), buffer, offset, count, flags, ref sockaddr, out error); + } finally { + safeHandle.UnRegisterForBlockingSyscall (); + } + } - if (!connected) - throw new NotSupportedException (); + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static int ReceiveFrom_internal(IntPtr sock, byte[] buffer, int offset, int count, SocketFlags flags, ref SocketAddress sockaddr, out int error); - if (!File.Exists (fileName)) - throw new FileNotFoundException (); +#endregion - return BeginSendFile (fileName, null, null, 0, callback, state); - } +#region ReceiveMessageFrom - public IAsyncResult BeginSendFile (string fileName, - byte[] preBuffer, - byte[] postBuffer, - TransmitFileOptions flags, - AsyncCallback callback, - object state) + [MonoTODO ("Not implemented")] + public int ReceiveMessageFrom (byte[] buffer, int offset, int size, ref SocketFlags socketFlags, ref EndPoint remoteEP, out IPPacketInformation ipPacketInformation) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (!connected) - throw new NotSupportedException (); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); - if (!File.Exists (fileName)) - throw new FileNotFoundException (); + if (remoteEP == null) + throw new ArgumentNullException ("remoteEP"); - SendFileHandler d = new SendFileHandler (SendFile); - return new SendFileAsyncResult (d, d.BeginInvoke (fileName, preBuffer, postBuffer, flags, ar => { - SendFileAsyncResult sfar = new SendFileAsyncResult (d, ar); - callback (sfar); - }, state)); + // FIXME: figure out how we get hold of the IPPacketInformation + throw new NotImplementedException (); } - public IAsyncResult BeginSendTo(byte[] buffer, int offset, - int size, - SocketFlags socket_flags, - EndPoint remote_end, - AsyncCallback callback, - object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (buffer == null) - throw new ArgumentNullException ("buffer"); + [MonoTODO ("Not implemented")] + public bool ReceiveMessageFromAsync (SocketAsyncEventArgs e) + { + // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - CheckRange (buffer, offset, size); + ThrowIfDisposedAndClosed (); - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.SendTo); - req.Buffer = buffer; - req.Offset = offset; - req.Size = size; - req.SockFlags = socket_flags; - req.EndPoint = remote_end; - int count; - lock (writeQ) { - writeQ.Enqueue (req.Worker); - count = writeQ.Count; - } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, req); - return req; + throw new NotImplementedException (); } - // Creates a new system socket, returning the handle - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static void Bind_internal(IntPtr sock, - SocketAddress sa, - out int error); - - private static void Bind_internal (SafeSocketHandle safeHandle, - SocketAddress sa, - out int error) + [MonoTODO] + public IAsyncResult BeginReceiveMessageFrom (byte[] buffer, int offset, int size, SocketFlags socketFlags, ref EndPoint remoteEP, AsyncCallback callback, object state) { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - Bind_internal (safeHandle.DangerousGetHandle (), sa, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } - } + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); - public void Bind(EndPoint local_end) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + if (remoteEP == null) + throw new ArgumentNullException ("remoteEP"); - if (local_end == null) - throw new ArgumentNullException("local_end"); - - int error; - - Bind_internal(socket, local_end.Serialize(), out error); - if (error != 0) - throw new SocketException (error); - if (error == 0) - isbound = true; - - seed_endpoint = local_end; + throw new NotImplementedException (); } - public void Connect (IPAddress address, int port) - { - Connect (new IPEndPoint (address, port)); - } - - public void Connect (IPAddress[] addresses, int port) + [MonoTODO] + public int EndReceiveMessageFrom (IAsyncResult asyncResult, ref SocketFlags socketFlags, ref EndPoint endPoint, out IPPacketInformation ipPacketInformation) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (addresses == null) - throw new ArgumentNullException ("addresses"); + ThrowIfDisposedAndClosed (); - if (this.AddressFamily != AddressFamily.InterNetwork && - this.AddressFamily != AddressFamily.InterNetworkV6) - throw new NotSupportedException ("This method is only valid for addresses in the InterNetwork or InterNetworkV6 families"); + if (endPoint == null) + throw new ArgumentNullException ("endPoint"); - if (islistening) - throw new InvalidOperationException (); + SocketAsyncResult sockares = ValidateEndIAsyncResult (asyncResult, "EndReceiveMessageFrom", "asyncResult"); - /* FIXME: do non-blocking sockets Poll here? */ - int error = 0; - foreach (IPAddress address in addresses) { - IPEndPoint iep = new IPEndPoint (address, port); - SocketAddress serial = iep.Serialize (); - - Connect_internal (socket, serial, out error); - if (error == 0) { - connected = true; - isbound = true; - seed_endpoint = iep; - return; - } else if (error != (int)SocketError.InProgress && - error != (int)SocketError.WouldBlock) { - continue; - } - - if (!blocking) { - Poll (-1, SelectMode.SelectWrite); - error = (int)GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Error); - if (error == 0) { - connected = true; - isbound = true; - seed_endpoint = iep; - return; - } - } - } - if (error != 0) - throw new SocketException (error); + throw new NotImplementedException (); } - public void Connect (string host, int port) +#endregion + +#region Send + + public int Send (byte [] buffer) { - IPAddress [] addresses = Dns.GetHostAddresses (host); - Connect (addresses, port); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, buffer.Length); + + SocketError error; + int ret = Send_nochecks (buffer, 0, buffer.Length, SocketFlags.None, out error); + + if (error != SocketError.Success) + throw new SocketException ((int) error); + + return ret; } - public bool DisconnectAsync (SocketAsyncEventArgs e) + public int Send (byte [] buffer, SocketFlags flags) { - // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, buffer.Length); - e.curSocket = this; - e.Worker.Init (this, e, SocketOperation.Disconnect); - socket_pool_queue (Worker.Dispatcher, e.Worker.result); - return true; - } + SocketError error; + int ret = Send_nochecks (buffer, 0, buffer.Length, flags, out error); - [MethodImplAttribute(MethodImplOptions.InternalCall)] - extern static void Disconnect_internal(IntPtr sock, bool reuse, out int error); + if (error != SocketError.Success) + throw new SocketException ((int) error); - private static void Disconnect_internal(SafeSocketHandle safeHandle, bool reuse, out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - Disconnect_internal (safeHandle.DangerousGetHandle (), reuse, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } + return ret; } - /* According to the docs, the MS runtime will throw - * PlatformNotSupportedException if the platform is - * newer than w2k. We should be able to cope... - */ - public void Disconnect (bool reuseSocket) + public int Send (byte [] buffer, int size, SocketFlags flags) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, size); - int error = 0; - - Disconnect_internal (socket, reuseSocket, out error); + SocketError error; + int ret = Send_nochecks (buffer, 0, size, flags, out error); - if (error != 0) { - if (error == 50) { - /* ERROR_NOT_SUPPORTED */ - throw new PlatformNotSupportedException (); - } else { - throw new SocketException (error); - } - } + if (error != SocketError.Success) + throw new SocketException ((int) error); - connected = false; - - if (reuseSocket) { - /* Do managed housekeeping here... */ - } + return ret; } -#if !MOBILE - [MonoLimitation ("We do not support passing sockets across processes, we merely allow this API to pass the socket across AppDomains")] - public SocketInformation DuplicateAndClose (int targetProcessId) + public int Send (byte [] buffer, int offset, int size, SocketFlags flags) { - var si = new SocketInformation (); - si.Options = - (islistening ? SocketInformationOptions.Listening : 0) | - (connected ? SocketInformationOptions.Connected : 0) | - (blocking ? 0 : SocketInformationOptions.NonBlocking) | - (useoverlappedIO ? SocketInformationOptions.UseOnlyOverlappedIO : 0); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); - si.ProtocolInformation = Mono.DataConverter.Pack ("iiiil", (int)address_family, (int)socket_type, (int)protocol_type, isbound ? 1 : 0, (long)Handle); - socket = null; + SocketError error; + int ret = Send_nochecks (buffer, offset, size, flags, out error); - return si; + if (error != SocketError.Success) + throw new SocketException ((int) error); + + return ret; } -#endif - - public Socket EndAccept (IAsyncResult result) + + public int Send (byte [] buffer, int offset, int size, SocketFlags flags, out SocketError error) { - int bytes; - byte[] buffer; - - return(EndAccept (out buffer, out bytes, result)); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); + + return Send_nochecks (buffer, offset, size, flags, out error); } - public Socket EndAccept (out byte[] buffer, IAsyncResult asyncResult) + public + int Send (IList> buffers) { - int bytes; - return(EndAccept (out buffer, out bytes, asyncResult)); + SocketError error; + int ret = Send (buffers, SocketFlags.None, out error); + + if (error != SocketError.Success) + throw new SocketException ((int) error); + + return ret; } - public Socket EndAccept (out byte[] buffer, out int bytesTransferred, IAsyncResult asyncResult) + public + int Send (IList> buffers, SocketFlags socketFlags) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (asyncResult == null) - throw new ArgumentNullException ("asyncResult"); - - SocketAsyncResult req = asyncResult as SocketAsyncResult; - if (req == null) - throw new ArgumentException ("Invalid IAsyncResult", "asyncResult"); + SocketError error; + int ret = Send (buffers, socketFlags, out error); - if (Interlocked.CompareExchange (ref req.EndCalled, 1, 0) == 1) - throw InvalidAsyncOp ("EndAccept"); - if (!asyncResult.IsCompleted) - asyncResult.AsyncWaitHandle.WaitOne (); + if (error != SocketError.Success) + throw new SocketException ((int) error); - req.CheckIfThrowDelayedException (); - - buffer = req.Buffer; - bytesTransferred = req.Total; - - return(req.Socket); + return ret; } - public void EndConnect (IAsyncResult result) + [CLSCompliant (false)] + public int Send (IList> buffers, SocketFlags socketFlags, out SocketError errorCode) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); + + if (buffers == null) + throw new ArgumentNullException ("buffers"); + if (buffers.Count == 0) + throw new ArgumentException ("Buffer is empty", "buffers"); + + int numsegments = buffers.Count; + int nativeError; + int ret; + + WSABUF[] bufarray = new WSABUF[numsegments]; + GCHandle[] gch = new GCHandle[numsegments]; - if (result == null) - throw new ArgumentNullException ("result"); + for(int i = 0; i < numsegments; i++) { + ArraySegment segment = buffers[i]; - SocketAsyncResult req = result as SocketAsyncResult; - if (req == null) - throw new ArgumentException ("Invalid IAsyncResult", "result"); + if (segment.Offset < 0 || segment.Count < 0 || segment.Count > segment.Array.Length - segment.Offset) + throw new ArgumentOutOfRangeException ("segment"); + + gch[i] = GCHandle.Alloc (segment.Array, GCHandleType.Pinned); + bufarray[i].len = segment.Count; + bufarray[i].buf = Marshal.UnsafeAddrOfPinnedArrayElement (segment.Array, segment.Offset); + } + + try { + ret = Send_internal (safe_handle, bufarray, socketFlags, out nativeError); + } finally { + for(int i = 0; i < numsegments; i++) { + if (gch[i].IsAllocated) { + gch[i].Free (); + } + } + } - if (Interlocked.CompareExchange (ref req.EndCalled, 1, 0) == 1) - throw InvalidAsyncOp ("EndConnect"); - if (!result.IsCompleted) - result.AsyncWaitHandle.WaitOne(); + errorCode = (SocketError)nativeError; - req.CheckIfThrowDelayedException(); + return ret; } - public void EndDisconnect (IAsyncResult asyncResult) + internal int Send_nochecks (byte [] buf, int offset, int size, SocketFlags flags, out SocketError error) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + if (size == 0) { + error = SocketError.Success; + return 0; + } - if (asyncResult == null) - throw new ArgumentNullException ("asyncResult"); + int nativeError; + int ret = Send_internal (safe_handle, buf, offset, size, flags, out nativeError); - SocketAsyncResult req = asyncResult as SocketAsyncResult; - if (req == null) - throw new ArgumentException ("Invalid IAsyncResult", "asyncResult"); + error = (SocketError)nativeError; - if (Interlocked.CompareExchange (ref req.EndCalled, 1, 0) == 1) - throw InvalidAsyncOp ("EndDisconnect"); - if (!asyncResult.IsCompleted) - asyncResult.AsyncWaitHandle.WaitOne (); + if (error != SocketError.Success && error != SocketError.WouldBlock && error != SocketError.InProgress) { + is_connected = false; + is_bound = false; + } else { + is_connected = true; + } - req.CheckIfThrowDelayedException (); + return ret; } - [MonoTODO] - public int EndReceiveMessageFrom (IAsyncResult asyncResult, - ref SocketFlags socketFlags, - ref EndPoint endPoint, - out IPPacketInformation ipPacketInformation) + public bool SendAsync (SocketAsyncEventArgs e) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - if (asyncResult == null) - throw new ArgumentNullException ("asyncResult"); + ThrowIfDisposedAndClosed (); - if (endPoint == null) - throw new ArgumentNullException ("endPoint"); + if (e.Buffer == null && e.BufferList == null) + throw new NullReferenceException ("Either e.Buffer or e.BufferList must be valid buffers."); - SocketAsyncResult req = asyncResult as SocketAsyncResult; - if (req == null) - throw new ArgumentException ("Invalid IAsyncResult", "asyncResult"); + e.curSocket = this; + e.Worker.Init (this, e, e.Buffer != null ? SocketOperation.Send : SocketOperation.SendGeneric); - if (Interlocked.CompareExchange (ref req.EndCalled, 1, 0) == 1) - throw InvalidAsyncOp ("EndReceiveMessageFrom"); - throw new NotImplementedException (); + SocketAsyncResult sockares = e.Worker.result; + sockares.SockFlags = e.SocketFlags; + + if (e.Buffer != null) { + sockares.Buffer = e.Buffer; + sockares.Offset = e.Offset; + sockares.Size = e.Count; + } else { + sockares.Buffers = e.BufferList; + } + + // Send takes care of SendGeneric + QueueSocketAsyncResult (writeQ, e.Worker, sockares); + + return true; } - public void EndSendFile (IAsyncResult asyncResult) + public IAsyncResult BeginSend (byte[] buffer, int offset, int size, SocketFlags socketFlags, out SocketError errorCode, AsyncCallback callback, object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + if (!is_connected) { + errorCode = SocketError.NotConnected; + throw new SocketException ((int) errorCode); + } - if (asyncResult == null) - throw new ArgumentNullException ("asyncResult"); + errorCode = SocketError.Success; + return BeginSend (buffer, offset, size, socketFlags, callback, state); + } - SendFileAsyncResult ares = asyncResult as SendFileAsyncResult; - if (ares == null) - throw new ArgumentException ("Invalid IAsyncResult", "asyncResult"); + public IAsyncResult BeginSend (byte[] buffer, int offset, int size, SocketFlags socket_flags, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); - ares.Delegate.EndInvoke (ares.Original); + if (!is_connected) + throw new SocketException ((int)SocketError.NotConnected); + + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.Send) { + Buffer = buffer, + Offset = offset, + Size = size, + SockFlags = socket_flags, + }; + + QueueSocketAsyncResult (writeQ, sockares.Worker, sockares); + + return sockares; } - public int EndSendTo (IAsyncResult result) + public IAsyncResult BeginSend (IList> buffers, SocketFlags socketFlags, AsyncCallback callback, object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (result == null) - throw new ArgumentNullException ("result"); + if (buffers == null) + throw new ArgumentNullException ("buffers"); + if (!is_connected) + throw new SocketException ((int)SocketError.NotConnected); - SocketAsyncResult req = result as SocketAsyncResult; - if (req == null) - throw new ArgumentException ("Invalid IAsyncResult", "result"); + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.SendGeneric) { + Buffers = buffers, + SockFlags = socketFlags, + }; - if (Interlocked.CompareExchange (ref req.EndCalled, 1, 0) == 1) - throw InvalidAsyncOp ("EndSendTo"); - if (!result.IsCompleted) - result.AsyncWaitHandle.WaitOne(); + QueueSocketAsyncResult (writeQ, sockares.Worker, sockares); - req.CheckIfThrowDelayedException(); - return req.Total; + return sockares; } - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static void GetSocketOption_arr_internal(IntPtr socket, - SocketOptionLevel level, SocketOptionName name, ref byte[] byte_val, - out int error); - - private static void GetSocketOption_arr_internal (SafeSocketHandle safeHandle, - SocketOptionLevel level, SocketOptionName name, ref byte[] byte_val, - out int error) + [CLSCompliant (false)] + public IAsyncResult BeginSend (IList> buffers, SocketFlags socketFlags, out SocketError errorCode, AsyncCallback callback, object state) { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - GetSocketOption_arr_internal (safeHandle.DangerousGetHandle (), level, name, ref byte_val, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); + if (!is_connected) { + errorCode = SocketError.NotConnected; + throw new SocketException ((int)errorCode); } + + errorCode = SocketError.Success; + return BeginSend (buffers, socketFlags, callback, state); } - public void GetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, byte [] optionValue) + public int EndSend (IAsyncResult result) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (optionValue == null) - throw new SocketException ((int) SocketError.Fault, - "Error trying to dereference an invalid pointer"); + SocketError error; + int bytesSent = EndSend (result, out error); - int error; + if (error != SocketError.Success) { + if (error != SocketError.WouldBlock && error != SocketError.InProgress) + is_connected = false; + throw new SocketException ((int)error); + } - GetSocketOption_arr_internal (socket, optionLevel, optionName, ref optionValue, - out error); - if (error != 0) - throw new SocketException (error); + return bytesSent; } - public byte [] GetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, int length) + public int EndSend (IAsyncResult asyncResult, out SocketError errorCode) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - byte[] byte_val=new byte[length]; - int error; + SocketAsyncResult sockares = ValidateEndIAsyncResult (asyncResult, "EndSend", "asyncResult"); - GetSocketOption_arr_internal (socket, optionLevel, optionName, ref byte_val, - out error); - if (error != 0) - throw new SocketException (error); + if (!sockares.IsCompleted) + sockares.AsyncWaitHandle.WaitOne (); - return(byte_val); - } + /* If no socket error occurred, call CheckIfThrowDelayedException in + * case there are other kinds of exceptions that should be thrown.*/ + if ((errorCode = sockares.ErrorCode) == SocketError.Success) + sockares.CheckIfThrowDelayedException (); - // See Socket.IOControl, WSAIoctl documentation in MSDN. The - // common options between UNIX and Winsock are FIONREAD, - // FIONBIO and SIOCATMARK. Anything else will depend on the - // system except SIO_KEEPALIVE_VALS which is properly handled - // on both windows and linux. - [MethodImplAttribute(MethodImplOptions.InternalCall)] - extern static int WSAIoctl (IntPtr sock, int ioctl_code, byte [] input, - byte [] output, out int error); + return sockares.Total; + } - private static int WSAIoctl (SafeSocketHandle safeHandle, int ioctl_code, byte [] input, - byte [] output, out int error) + static int Send_internal (SafeSocketHandle safeHandle, WSABUF[] bufarray, SocketFlags flags, out int error) { bool release = false; try { safeHandle.DangerousAddRef (ref release); - return WSAIoctl (safeHandle.DangerousGetHandle (), ioctl_code, input, output, out error); + return Send_internal (safeHandle.DangerousGetHandle (), bufarray, flags, out error); } finally { if (release) safeHandle.DangerousRelease (); } } - public int IOControl (int ioctl_code, byte [] in_value, byte [] out_value) + [MethodImplAttribute (MethodImplOptions.InternalCall)] + extern static int Send_internal (IntPtr sock, WSABUF[] bufarray, SocketFlags flags, out int error); + + static int Send_internal (SafeSocketHandle safeHandle, byte[] buf, int offset, int count, SocketFlags flags, out int error) { - if (disposed) - throw new ObjectDisposedException (GetType ().ToString ()); + try { + safeHandle.RegisterForBlockingSyscall (); + return Send_internal (safeHandle.DangerousGetHandle (), buf, offset, count, flags, out error); + } finally { + safeHandle.UnRegisterForBlockingSyscall (); + } + } - int error; - int result = WSAIoctl (socket, ioctl_code, in_value, out_value, - out error); + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static int Send_internal(IntPtr sock, byte[] buf, int offset, int count, SocketFlags flags, out int error); - if (error != 0) - throw new SocketException (error); - - if (result == -1) - throw new InvalidOperationException ("Must use Blocking property instead."); +#endregion - return result; - } +#region SendTo - public int IOControl (IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue) + public int SendTo (byte [] buffer, EndPoint remote_end) { - return IOControl ((int) ioControlCode, optionInValue, optionOutValue); - } + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, buffer.Length); - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static void Listen_internal(IntPtr sock, int backlog, out int error); + if (remote_end == null) + throw new ArgumentNullException ("remote_end"); - private static void Listen_internal (SafeSocketHandle safeHandle, int backlog, out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - Listen_internal (safeHandle.DangerousGetHandle (), backlog, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } + return SendTo_nochecks (buffer, 0, buffer.Length, SocketFlags.None, remote_end); } - public void Listen (int backlog) + public int SendTo (byte [] buffer, SocketFlags flags, EndPoint remote_end) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, buffer.Length); - if (!isbound) - throw new SocketException ((int)SocketError.InvalidArgument); + if (remote_end == null) + throw new ArgumentNullException ("remote_end"); - int error; - Listen_internal(socket, backlog, out error); + return SendTo_nochecks (buffer, 0, buffer.Length, flags, remote_end); + } - if (error != 0) - throw new SocketException (error); + public int SendTo (byte [] buffer, int size, SocketFlags flags, EndPoint remote_end) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, 0, size); - islistening = true; + if (remote_end == null) + throw new ArgumentNullException ("remote_end"); + + return SendTo_nochecks (buffer, 0, size, flags, remote_end); } - public bool Poll (int time_us, SelectMode mode) + public int SendTo (byte [] buffer, int offset, int size, SocketFlags flags, EndPoint remote_end) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); - if (mode != SelectMode.SelectRead && - mode != SelectMode.SelectWrite && - mode != SelectMode.SelectError) - throw new NotSupportedException ("'mode' parameter is not valid."); + if (remote_end == null) + throw new ArgumentNullException("remote_end"); + + return SendTo_nochecks (buffer, offset, size, flags, remote_end); + } + internal int SendTo_nochecks (byte [] buffer, int offset, int size, SocketFlags flags, EndPoint remote_end) + { int error; - bool result = Poll_internal (socket, mode, time_us, out error); - if (error != 0) - throw new SocketException (error); + int ret = SendTo_internal (safe_handle, buffer, offset, size, flags, remote_end.Serialize (), out error); - if (mode == SelectMode.SelectWrite && result && !connected) { - /* Update the connected state; for - * non-blocking Connect()s this is - * when we can find out that the - * connect succeeded. - */ - if ((int)GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Error) == 0) { - connected = true; - } + SocketError err = (SocketError) error; + if (err != 0) { + if (err != SocketError.WouldBlock && err != SocketError.InProgress) + is_connected = false; + throw new SocketException (error); } - - return result; - } - public int Receive (byte [] buffer) - { - return Receive (buffer, SocketFlags.None); + is_connected = true; + is_bound = true; + seed_endpoint = remote_end; + + return ret; } - public int Receive (byte [] buffer, SocketFlags flags) + public bool SendToAsync (SocketAsyncEventArgs e) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - if (buffer == null) - throw new ArgumentNullException ("buffer"); + ThrowIfDisposedAndClosed (); - SocketError error; + if (e.BufferList != null) + throw new NotSupportedException ("Mono doesn't support using BufferList at this point."); + if (e.RemoteEndPoint == null) + throw new ArgumentNullException ("remoteEP", "Value cannot be null."); - int ret = Receive_nochecks (buffer, 0, buffer.Length, flags, out error); - - if (error != SocketError.Success) { - if (error == SocketError.WouldBlock && blocking) // This might happen when ReceiveTimeout is set - throw new SocketException ((int) error, timeout_exc_msg); - throw new SocketException ((int) error); - } + e.curSocket = this; + e.Worker.Init (this, e, SocketOperation.SendTo); - return ret; + SocketAsyncResult sockares = e.Worker.result; + sockares.Buffer = e.Buffer; + sockares.Offset = e.Offset; + sockares.Size = e.Count; + sockares.SockFlags = e.SocketFlags; + sockares.EndPoint = e.RemoteEndPoint; + + QueueSocketAsyncResult (writeQ, e.Worker, sockares); + + return true; } - public int Receive (byte [] buffer, int size, SocketFlags flags) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (buffer == null) - throw new ArgumentNullException ("buffer"); - CheckRange (buffer, 0, size); + public IAsyncResult BeginSendTo(byte[] buffer, int offset, int size, SocketFlags socket_flags, EndPoint remote_end, AsyncCallback callback, object state) + { + ThrowIfDisposedAndClosed (); + ThrowIfBufferNull (buffer); + ThrowIfBufferOutOfRange (buffer, offset, size); - SocketError error; + SocketAsyncResult sockares = new SocketAsyncResult (this, state, callback, SocketOperation.SendTo) { + Buffer = buffer, + Offset = offset, + Size = size, + SockFlags = socket_flags, + EndPoint = remote_end, + }; - int ret = Receive_nochecks (buffer, 0, size, flags, out error); - - if (error != SocketError.Success) { - if (error == SocketError.WouldBlock && blocking) // This might happen when ReceiveTimeout is set - throw new SocketException ((int) error, timeout_exc_msg); - throw new SocketException ((int) error); - } + QueueSocketAsyncResult (writeQ, sockares.Worker, sockares); - return ret; + return sockares; } - public int Receive (byte [] buffer, int offset, int size, SocketFlags flags) + public int EndSendTo (IAsyncResult result) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (buffer == null) - throw new ArgumentNullException ("buffer"); + SocketAsyncResult sockares = ValidateEndIAsyncResult (result, "EndSendTo", "result"); - CheckRange (buffer, offset, size); - - SocketError error; + if (!sockares.IsCompleted) + sockares.AsyncWaitHandle.WaitOne(); - int ret = Receive_nochecks (buffer, offset, size, flags, out error); - - if (error != SocketError.Success) { - if (error == SocketError.WouldBlock && blocking) // This might happen when ReceiveTimeout is set - throw new SocketException ((int) error, timeout_exc_msg); - throw new SocketException ((int) error); - } + sockares.CheckIfThrowDelayedException(); - return ret; + return sockares.Total; } - public int Receive (byte [] buffer, int offset, int size, SocketFlags flags, out SocketError error) + static int SendTo_internal (SafeSocketHandle safeHandle, byte[] buffer, int offset, int count, SocketFlags flags, SocketAddress sa, out int error) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + try { + safeHandle.RegisterForBlockingSyscall (); + return SendTo_internal (safeHandle.DangerousGetHandle (), buffer, offset, count, flags, sa, out error); + } finally { + safeHandle.UnRegisterForBlockingSyscall (); + } + } - if (buffer == null) - throw new ArgumentNullException ("buffer"); + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static int SendTo_internal (IntPtr sock, byte[] buffer, int offset, int count, SocketFlags flags, SocketAddress sa, out int error); - CheckRange (buffer, offset, size); - - return Receive_nochecks (buffer, offset, size, flags, out error); +#endregion + +#region SendFile + + public void SendFile (string fileName) + { + ThrowIfDisposedAndClosed (); + + if (!is_connected) + throw new NotSupportedException (); + if (!is_blocking) + throw new InvalidOperationException (); + + SendFile (fileName, null, null, 0); } - public bool ReceiveFromAsync (SocketAsyncEventArgs e) + public void SendFile (string fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOptions flags) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - // We do not support recv into multiple buffers yet - if (e.BufferList != null) - throw new NotSupportedException ("Mono doesn't support using BufferList at this point."); - if (e.RemoteEndPoint == null) - throw new ArgumentNullException ("remoteEP", "Value cannot be null."); + if (!is_connected) + throw new NotSupportedException (); + if (!is_blocking) + throw new InvalidOperationException (); - e.curSocket = this; - e.Worker.Init (this, e, SocketOperation.ReceiveFrom); - SocketAsyncResult res = e.Worker.result; - res.Buffer = e.Buffer; - res.Offset = e.Offset; - res.Size = e.Count; - res.EndPoint = e.RemoteEndPoint; - res.SockFlags = e.SocketFlags; - int count; - lock (readQ) { - readQ.Enqueue (e.Worker); - count = readQ.Count; + if (!SendFile_internal (safe_handle, fileName, preBuffer, postBuffer, flags)) { + SocketException exc = new SocketException (); + if (exc.ErrorCode == 2 || exc.ErrorCode == 3) + throw new FileNotFoundException (); + throw exc; } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, res); - return true; } - public int ReceiveFrom (byte [] buffer, ref EndPoint remoteEP) + public IAsyncResult BeginSendFile (string fileName, AsyncCallback callback, object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (buffer == null) - throw new ArgumentNullException ("buffer"); + ThrowIfDisposedAndClosed (); - if (remoteEP == null) - throw new ArgumentNullException ("remoteEP"); + if (!is_connected) + throw new NotSupportedException (); + if (!File.Exists (fileName)) + throw new FileNotFoundException (); - return ReceiveFrom_nochecks (buffer, 0, buffer.Length, SocketFlags.None, ref remoteEP); + return BeginSendFile (fileName, null, null, 0, callback, state); } - public int ReceiveFrom (byte [] buffer, SocketFlags flags, ref EndPoint remoteEP) + public IAsyncResult BeginSendFile (string fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOptions flags, AsyncCallback callback, object state) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (buffer == null) - throw new ArgumentNullException ("buffer"); + if (!is_connected) + throw new NotSupportedException (); + if (!File.Exists (fileName)) + throw new FileNotFoundException (); - if (remoteEP == null) - throw new ArgumentNullException ("remoteEP"); + SendFileHandler handler = new SendFileHandler (SendFile); - return ReceiveFrom_nochecks (buffer, 0, buffer.Length, flags, ref remoteEP); + return new SendFileAsyncResult (handler, handler.BeginInvoke (fileName, preBuffer, postBuffer, flags, ar => callback (new SendFileAsyncResult (handler, ar)), state)); } - public int ReceiveFrom (byte [] buffer, int size, SocketFlags flags, - ref EndPoint remoteEP) + public void EndSendFile (IAsyncResult asyncResult) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (buffer == null) - throw new ArgumentNullException ("buffer"); + ThrowIfDisposedAndClosed (); - if (remoteEP == null) - throw new ArgumentNullException ("remoteEP"); + if (asyncResult == null) + throw new ArgumentNullException ("asyncResult"); - if (size < 0 || size > buffer.Length) - throw new ArgumentOutOfRangeException ("size"); + SendFileAsyncResult ares = asyncResult as SendFileAsyncResult; + if (ares == null) + throw new ArgumentException ("Invalid IAsyncResult", "asyncResult"); - return ReceiveFrom_nochecks (buffer, 0, size, flags, ref remoteEP); + ares.Delegate.EndInvoke (ares.Original); } - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static int RecvFrom_internal(IntPtr sock, - byte[] buffer, - int offset, - int count, - SocketFlags flags, - ref SocketAddress sockaddr, - out int error); - - private static int RecvFrom_internal (SafeSocketHandle safeHandle, - byte[] buffer, - int offset, - int count, - SocketFlags flags, - ref SocketAddress sockaddr, - out int error) + static bool SendFile_internal (SafeSocketHandle safeHandle, string filename, byte [] pre_buffer, byte [] post_buffer, TransmitFileOptions flags) { try { safeHandle.RegisterForBlockingSyscall (); - return RecvFrom_internal (safeHandle.DangerousGetHandle (), buffer, offset, count, flags, ref sockaddr, out error); + return SendFile_internal (safeHandle.DangerousGetHandle (), filename, pre_buffer, post_buffer, flags); } finally { safeHandle.UnRegisterForBlockingSyscall (); } } - public int ReceiveFrom (byte [] buffer, int offset, int size, SocketFlags flags, - ref EndPoint remoteEP) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static bool SendFile_internal (IntPtr sock, string filename, byte [] pre_buffer, byte [] post_buffer, TransmitFileOptions flags); - if (buffer == null) - throw new ArgumentNullException ("buffer"); + delegate void SendFileHandler (string fileName, byte [] preBuffer, byte [] postBuffer, TransmitFileOptions flags); - if (remoteEP == null) - throw new ArgumentNullException ("remoteEP"); + sealed class SendFileAsyncResult : IAsyncResult { + IAsyncResult ares; + SendFileHandler d; - CheckRange (buffer, offset, size); + public SendFileAsyncResult (SendFileHandler d, IAsyncResult ares) + { + this.d = d; + this.ares = ares; + } - return ReceiveFrom_nochecks (buffer, offset, size, flags, ref remoteEP); - } + public object AsyncState { + get { return ares.AsyncState; } + } - internal int ReceiveFrom_nochecks (byte [] buf, int offset, int size, SocketFlags flags, - ref EndPoint remote_end) - { - int error; - return ReceiveFrom_nochecks_exc (buf, offset, size, flags, ref remote_end, true, out error); - } + public WaitHandle AsyncWaitHandle { + get { return ares.AsyncWaitHandle; } + } - internal int ReceiveFrom_nochecks_exc (byte [] buf, int offset, int size, SocketFlags flags, - ref EndPoint remote_end, bool throwOnError, out int error) - { - SocketAddress sockaddr = remote_end.Serialize(); - int cnt = RecvFrom_internal (socket, buf, offset, size, flags, ref sockaddr, out error); - SocketError err = (SocketError) error; - if (err != 0) { - if (err != SocketError.WouldBlock && err != SocketError.InProgress) - connected = false; - else if (err == SocketError.WouldBlock && blocking) { // This might happen when ReceiveTimeout is set - if (throwOnError) - throw new SocketException ((int) SocketError.TimedOut, timeout_exc_msg); - error = (int) SocketError.TimedOut; - return 0; - } + public bool CompletedSynchronously { + get { return ares.CompletedSynchronously; } + } - if (throwOnError) - throw new SocketException (error); - return 0; + public bool IsCompleted { + get { return ares.IsCompleted; } } - connected = true; - isbound = true; + public SendFileHandler Delegate { + get { return d; } + } - // If sockaddr is null then we're a connection - // oriented protocol and should ignore the - // remote_end parameter (see MSDN - // documentation for Socket.ReceiveFrom(...) ) - - if ( sockaddr != null ) { - // Stupidly, EndPoint.Create() is an - // instance method - remote_end = remote_end.Create (sockaddr); + public IAsyncResult Original { + get { return ares; } } - - seed_endpoint = remote_end; - - return cnt; } +#endregion + +#region SendPackets + [MonoTODO ("Not implemented")] - public bool ReceiveMessageFromAsync (SocketAsyncEventArgs e) + public bool SendPacketsAsync (SocketAsyncEventArgs e) { // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - + + ThrowIfDisposedAndClosed (); + throw new NotImplementedException (); } - - [MonoTODO ("Not implemented")] - public int ReceiveMessageFrom (byte[] buffer, int offset, - int size, - ref SocketFlags socketFlags, - ref EndPoint remoteEP, - out IPPacketInformation ipPacketInformation) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - if (buffer == null) - throw new ArgumentNullException ("buffer"); +#endregion - if (remoteEP == null) - throw new ArgumentNullException ("remoteEP"); +#region DuplicateAndClose - CheckRange (buffer, offset, size); +#if !MOBILE + [MonoLimitation ("We do not support passing sockets across processes, we merely allow this API to pass the socket across AppDomains")] + public SocketInformation DuplicateAndClose (int targetProcessId) + { + var si = new SocketInformation (); + si.Options = + (is_listening ? SocketInformationOptions.Listening : 0) | + (is_connected ? SocketInformationOptions.Connected : 0) | + (is_blocking ? 0 : SocketInformationOptions.NonBlocking) | + (use_overlapped_io ? SocketInformationOptions.UseOnlyOverlappedIO : 0); - /* FIXME: figure out how we get hold of the - * IPPacketInformation - */ - throw new NotImplementedException (); - } + si.ProtocolInformation = Mono.DataConverter.Pack ("iiiil", (int)address_family, (int)socket_type, (int)protocol_type, is_bound ? 1 : 0, (long)Handle); + safe_handle = null; - [MonoTODO ("Not implemented")] - public bool SendPacketsAsync (SocketAsyncEventArgs e) - { - // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - throw new NotImplementedException (); + return si; } +#endif - public int Send (byte [] buf) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); +#endregion - if (buf == null) - throw new ArgumentNullException ("buf"); +#region GetSocketOption - SocketError error; + public void GetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, byte [] optionValue) + { + ThrowIfDisposedAndClosed (); - int ret = Send_nochecks (buf, 0, buf.Length, SocketFlags.None, out error); + if (optionValue == null) + throw new SocketException ((int) SocketError.Fault, "Error trying to dereference an invalid pointer"); - if (error != SocketError.Success) - throw new SocketException ((int) error); + int error; + GetSocketOption_arr_internal (safe_handle, optionLevel, optionName, ref optionValue, out error); - return ret; + if (error != 0) + throw new SocketException (error); } - public int Send (byte [] buf, SocketFlags flags) + public byte [] GetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, int length) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (buf == null) - throw new ArgumentNullException ("buf"); + int error; + byte[] byte_val = new byte [length]; + GetSocketOption_arr_internal (safe_handle, optionLevel, optionName, ref byte_val, out error); - SocketError error; + if (error != 0) + throw new SocketException (error); - int ret = Send_nochecks (buf, 0, buf.Length, flags, out error); + return byte_val; + } - if (error != SocketError.Success) - throw new SocketException ((int) error); + public object GetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName) + { + ThrowIfDisposedAndClosed (); - return ret; + int error; + object obj_val; + GetSocketOption_obj_internal (safe_handle, optionLevel, optionName, out obj_val, out error); + + if (error != 0) + throw new SocketException (error); + + if (optionName == SocketOptionName.Linger) + return (LingerOption) obj_val; + else if (optionName == SocketOptionName.AddMembership || optionName == SocketOptionName.DropMembership) + return (MulticastOption) obj_val; + else if (obj_val is int) + return (int) obj_val; + else + return obj_val; } - public int Send (byte [] buf, int size, SocketFlags flags) + static void GetSocketOption_arr_internal (SafeSocketHandle safeHandle, SocketOptionLevel level, SocketOptionName name, ref byte[] byte_val, out int error) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + GetSocketOption_arr_internal (safeHandle.DangerousGetHandle (), level, name, ref byte_val, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); + } + } + + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static void GetSocketOption_arr_internal(IntPtr socket, SocketOptionLevel level, SocketOptionName name, ref byte[] byte_val, out int error); + + static void GetSocketOption_obj_internal (SafeSocketHandle safeHandle, SocketOptionLevel level, SocketOptionName name, out object obj_val, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + GetSocketOption_obj_internal (safeHandle.DangerousGetHandle (), level, name, out obj_val, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); + } + } - if (buf == null) - throw new ArgumentNullException ("buf"); + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static void GetSocketOption_obj_internal(IntPtr socket, SocketOptionLevel level, SocketOptionName name, out object obj_val, out int error); - CheckRange (buf, 0, size); +#endregion - SocketError error; +#region SetSocketOption - int ret = Send_nochecks (buf, 0, size, flags, out error); + public void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, byte [] optionValue) + { + ThrowIfDisposedAndClosed (); - if (error != SocketError.Success) - throw new SocketException ((int) error); + // I'd throw an ArgumentNullException, but this is what MS does. + if (optionValue == null) + throw new SocketException ((int) SocketError.Fault, "Error trying to dereference an invalid pointer"); + + int error; + SetSocketOption_internal (safe_handle, optionLevel, optionName, null, optionValue, 0, out error); - return ret; + if (error != 0) { + if (error == (int) SocketError.InvalidArgument) + throw new ArgumentException (); + throw new SocketException (error); + } } - public int Send (byte [] buf, int offset, int size, SocketFlags flags) + public void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, object optionValue) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (buf == null) - throw new ArgumentNullException ("buffer"); + // NOTE: if a null is passed, the byte[] overload is used instead... + if (optionValue == null) + throw new ArgumentNullException("optionValue"); - CheckRange (buf, offset, size); + int error; - SocketError error; + if (optionLevel == SocketOptionLevel.Socket && optionName == SocketOptionName.Linger) { + LingerOption linger = optionValue as LingerOption; + if (linger == null) + throw new ArgumentException ("A 'LingerOption' value must be specified.", "optionValue"); + SetSocketOption_internal (safe_handle, optionLevel, optionName, linger, null, 0, out error); + } else if (optionLevel == SocketOptionLevel.IP && (optionName == SocketOptionName.AddMembership || optionName == SocketOptionName.DropMembership)) { + MulticastOption multicast = optionValue as MulticastOption; + if (multicast == null) + throw new ArgumentException ("A 'MulticastOption' value must be specified.", "optionValue"); + SetSocketOption_internal (safe_handle, optionLevel, optionName, multicast, null, 0, out error); + } else if (optionLevel == SocketOptionLevel.IPv6 && (optionName == SocketOptionName.AddMembership || optionName == SocketOptionName.DropMembership)) { + IPv6MulticastOption multicast = optionValue as IPv6MulticastOption; + if (multicast == null) + throw new ArgumentException ("A 'IPv6MulticastOption' value must be specified.", "optionValue"); + SetSocketOption_internal (safe_handle, optionLevel, optionName, multicast, null, 0, out error); + } else { + throw new ArgumentException ("Invalid value specified.", "optionValue"); + } + + if (error != 0) { + if (error == (int) SocketError.InvalidArgument) + throw new ArgumentException (); + throw new SocketException (error); + } + } - int ret = Send_nochecks (buf, offset, size, flags, out error); + public void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, bool optionValue) + { + ThrowIfDisposedAndClosed (); - if (error != SocketError.Success) - throw new SocketException ((int) error); + int error; + int int_val = optionValue ? 1 : 0; + SetSocketOption_internal (safe_handle, optionLevel, optionName, null, null, int_val, out error); - return ret; + if (error != 0) { + if (error == (int) SocketError.InvalidArgument) + throw new ArgumentException (); + throw new SocketException (error); + } } - public int Send (byte [] buf, int offset, int size, SocketFlags flags, out SocketError error) + public void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, int optionValue) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + ThrowIfDisposedAndClosed (); - if (buf == null) - throw new ArgumentNullException ("buffer"); - - CheckRange (buf, offset, size); + int error; + SetSocketOption_internal (safe_handle, optionLevel, optionName, null, null, optionValue, out error); - return Send_nochecks (buf, offset, size, flags, out error); + if (error != 0) { + if (error == (int) SocketError.InvalidArgument) + throw new ArgumentException (); + throw new SocketException (error); + } } - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static bool SendFile (IntPtr sock, string filename, byte [] pre_buffer, byte [] post_buffer, TransmitFileOptions flags); - - private static bool SendFile (SafeSocketHandle safeHandle, string filename, byte [] pre_buffer, byte [] post_buffer, TransmitFileOptions flags) + static void SetSocketOption_internal (SafeSocketHandle safeHandle, SocketOptionLevel level, SocketOptionName name, object obj_val, byte [] byte_val, int int_val, out int error) { + bool release = false; try { - safeHandle.RegisterForBlockingSyscall (); - return SendFile (safeHandle.DangerousGetHandle (), filename, pre_buffer, post_buffer, flags); + safeHandle.DangerousAddRef (ref release); + SetSocketOption_internal (safeHandle.DangerousGetHandle (), level, name, obj_val, byte_val, int_val, out error); } finally { - safeHandle.UnRegisterForBlockingSyscall (); + if (release) + safeHandle.DangerousRelease (); } } - public void SendFile (string fileName) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (!connected) - throw new NotSupportedException (); + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static void SetSocketOption_internal (IntPtr socket, SocketOptionLevel level, SocketOptionName name, object obj_val, byte [] byte_val, int int_val, out int error); - if (!blocking) - throw new InvalidOperationException (); +#endregion - SendFile (fileName, null, null, 0); - } +#region IOControl - public void SendFile (string fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOptions flags) + public int IOControl (int ioctl_code, byte [] in_value, byte [] out_value) { - if (disposed && closed) + if (is_disposed) throw new ObjectDisposedException (GetType ().ToString ()); - if (!connected) - throw new NotSupportedException (); + int error; + int result = IOControl_internal (safe_handle, ioctl_code, in_value, out_value, out error); - if (!blocking) - throw new InvalidOperationException (); + if (error != 0) + throw new SocketException (error); + if (result == -1) + throw new InvalidOperationException ("Must use Blocking property instead."); - if (!SendFile (socket, fileName, preBuffer, postBuffer, flags)) { - SocketException exc = new SocketException (); - if (exc.ErrorCode == 2 || exc.ErrorCode == 3) - throw new FileNotFoundException (); - throw exc; - } + return result; } - public bool SendToAsync (SocketAsyncEventArgs e) + public int IOControl (IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue) { - // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - if (e.BufferList != null) - throw new NotSupportedException ("Mono doesn't support using BufferList at this point."); - if (e.RemoteEndPoint == null) - throw new ArgumentNullException ("remoteEP", "Value cannot be null."); + return IOControl ((int) ioControlCode, optionInValue, optionOutValue); + } - e.curSocket = this; - e.Worker.Init (this, e, SocketOperation.SendTo); - SocketAsyncResult res = e.Worker.result; - res.Buffer = e.Buffer; - res.Offset = e.Offset; - res.Size = e.Count; - res.SockFlags = e.SocketFlags; - res.EndPoint = e.RemoteEndPoint; - int count; - lock (writeQ) { - writeQ.Enqueue (e.Worker); - count = writeQ.Count; + static int IOControl_internal (SafeSocketHandle safeHandle, int ioctl_code, byte [] input, byte [] output, out int error) + { + bool release = false; + try { + safeHandle.DangerousAddRef (ref release); + return IOControl_internal (safeHandle.DangerousGetHandle (), ioctl_code, input, output, out error); + } finally { + if (release) + safeHandle.DangerousRelease (); } - if (count == 1) - socket_pool_queue (Worker.Dispatcher, res); - return true; } - - public int SendTo (byte [] buffer, EndPoint remote_end) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - if (buffer == null) - throw new ArgumentNullException ("buffer"); + /* See Socket.IOControl, WSAIoctl documentation in MSDN. The common options between UNIX + * and Winsock are FIONREAD, FIONBIO and SIOCATMARK. Anything else will depend on the system + * except SIO_KEEPALIVE_VALS which is properly handled on both windows and linux. */ + [MethodImplAttribute(MethodImplOptions.InternalCall)] + extern static int IOControl_internal (IntPtr sock, int ioctl_code, byte [] input, byte [] output, out int error); - if (remote_end == null) - throw new ArgumentNullException ("remote_end"); +#endregion - return SendTo_nochecks (buffer, 0, buffer.Length, SocketFlags.None, remote_end); +#region Close + + public void Close () + { + linger_timeout = 0; + Dispose (); } - public int SendTo (byte [] buffer, SocketFlags flags, EndPoint remote_end) + public void Close (int timeout) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + linger_timeout = timeout; + Dispose (); + } - if (buffer == null) - throw new ArgumentNullException ("buffer"); + [MethodImplAttribute(MethodImplOptions.InternalCall)] + internal extern static void Close_internal (IntPtr socket, out int error); - if (remote_end == null) - throw new ArgumentNullException ("remote_end"); - - return SendTo_nochecks (buffer, 0, buffer.Length, flags, remote_end); - } +#endregion - public int SendTo (byte [] buffer, int size, SocketFlags flags, EndPoint remote_end) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); +#region Shutdown - if (buffer == null) - throw new ArgumentNullException ("buffer"); + public void Shutdown (SocketShutdown how) + { + ThrowIfDisposedAndClosed (); - if (remote_end == null) - throw new ArgumentNullException ("remote_end"); + if (!is_connected) + throw new SocketException (10057); // Not connected - CheckRange (buffer, 0, size); + int error; + Shutdown_internal (safe_handle, how, out error); - return SendTo_nochecks (buffer, 0, size, flags, remote_end); + if (error != 0) + throw new SocketException (error); } - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static int SendTo_internal(IntPtr sock, - byte[] buffer, - int offset, - int count, - SocketFlags flags, - SocketAddress sa, - out int error); - - private static int SendTo_internal (SafeSocketHandle safeHandle, - byte[] buffer, - int offset, - int count, - SocketFlags flags, - SocketAddress sa, - out int error) + static void Shutdown_internal (SafeSocketHandle safeHandle, SocketShutdown how, out int error) { + bool release = false; try { - safeHandle.RegisterForBlockingSyscall (); - return SendTo_internal (safeHandle.DangerousGetHandle (), buffer, offset, count, flags, sa, out error); + safeHandle.DangerousAddRef (ref release); + Shutdown_internal (safeHandle.DangerousGetHandle (), how, out error); } finally { - safeHandle.UnRegisterForBlockingSyscall (); + if (release) + safeHandle.DangerousRelease (); } } - public int SendTo (byte [] buffer, int offset, int size, SocketFlags flags, - EndPoint remote_end) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (buffer == null) - throw new ArgumentNullException ("buffer"); - - if (remote_end == null) - throw new ArgumentNullException("remote_end"); + [MethodImplAttribute (MethodImplOptions.InternalCall)] + extern static void Shutdown_internal (IntPtr socket, SocketShutdown how, out int error); - CheckRange (buffer, offset, size); +#endregion - return SendTo_nochecks (buffer, offset, size, flags, remote_end); - } +#region Dispose - internal int SendTo_nochecks (byte [] buffer, int offset, int size, SocketFlags flags, - EndPoint remote_end) + protected virtual void Dispose (bool disposing) { - SocketAddress sockaddr = remote_end.Serialize (); + if (is_disposed) + return; - int ret, error; + is_disposed = true; + bool was_connected = is_connected; + is_connected = false; - ret = SendTo_internal (socket, buffer, offset, size, flags, sockaddr, out error); + if (safe_handle != null) { + is_closed = true; + IntPtr x = Handle; - SocketError err = (SocketError) error; - if (err != 0) { - if (err != SocketError.WouldBlock && err != SocketError.InProgress) - connected = false; + if (was_connected) + Linger (x); - throw new SocketException (error); + safe_handle.Dispose (); } + } - connected = true; - isbound = true; - seed_endpoint = remote_end; - - return ret; + public void Dispose () + { + Dispose (true); + GC.SuppressFinalize (this); } - public void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, byte [] optionValue) + void Linger (IntPtr handle) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + if (!is_connected || linger_timeout <= 0) + return; - // I'd throw an ArgumentNullException, but this is what MS does. - if (optionValue == null) - throw new SocketException ((int) SocketError.Fault, - "Error trying to dereference an invalid pointer"); - + /* We don't want to receive any more data */ int error; + Shutdown_internal (handle, SocketShutdown.Receive, out error); - SetSocketOption_internal (socket, optionLevel, optionName, null, - optionValue, 0, out error); + if (error != 0) + return; - if (error != 0) { - if (error == (int) SocketError.InvalidArgument) - throw new ArgumentException (); - throw new SocketException (error); + int seconds = linger_timeout / 1000; + int ms = linger_timeout % 1000; + if (ms > 0) { + /* If the other end closes, this will return 'true' with 'Available' == 0 */ + Poll_internal (handle, SelectMode.SelectRead, ms * 1000, out error); + if (error != 0) + return; + } + + if (seconds > 0) { + LingerOption linger = new LingerOption (true, seconds); + SetSocketOption_internal (handle, SocketOptionLevel.Socket, SocketOptionName.Linger, linger, null, 0, out error); + /* Not needed, we're closing upon return */ + //if (error != 0) + // return; } } - public void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, object optionValue) +#endregion + + void ThrowIfDisposedAndClosed (Socket socket) + { + if (socket.is_disposed && socket.is_closed) + throw new ObjectDisposedException (socket.GetType ().ToString ()); + } + + void ThrowIfDisposedAndClosed () { - if (disposed && closed) + if (is_disposed && is_closed) throw new ObjectDisposedException (GetType ().ToString ()); + } - // NOTE: if a null is passed, the byte[] overload is used instead... - if (optionValue == null) - throw new ArgumentNullException("optionValue"); - - int error; + void ThrowIfBufferNull (byte[] buffer) + { + if (buffer == null) + throw new ArgumentNullException ("buffer"); + } - if (optionLevel == SocketOptionLevel.Socket && optionName == SocketOptionName.Linger) { - LingerOption linger = optionValue as LingerOption; - if (linger == null) - throw new ArgumentException ("A 'LingerOption' value must be specified.", "optionValue"); - SetSocketOption_internal (socket, optionLevel, optionName, linger, null, 0, out error); - } else if (optionLevel == SocketOptionLevel.IP && (optionName == SocketOptionName.AddMembership || optionName == SocketOptionName.DropMembership)) { - MulticastOption multicast = optionValue as MulticastOption; - if (multicast == null) - throw new ArgumentException ("A 'MulticastOption' value must be specified.", "optionValue"); - SetSocketOption_internal (socket, optionLevel, optionName, multicast, null, 0, out error); - } else if (optionLevel == SocketOptionLevel.IPv6 && (optionName == SocketOptionName.AddMembership || optionName == SocketOptionName.DropMembership)) { - IPv6MulticastOption multicast = optionValue as IPv6MulticastOption; - if (multicast == null) - throw new ArgumentException ("A 'IPv6MulticastOption' value must be specified.", "optionValue"); - SetSocketOption_internal (socket, optionLevel, optionName, multicast, null, 0, out error); - } else { - throw new ArgumentException ("Invalid value specified.", "optionValue"); - } + void ThrowIfBufferOutOfRange (byte[] buffer, int offset, int size) + { + if (offset < 0) + throw new ArgumentOutOfRangeException ("offset", "offset must be >= 0"); + if (offset > buffer.Length) + throw new ArgumentOutOfRangeException ("offset", "offset must be <= buffer.Length"); + if (size < 0) + throw new ArgumentOutOfRangeException ("size", "size must be >= 0"); + if (size > buffer.Length - offset) + throw new ArgumentOutOfRangeException ("size", "size must be <= buffer.Length - offset"); + } - if (error != 0) { - if (error == (int) SocketError.InvalidArgument) - throw new ArgumentException (); - throw new SocketException (error); - } + void ThrowIfUdp () + { +#if !NET_2_1 || MOBILE + if (protocol_type == ProtocolType.Udp) + throw new SocketException ((int)SocketError.ProtocolOption); +#endif } - public void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, bool optionValue) + SocketAsyncResult ValidateEndIAsyncResult (IAsyncResult ares, string methodName, string argName) { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); + if (ares == null) + throw new ArgumentNullException (argName); - int error; - int int_val = (optionValue) ? 1 : 0; - SetSocketOption_internal (socket, optionLevel, optionName, null, null, int_val, out error); - if (error != 0) { - if (error == (int) SocketError.InvalidArgument) - throw new ArgumentException (); - throw new SocketException (error); + SocketAsyncResult sockares = ares as SocketAsyncResult; + if (sockares == null) + throw new ArgumentException ("Invalid IAsyncResult", argName); + if (Interlocked.CompareExchange (ref sockares.EndCalled, 1, 0) == 1) + throw new InvalidOperationException (methodName + " can only be called once per asynchronous operation"); + + return sockares; + } + + void QueueSocketAsyncResult (Queue queue, SocketAsyncWorker worker, SocketAsyncResult sockares) + { + int count; + lock (queue) { + queue.Enqueue (worker); + count = queue.Count; } + + if (count == 1) + socket_pool_queue (SocketAsyncWorker.Dispatcher, sockares); + } + + [StructLayout (LayoutKind.Sequential)] + struct WSABUF { + public int len; + public IntPtr buf; } + + [MethodImplAttribute(MethodImplOptions.InternalCall)] + internal static extern void cancel_blocking_socket_operation (Thread thread); + + [MethodImplAttribute(MethodImplOptions.InternalCall)] + internal static extern void socket_pool_queue (SocketAsyncCallback d, SocketAsyncResult r); } } diff --git a/mcs/class/System/System.Net.Sockets/SocketAsyncCallback.cs b/mcs/class/System/System.Net.Sockets/SocketAsyncCallback.cs new file mode 100644 index 00000000000..0ea4479cde7 --- /dev/null +++ b/mcs/class/System/System.Net.Sockets/SocketAsyncCallback.cs @@ -0,0 +1,32 @@ +// System.Net.Sockets.SocketAsyncCallback.cs +// +// Authors: +// Ludovic Henry +// +// Copyright (C) 2015 Xamarin, Inc. (https://www.xamarin.com) +// +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +namespace System.Net.Sockets +{ + internal delegate void SocketAsyncCallback (SocketAsyncResult sar); +} diff --git a/mcs/class/System/System.Net.Sockets/SocketAsyncEventArgs.cs b/mcs/class/System/System.Net.Sockets/SocketAsyncEventArgs.cs index b7b38c150c1..8a3f703f295 100644 --- a/mcs/class/System/System.Net.Sockets/SocketAsyncEventArgs.cs +++ b/mcs/class/System/System.Net.Sockets/SocketAsyncEventArgs.cs @@ -40,7 +40,7 @@ namespace System.Net.Sockets { bool disposed; int in_progress; - internal Socket.Worker Worker; + internal SocketAsyncWorker Worker; EndPoint remote_ep; public Exception ConnectByNameError { get; internal set; } @@ -101,7 +101,7 @@ namespace System.Net.Sockets public SocketAsyncEventArgs () { - Worker = new Socket.Worker (this); + Worker = new SocketAsyncWorker (this); AcceptSocket = null; Buffer = null; BufferList = null; @@ -208,33 +208,42 @@ namespace System.Net.Sockets static void DispatcherCB (IAsyncResult ares) { SocketAsyncEventArgs args = (SocketAsyncEventArgs) ares.AsyncState; + if (Interlocked.Exchange (ref args.in_progress, 0) != 1) throw new InvalidOperationException ("No operation in progress"); - SocketAsyncOperation op = args.LastOperation; - // Notes; - // -SocketOperation.AcceptReceive not used in SocketAsyncEventArgs - // -SendPackets and ReceiveMessageFrom are not implemented yet - if (op == SocketAsyncOperation.Receive) + + /* Notes; + * -SocketOperation.AcceptReceive not used in SocketAsyncEventArgs + * -SendPackets and ReceiveMessageFrom are not implemented yet */ + switch (args.LastOperation) { + case SocketAsyncOperation.Receive: args.ReceiveCallback (ares); - else if (op == SocketAsyncOperation.Send) + break; + case SocketAsyncOperation.Send: args.SendCallback (ares); - else if (op == SocketAsyncOperation.ReceiveFrom) + break; + case SocketAsyncOperation.ReceiveFrom: args.ReceiveFromCallback (ares); - else if (op == SocketAsyncOperation.SendTo) + break; + case SocketAsyncOperation.SendTo: args.SendToCallback (ares); - else if (op == SocketAsyncOperation.Accept) + break; + case SocketAsyncOperation.Accept: args.AcceptCallback (ares); - else if (op == SocketAsyncOperation.Disconnect) + break; + case SocketAsyncOperation.Disconnect: args.DisconnectCallback (ares); - else if (op == SocketAsyncOperation.Connect) + break; + case SocketAsyncOperation.Connect: args.ConnectCallback (ares); + break; /* - else if (op == Socket.SocketOperation.ReceiveMessageFrom) - else if (op == Socket.SocketOperation.SendPackets) + case SocketOperation.ReceiveMessageFrom: + case SocketOperation.SendPackets: */ - else - throw new NotImplementedException (String.Format ("Operation {0} is not implemented", op)); - + default: + throw new NotImplementedException (String.Format ("Operation {0} is not implemented", args.LastOperation)); + } } internal void ReceiveCallback (IAsyncResult ares) diff --git a/mcs/class/System/System.Net.Sockets/SocketAsyncResult.cs b/mcs/class/System/System.Net.Sockets/SocketAsyncResult.cs new file mode 100644 index 00000000000..5f361f47a80 --- /dev/null +++ b/mcs/class/System/System.Net.Sockets/SocketAsyncResult.cs @@ -0,0 +1,305 @@ +// System.Net.Sockets.SocketAsyncResult.cs +// +// Authors: +// Ludovic Henry +// +// Copyright (C) 2015 Xamarin, Inc. (https://www.xamarin.com) +// +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +using System.Collections; +using System.Collections.Generic; +using System.Runtime.InteropServices; +using System.Runtime.Remoting.Messaging; +using System.Threading; + +namespace System.Net.Sockets +{ + [StructLayout (LayoutKind.Sequential)] + internal sealed class SocketAsyncResult: IAsyncResult + { + /* Same structure in the runtime. Keep this in sync with + * MonoSocketAsyncResult in metadata/socket-io.h and + * ProcessAsyncReader in System.Diagnostics/Process.cs. */ + + public Socket socket; + IntPtr handle; + object state; + AsyncCallback callback; // used from the runtime + WaitHandle wait_handle; + + Exception delayed_exception; + + public EndPoint EndPoint; // Connect,ReceiveFrom,SendTo + public byte [] Buffer; // Receive,ReceiveFrom,Send,SendTo + public int Offset; // Receive,ReceiveFrom,Send,SendTo + public int Size; // Receive,ReceiveFrom,Send,SendTo + public SocketFlags SockFlags; // Receive,ReceiveFrom,Send,SendTo + public Socket AcceptSocket; // AcceptReceive + public IPAddress[] Addresses; // Connect + public int Port; // Connect + public IList> Buffers; // Receive, Send + public bool ReuseSocket; // Disconnect + + // Return values + Socket accept_socket; + int total; + + bool completed_synchronously; + bool completed; + bool is_blocking; + internal int error; + public SocketOperation operation; + AsyncResult async_result; + public int EndCalled; + + /* These fields are not in MonoSocketAsyncResult */ + public SocketAsyncWorker Worker; + public int CurrentAddress; // Connect + + public SocketAsyncResult () + { + } + + public SocketAsyncResult (Socket socket, object state, AsyncCallback callback, SocketOperation operation) + { + Init (socket, state, callback, operation, new SocketAsyncWorker (this)); + } + + public object AsyncState { + get { + return state; + } + } + + public WaitHandle AsyncWaitHandle { + get { + lock (this) { + if (wait_handle == null) + wait_handle = new ManualResetEvent (completed); + } + + return wait_handle; + } + set { + wait_handle = value; + } + } + + public bool CompletedSynchronously { + get { + return completed_synchronously; + } + } + + public bool IsCompleted { + get { + return completed; + } + set { + completed = value; + lock (this) { + if (wait_handle != null && value) + ((ManualResetEvent) wait_handle).Set (); + } + } + } + + public Socket Socket { + get { + return accept_socket; + } + } + + public int Total { + get { return total; } + set { total = value; } + } + + public SocketError ErrorCode { + get { + SocketException ex = delayed_exception as SocketException; + if (ex != null) + return ex.SocketErrorCode; + + if (error != 0) + return (SocketError) error; + + return SocketError.Success; + } + } + + public void Init (Socket socket, object state, AsyncCallback callback, SocketOperation operation, SocketAsyncWorker worker) + { + this.socket = socket; + this.is_blocking = socket != null ? socket.is_blocking : true; + this.handle = socket != null ? socket.Handle : IntPtr.Zero; + this.state = state; + this.callback = callback; + this.operation = operation; + + if (wait_handle != null) + ((ManualResetEvent) wait_handle).Reset (); + + delayed_exception = null; + + EndPoint = null; + Buffer = null; + Offset = 0; + Size = 0; + SockFlags = SocketFlags.None; + AcceptSocket = null; + Addresses = null; + Port = 0; + Buffers = null; + ReuseSocket = false; + accept_socket = null; + total = 0; + + completed_synchronously = false; + completed = false; + is_blocking = false; + error = 0; + async_result = null; + EndCalled = 0; + Worker = worker; + } + + public void DoMConnectCallback () + { + if (callback == null) + return; + ThreadPool.UnsafeQueueUserWorkItem (_ => callback (this), null); + } + + public void Dispose () + { + Init (null, null, null, 0, Worker); + if (wait_handle != null) { + wait_handle.Close (); + wait_handle = null; + } + } + + public void CheckIfThrowDelayedException () + { + if (delayed_exception != null) { + socket.is_connected = false; + throw delayed_exception; + } + + if (error != 0) { + socket.is_connected = false; + throw new SocketException (error); + } + } + + void CompleteDisposed (object unused) + { + Complete (); + } + + public void Complete () + { + if (operation != SocketOperation.Receive && socket.is_disposed) + delayed_exception = new ObjectDisposedException (socket.GetType ().ToString ()); + + IsCompleted = true; + + Queue queue = null; + switch (operation) { + case SocketOperation.Receive: + case SocketOperation.ReceiveFrom: + case SocketOperation.ReceiveGeneric: + case SocketOperation.Accept: + queue = socket.readQ; + break; + case SocketOperation.Send: + case SocketOperation.SendTo: + case SocketOperation.SendGeneric: + queue = socket.writeQ; + break; + } + + if (queue != null) { + lock (queue) { + /* queue.Count will only be 0 if the socket is closed while receive/send/accept + * operation(s) are pending and at least one call to this method is waiting + * on the lock while another one calls CompleteAllOnDispose() */ + if (queue.Count > 0) + queue.Dequeue (); /* remove ourselves */ + if (queue.Count > 0) { + if (!socket.is_disposed) { + Socket.socket_pool_queue (SocketAsyncWorker.Dispatcher, (queue.Peek ()).result); + } else { + /* CompleteAllOnDispose */ + SocketAsyncWorker [] workers = queue.ToArray (); + for (int i = 0; i < workers.Length; i++) + ThreadPool.UnsafeQueueUserWorkItem (workers [i].result.CompleteDisposed, null); + queue.Clear (); + } + } + } + } + + // IMPORTANT: 'callback', if any is scheduled from unmanaged code + } + + public void Complete (bool synch) + { + this.completed_synchronously = synch; + Complete (); + } + + public void Complete (int total) + { + this.total = total; + Complete (); + } + + public void Complete (Exception e, bool synch) + { + this.completed_synchronously = synch; + this.delayed_exception = e; + Complete (); + } + + public void Complete (Exception e) + { + this.delayed_exception = e; + Complete (); + } + + public void Complete (Socket s) + { + this.accept_socket = s; + Complete (); + } + + public void Complete (Socket s, int total) + { + this.accept_socket = s; + this.total = total; + Complete (); + } + } +} diff --git a/mcs/class/System/System.Net.Sockets/SocketAsyncWorker.cs b/mcs/class/System/System.Net.Sockets/SocketAsyncWorker.cs new file mode 100644 index 00000000000..a4e3a752cb2 --- /dev/null +++ b/mcs/class/System/System.Net.Sockets/SocketAsyncWorker.cs @@ -0,0 +1,381 @@ +// System.Net.Sockets.SocketAsyncWorker.cs +// +// Authors: +// Ludovic Henry +// +// Copyright (C) 2015 Xamarin, Inc. (https://www.xamarin.com) +// +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +namespace System.Net.Sockets +{ + internal sealed class SocketAsyncWorker + { + public SocketAsyncResult result; + SocketAsyncEventArgs args; + + public SocketAsyncWorker (SocketAsyncEventArgs args) + { + this.args = args; + result = new SocketAsyncResult (); + result.Worker = this; + } + + public SocketAsyncWorker (SocketAsyncResult ares) + { + this.result = ares; + } + + public void Dispose () + { + if (result != null) { + result.Dispose (); + result = null; + args = null; + } + } + + public static SocketAsyncCallback Dispatcher = new SocketAsyncCallback (DispatcherCB); + + static void DispatcherCB (SocketAsyncResult sar) + { + /* SendPackets and ReceiveMessageFrom are not implemented yet */ + switch (sar.operation) { + case SocketOperation.Receive: + case SocketOperation.ReceiveGeneric: + case SocketOperation.RecvJustCallback: + sar.Worker.Receive (); + break; + case SocketOperation.Send: + case SocketOperation.SendGeneric: + case SocketOperation.SendJustCallback: + sar.Worker.Send (); + break; + case SocketOperation.ReceiveFrom: + sar.Worker.ReceiveFrom (); + break; + case SocketOperation.SendTo: + sar.Worker.SendTo (); + break; + case SocketOperation.Connect: + sar.Worker.Connect (); + break; + case SocketOperation.Accept: + sar.Worker.Accept (); + break; + case SocketOperation.AcceptReceive: + sar.Worker.AcceptReceive (); + break; + case SocketOperation.Disconnect: + sar.Worker.Disconnect (); + break; + // case SocketOperation.ReceiveMessageFrom + // sar.Worker.ReceiveMessageFrom () + // break; + // case SocketOperation.SendPackets: + // sar.Worker.SendPackets (); + // break; + default: + throw new NotImplementedException (String.Format ("Operation {0} is not implemented", sar.operation)); + } + } + + /* This is called when reusing a SocketAsyncEventArgs */ + public void Init (Socket sock, SocketAsyncEventArgs args, SocketOperation op) + { + result.Init (sock, args, SocketAsyncEventArgs.Dispatcher, op, this); + + SocketAsyncOperation async_op; + + // Notes; + // -SocketOperation.AcceptReceive not used in SocketAsyncEventArgs + // -SendPackets and ReceiveMessageFrom are not implemented yet + switch (op) { + case SocketOperation.Connect: + async_op = SocketAsyncOperation.Connect; + break; + case SocketOperation.Accept: + async_op = SocketAsyncOperation.Accept; + break; + case SocketOperation.Disconnect: + async_op = SocketAsyncOperation.Disconnect; + break; + case SocketOperation.Receive: + case SocketOperation.ReceiveGeneric: + async_op = SocketAsyncOperation.Receive; + break; + case SocketOperation.ReceiveFrom: + async_op = SocketAsyncOperation.ReceiveFrom; + break; + // case SocketOperation.ReceiveMessageFrom: + // async_op = SocketAsyncOperation.ReceiveMessageFrom; + // break; + case SocketOperation.Send: + case SocketOperation.SendGeneric: + async_op = SocketAsyncOperation.Send; + break; + // case SocketOperation.SendPackets: + // async_op = SocketAsyncOperation.SendPackets; + // break; + case SocketOperation.SendTo: + async_op = SocketAsyncOperation.SendTo; + break; + default: + throw new NotImplementedException (String.Format ("Operation {0} is not implemented", op)); + } + + args.SetLastOperation (async_op); + args.SocketError = SocketError.Success; + args.BytesTransferred = 0; + } + + public void Accept () + { + Socket acc_socket = null; + try { + if (args != null && args.AcceptSocket != null) { + result.socket.Accept (args.AcceptSocket); + acc_socket = args.AcceptSocket; + } else { + acc_socket = result.socket.Accept (); + if (args != null) + args.AcceptSocket = acc_socket; + } + } catch (Exception e) { + result.Complete (e); + return; + } + + result.Complete (acc_socket); + } + + /* only used in 2.0 profile and newer, but + * leave in older profiles to keep interface + * to runtime consistent + */ + public void AcceptReceive () + { + Socket acc_socket = null; + try { + if (result.AcceptSocket == null) { + acc_socket = result.socket.Accept (); + } else { + acc_socket = result.AcceptSocket; + result.socket.Accept (acc_socket); + } + } catch (Exception e) { + result.Complete (e); + return; + } + + /* It seems the MS runtime + * special-cases 0-length requested + * receive data. See bug 464201. + */ + int total = 0; + if (result.Size > 0) { + try { + SocketError error; + total = acc_socket.Receive_nochecks (result.Buffer, result.Offset, result.Size, result.SockFlags, out error); + if (error != 0) { + result.Complete (new SocketException ((int) error)); + return; + } + } catch (Exception e) { + result.Complete (e); + return; + } + } + + result.Complete (acc_socket, total); + } + + public void Connect () + { + if (result.EndPoint == null) { + result.Complete (new SocketException ((int)SocketError.AddressNotAvailable)); + return; + } + + SocketAsyncResult mconnect = result.AsyncState as SocketAsyncResult; + bool is_mconnect = (mconnect != null && mconnect.Addresses != null); + try { + int error_code; + EndPoint ep = result.EndPoint; + error_code = (int) result.socket.GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Error); + if (error_code == 0) { + if (is_mconnect) + result = mconnect; + result.socket.seed_endpoint = ep; + result.socket.is_connected = true; + result.socket.is_bound = true; + result.socket.connect_in_progress = false; + result.error = 0; + result.Complete (); + if (is_mconnect) + result.DoMConnectCallback (); + return; + } + + if (!is_mconnect) { + result.socket.connect_in_progress = false; + result.Complete (new SocketException (error_code)); + return; + } + + if (mconnect.CurrentAddress >= mconnect.Addresses.Length) { + mconnect.Complete (new SocketException (error_code)); + if (is_mconnect) + mconnect.DoMConnectCallback (); + return; + } + mconnect.socket.BeginMConnect (mconnect); + } catch (Exception e) { + result.socket.connect_in_progress = false; + if (is_mconnect) + result = mconnect; + result.Complete (e); + if (is_mconnect) + result.DoMConnectCallback (); + return; + } + } + + /* Also only used in 2.0 profile and newer */ + public void Disconnect () + { + try { + if (args != null) + result.ReuseSocket = args.DisconnectReuseSocket; + result.socket.Disconnect (result.ReuseSocket); + } catch (Exception e) { + result.Complete (e); + return; + } + result.Complete (); + } + + public void Receive () + { + if (result.operation == SocketOperation.ReceiveGeneric) { + ReceiveGeneric (); + return; + } + // Actual recv() done in the runtime + result.Complete (); + } + + public void ReceiveFrom () + { + int total = 0; + try { + total = result.socket.ReceiveFrom_nochecks (result.Buffer, result.Offset, result.Size, result.SockFlags, ref result.EndPoint); + } catch (Exception e) { + result.Complete (e); + return; + } + + result.Complete (total); + } + + public void ReceiveGeneric () + { + int total = 0; + try { + total = result.socket.Receive (result.Buffers, result.SockFlags); + } catch (Exception e) { + result.Complete (e); + return; + } + result.Complete (total); + } + + int send_so_far; + + void UpdateSendValues (int last_sent) + { + if (result.error == 0) { + send_so_far += last_sent; + result.Offset += last_sent; + result.Size -= last_sent; + } + } + + public void Send () + { + if (result.operation == SocketOperation.SendGeneric) { + SendGeneric (); + return; + } + // Actual send() done in the runtime + if (result.error == 0) { + UpdateSendValues (result.Total); + if (result.socket.is_disposed) { + result.Complete (); + return; + } + + if (result.Size > 0) { + Socket.socket_pool_queue (SocketAsyncWorker.Dispatcher, result); + return; // Have to finish writing everything. See bug #74475. + } + result.Total = send_so_far; + send_so_far = 0; + } + result.Complete (); + } + + public void SendTo () + { + int total = 0; + try { + total = result.socket.SendTo_nochecks (result.Buffer, result.Offset, result.Size, result.SockFlags, result.EndPoint); + + UpdateSendValues (total); + if (result.Size > 0) { + Socket.socket_pool_queue (SocketAsyncWorker.Dispatcher, result); + return; // Have to finish writing everything. See bug #74475. + } + result.Total = send_so_far; + send_so_far = 0; + } catch (Exception e) { + send_so_far = 0; + result.Complete (e); + return; + } + + result.Complete (); + } + + public void SendGeneric () + { + int total = 0; + try { + total = result.socket.Send (result.Buffers, result.SockFlags); + } catch (Exception e) { + result.Complete (e); + return; + } + result.Complete (total); + } + } +} diff --git a/mcs/class/System/System.Net.Sockets/SocketOperation.cs b/mcs/class/System/System.Net.Sockets/SocketOperation.cs new file mode 100644 index 00000000000..22ffd6e71ee --- /dev/null +++ b/mcs/class/System/System.Net.Sockets/SocketOperation.cs @@ -0,0 +1,48 @@ +// System.Net.Sockets.SocketOperation.cs +// +// Authors: +// Ludovic Henry +// +// Copyright (C) 2015 Xamarin, Inc. (https://www.xamarin.com) +// +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// + +namespace System.Net.Sockets +{ + // Used by the runtime + internal enum SocketOperation { + Accept, + Connect, + Receive, + ReceiveFrom, + Send, + SendTo, + RecvJustCallback, + SendJustCallback, + UsedInProcess, + UsedInConsole2, + Disconnect, + AcceptReceive, + ReceiveGeneric, + SendGeneric + } +} diff --git a/mcs/class/System/System.Net.Sockets/Socket_2_1.cs b/mcs/class/System/System.Net.Sockets/Socket_2_1.cs deleted file mode 100644 index 17e9d2aa248..00000000000 --- a/mcs/class/System/System.Net.Sockets/Socket_2_1.cs +++ /dev/null @@ -1,2005 +0,0 @@ -// System.Net.Sockets.Socket.cs -// -// Authors: -// Phillip Pearson (pp@myelin.co.nz) -// Dick Porter -// Gonzalo Paniagua Javier (gonzalo@ximian.com) -// Sridhar Kulkarni (sridharkulkarni@gmail.com) -// Brian Nickel (brian.nickel@gmail.com) -// -// Copyright (C) 2001, 2002 Phillip Pearson and Ximian, Inc. -// http://www.myelin.co.nz -// (c) 2004-2011 Novell, Inc. (http://www.novell.com) -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System; -using System.Net; -using System.Collections; -using System.Collections.Generic; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Threading; -using System.IO; -using System.Security; -using System.Text; - -#if !NET_2_1 -using System.Net.Configuration; -using System.Net.NetworkInformation; -#endif - -namespace System.Net.Sockets { - - public partial class Socket : IDisposable { - [StructLayout (LayoutKind.Sequential)] - struct WSABUF { - public int len; - public IntPtr buf; - } - - // Used by the runtime - internal enum SocketOperation { - Accept, - Connect, - Receive, - ReceiveFrom, - Send, - SendTo, - RecvJustCallback, - SendJustCallback, - UsedInProcess, - UsedInConsole2, - Disconnect, - AcceptReceive, - ReceiveGeneric, - SendGeneric - } - - [StructLayout (LayoutKind.Sequential)] - internal sealed class SocketAsyncResult: IAsyncResult - { - /* Same structure in the runtime */ - /* - Keep this in sync with MonoSocketAsyncResult in - metadata/socket-io.h and ProcessAsyncReader - in System.Diagnostics/Process.cs. - */ - - public Socket Sock; - public IntPtr handle; - object state; - AsyncCallback callback; // used from the runtime - WaitHandle waithandle; - - Exception delayedException; - - public EndPoint EndPoint; // Connect,ReceiveFrom,SendTo - public byte [] Buffer; // Receive,ReceiveFrom,Send,SendTo - public int Offset; // Receive,ReceiveFrom,Send,SendTo - public int Size; // Receive,ReceiveFrom,Send,SendTo - public SocketFlags SockFlags; // Receive,ReceiveFrom,Send,SendTo - public Socket AcceptSocket; // AcceptReceive - public IPAddress[] Addresses; // Connect - public int Port; // Connect - public IList> Buffers; // Receive, Send - public bool ReuseSocket; // Disconnect - - // Return values - Socket acc_socket; - int total; - - bool completed_sync; - bool completed; - public bool blocking; - internal int error; - public SocketOperation operation; - public object ares; - public int EndCalled; - - // These fields are not in MonoSocketAsyncResult - public Worker Worker; - public int CurrentAddress; // Connect - - public SocketAsyncResult () - { - } - - public void Init (Socket sock, object state, AsyncCallback callback, SocketOperation operation) - { - this.Sock = sock; - if (sock != null) { - this.blocking = sock.blocking; - this.handle = sock.Handle; - } else { - this.blocking = true; - this.handle = IntPtr.Zero; - } - this.state = state; - this.callback = callback; - GC.KeepAlive (this.callback); - this.operation = operation; - SockFlags = SocketFlags.None; - if (waithandle != null) - ((ManualResetEvent) waithandle).Reset (); - - delayedException = null; - - EndPoint = null; - Buffer = null; - Offset = 0; - Size = 0; - SockFlags = 0; - AcceptSocket = null; - Addresses = null; - Port = 0; - Buffers = null; - ReuseSocket = false; - acc_socket = null; - total = 0; - - completed_sync = false; - completed = false; - blocking = false; - error = 0; - ares = null; - EndCalled = 0; - Worker = null; - } - - public void DoMConnectCallback () - { - if (callback == null) - return; - ThreadPool.UnsafeQueueUserWorkItem (_ => { callback (this); }, null); - } - - public void Dispose () - { - Init (null, null, null, 0); - if (waithandle != null) { - waithandle.Close (); - waithandle = null; - } - } - - public SocketAsyncResult (Socket sock, object state, AsyncCallback callback, SocketOperation operation) - { - this.Sock = sock; - this.blocking = sock.blocking; - this.handle = sock.Handle; - this.state = state; - this.callback = callback; - GC.KeepAlive (this.callback); - this.operation = operation; - SockFlags = SocketFlags.None; - Worker = new Worker (this); - } - - public void CheckIfThrowDelayedException () - { - if (delayedException != null) { - Sock.connected = false; - throw delayedException; - } - - if (error != 0) { - Sock.connected = false; - throw new SocketException (error); - } - } - - void CompleteAllOnDispose (Queue queue) - { - object [] pending = queue.ToArray (); - queue.Clear (); - - WaitCallback cb; - for (int i = 0; i < pending.Length; i++) { - Worker worker = (Worker) pending [i]; - SocketAsyncResult ares = worker.result; - cb = new WaitCallback (ares.CompleteDisposed); - ThreadPool.UnsafeQueueUserWorkItem (cb, null); - } - } - - void CompleteDisposed (object unused) - { - Complete (); - } - - public void Complete () - { - if (operation != SocketOperation.Receive && Sock.disposed) - delayedException = new ObjectDisposedException (Sock.GetType ().ToString ()); - - IsCompleted = true; - - Queue queue = null; - if (operation == SocketOperation.Receive || - operation == SocketOperation.ReceiveFrom || - operation == SocketOperation.ReceiveGeneric || - operation == SocketOperation.Accept) { - queue = Sock.readQ; - } else if (operation == SocketOperation.Send || - operation == SocketOperation.SendTo || - operation == SocketOperation.SendGeneric) { - - queue = Sock.writeQ; - } - - if (queue != null) { - Worker worker = null; - SocketAsyncCall sac = null; - lock (queue) { - // queue.Count will only be 0 if the socket is closed while receive/send/accept - // operation(s) are pending and at least one call to this method is - // waiting on the lock while another one calls CompleteAllOnDispose() - if (queue.Count > 0) - queue.Dequeue (); // remove ourselves - if (queue.Count > 0) { - worker = (Worker) queue.Peek (); - if (!Sock.disposed) { - sac = Worker.Dispatcher; - } else { - CompleteAllOnDispose (queue); - } - } - } - - if (sac != null) - Socket.socket_pool_queue (sac, worker.result); - } - // IMPORTANT: 'callback', if any is scheduled from unmanaged code - } - - public void Complete (bool synch) - { - completed_sync = synch; - Complete (); - } - - public void Complete (int total) - { - this.total = total; - Complete (); - } - - public void Complete (Exception e, bool synch) - { - completed_sync = synch; - delayedException = e; - Complete (); - } - - public void Complete (Exception e) - { - delayedException = e; - Complete (); - } - - public void Complete (Socket s) - { - acc_socket = s; - Complete (); - } - - public void Complete (Socket s, int total) - { - acc_socket = s; - this.total = total; - Complete (); - } - - public object AsyncState { - get { - return state; - } - } - - public WaitHandle AsyncWaitHandle { - get { - lock (this) { - if (waithandle == null) - waithandle = new ManualResetEvent (completed); - } - - return waithandle; - } - set { - waithandle=value; - } - } - - public bool CompletedSynchronously { - get { - return(completed_sync); - } - } - - public bool IsCompleted { - get { - return(completed); - } - set { - completed=value; - lock (this) { - if (waithandle != null && value) { - ((ManualResetEvent) waithandle).Set (); - } - } - } - } - - public Socket Socket { - get { - return acc_socket; - } - } - - public int Total { - get { return total; } - set { total = value; } - } - - public SocketError ErrorCode { - get { - SocketException ex = delayedException as SocketException; - if (ex != null) - return(ex.SocketErrorCode); - - if (error != 0) - return((SocketError)error); - - return(SocketError.Success); - } - } - } - - internal sealed class Worker - { - public SocketAsyncResult result; - SocketAsyncEventArgs args; - - public Worker (SocketAsyncEventArgs args) - { - this.args = args; - result = new SocketAsyncResult (); - result.Worker = this; - } - - public Worker (SocketAsyncResult ares) - { - this.result = ares; - } - - public void Dispose () - { - if (result != null) { - result.Dispose (); - result = null; - args = null; - } - } - - public static SocketAsyncCall Dispatcher = new SocketAsyncCall (DispatcherCB); - - static void DispatcherCB (SocketAsyncResult sar) - { - SocketOperation op = sar.operation; - if (op == Socket.SocketOperation.Receive || op == Socket.SocketOperation.ReceiveGeneric || - op == Socket.SocketOperation.RecvJustCallback) - sar.Worker.Receive (); - else if (op == Socket.SocketOperation.Send || op == Socket.SocketOperation.SendGeneric || - op == Socket.SocketOperation.SendJustCallback) - sar.Worker.Send (); - else if (op == Socket.SocketOperation.ReceiveFrom) - sar.Worker.ReceiveFrom (); - else if (op == Socket.SocketOperation.SendTo) - sar.Worker.SendTo (); - else if (op == Socket.SocketOperation.Connect) - sar.Worker.Connect (); - else if (op == Socket.SocketOperation.Accept) - sar.Worker.Accept (); - else if (op == Socket.SocketOperation.AcceptReceive) - sar.Worker.AcceptReceive (); - else if (op == Socket.SocketOperation.Disconnect) - sar.Worker.Disconnect (); - - // SendPackets and ReceiveMessageFrom are not implemented yet - /* - else if (op == Socket.SocketOperation.ReceiveMessageFrom) - async_op = SocketAsyncOperation.ReceiveMessageFrom; - else if (op == Socket.SocketOperation.SendPackets) - async_op = SocketAsyncOperation.SendPackets; - */ - else - throw new NotImplementedException (String.Format ("Operation {0} is not implemented", op)); - } - - /* This is called when reusing a SocketAsyncEventArgs */ - public void Init (Socket sock, SocketAsyncEventArgs args, SocketOperation op) - { - result.Init (sock, args, SocketAsyncEventArgs.Dispatcher, op); - result.Worker = this; - SocketAsyncOperation async_op; - - // Notes; - // -SocketOperation.AcceptReceive not used in SocketAsyncEventArgs - // -SendPackets and ReceiveMessageFrom are not implemented yet - if (op == Socket.SocketOperation.Connect) - async_op = SocketAsyncOperation.Connect; - else if (op == Socket.SocketOperation.Accept) - async_op = SocketAsyncOperation.Accept; - else if (op == Socket.SocketOperation.Disconnect) - async_op = SocketAsyncOperation.Disconnect; - else if (op == Socket.SocketOperation.Receive || op == Socket.SocketOperation.ReceiveGeneric) - async_op = SocketAsyncOperation.Receive; - else if (op == Socket.SocketOperation.ReceiveFrom) - async_op = SocketAsyncOperation.ReceiveFrom; - /* - else if (op == Socket.SocketOperation.ReceiveMessageFrom) - async_op = SocketAsyncOperation.ReceiveMessageFrom; - */ - else if (op == Socket.SocketOperation.Send || op == Socket.SocketOperation.SendGeneric) - async_op = SocketAsyncOperation.Send; - /* - else if (op == Socket.SocketOperation.SendPackets) - async_op = SocketAsyncOperation.SendPackets; - */ - else if (op == Socket.SocketOperation.SendTo) - async_op = SocketAsyncOperation.SendTo; - else - throw new NotImplementedException (String.Format ("Operation {0} is not implemented", op)); - - args.SetLastOperation (async_op); - args.SocketError = SocketError.Success; - args.BytesTransferred = 0; - } - - public void Accept () - { - Socket acc_socket = null; - try { - if (args != null && args.AcceptSocket != null) { - result.Sock.Accept (args.AcceptSocket); - acc_socket = args.AcceptSocket; - } else { - acc_socket = result.Sock.Accept (); - if (args != null) - args.AcceptSocket = acc_socket; - } - } catch (Exception e) { - result.Complete (e); - return; - } - - result.Complete (acc_socket); - } - - /* only used in 2.0 profile and newer, but - * leave in older profiles to keep interface - * to runtime consistent - */ - public void AcceptReceive () - { - Socket acc_socket = null; - try { - if (result.AcceptSocket == null) { - acc_socket = result.Sock.Accept (); - } else { - acc_socket = result.AcceptSocket; - result.Sock.Accept (acc_socket); - } - } catch (Exception e) { - result.Complete (e); - return; - } - - /* It seems the MS runtime - * special-cases 0-length requested - * receive data. See bug 464201. - */ - int total = 0; - if (result.Size > 0) { - try { - SocketError error; - total = acc_socket.Receive_nochecks (result.Buffer, - result.Offset, - result.Size, - result.SockFlags, - out error); - if (error != 0) { - result.Complete (new SocketException ((int) error)); - return; - } - } catch (Exception e) { - result.Complete (e); - return; - } - } - - result.Complete (acc_socket, total); - } - - public void Connect () - { - if (result.EndPoint == null) { - result.Complete (new SocketException ((int)SocketError.AddressNotAvailable)); - return; - } - - SocketAsyncResult mconnect = result.AsyncState as SocketAsyncResult; - bool is_mconnect = (mconnect != null && mconnect.Addresses != null); - try { - int error_code; - EndPoint ep = result.EndPoint; - error_code = (int) result.Sock.GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.Error); - if (error_code == 0) { - if (is_mconnect) - result = mconnect; - result.Sock.seed_endpoint = ep; - result.Sock.connected = true; - result.Sock.isbound = true; - result.Sock.connect_in_progress = false; - result.error = 0; - result.Complete (); - if (is_mconnect) - result.DoMConnectCallback (); - return; - } - - if (!is_mconnect) { - result.Sock.connect_in_progress = false; - result.Complete (new SocketException (error_code)); - return; - } - - if (mconnect.CurrentAddress >= mconnect.Addresses.Length) { - mconnect.Complete (new SocketException (error_code)); - if (is_mconnect) - mconnect.DoMConnectCallback (); - return; - } - mconnect.Sock.BeginMConnect (mconnect); - } catch (Exception e) { - result.Sock.connect_in_progress = false; - if (is_mconnect) - result = mconnect; - result.Complete (e); - if (is_mconnect) - result.DoMConnectCallback (); - return; - } - } - - /* Also only used in 2.0 profile and newer */ - public void Disconnect () - { - try { - if (args != null) - result.ReuseSocket = args.DisconnectReuseSocket; - result.Sock.Disconnect (result.ReuseSocket); - } catch (Exception e) { - result.Complete (e); - return; - } - result.Complete (); - } - - public void Receive () - { - if (result.operation == SocketOperation.ReceiveGeneric) { - ReceiveGeneric (); - return; - } - // Actual recv() done in the runtime - result.Complete (); - } - - public void ReceiveFrom () - { - int total = 0; - try { - total = result.Sock.ReceiveFrom_nochecks (result.Buffer, - result.Offset, - result.Size, - result.SockFlags, - ref result.EndPoint); - } catch (Exception e) { - result.Complete (e); - return; - } - - result.Complete (total); - } - - public void ReceiveGeneric () - { - int total = 0; - try { - total = result.Sock.Receive (result.Buffers, result.SockFlags); - } catch (Exception e) { - result.Complete (e); - return; - } - result.Complete (total); - } - - int send_so_far; - - void UpdateSendValues (int last_sent) - { - if (result.error == 0) { - send_so_far += last_sent; - result.Offset += last_sent; - result.Size -= last_sent; - } - } - - public void Send () - { - if (result.operation == SocketOperation.SendGeneric) { - SendGeneric (); - return; - } - // Actual send() done in the runtime - if (result.error == 0) { - UpdateSendValues (result.Total); - if (result.Sock.disposed) { - result.Complete (); - return; - } - - if (result.Size > 0) { - Socket.socket_pool_queue (Worker.Dispatcher, result); - return; // Have to finish writing everything. See bug #74475. - } - result.Total = send_so_far; - send_so_far = 0; - } - result.Complete (); - } - - public void SendTo () - { - int total = 0; - try { - total = result.Sock.SendTo_nochecks (result.Buffer, - result.Offset, - result.Size, - result.SockFlags, - result.EndPoint); - - UpdateSendValues (total); - if (result.Size > 0) { - Socket.socket_pool_queue (Worker.Dispatcher, result); - return; // Have to finish writing everything. See bug #74475. - } - result.Total = send_so_far; - send_so_far = 0; - } catch (Exception e) { - send_so_far = 0; - result.Complete (e); - return; - } - - result.Complete (); - } - - public void SendGeneric () - { - int total = 0; - try { - total = result.Sock.Send (result.Buffers, result.SockFlags); - } catch (Exception e) { - result.Complete (e); - return; - } - result.Complete (total); - } - } - - private Queue readQ = new Queue (2); - private Queue writeQ = new Queue (2); - - internal delegate void SocketAsyncCall (SocketAsyncResult sar); - - /* - * These two fields are looked up by name by the runtime, don't change - * their name without also updating the runtime code. - */ - private static int ipv4Supported = -1, ipv6Supported = -1; - int linger_timeout; - - static Socket () - { - // initialize ipv4Supported and ipv6Supported - CheckProtocolSupport (); - } - - internal static void CheckProtocolSupport () - { - if(ipv4Supported == -1) { - try { - Socket tmp = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); - tmp.Close(); - - ipv4Supported = 1; - } catch { - ipv4Supported = 0; - } - } - - if (ipv6Supported == -1) { - // We need to put a try/catch around ConfigurationManager methods as will always throw an exception - // when run in a mono embedded application. This occurs as embedded applications do not have a setup - // for application config. The exception is not thrown when called from a normal .NET application. - // - // We, then, need to guard calls to the ConfigurationManager. If the config is not found or throws an - // exception, will fall through to the existing Socket / API directly below in the code. - // - // Also note that catching ConfigurationErrorsException specifically would require library dependency - // System.Configuration, and wanted to avoid that. -#if !NET_2_1 -#if CONFIGURATION_DEP - try { - SettingsSection config; - config = (SettingsSection) System.Configuration.ConfigurationManager.GetSection ("system.net/settings"); - if (config != null) - ipv6Supported = config.Ipv6.Enabled ? -1 : 0; - } catch { - ipv6Supported = -1; - } -#else - try { - NetConfig config = System.Configuration.ConfigurationSettings.GetConfig("system.net/settings") as NetConfig; - if (config != null) - ipv6Supported = config.ipv6Enabled ? -1 : 0; - } catch { - ipv6Supported = -1; - } -#endif -#endif - if (ipv6Supported != 0) { - try { - Socket tmp = new Socket(AddressFamily.InterNetworkV6, SocketType.Stream, ProtocolType.Tcp); - tmp.Close(); - - ipv6Supported = 1; - } catch { - ipv6Supported = 0; - } - } - } - } - - public static bool SupportsIPv4 { - get { - CheckProtocolSupport(); - return ipv4Supported == 1; - } - } - - [ObsoleteAttribute ("Use OSSupportsIPv6 instead")] - public static bool SupportsIPv6 { - get { - CheckProtocolSupport(); - return ipv6Supported == 1; - } - } -#if NET_2_1 - public static bool OSSupportsIPv4 { - get { - CheckProtocolSupport(); - return ipv4Supported == 1; - } - } -#endif -#if NET_2_1 - public static bool OSSupportsIPv6 { - get { - CheckProtocolSupport(); - return ipv6Supported == 1; - } - } -#else - public static bool OSSupportsIPv6 { - get { - NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces (); - - foreach (NetworkInterface adapter in nics) { - if (adapter.Supports (NetworkInterfaceComponent.IPv6)) - return true; - } - return false; - } - } -#endif - - /* the field "socket" is looked up by name by the runtime */ - private SafeSocketHandle socket; - private AddressFamily address_family; - private SocketType socket_type; - private ProtocolType protocol_type; - internal bool blocking=true; - private bool isbound; - /* When true, the socket was connected at the time of - * the last IO operation - */ - private bool connected; - /* true if we called Close_internal */ - private bool closed; - internal bool disposed; - bool connect_in_progress; - - /* - * This EndPoint is used when creating new endpoints. Because - * there are many types of EndPoints possible, - * seed_endpoint.Create(addr) is used for creating new ones. - * As such, this value is set on Bind, SentTo, ReceiveFrom, - * Connect, etc. - */ - internal EndPoint seed_endpoint = null; - - // Creates a new system socket, returning the handle - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern IntPtr Socket_internal(AddressFamily family, - SocketType type, - ProtocolType proto, - out int error); - - public Socket(AddressFamily addressFamily, SocketType socketType, ProtocolType protocolType) - { -#if NET_2_1 && !MOBILE - switch (addressFamily) { - case AddressFamily.InterNetwork: // ok - case AddressFamily.InterNetworkV6: // ok - case AddressFamily.Unknown: // SocketException will be thrown later (with right error #) - break; - // case AddressFamily.Unspecified: - default: - throw new ArgumentException ("addressFamily"); - } - - switch (socketType) { - case SocketType.Stream: // ok - case SocketType.Unknown: // SocketException will be thrown later (with right error #) - break; - default: - throw new ArgumentException ("socketType"); - } - - switch (protocolType) { - case ProtocolType.Tcp: // ok - case ProtocolType.Unspecified: // ok - case ProtocolType.Unknown: // SocketException will be thrown later (with right error #) - break; - default: - throw new ArgumentException ("protocolType"); - } -#endif - address_family = addressFamily; - socket_type = socketType; - protocol_type = protocolType; - - int error; - - var handle = Socket_internal (addressFamily, socketType, protocolType, out error); - socket = new SafeSocketHandle (handle, true); - - if (error != 0) - throw new SocketException (error); -#if !NET_2_1 || MOBILE - SocketDefaults (); -#endif - } - - [MonoTODO ("Currently hardcoded to IPv4. Ideally, support v4/v6 dual-stack.")] - public Socket (SocketType socketType, ProtocolType protocolType) - : this (AddressFamily.InterNetwork, socketType, protocolType) - { - } - - ~Socket () - { - Dispose (false); - } - - - public AddressFamily AddressFamily { - get { return address_family; } - } - - [MethodImplAttribute(MethodImplOptions.InternalCall)] - internal extern static void Blocking_internal(IntPtr socket, - bool block, - out int error); - - private static void Blocking_internal (SafeSocketHandle safeHandle, - bool block, - out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - Blocking_internal (safeHandle.DangerousGetHandle (), block, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } - } - - public bool Blocking { - get { - return(blocking); - } - set { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - int error; - - Blocking_internal (socket, value, out error); - - if (error != 0) - throw new SocketException (error); - - blocking=value; - } - } - - public bool Connected { - get { return connected; } - internal set { connected = value; } - } - - public ProtocolType ProtocolType { - get { return protocol_type; } - } - - public bool NoDelay { - get { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - ThrowIfUpd (); - - return (int)(GetSocketOption ( - SocketOptionLevel.Tcp, - SocketOptionName.NoDelay)) != 0; - } - - set { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - ThrowIfUpd (); - - SetSocketOption ( - SocketOptionLevel.Tcp, - SocketOptionName.NoDelay, value ? 1 : 0); - } - } - - public int ReceiveBufferSize { - get { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - return((int)GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ReceiveBuffer)); - } - set { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - if (value < 0) { - throw new ArgumentOutOfRangeException ("value", "The value specified for a set operation is less than zero"); - } - - SetSocketOption (SocketOptionLevel.Socket, SocketOptionName.ReceiveBuffer, value); - } - } - - public int SendBufferSize { - get { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - return((int)GetSocketOption (SocketOptionLevel.Socket, SocketOptionName.SendBuffer)); - } - set { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - if (value < 0) { - throw new ArgumentOutOfRangeException ("value", "The value specified for a set operation is less than zero"); - } - - SetSocketOption (SocketOptionLevel.Socket, - SocketOptionName.SendBuffer, - value); - } - } - - public short Ttl { - get { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - - short ttl_val; - - if (address_family == AddressFamily.InterNetwork) { - ttl_val = (short)((int)GetSocketOption (SocketOptionLevel.IP, SocketOptionName.IpTimeToLive)); - } else if (address_family == AddressFamily.InterNetworkV6) { - ttl_val = (short)((int)GetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.HopLimit)); - } else { - throw new NotSupportedException ("This property is only valid for InterNetwork and InterNetworkV6 sockets"); - } - - return(ttl_val); - } - set { - if (disposed && closed) { - throw new ObjectDisposedException (GetType ().ToString ()); - } - if (value < 0) { - throw new ArgumentOutOfRangeException ("value", "The value specified for a set operation is less than zero"); - } - - if (address_family == AddressFamily.InterNetwork) { - SetSocketOption (SocketOptionLevel.IP, SocketOptionName.IpTimeToLive, value); - } else if (address_family == AddressFamily.InterNetworkV6) { - SetSocketOption (SocketOptionLevel.IPv6, SocketOptionName.HopLimit, value); - } else { - throw new NotSupportedException ("This property is only valid for InterNetwork and InterNetworkV6 sockets"); - } - } - } - - // Returns the remote endpoint details in addr and port - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static SocketAddress RemoteEndPoint_internal(IntPtr socket, int family, out int error); - - private static SocketAddress RemoteEndPoint_internal (SafeSocketHandle safeHandle, int family, out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - return RemoteEndPoint_internal (safeHandle.DangerousGetHandle (), family, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } - } - - public EndPoint RemoteEndPoint { - get { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - /* - * If the seed EndPoint is null, Connect, Bind, - * etc has not yet been called. MS returns null - * in this case. - */ - if (!connected || seed_endpoint == null) - return null; - SocketAddress sa; - int error; - - sa=RemoteEndPoint_internal(socket, (int) address_family, out error); - - if (error != 0) - throw new SocketException (error); - - return seed_endpoint.Create (sa); - } - } - - void Linger (IntPtr handle) - { - if (!connected || linger_timeout <= 0) - return; - - // We don't want to receive any more data - int error; - Shutdown_internal (handle, SocketShutdown.Receive, out error); - if (error != 0) - return; - - int seconds = linger_timeout / 1000; - int ms = linger_timeout % 1000; - if (ms > 0) { - // If the other end closes, this will return 'true' with 'Available' == 0 - Poll_internal (handle, SelectMode.SelectRead, ms * 1000, out error); - if (error != 0) - return; - - } - if (seconds > 0) { - LingerOption linger = new LingerOption (true, seconds); - SetSocketOption_internal (handle, SocketOptionLevel.Socket, SocketOptionName.Linger, linger, null, 0, out error); - /* Not needed, we're closing upon return */ - /*if (error != 0) - return; */ - } - } - [MethodImplAttribute(MethodImplOptions.InternalCall)] - internal static extern void cancel_blocking_socket_operation (Thread thread); - - protected virtual void Dispose (bool disposing) - { - if (disposed) - return; - - disposed = true; - bool was_connected = connected; - connected = false; - - if (socket != null) { - closed = true; - IntPtr x = Handle; - - if (was_connected) - Linger (x); - - socket.Dispose (); - } - } - - public void Dispose () - { - Dispose (true); - GC.SuppressFinalize (this); - } - - // Closes the socket - [MethodImplAttribute(MethodImplOptions.InternalCall)] - internal extern static void Close_internal(IntPtr socket, out int error); - - public void Close () - { - linger_timeout = 0; - ((IDisposable) this).Dispose (); - } - - public void Close (int timeout) - { - linger_timeout = timeout; - ((IDisposable) this).Dispose (); - } - - // Connects to the remote address - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static void Connect_internal(IntPtr sock, - SocketAddress sa, - out int error); - - private static void Connect_internal (SafeSocketHandle safeHandle, - SocketAddress sa, - out int error) - { - try { - safeHandle.RegisterForBlockingSyscall (); - Connect_internal (safeHandle.DangerousGetHandle (), sa, out error); - } finally { - safeHandle.UnRegisterForBlockingSyscall (); - } - } - - public void Connect (EndPoint remoteEP) - { - SocketAddress serial = null; - - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (remoteEP == null) - throw new ArgumentNullException ("remoteEP"); - - IPEndPoint ep = remoteEP as IPEndPoint; - if (ep != null && socket_type != SocketType.Dgram) /* Dgram uses Any to 'disconnect' */ - if (ep.Address.Equals (IPAddress.Any) || ep.Address.Equals (IPAddress.IPv6Any)) - throw new SocketException ((int) SocketError.AddressNotAvailable); - - if (islistening) - throw new InvalidOperationException (); - serial = remoteEP.Serialize (); - - int error = 0; - - Connect_internal (socket, serial, out error); - - if (error == 0 || error == 10035) - seed_endpoint = remoteEP; // Keep the ep around for non-blocking sockets - - if (error != 0) { - if (closed) - error = SOCKET_CLOSED; - throw new SocketException (error); - } - - if (socket_type == SocketType.Dgram && ep != null && (ep.Address.Equals (IPAddress.Any) || ep.Address.Equals (IPAddress.IPv6Any))) - connected = false; - else - connected = true; - isbound = true; - } - - public bool ReceiveAsync (SocketAsyncEventArgs e) - { - // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - // LAME SPEC: the ArgumentException is never thrown, instead an NRE is - // thrown when e.Buffer and e.BufferList are null (works fine when one is - // set to a valid object) - if (e.Buffer == null && e.BufferList == null) - throw new NullReferenceException ("Either e.Buffer or e.BufferList must be valid buffers."); - - e.curSocket = this; - SocketOperation op = (e.Buffer != null) ? SocketOperation.Receive : SocketOperation.ReceiveGeneric; - e.Worker.Init (this, e, op); - SocketAsyncResult res = e.Worker.result; - if (e.Buffer != null) { - res.Buffer = e.Buffer; - res.Offset = e.Offset; - res.Size = e.Count; - } else { - res.Buffers = e.BufferList; - } - res.SockFlags = e.SocketFlags; - int count; - lock (readQ) { - readQ.Enqueue (e.Worker); - count = readQ.Count; - } - if (count == 1) { - // Receive takes care of ReceiveGeneric - socket_pool_queue (Worker.Dispatcher, res); - } - - return true; - } - - public bool SendAsync (SocketAsyncEventArgs e) - { - // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - if (e.Buffer == null && e.BufferList == null) - throw new NullReferenceException ("Either e.Buffer or e.BufferList must be valid buffers."); - - e.curSocket = this; - SocketOperation op = (e.Buffer != null) ? SocketOperation.Send : SocketOperation.SendGeneric; - e.Worker.Init (this, e, op); - SocketAsyncResult res = e.Worker.result; - if (e.Buffer != null) { - res.Buffer = e.Buffer; - res.Offset = e.Offset; - res.Size = e.Count; - } else { - res.Buffers = e.BufferList; - } - res.SockFlags = e.SocketFlags; - int count; - lock (writeQ) { - writeQ.Enqueue (e.Worker); - count = writeQ.Count; - } - if (count == 1) { - // Send takes care of SendGeneric - socket_pool_queue (Worker.Dispatcher, res); - } - return true; - } - - [MethodImplAttribute(MethodImplOptions.InternalCall)] - extern static bool Poll_internal (IntPtr socket, SelectMode mode, int timeout, out int error); - - private static bool Poll_internal (SafeSocketHandle safeHandle, SelectMode mode, int timeout, out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - return Poll_internal (safeHandle.DangerousGetHandle (), mode, timeout, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } - } - - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static int Receive_internal(IntPtr sock, - byte[] buffer, - int offset, - int count, - SocketFlags flags, - out int error); - - private static int Receive_internal (SafeSocketHandle safeHandle, - byte[] buffer, - int offset, - int count, - SocketFlags flags, - out int error) - { - try { - safeHandle.RegisterForBlockingSyscall (); - return Receive_internal (safeHandle.DangerousGetHandle (), buffer, offset, count, flags, out error); - } finally { - safeHandle.UnRegisterForBlockingSyscall (); - } - } - - internal int Receive_nochecks (byte [] buf, int offset, int size, SocketFlags flags, out SocketError error) - { - int nativeError; - int ret = Receive_internal (socket, buf, offset, size, flags, out nativeError); - error = (SocketError) nativeError; - if (error != SocketError.Success && error != SocketError.WouldBlock && error != SocketError.InProgress) { - connected = false; - isbound = false; - } else { - connected = true; - } - - return ret; - } - - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static void GetSocketOption_obj_internal(IntPtr socket, - SocketOptionLevel level, SocketOptionName name, out object obj_val, - out int error); - - private static void GetSocketOption_obj_internal (SafeSocketHandle safeHandle, - SocketOptionLevel level, SocketOptionName name, out object obj_val, - out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - GetSocketOption_obj_internal (safeHandle.DangerousGetHandle (), level, name, out obj_val, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } - } - - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static int Send_internal(IntPtr sock, - byte[] buf, int offset, - int count, - SocketFlags flags, - out int error); - - private static int Send_internal (SafeSocketHandle safeHandle, - byte[] buf, int offset, - int count, - SocketFlags flags, - out int error) - { - try { - safeHandle.RegisterForBlockingSyscall (); - return Send_internal (safeHandle.DangerousGetHandle (), buf, offset, count, flags, out error); - } finally { - safeHandle.UnRegisterForBlockingSyscall (); - } - } - - internal int Send_nochecks (byte [] buf, int offset, int size, SocketFlags flags, out SocketError error) - { - if (size == 0) { - error = SocketError.Success; - return 0; - } - - int nativeError; - - int ret = Send_internal (socket, buf, offset, size, flags, out nativeError); - - error = (SocketError)nativeError; - - if (error != SocketError.Success && error != SocketError.WouldBlock && error != SocketError.InProgress) { - connected = false; - isbound = false; - } else { - connected = true; - } - - return ret; - } - - public object GetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - object obj_val; - int error; - - GetSocketOption_obj_internal (socket, optionLevel, optionName, out obj_val, - out error); - if (error != 0) - throw new SocketException (error); - - if (optionName == SocketOptionName.Linger) { - return((LingerOption)obj_val); - } else if (optionName == SocketOptionName.AddMembership || - optionName == SocketOptionName.DropMembership) { - return((MulticastOption)obj_val); - } else if (obj_val is int) { - return((int)obj_val); - } else { - return(obj_val); - } - } - - [MethodImplAttribute (MethodImplOptions.InternalCall)] - private extern static void Shutdown_internal (IntPtr socket, SocketShutdown how, out int error); - - private static void Shutdown_internal (SafeSocketHandle safeHandle, SocketShutdown how, out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - Shutdown_internal (safeHandle.DangerousGetHandle (), how, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } - } - - public void Shutdown (SocketShutdown how) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (!connected) - throw new SocketException (10057); // Not connected - - int error; - - Shutdown_internal (socket, how, out error); - if (error != 0) - throw new SocketException (error); - } - - [MethodImplAttribute(MethodImplOptions.InternalCall)] - private extern static void SetSocketOption_internal (IntPtr socket, SocketOptionLevel level, - SocketOptionName name, object obj_val, - byte [] byte_val, int int_val, - out int error); - - private static void SetSocketOption_internal (SafeSocketHandle safeHandle, SocketOptionLevel level, - SocketOptionName name, object obj_val, - byte [] byte_val, int int_val, - out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - SetSocketOption_internal (safeHandle.DangerousGetHandle (), level, name, obj_val, byte_val, int_val, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } - } - - public void SetSocketOption (SocketOptionLevel optionLevel, SocketOptionName optionName, int optionValue) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - int error; - - SetSocketOption_internal (socket, optionLevel, optionName, null, - null, optionValue, out error); - - if (error != 0) - throw new SocketException (error); - } - - private void ThrowIfUpd () - { -#if !NET_2_1 || MOBILE - if (protocol_type == ProtocolType.Udp) - throw new SocketException ((int)SocketError.ProtocolOption); -#endif - } - - public - IAsyncResult BeginConnect(EndPoint end_point, AsyncCallback callback, object state) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (end_point == null) - throw new ArgumentNullException ("end_point"); - - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.Connect); - req.EndPoint = end_point; - - // Bug #75154: Connect() should not succeed for .Any addresses. - if (end_point is IPEndPoint) { - IPEndPoint ep = (IPEndPoint) end_point; - if (ep.Address.Equals (IPAddress.Any) || ep.Address.Equals (IPAddress.IPv6Any)) { - req.Complete (new SocketException ((int) SocketError.AddressNotAvailable), true); - return req; - } - } - - int error = 0; - if (connect_in_progress) { - // This could happen when multiple IPs are used - // Calling connect() again will reset the connection attempt and cause - // an error. Better to just close the socket and move on. - connect_in_progress = false; - socket.Dispose (); - var handle = Socket_internal (address_family, socket_type, protocol_type, out error); - socket = new SafeSocketHandle (handle, true); - if (error != 0) - throw new SocketException (error); - } - bool blk = blocking; - if (blk) - Blocking = false; - SocketAddress serial = end_point.Serialize (); - Connect_internal (socket, serial, out error); - if (blk) - Blocking = true; - if (error == 0) { - // succeeded synch - connected = true; - isbound = true; - req.Complete (true); - return req; - } - - if (error != (int) SocketError.InProgress && error != (int) SocketError.WouldBlock) { - // error synch - connected = false; - isbound = false; - req.Complete (new SocketException (error), true); - return req; - } - - // continue asynch - connected = false; - isbound = false; - connect_in_progress = true; - socket_pool_queue (Worker.Dispatcher, req); - return req; - } - - public - IAsyncResult BeginConnect (IPAddress[] addresses, int port, AsyncCallback callback, object state) - - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (addresses == null) - throw new ArgumentNullException ("addresses"); - - if (addresses.Length == 0) - throw new ArgumentException ("Empty addresses list"); - - if (this.AddressFamily != AddressFamily.InterNetwork && - this.AddressFamily != AddressFamily.InterNetworkV6) - throw new NotSupportedException ("This method is only valid for addresses in the InterNetwork or InterNetworkV6 families"); - - if (port <= 0 || port > 65535) - throw new ArgumentOutOfRangeException ("port", "Must be > 0 and < 65536"); - if (islistening) - throw new InvalidOperationException (); - - SocketAsyncResult req = new SocketAsyncResult (this, state, callback, SocketOperation.Connect); - req.Addresses = addresses; - req.Port = port; - connected = false; - return BeginMConnect (req); - } - - IAsyncResult BeginMConnect (SocketAsyncResult req) - { - IAsyncResult ares = null; - Exception exc = null; - for (int i = req.CurrentAddress; i < req.Addresses.Length; i++) { - IPAddress addr = req.Addresses [i]; - IPEndPoint ep = new IPEndPoint (addr, req.Port); - try { - req.CurrentAddress++; - ares = BeginConnect (ep, null, req); - if (ares.IsCompleted && ares.CompletedSynchronously) { - ((SocketAsyncResult) ares).CheckIfThrowDelayedException (); - req.DoMConnectCallback (); - } - break; - } catch (Exception e) { - exc = e; - ares = null; - } - } - - if (ares == null) - throw exc; - - return req; - } - - // Returns false when it is ok to use RemoteEndPoint - // true when addresses must be used (and addresses could be null/empty) - bool GetCheckedIPs (SocketAsyncEventArgs e, out IPAddress [] addresses) - { - addresses = null; - // Connect to the first address that match the host name, like: - // http://blogs.msdn.com/ncl/archive/2009/07/20/new-ncl-features-in-net-4-0-beta-2.aspx - // while skipping entries that do not match the address family - DnsEndPoint dep = (e.RemoteEndPoint as DnsEndPoint); - if (dep != null) { - addresses = Dns.GetHostAddresses (dep.Host); - return true; - } else { - e.ConnectByNameError = null; - return false; - } - } - - bool ConnectAsyncReal (SocketAsyncEventArgs e) - { - bool use_remoteep = true; - IPAddress [] addresses = null; - use_remoteep = !GetCheckedIPs (e, out addresses); - e.curSocket = this; - Worker w = e.Worker; - w.Init (this, e, SocketOperation.Connect); - SocketAsyncResult result = w.result; - IAsyncResult ares = null; - try { - if (use_remoteep) { - result.EndPoint = e.RemoteEndPoint; - ares = BeginConnect (e.RemoteEndPoint, SocketAsyncEventArgs.Dispatcher, e); - } - else { - - DnsEndPoint dep = (e.RemoteEndPoint as DnsEndPoint); - result.Addresses = addresses; - result.Port = dep.Port; - - ares = BeginConnect (addresses, dep.Port, SocketAsyncEventArgs.Dispatcher, e); - } - if (ares.IsCompleted && ares.CompletedSynchronously) { - ((SocketAsyncResult) ares).CheckIfThrowDelayedException (); - return false; - } - } catch (Exception exc) { - result.Complete (exc, true); - return false; - } - return true; - } - - public bool ConnectAsync (SocketAsyncEventArgs e) - { - // NO check is made whether e != null in MS.NET (NRE is thrown in such case) - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - if (islistening) - throw new InvalidOperationException ("You may not perform this operation after calling the Listen method."); - if (e.RemoteEndPoint == null) - throw new ArgumentNullException ("remoteEP"); - - return ConnectAsyncReal (e); - } - - [MethodImplAttribute (MethodImplOptions.InternalCall)] - private extern static int Receive_internal (IntPtr sock, WSABUF[] bufarray, SocketFlags flags, out int error); - - private static int Receive_internal (SafeSocketHandle safeHandle, WSABUF[] bufarray, SocketFlags flags, out int error) - { - try { - safeHandle.RegisterForBlockingSyscall (); - return Receive_internal (safeHandle.DangerousGetHandle (), bufarray, flags, out error); - } finally { - safeHandle.UnRegisterForBlockingSyscall (); - } - } - - public - int Receive (IList> buffers) - { - int ret; - SocketError error; - ret = Receive (buffers, SocketFlags.None, out error); - if (error != SocketError.Success) { - throw new SocketException ((int)error); - } - return(ret); - } - - [CLSCompliant (false)] - public - int Receive (IList> buffers, SocketFlags socketFlags) - { - int ret; - SocketError error; - ret = Receive (buffers, socketFlags, out error); - if (error != SocketError.Success) { - throw new SocketException ((int)error); - } - return(ret); - } - - [CLSCompliant (false)] - public - int Receive (IList> buffers, SocketFlags socketFlags, out SocketError errorCode) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (buffers == null || - buffers.Count == 0) { - throw new ArgumentNullException ("buffers"); - } - - int numsegments = buffers.Count; - int nativeError; - int ret; - - /* Only example I can find of sending a byte - * array reference directly into an internal - * call is in - * System.Runtime.Remoting/System.Runtime.Remoting.Channels.Ipc.Win32/NamedPipeSocket.cs, - * so taking a lead from that... - */ - WSABUF[] bufarray = new WSABUF[numsegments]; - GCHandle[] gch = new GCHandle[numsegments]; - - for(int i = 0; i < numsegments; i++) { - ArraySegment segment = buffers[i]; - - if (segment.Offset < 0 || segment.Count < 0 || - segment.Count > segment.Array.Length - segment.Offset) - throw new ArgumentOutOfRangeException ("segment"); - - gch[i] = GCHandle.Alloc (segment.Array, GCHandleType.Pinned); - bufarray[i].len = segment.Count; - bufarray[i].buf = Marshal.UnsafeAddrOfPinnedArrayElement (segment.Array, segment.Offset); - } - - try { - ret = Receive_internal (socket, bufarray, - socketFlags, - out nativeError); - } finally { - for(int i = 0; i < numsegments; i++) { - if (gch[i].IsAllocated) { - gch[i].Free (); - } - } - } - - errorCode = (SocketError)nativeError; - return(ret); - } - - [MethodImplAttribute (MethodImplOptions.InternalCall)] - private extern static int Send_internal (IntPtr sock, WSABUF[] bufarray, SocketFlags flags, out int error); - - private static int Send_internal (SafeSocketHandle safeHandle, WSABUF[] bufarray, SocketFlags flags, out int error) - { - bool release = false; - try { - safeHandle.DangerousAddRef (ref release); - return Send_internal (safeHandle.DangerousGetHandle (), bufarray, flags, out error); - } finally { - if (release) - safeHandle.DangerousRelease (); - } - } - - public - int Send (IList> buffers) - { - int ret; - SocketError error; - ret = Send (buffers, SocketFlags.None, out error); - if (error != SocketError.Success) { - throw new SocketException ((int)error); - } - return(ret); - } - - public - int Send (IList> buffers, SocketFlags socketFlags) - { - int ret; - SocketError error; - ret = Send (buffers, socketFlags, out error); - if (error != SocketError.Success) { - throw new SocketException ((int)error); - } - return(ret); - } - - [CLSCompliant (false)] - public - int Send (IList> buffers, SocketFlags socketFlags, out SocketError errorCode) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - if (buffers == null) - throw new ArgumentNullException ("buffers"); - if (buffers.Count == 0) - throw new ArgumentException ("Buffer is empty", "buffers"); - int numsegments = buffers.Count; - int nativeError; - int ret; - - WSABUF[] bufarray = new WSABUF[numsegments]; - GCHandle[] gch = new GCHandle[numsegments]; - for(int i = 0; i < numsegments; i++) { - ArraySegment segment = buffers[i]; - - if (segment.Offset < 0 || segment.Count < 0 || - segment.Count > segment.Array.Length - segment.Offset) - throw new ArgumentOutOfRangeException ("segment"); - - gch[i] = GCHandle.Alloc (segment.Array, GCHandleType.Pinned); - bufarray[i].len = segment.Count; - bufarray[i].buf = Marshal.UnsafeAddrOfPinnedArrayElement (segment.Array, segment.Offset); - } - - try { - ret = Send_internal (socket, bufarray, socketFlags, out nativeError); - } finally { - for(int i = 0; i < numsegments; i++) { - if (gch[i].IsAllocated) { - gch[i].Free (); - } - } - } - errorCode = (SocketError)nativeError; - return(ret); - } - - Exception InvalidAsyncOp (string method) - { - return new InvalidOperationException (method + " can only be called once per asynchronous operation"); - } - - public - int EndReceive (IAsyncResult result) - { - SocketError error; - int bytesReceived = EndReceive (result, out error); - if (error != SocketError.Success) { - if (error != SocketError.WouldBlock && error != SocketError.InProgress) - connected = false; - throw new SocketException ((int)error); - } - return bytesReceived; - } - - public - int EndReceive (IAsyncResult asyncResult, out SocketError errorCode) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (asyncResult == null) - throw new ArgumentNullException ("asyncResult"); - - SocketAsyncResult req = asyncResult as SocketAsyncResult; - if (req == null) - throw new ArgumentException ("Invalid IAsyncResult", "asyncResult"); - - if (Interlocked.CompareExchange (ref req.EndCalled, 1, 0) == 1) - throw InvalidAsyncOp ("EndReceive"); - if (!asyncResult.IsCompleted) - asyncResult.AsyncWaitHandle.WaitOne (); - - errorCode = req.ErrorCode; - // If no socket error occurred, call CheckIfThrowDelayedException in case there are other - // kinds of exceptions that should be thrown. - if (errorCode == SocketError.Success) - req.CheckIfThrowDelayedException(); - - return(req.Total); - } - - public - int EndSend (IAsyncResult result) - { - SocketError error; - int bytesSent = EndSend (result, out error); - if (error != SocketError.Success) { - if (error != SocketError.WouldBlock && error != SocketError.InProgress) - connected = false; - throw new SocketException ((int)error); - } - return bytesSent; - } - - public - int EndSend (IAsyncResult asyncResult, out SocketError errorCode) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - if (asyncResult == null) - throw new ArgumentNullException ("asyncResult"); - - SocketAsyncResult req = asyncResult as SocketAsyncResult; - if (req == null) - throw new ArgumentException ("Invalid IAsyncResult", "result"); - - if (Interlocked.CompareExchange (ref req.EndCalled, 1, 0) == 1) - throw InvalidAsyncOp ("EndSend"); - if (!asyncResult.IsCompleted) - asyncResult.AsyncWaitHandle.WaitOne (); - - errorCode = req.ErrorCode; - // If no socket error occurred, call CheckIfThrowDelayedException in case there are other - // kinds of exceptions that should be thrown. - if (errorCode == SocketError.Success) - req.CheckIfThrowDelayedException (); - - return(req.Total); - } - - // Used by Udpclient - public - int EndReceiveFrom(IAsyncResult result, ref EndPoint end_point) - { - if (disposed && closed) - throw new ObjectDisposedException (GetType ().ToString ()); - - if (result == null) - throw new ArgumentNullException ("result"); - - if (end_point == null) - throw new ArgumentNullException ("remote_end"); - - SocketAsyncResult req = result as SocketAsyncResult; - if (req == null) - throw new ArgumentException ("Invalid IAsyncResult", "result"); - - if (Interlocked.CompareExchange (ref req.EndCalled, 1, 0) == 1) - throw InvalidAsyncOp ("EndReceiveFrom"); - if (!result.IsCompleted) - result.AsyncWaitHandle.WaitOne(); - - req.CheckIfThrowDelayedException(); - end_point = req.EndPoint; - return req.Total; - } - - [MethodImplAttribute(MethodImplOptions.InternalCall)] - static extern void socket_pool_queue (SocketAsyncCall d, SocketAsyncResult r); - } -} - diff --git a/mcs/class/System/System.Net/Dns.cs b/mcs/class/System/System.Net/Dns.cs index d5ff6effa2b..9045052ccf7 100644 --- a/mcs/class/System/System.Net/Dns.cs +++ b/mcs/class/System/System.Net/Dns.cs @@ -56,8 +56,6 @@ namespace System.Net { static Dns () { - System.Net.Sockets.Socket.CheckProtocolSupport(); - #if !MOBILE if (Environment.GetEnvironmentVariable ("MONO_DNS") != null) { resolver = new SimpleResolver (); diff --git a/mcs/class/System/System.Net/ServicePoint.cs b/mcs/class/System/System.Net/ServicePoint.cs index 2a2c1cb048f..bb47c65c48f 100644 --- a/mcs/class/System/System.Net/ServicePoint.cs +++ b/mcs/class/System/System.Net/ServicePoint.cs @@ -401,15 +401,21 @@ namespace System.Net } public bool CloseConnectionGroup (string connectionGroupName) { + WebConnectionGroup cncGroup = null; + lock (this) { - WebConnectionGroup cncGroup = GetConnectionGroup (connectionGroupName); + cncGroup = GetConnectionGroup (connectionGroupName); if (cncGroup != null) { - cncGroup.Close (); RemoveConnectionGroup (cncGroup); - return true; } } + // WebConnectionGroup.Close() must *not* be called inside the lock + if (cncGroup != null) { + cncGroup.Close (); + return true; + } + return false; } diff --git a/mcs/class/System/System.Net/WebConnectionGroup.cs b/mcs/class/System/System.Net/WebConnectionGroup.cs index 5e142154f91..3936ee42898 100644 --- a/mcs/class/System/System.Net/WebConnectionGroup.cs +++ b/mcs/class/System/System.Net/WebConnectionGroup.cs @@ -66,6 +66,8 @@ namespace System.Net public void Close () { + List connectionsToClose = null; + //TODO: what do we do with the queue? Empty it out and abort the requests? //TODO: abort requests or wait for them to finish lock (sPoint) { @@ -76,7 +78,17 @@ namespace System.Net var node = iter; iter = iter.Next; + // Closing connections inside the lock leads to a deadlock. + if (connectionsToClose == null) + connectionsToClose = new List(); + + connectionsToClose.Add (cnc); connections.Remove (node); + } + } + + if (connectionsToClose != null) { + foreach (var cnc in connectionsToClose) { cnc.Close (false); OnConnectionClosed (); } diff --git a/mcs/class/System/System.Security.Cryptography/Oid.cs b/mcs/class/System/System.Security.Cryptography/Oid.cs index ef87eba3158..7a1e7851bba 100644 --- a/mcs/class/System/System.Security.Cryptography/Oid.cs +++ b/mcs/class/System/System.Security.Cryptography/Oid.cs @@ -107,6 +107,14 @@ namespace System.Security.Cryptography { internal const string nameSha1 = "sha1"; internal const string oidSubjectAltName = "2.5.29.17"; internal const string nameSubjectAltName = "Subject Alternative Name"; + internal const string oidAes128 = "2.16.840.1.101.3.4.1.2"; + internal const string nameAes128 = "aes128"; + internal const string oidAes256 = "2.16.840.1.101.3.4.1.42"; + internal const string nameAes256 = "aes256"; + internal const string oidSha256 = "2.16.840.1.101.3.4.2.1"; + internal const string nameSha256 = "sha256"; + internal const string oidSha512 = "2.16.840.1.101.3.4.2.3"; + internal const string nameSha512 = "sha512"; internal const string oidNetscapeCertType = "2.16.840.1.113730.1.1"; internal const string nameNetscapeCertType = "Netscape Cert Type"; @@ -140,8 +148,16 @@ namespace System.Security.Cryptography { return nameNetscapeCertType; case oidMd5: return nameMd5; + case oidAes128: + return nameAes128; + case oidAes256: + return nameAes256; case oidSha1: return nameSha1; + case oidSha256: + return nameSha256; + case oidSha512: + return nameSha512; default: return _name; } @@ -177,8 +193,16 @@ namespace System.Security.Cryptography { return oidNetscapeCertType; case nameMd5: return oidMd5; + case nameAes128: + return oidAes128; + case nameAes256: + return oidAes256; case nameSha1: return oidSha1; + case nameSha256: + return oidSha256; + case nameSha512: + return oidSha512; default: return _value; } diff --git a/mcs/class/System/System.dll.sources b/mcs/class/System/System.dll.sources index b6114e4e51a..27a566c1b17 100644 --- a/mcs/class/System/System.dll.sources +++ b/mcs/class/System/System.dll.sources @@ -533,14 +533,17 @@ System.Net.Sockets/SafeSocketHandle.cs System.Net.Sockets/SelectMode.cs System.Net.Sockets/SendPacketsElement.cs System.Net.Sockets/Socket.cs -System.Net.Sockets/Socket_2_1.cs +System.Net.Sockets/SocketAsyncCallback.cs System.Net.Sockets/SocketAsyncEventArgs.cs System.Net.Sockets/SocketAsyncOperation.cs +System.Net.Sockets/SocketAsyncResult.cs +System.Net.Sockets/SocketAsyncWorker.cs System.Net.Sockets/SocketError.cs System.Net.Sockets/SocketException.cs System.Net.Sockets/SocketFlags.cs System.Net.Sockets/SocketInformation.cs System.Net.Sockets/SocketInformationOptions.cs +System.Net.Sockets/SocketOperation.cs System.Net.Sockets/SocketOptionLevel.cs System.Net.Sockets/SocketOptionName.cs System.Net.Sockets/SocketShutdown.cs diff --git a/mcs/class/System/Test/System.Diagnostics/ProcessTest.cs b/mcs/class/System/Test/System.Diagnostics/ProcessTest.cs index 436e0e1252c..de12a43d3cf 100644 --- a/mcs/class/System/Test/System.Diagnostics/ProcessTest.cs +++ b/mcs/class/System/Test/System.Diagnostics/ProcessTest.cs @@ -52,6 +52,15 @@ namespace MonoTests.System.Diagnostics } } + [Test] // Covers #26363 + public void GetProcesses_StartTime () + { + foreach (var p in Process.GetProcesses ()) { + if (!p.HasExited && p.StartTime.Year < 1800) + Assert.Fail ("Process should not be started since the 18th century."); + } + } + [Test] public void PriorityClass_NotStarted () { diff --git a/mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs b/mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs index 984d13ca93d..f3cefe8c151 100644 --- a/mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs +++ b/mcs/class/System/Test/System.IO.Compression/DeflateStreamTest.cs @@ -99,7 +99,7 @@ namespace MonoTests.System.IO.Compression MemoryStream backing = new MemoryStream (data); DeflateStream compressing = new DeflateStream (backing, CompressionMode.Decompress); compressing.Read (dummy, 0, 1); - } + } [Test] [ExpectedException (typeof (ArgumentNullException))] @@ -362,6 +362,41 @@ namespace MonoTests.System.IO.Compression backing.Close(); } #endif + + [Test] + [ExpectedException (typeof (ArgumentException))] + public void CheckBufferOverrun () + { + byte[] data = new byte [20]; + MemoryStream backing = new MemoryStream (); + DeflateStream compressing = new DeflateStream (backing, CompressionLevel.Fastest, true); + compressing.Write (data, 0, data.Length + 1); + compressing.Close (); + backing.Close (); + } + + [Test] + public void Bug28777_EmptyFlush () + { + MemoryStream backing = new MemoryStream (); + DeflateStream compressing = new DeflateStream (backing, CompressionLevel.Fastest, true); + compressing.Flush (); + compressing.Close (); + backing.Close (); + } + + [Test] + public void Bug28777_DoubleFlush () + { + byte[] buffer = new byte [4096]; + MemoryStream backing = new MemoryStream (); + DeflateStream compressing = new DeflateStream (backing, CompressionLevel.Fastest, true); + compressing.Write (buffer, 0, buffer.Length); + compressing.Flush (); + compressing.Flush (); + compressing.Close (); + backing.Close (); + } } } diff --git a/mcs/class/System/Test/System.Net.Sockets/SocketTest.cs b/mcs/class/System/Test/System.Net.Sockets/SocketTest.cs index 697830b3fd8..cfe2bb092e2 100755 --- a/mcs/class/System/Test/System.Net.Sockets/SocketTest.cs +++ b/mcs/class/System/Test/System.Net.Sockets/SocketTest.cs @@ -3156,7 +3156,7 @@ namespace MonoTests.System.Net.Sockets EndPoint remoteEP = new IPEndPoint (IPAddress.Loopback, 8001); try { - s.ReceiveFrom ((Byte []) null, -1, (SocketFlags) 666, + s.ReceiveFrom ((Byte []) null, 0, (SocketFlags) 666, ref remoteEP); Assert.Fail ("#1"); } catch (ArgumentNullException ex) { @@ -3178,7 +3178,7 @@ namespace MonoTests.System.Net.Sockets byte [] buffer = new byte [5]; EndPoint remoteEP = null; try { - s.ReceiveFrom (buffer, -1, (SocketFlags) 666, ref remoteEP); + s.ReceiveFrom (buffer, buffer.Length, (SocketFlags) 666, ref remoteEP); Assert.Fail ("#1"); } catch (ArgumentNullException ex) { Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2"); @@ -3322,7 +3322,7 @@ namespace MonoTests.System.Net.Sockets EndPoint remoteEP = null; try { - s.ReceiveFrom (buffer, -1, -1, (SocketFlags) 666, ref remoteEP); + s.ReceiveFrom (buffer, 0, buffer.Length, (SocketFlags) 666, ref remoteEP); Assert.Fail ("#1"); } catch (ArgumentNullException ex) { Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2"); diff --git a/mcs/class/System/Test/System.Security.Cryptography/OidTest.cs b/mcs/class/System/Test/System.Security.Cryptography/OidTest.cs index 40480ba9ee5..4aa40ff84e7 100644 --- a/mcs/class/System/Test/System.Security.Cryptography/OidTest.cs +++ b/mcs/class/System/Test/System.Security.Cryptography/OidTest.cs @@ -163,6 +163,9 @@ namespace MonoTests.System.Security.Cryptography { Oid o = new Oid ("1.2.840.113549.1.1.1"); Assert.AreEqual ("1.2.840.113549.1.1.1", o.Value, "RSA Value"); Assert.AreEqual ("RSA", o.FriendlyName, "RSA FriendlyName"); + o = new Oid (); + o.FriendlyName = "RSA"; + Assert.AreEqual (o.Value, "1.2.840.113549.1.1.1", "RSA Value from FriendlyName"); o = new Oid ("1.2.840.113549.1.7.1"); Assert.AreEqual ("1.2.840.113549.1.7.1", o.Value, "PKCS 7 Data Value"); @@ -177,6 +180,37 @@ namespace MonoTests.System.Security.Cryptography { o = new Oid ("1.2.840.113549.3.7"); Assert.AreEqual ("1.2.840.113549.3.7", o.Value, "3des Value"); Assert.AreEqual ("3des", o.FriendlyName, "3des FriendlyName"); + o = new Oid (); + o.FriendlyName = "3des"; + Assert.AreEqual (o.Value, "1.2.840.113549.3.7", "3des Value from FriendlyName"); + + o = new Oid ("2.16.840.1.101.3.4.1.2"); + Assert.AreEqual ("2.16.840.1.101.3.4.1.2", o.Value, "aes128 Value"); + Assert.AreEqual ("aes128", o.FriendlyName, "aes128 FriendlyName"); + o = new Oid (); + o.FriendlyName = "aes128"; + Assert.AreEqual (o.Value, "2.16.840.1.101.3.4.1.2", "aes123 Value from FriendlyName"); + + o = new Oid ("2.16.840.1.101.3.4.1.42"); + Assert.AreEqual ("2.16.840.1.101.3.4.1.42", o.Value, "aes256 Value"); + Assert.AreEqual ("aes256", o.FriendlyName, "aes256 FriendlyName"); + o = new Oid (); + o.FriendlyName = "aes256"; + Assert.AreEqual (o.Value, "2.16.840.1.101.3.4.1.42", "aes256 Value from FriendlyName"); + + o = new Oid ("2.16.840.1.101.3.4.2.1"); + Assert.AreEqual ("2.16.840.1.101.3.4.2.1", o.Value, "sha256 Value"); + Assert.AreEqual ("sha256", o.FriendlyName, "sha256 FriendlyName"); + o = new Oid (); + o.FriendlyName = "sha256"; + Assert.AreEqual (o.Value, "2.16.840.1.101.3.4.2.1", "sha256 Value from FriendlyName"); + + o = new Oid ("2.16.840.1.101.3.4.2.3"); + Assert.AreEqual ("2.16.840.1.101.3.4.2.3", o.Value, "sha512 Value"); + Assert.AreEqual ("sha512", o.FriendlyName, "sha512 FriendlyName"); + o = new Oid (); + o.FriendlyName = "sha512"; + Assert.AreEqual (o.Value, "2.16.840.1.101.3.4.2.3", "sha512 Value from FriendlyName"); // TODO: add other well known oid as we find them } diff --git a/mcs/class/System/mobile_System.dll.sources b/mcs/class/System/mobile_System.dll.sources index 6f061db7e6e..f21f3fa5ba0 100644 --- a/mcs/class/System/mobile_System.dll.sources +++ b/mcs/class/System/mobile_System.dll.sources @@ -140,7 +140,6 @@ System.Net.Sockets/SocketOptionLevel.cs System.Net.Sockets/SocketOptionName.cs System.Net.Sockets/SocketShutdown.cs System.Net.Sockets/SocketType.cs -System.Net.Sockets/Socket_2_1.cs System.Net.Sockets/TcpClient.cs System.Net.Sockets/TcpListener.cs System.Net.Sockets/TransmitFileOptions.cs diff --git a/mcs/class/corlib/Makefile b/mcs/class/corlib/Makefile index 05283f88bcf..42ae018b29b 100644 --- a/mcs/class/corlib/Makefile +++ b/mcs/class/corlib/Makefile @@ -36,12 +36,12 @@ RESOURCE_FILES = \ resources/collation.cjkKO.bin \ resources/collation.cjkKOlv2.bin -REFERENCE_SOURCES_FLAGS = -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION +REFERENCE_SOURCES_FLAGS = -d:FEATURE_PAL,GENERICS_WORK,FEATURE_LIST_PREDICATES,FEATURE_SERIALIZATION,FEATURE_ASCII,FEATURE_LATIN1,FEATURE_UTF7,FEATURE_UTF32,MONO_HYBRID_ENCODING_SUPPORT,FEATURE_ASYNC_IO,NEW_EXPERIMENTAL_ASYNC_IO,FEATURE_UTF32,FEATURE_EXCEPTIONDISPATCHINFO,FEATURE_CORRUPTING_EXCEPTIONS,FEATURE_EXCEPTION_NOTIFICATIONS,FEATURE_STRONGNAME_MIGRATION,FEATURE_USE_LCID,FEATURE_FUSION MOBILE_STATIC := $(filter mobile_static monotouch monotouch_runtime, $(PROFILE)) ifndef MOBILE_STATIC -REFERENCE_SOURCES_FLAGS += -d:FEATURE_REMOTING,MONO_COM,FEATURE_USE_LCID +REFERENCE_SOURCES_FLAGS += -d:FEATURE_REMOTING,MONO_COM endif LOCAL_MCS_FLAGS = -unsafe -nostdlib -nowarn:612,618 -d:INSIDE_CORLIB,MONO_CULTURE_DATA -d:LIBC $(REFERENCE_SOURCES_FLAGS) diff --git a/mcs/class/corlib/ReferenceSources/Buffer.cs b/mcs/class/corlib/ReferenceSources/Buffer.cs new file mode 100644 index 00000000000..94b3a955269 --- /dev/null +++ b/mcs/class/corlib/ReferenceSources/Buffer.cs @@ -0,0 +1,176 @@ +namespace System +{ + partial class Buffer + { + public static int ByteLength (Array array) + { + // note: the other methods in this class also use ByteLength to test for + // null and non-primitive arguments as a side-effect. + + if (array == null) + throw new ArgumentNullException ("array"); + + int length = _ByteLength (array); + if (length < 0) + throw new ArgumentException (Locale.GetText ("Object must be an array of primitives.")); + + return length; + } + + public static byte GetByte (Array array, int index) + { + if (index < 0 || index >= ByteLength (array)) + throw new ArgumentOutOfRangeException ("index"); + + return _GetByte (array, index); + } + + public static void SetByte (Array array, int index, byte value) + { + if (index < 0 || index >= ByteLength (array)) + throw new ArgumentOutOfRangeException ("index"); + + _SetByte (array, index, value); + } + + public static void BlockCopy (Array src, int srcOffset, Array dst, int dstOffset, int count) + { + if (src == null) + throw new ArgumentNullException ("src"); + + if (dst == null) + throw new ArgumentNullException ("dst"); + + if (srcOffset < 0) + throw new ArgumentOutOfRangeException ("srcOffset", Locale.GetText( + "Non-negative number required.")); + + if (dstOffset < 0) + throw new ArgumentOutOfRangeException ("dstOffset", Locale.GetText ( + "Non-negative number required.")); + + if (count < 0) + throw new ArgumentOutOfRangeException ("count", Locale.GetText ( + "Non-negative number required.")); + + // We do the checks in unmanaged code for performance reasons + bool res = InternalBlockCopy (src, srcOffset, dst, dstOffset, count); + if (!res) { + // watch for integer overflow + if ((srcOffset > ByteLength (src) - count) || (dstOffset > ByteLength (dst) - count)) + throw new ArgumentException (Locale.GetText ( + "Offset and length were out of bounds for the array or count is greater than " + + "the number of elements from index to the end of the source collection.")); + } + } + + internal static unsafe void memcpy4 (byte *dest, byte *src, int size) { + /*while (size >= 32) { + // using long is better than int and slower than double + // FIXME: enable this only on correct alignment or on platforms + // that can tolerate unaligned reads/writes of doubles + ((double*)dest) [0] = ((double*)src) [0]; + ((double*)dest) [1] = ((double*)src) [1]; + ((double*)dest) [2] = ((double*)src) [2]; + ((double*)dest) [3] = ((double*)src) [3]; + dest += 32; + src += 32; + size -= 32; + }*/ + while (size >= 16) { + ((int*)dest) [0] = ((int*)src) [0]; + ((int*)dest) [1] = ((int*)src) [1]; + ((int*)dest) [2] = ((int*)src) [2]; + ((int*)dest) [3] = ((int*)src) [3]; + dest += 16; + src += 16; + size -= 16; + } + while (size >= 4) { + ((int*)dest) [0] = ((int*)src) [0]; + dest += 4; + src += 4; + size -= 4; + } + while (size > 0) { + ((byte*)dest) [0] = ((byte*)src) [0]; + dest += 1; + src += 1; + --size; + } + } + internal static unsafe void memcpy2 (byte *dest, byte *src, int size) { + while (size >= 8) { + ((short*)dest) [0] = ((short*)src) [0]; + ((short*)dest) [1] = ((short*)src) [1]; + ((short*)dest) [2] = ((short*)src) [2]; + ((short*)dest) [3] = ((short*)src) [3]; + dest += 8; + src += 8; + size -= 8; + } + while (size >= 2) { + ((short*)dest) [0] = ((short*)src) [0]; + dest += 2; + src += 2; + size -= 2; + } + if (size > 0) + ((byte*)dest) [0] = ((byte*)src) [0]; + } + static unsafe void memcpy1 (byte *dest, byte *src, int size) { + while (size >= 8) { + ((byte*)dest) [0] = ((byte*)src) [0]; + ((byte*)dest) [1] = ((byte*)src) [1]; + ((byte*)dest) [2] = ((byte*)src) [2]; + ((byte*)dest) [3] = ((byte*)src) [3]; + ((byte*)dest) [4] = ((byte*)src) [4]; + ((byte*)dest) [5] = ((byte*)src) [5]; + ((byte*)dest) [6] = ((byte*)src) [6]; + ((byte*)dest) [7] = ((byte*)src) [7]; + dest += 8; + src += 8; + size -= 8; + } + while (size >= 2) { + ((byte*)dest) [0] = ((byte*)src) [0]; + ((byte*)dest) [1] = ((byte*)src) [1]; + dest += 2; + src += 2; + size -= 2; + } + if (size > 0) + ((byte*)dest) [0] = ((byte*)src) [0]; + } + + internal static unsafe void Memcpy (byte *dest, byte *src, int size) { + // FIXME: if pointers are not aligned, try to align them + // so a faster routine can be used. Handle the case where + // the pointers can't be reduced to have the same alignment + // (just ignore the issue on x86?) + if ((((int)dest | (int)src) & 3) != 0) { + if (((int)dest & 1) != 0 && ((int)src & 1) != 0 && size >= 1) { + dest [0] = src [0]; + ++dest; + ++src; + --size; + } + if (((int)dest & 2) != 0 && ((int)src & 2) != 0 && size >= 2) { + ((short*)dest) [0] = ((short*)src) [0]; + dest += 2; + src += 2; + size -= 2; + } + if ((((int)dest | (int)src) & 1) != 0) { + memcpy1 (dest, src, size); + return; + } + if ((((int)dest | (int)src) & 2) != 0) { + memcpy2 (dest, src, size); + return; + } + } + memcpy4 (dest, src, size); + } + } +} \ No newline at end of file diff --git a/mcs/class/corlib/ReferenceSources/JitHelpers.cs b/mcs/class/corlib/ReferenceSources/JitHelpers.cs index 05c4d716cc1..d5d822fdb00 100644 --- a/mcs/class/corlib/ReferenceSources/JitHelpers.cs +++ b/mcs/class/corlib/ReferenceSources/JitHelpers.cs @@ -6,7 +6,17 @@ namespace System.Runtime.CompilerServices { { static internal T UnsafeCast(Object o) where T : class { - return (T)o; + return Array.UnsafeMov (o); + } + + static internal int UnsafeEnumCast(T val) where T : struct + { + return Array.UnsafeMov (val); + } + + static internal long UnsafeEnumCastLong(T val) where T : struct + { + throw new NotImplementedException (); } } } \ No newline at end of file diff --git a/mcs/class/corlib/ReferenceSources/RuntimeType.cs b/mcs/class/corlib/ReferenceSources/RuntimeType.cs index 3557e77817c..9dd5e9c6ad0 100644 --- a/mcs/class/corlib/ReferenceSources/RuntimeType.cs +++ b/mcs/class/corlib/ReferenceSources/RuntimeType.cs @@ -394,42 +394,11 @@ namespace System return constraints; } - public override Type MakeGenericType (params Type[] typeArguments) + internal static object CreateInstanceForAnotherGenericParameter (Type genericType, RuntimeType genericArgument) { - if (IsUserType) - throw new NotSupportedException (); - if (!IsGenericTypeDefinition) - throw new InvalidOperationException ("not a generic type definition"); - if (typeArguments == null) - throw new ArgumentNullException ("typeArguments"); - if (GetGenericArguments().Length != typeArguments.Length) - throw new ArgumentException (String.Format ("The type or method has {0} generic parameter(s) but {1} generic argument(s) where provided. A generic argument must be provided for each generic parameter.", GetGenericArguments ().Length, typeArguments.Length), "typeArguments"); - - bool hasUserType = false; - - Type[] systemTypes = new Type[typeArguments.Length]; - for (int i = 0; i < typeArguments.Length; ++i) { - Type t = typeArguments [i]; - if (t == null) - throw new ArgumentNullException ("typeArguments"); - - if (!(t is MonoType)) - hasUserType = true; - systemTypes [i] = t; - } - - if (hasUserType) { -#if FULL_AOT_RUNTIME - throw new NotSupportedException ("User types are not supported under full aot"); -#else - return new MonoGenericClass (this, typeArguments); -#endif - } - - Type res = MakeGenericType (this, systemTypes); - if (res == null) - throw new TypeLoadException (); - return res; + var gt = (RuntimeType) MakeGenericType (genericType, new Type [] { genericArgument }); + var ctor = gt.GetDefaultConstructor (); + return ctor.InternalInvoke (null, null); } [MethodImplAttribute(MethodImplOptions.InternalCall)] @@ -612,7 +581,7 @@ namespace System internal extern string getFullName(bool full_name, bool assembly_qualified); [MethodImplAttribute(MethodImplOptions.InternalCall)] - public extern override Type [] GetGenericArguments (); + extern Type[] GetGenericArgumentsInternal (bool runtimeArray); [MethodImplAttribute(MethodImplOptions.InternalCall)] extern GenericParameterAttributes GetGenericParameterAttributes (); diff --git a/mcs/class/corlib/ReferenceSources/String.cs b/mcs/class/corlib/ReferenceSources/String.cs index d4cec69780f..a3ca19e5589 100644 --- a/mcs/class/corlib/ReferenceSources/String.cs +++ b/mcs/class/corlib/ReferenceSources/String.cs @@ -611,6 +611,44 @@ namespace System { Buffer.Memcpy (dest, src, size); } + + /* Used by the runtime */ + internal static unsafe void bzero (byte *dest, int len) { + memset (dest, 0, len); + } + + internal static unsafe void bzero_aligned_1 (byte *dest, int len) { + ((byte*)dest) [0] = 0; + } + + internal static unsafe void bzero_aligned_2 (byte *dest, int len) { + ((short*)dest) [0] = 0; + } + + internal static unsafe void bzero_aligned_4 (byte *dest, int len) { + ((int*)dest) [0] = 0; + } + + internal static unsafe void bzero_aligned_8 (byte *dest, int len) { + ((long*)dest) [0] = 0; + } + + internal static unsafe void memcpy_aligned_1 (byte *dest, byte *src, int size) { + ((byte*)dest) [0] = ((byte*)src) [0]; + } + + internal static unsafe void memcpy_aligned_2 (byte *dest, byte *src, int size) { + ((short*)dest) [0] = ((short*)src) [0]; + } + + internal static unsafe void memcpy_aligned_4 (byte *dest, byte *src, int size) { + ((int*)dest) [0] = ((int*)src) [0]; + } + + internal static unsafe void memcpy_aligned_8 (byte *dest, byte *src, int size) { + ((long*)dest) [0] = ((long*)src) [0]; + } + #endregion // Certain constructors are redirected to CreateString methods with diff --git a/mcs/class/corlib/ReferenceSources/TimeZoneInfoOptions.cs b/mcs/class/corlib/ReferenceSources/TimeZoneInfoOptions.cs deleted file mode 100644 index 50ce810a716..00000000000 --- a/mcs/class/corlib/ReferenceSources/TimeZoneInfoOptions.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace System -{ - [Flags] - internal enum TimeZoneInfoOptions { - None = 1, - NoThrowOnInvalidTime = 2 - }; -} \ No newline at end of file diff --git a/mcs/class/corlib/ReferenceSources/TypeBuilderInstantiation.cs b/mcs/class/corlib/ReferenceSources/TypeBuilderInstantiation.cs new file mode 100644 index 00000000000..9e826646321 --- /dev/null +++ b/mcs/class/corlib/ReferenceSources/TypeBuilderInstantiation.cs @@ -0,0 +1,14 @@ +namespace System.Reflection.Emit +{ + abstract class TypeBuilderInstantiation : TypeInfo + { + internal static Type MakeGenericType (Type type, Type[] typeArguments) + { +#if FULL_AOT_RUNTIME + throw new NotSupportedException ("User types are not supported under full aot"); +#else + return new MonoGenericClass (type, typeArguments); +#endif + } + } +} \ No newline at end of file diff --git a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs deleted file mode 100644 index 0d0ba10e3ed..00000000000 --- a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentOrderedList.cs +++ /dev/null @@ -1,338 +0,0 @@ -// ConcurrentOrderedList.cs -// -// Copyright (c) 2010 Jérémie "Garuma" Laval -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. -// -// - - -using System; -using System.Threading; -using System.Collections; -using System.Collections.Generic; -using System.Runtime.Serialization; - -#if INSIDE_MONO_PARALLEL -using System.Collections.Concurrent; - -namespace Mono.Collections.Concurrent -#else -namespace System.Collections.Concurrent -#endif -{ -#if INSIDE_MONO_PARALLEL - public -#endif - class ConcurrentOrderedList: ICollection, IEnumerable - { - class Node - { - public T Data; - public int Key; - public Node Next; - public bool Marked; - - public Node () - { - - } - - public Node (Node wrapped) - { - Marked = true; - Next = wrapped; - } - } - - Node head; - Node tail; - - IEqualityComparer comparer; - - int count; - - public ConcurrentOrderedList () : this (EqualityComparer.Default) - { - - } - - public ConcurrentOrderedList (IEqualityComparer comparer) - { - if (comparer == null) - throw new ArgumentNullException ("comparer"); - - this.comparer = comparer; - - head = new Node (); - tail = new Node (); - head.Next = tail; - } - - public bool TryAdd (T data) - { - Node node = new Node (); - node.Data = data; - node.Key = comparer.GetHashCode (data); - - if (ListInsert (node)) { - Interlocked.Increment (ref count); - return true; - } - - return false; - } - - public bool TryRemove (T data) - { - T dummy; - return TryRemoveHash (comparer.GetHashCode (data), out dummy); - } - - public bool TryRemoveHash (int key, out T data) - { - if (ListDelete (key, out data)) { - Interlocked.Decrement (ref count); - return true; - } - - return false; - } - - public bool TryPop (out T data) - { - return ListPop (out data); - } - - public bool Contains (T data) - { - return ContainsHash (comparer.GetHashCode (data)); - } - - public bool ContainsHash (int key) - { - Node node; - - if (!ListFind (key, out node)) - return false; - - return true; - - } - - public bool TryGetFromHash (int key, out T data) - { - data = default (T); - Node node; - - if (!ListFind (key, out node)) - return false; - - data = node.Data; - return true; - } - - public void Clear () - { - head.Next = tail; - } - - public void CopyTo (T[] array, int startIndex) - { - if (array == null) - throw new ArgumentNullException ("array"); - if (startIndex < 0) - throw new ArgumentOutOfRangeException ("startIndex"); - if (count > array.Length - startIndex) - throw new ArgumentException ("array", "The number of elements is greater than the available space from startIndex to the end of the destination array."); - - foreach (T item in this) { - if (startIndex >= array.Length) - break; - - array[startIndex++] = item; - } - } - - public IEqualityComparer Comparer { - get { - return comparer; - } - } - - public int Count { - get { - return count; - } - } - - Node ListSearch (int key, ref Node left) - { - Node leftNodeNext = null, rightNode = null; - - do { - Node t = head; - Node tNext = t.Next; - do { - if (!tNext.Marked) { - left = t; - leftNodeNext = tNext; - } - t = tNext.Marked ? tNext.Next : tNext; - if (t == tail) - break; - - tNext = t.Next; - } while (tNext.Marked || t.Key < key); - - rightNode = t; - - if (leftNodeNext == rightNode) { - if (rightNode != tail && rightNode.Next.Marked) - continue; - else - return rightNode; - } - - if (Interlocked.CompareExchange (ref left.Next, rightNode, leftNodeNext) == leftNodeNext) { - if (rightNode != tail && rightNode.Next.Marked) - continue; - else - return rightNode; - } - } while (true); - } - - bool ListDelete (int key, out T data) - { - Node rightNode = null, rightNodeNext = null, leftNode = null; - data = default (T); - - do { - rightNode = ListSearch (key, ref leftNode); - if (rightNode == tail || rightNode.Key != key) - return false; - - data = rightNode.Data; - - rightNodeNext = rightNode.Next; - if (!rightNodeNext.Marked) - if (Interlocked.CompareExchange (ref rightNode.Next, new Node (rightNodeNext), rightNodeNext) == rightNodeNext) - break; - } while (true); - - if (Interlocked.CompareExchange (ref leftNode.Next, rightNodeNext, rightNode) != rightNodeNext) - ListSearch (rightNode.Key, ref leftNode); - - return true; - } - - bool ListPop (out T data) - { - Node rightNode = null, rightNodeNext = null, leftNode = head; - data = default (T); - - do { - rightNode = head.Next; - if (rightNode == tail) - return false; - - data = rightNode.Data; - - rightNodeNext = rightNode.Next; - if (!rightNodeNext.Marked) - if (Interlocked.CompareExchange (ref rightNode.Next, new Node (rightNodeNext), rightNodeNext) == rightNodeNext) - break; - } while (true); - - if (Interlocked.CompareExchange (ref leftNode.Next, rightNodeNext, rightNode) != rightNodeNext) - ListSearch (rightNode.Key, ref leftNode); - - return true; - } - - bool ListInsert (Node newNode) - { - int key = newNode.Key; - Node rightNode = null, leftNode = null; - - do { - rightNode = ListSearch (key, ref leftNode); - if (rightNode != tail && rightNode.Key == key) - return false; - - newNode.Next = rightNode; - if (Interlocked.CompareExchange (ref leftNode.Next, newNode, rightNode) == rightNode) - return true; - } while (true); - } - - bool ListFind (int key, out Node data) - { - Node rightNode = null, leftNode = null; - data = null; - - data = rightNode = ListSearch (key, ref leftNode); - - return rightNode != tail && rightNode.Key == key; - } - - IEnumerator IEnumerable.GetEnumerator () - { - return GetEnumeratorInternal (); - } - - IEnumerator IEnumerable.GetEnumerator () - { - return GetEnumeratorInternal (); - } - - IEnumerator GetEnumeratorInternal () - { - Node node = head.Next; - - while (node != tail) { - while (node.Marked) { - node = node.Next; - if (node == tail) - yield break; - } - yield return node.Data; - node = node.Next; - } - } - - bool ICollection.IsReadOnly { - get { - return false; - } - } - - void ICollection.Add (T item) - { - TryAdd (item); - } - - bool ICollection.Remove (T item) - { - return TryRemove (item); - } - } -} - diff --git a/mcs/class/corlib/System.Collections.Generic/Comparer.cs b/mcs/class/corlib/System.Collections.Generic/Comparer.cs deleted file mode 100644 index d19ce2cc8bb..00000000000 --- a/mcs/class/corlib/System.Collections.Generic/Comparer.cs +++ /dev/null @@ -1,126 +0,0 @@ -// -// Comparer.cs -// -// Authors: -// Ben Maurer (bmaurer@ximian.com) -// Marek Safar (marek.safar@gmail.com) -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// Copyright (C) 2012 Xamarin Inc (http://www.xamarin.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System; -using System.Runtime.InteropServices; - -namespace System.Collections.Generic { - [Serializable] - public abstract class Comparer : IComparer, IComparer - { - static readonly Comparer _default = typeof (IComparable).IsAssignableFrom (typeof (T)) ? - (Comparer) Activator.CreateInstance (typeof (GenericComparer <>).MakeGenericType (typeof (T))) : - new DefaultComparer (); - - public abstract int Compare (T x, T y); - - public static Comparer Default { - get { - return _default; - } - } - - public static Comparer Create (Comparison comparison) - { - if (comparison == null) - throw new ArgumentNullException ("comparison"); - - return new ComparisonComparer (comparison); - } - - int IComparer.Compare (object x, object y) - { - if (x == y) - return 0; - if (x == null) - return y == null ? 0 : -1; - if (y == null) - return 1; - - if (x is T && y is T) - return Compare ((T) x, (T) y); - - throw new ArgumentException (); - } - - [Serializable] - sealed class DefaultComparer : Comparer - { - public override int Compare (T x, T y) - { - // `null' is less than any other ref type - if (x == null) - return y == null ? 0 : -1; - if (y == null) - return 1; - - var i = x as IComparable; - if (i != null) - return i.CompareTo (y); - - i = y as IComparable; - if (i != null) - return -i.CompareTo (x); - - throw new ArgumentException ("At least one argument has to implement IComparable interface"); - } - } - } - - [Serializable] - sealed class GenericComparer : Comparer where T : IComparable - { - public override int Compare (T x, T y) - { - // `null' is less than any other ref type - if (x == null) - return y == null ? 0 : -1; - if (y == null) - return 1; - - return x.CompareTo (y); - } - } - [Serializable] - sealed class ComparisonComparer : Comparer - { - readonly Comparison comparison; - - public ComparisonComparer (Comparison comparison) - { - this.comparison = comparison; - } - - public override int Compare (T x, T y) - { - return comparison (x, y); - } - } -} diff --git a/mcs/class/corlib/System.Collections.Generic/EqualityComparer.cs b/mcs/class/corlib/System.Collections.Generic/EqualityComparer.cs deleted file mode 100644 index 9338f966f50..00000000000 --- a/mcs/class/corlib/System.Collections.Generic/EqualityComparer.cs +++ /dev/null @@ -1,229 +0,0 @@ -// -// EqualityComparer.cs -// -// Authors: -// Ben Maurer (bmaurer@ximian.com) -// Marek Safar (marek.safar@gmail.com) -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// Copyright (C) 2014 Xamarin Inc (http://www.xamarin.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System; -using System.Runtime.InteropServices; - -namespace System.Collections.Generic { - [Serializable] - public abstract class EqualityComparer : IEqualityComparer, IEqualityComparer { - - static EqualityComparer () - { - var t = typeof (T); - if (t == typeof (string)) { - _default = (EqualityComparer) (object) new InternalStringComparer (); - return; - } - - if (t == typeof (int)) { - _default = (EqualityComparer) (object) new IntEqualityComparer (); - return; - } - - if (t.IsEnum && Enum.GetUnderlyingType (t) == typeof (int)) { - _default = new EnumIntEqualityComparer (); - return; - } - - if (typeof (IEquatable ).IsAssignableFrom (t)) - _default = (EqualityComparer ) Activator.CreateInstance (typeof (GenericEqualityComparer <>).MakeGenericType (t)); - else - _default = new DefaultComparer (); - } - - public abstract int GetHashCode (T obj); - public abstract bool Equals (T x, T y); - - static readonly EqualityComparer _default; - - public static EqualityComparer Default { - get { - return _default; - } - } - - int IEqualityComparer.GetHashCode (object obj) - { - if (obj == null) - return 0; - - if (!(obj is T)) - throw new ArgumentException ("Argument is not compatible", "obj"); - - return GetHashCode ((T)obj); - } - - bool IEqualityComparer.Equals (object x, object y) - { - if (x == y) - return true; - - if (x == null || y == null) - return false; - - if (!(x is T)) - throw new ArgumentException ("Argument is not compatible", "x"); - if (!(y is T)) - throw new ArgumentException ("Argument is not compatible", "y"); - return Equals ((T)x, (T)y); - } - - internal virtual int IndexOf (T[] array, T value, int startIndex, int endIndex) - { - for (int i = startIndex; i < endIndex; ++i) { - if (Equals (Array.UnsafeLoad (array, i), value)) - return i; - } - - return -1; - } - } - - [Serializable] - sealed class DefaultComparer : EqualityComparer { - - public override int GetHashCode (T obj) - { - if (obj == null) - return 0; - return obj.GetHashCode (); - } - - public override bool Equals (T x, T y) - { - if (x == null) - return y == null; - - return x.Equals (y); - } - } - - [Serializable] - sealed class InternalStringComparer : EqualityComparer { - - public override int GetHashCode (string obj) - { - if (obj == null) - return 0; - return obj.GetHashCode (); - } - - public override bool Equals (string x, string y) - { - if (x == null) - return y == null; - - if ((object) x == (object) y) - return true; - - return x.Equals (y); - } - - internal override int IndexOf (string[] array, string value, int startIndex, int endIndex) - { - for (int i = startIndex; i < endIndex; ++i) { - if (Array.UnsafeLoad (array, i) == value) - return i; - } - - return -1; - } - } - - [Serializable] - sealed class IntEqualityComparer : EqualityComparer - { - public override int GetHashCode (int obj) - { - return obj; - } - - public override bool Equals (int x, int y) - { - return x == y; - } - - internal override int IndexOf (int[] array, int value, int startIndex, int endIndex) - { - for (int i = startIndex; i < endIndex; ++i) { - if (Array.UnsafeLoad (array, i) == value) - return i; - } - - return -1; - } - } - - [Serializable] - sealed class EnumIntEqualityComparer : EqualityComparer - { - public override int GetHashCode (T obj) - { - return Array.UnsafeMov (obj); - } - - public override bool Equals (T x, T y) - { - return Array.UnsafeMov (x) == Array.UnsafeMov (y); - } - - internal override int IndexOf (T[] array, T value, int startIndex, int endIndex) - { - int v = Array.UnsafeMov (value); - var a = Array.UnsafeMov (array); - for (int i = startIndex; i < endIndex; ++i) { - if (Array.UnsafeLoad (a, i) == v) - return i; - } - - return -1; - } - } - - [Serializable] - sealed class GenericEqualityComparer : EqualityComparer where T : IEquatable { - - public override int GetHashCode (T obj) - { - if (obj == null) - return 0; - return obj.GetHashCode (); - } - - public override bool Equals (T x, T y) - { - if (x == null) - return y == null; - - return x.Equals (y); - } - } -} diff --git a/mcs/class/corlib/System.IO/DirectoryNotFoundException.cs b/mcs/class/corlib/System.IO/DirectoryNotFoundException.cs deleted file mode 100644 index 8a3392e99ff..00000000000 --- a/mcs/class/corlib/System.IO/DirectoryNotFoundException.cs +++ /dev/null @@ -1,63 +0,0 @@ -// -// System.IO.DirectoryNotFoundException.cs -// -// Author: -// Paolo Molaro (lupus@ximian.com) -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.Serialization; -using System.Runtime.InteropServices; - -namespace System.IO { - - [Serializable] - [ComVisible (true)] - public class DirectoryNotFoundException : IOException { - - // Constructors - public DirectoryNotFoundException () - : base ("Directory not found") - { - } - - public DirectoryNotFoundException (string message) - : base (message) - { - } - - public DirectoryNotFoundException (string message, Exception innerException) - : base (message, innerException) - { - } - - protected DirectoryNotFoundException (SerializationInfo info, StreamingContext context) - : base (info, context) - { - } - } -} diff --git a/mcs/class/corlib/System.IO/DriveNotFoundException.cs b/mcs/class/corlib/System.IO/DriveNotFoundException.cs deleted file mode 100644 index 52434e251e7..00000000000 --- a/mcs/class/corlib/System.IO/DriveNotFoundException.cs +++ /dev/null @@ -1,66 +0,0 @@ -// -// System.IO.DriveNotFoundException.cs -// -// Author: -// Kornél Pál -// -// Copyright (C) 2006 Kornél Pál -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.InteropServices; -using System.Runtime.Serialization; - -namespace System.IO -{ - [Serializable] - [ComVisible (true)] - public class DriveNotFoundException : IOException - { - private const int ErrorCode = unchecked((int)0x80070003); - - // Constructors - public DriveNotFoundException () - : base ("Attempted to access a drive that is not available.") - { - this.HResult = ErrorCode; - } - - public DriveNotFoundException (string message) - : base (message) - { - this.HResult = ErrorCode; - } - - public DriveNotFoundException (string message, Exception innerException) - : base (message, innerException) - { - this.HResult = ErrorCode; - } - - protected DriveNotFoundException (SerializationInfo info, StreamingContext context) - : base (info, context) - { - } - } -} diff --git a/mcs/class/corlib/System.IO/EndOfStreamException.cs b/mcs/class/corlib/System.IO/EndOfStreamException.cs deleted file mode 100644 index 4073c8bcce3..00000000000 --- a/mcs/class/corlib/System.IO/EndOfStreamException.cs +++ /dev/null @@ -1,68 +0,0 @@ -// -// System.IO.EndOfStreamException.cs -// -// Author: -// Duncan Mak (duncan@ximian.com) -// -// 2002 (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System; -using System.Globalization; -using System.IO; -using System.Runtime.Serialization; -using System.Runtime.InteropServices; - -namespace System.IO -{ - [Serializable] - [ComVisible (true)] - public class EndOfStreamException : IOException - { - // Constructors - public EndOfStreamException () - : base (Locale.GetText ("Failed to read past end of stream.")) - { - } - - public EndOfStreamException (string message) - : base (message) - { - } - - protected EndOfStreamException (SerializationInfo info, - StreamingContext context) - : base (info, context) - { - } - - public EndOfStreamException (string message, Exception innerException) - :base (message, innerException) - { - } - - } -} diff --git a/mcs/class/corlib/System.IO/FileLoadException.cs b/mcs/class/corlib/System.IO/FileLoadException.cs deleted file mode 100644 index e978bac6499..00000000000 --- a/mcs/class/corlib/System.IO/FileLoadException.cs +++ /dev/null @@ -1,139 +0,0 @@ -// -// System.IO.FileLoadException.cs -// -// Author: -// Paolo Molaro (lupus@ximian.com) -// Duncan Mak (duncan@ximian.com) -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Globalization; -using System.Runtime.Serialization; -using System.Security; -using System.Security.Permissions; -using System.Text; -using System.Runtime.InteropServices; - -namespace System.IO { - - [Serializable] - [ComVisible (true)] - public class FileLoadException : IOException { - - // Fields - const int Result = unchecked ((int)0x80070002); - string msg; - string fileName; - string fusionLog; - - // Constructors - public FileLoadException () - : base (Locale.GetText ("I/O Error")) - { - HResult = Result; - msg = Locale.GetText ("I/O Error"); - } - - public FileLoadException (string message) - : base (message) - { - HResult = Result; - msg = message; - } - - public FileLoadException (string message, string fileName) - : base (message) - { - HResult = Result; - this.msg = message; - this.fileName = fileName; - } - - public FileLoadException (string message, Exception inner) - : base (message, inner) - { - HResult = Result; - msg = message; - } - - public FileLoadException (string message, string fileName, Exception inner) - : base (message, inner) - { - HResult = Result; - this.msg = message; - this.fileName = fileName; - } - - protected FileLoadException (SerializationInfo info, StreamingContext context) - { - fileName = info.GetString ("FileLoad_FileName"); - fusionLog = info.GetString ("FileLoad_FusionLog"); - } - - // Properties - public override string Message { - get { return msg; } - } - - public string FileName - { - get { return fileName; } - } - - public string FusionLog { - // note: MS runtime throws a SecurityException when the Exception is created - // but a FileLoadException once the exception as been thrown. Mono always - // throw a SecurityException in both case (anyway fusionLog is currently empty) - [SecurityPermission (SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)] - get { return fusionLog; } - } - - // Methods - public override void GetObjectData (SerializationInfo info, StreamingContext context) - { - base.GetObjectData (info, context); - info.AddValue ("FileLoad_FileName", fileName); - info.AddValue ("FileLoad_FusionLog", fusionLog); - } - - public override string ToString () - { - StringBuilder sb = new StringBuilder (GetType ().FullName); - sb.AppendFormat (": {0}", msg); - - if (fileName != null) - sb.AppendFormat (" : {0}", fileName); - - if (this.InnerException != null) - sb.AppendFormat (" ----> {0}", InnerException); - - if (this.StackTrace != null) { - sb.Append (Environment.NewLine); - sb.Append (StackTrace); - } - - return sb.ToString (); - } - } -} diff --git a/mcs/class/corlib/System.IO/FileNotFoundException.cs b/mcs/class/corlib/System.IO/FileNotFoundException.cs deleted file mode 100644 index 0f12284110c..00000000000 --- a/mcs/class/corlib/System.IO/FileNotFoundException.cs +++ /dev/null @@ -1,144 +0,0 @@ -// -// System.IO.FileNotFoundException.cs -// -// Author: -// Paolo Molaro (lupus@ximian.com) -// Duncan Mak (duncan@ximian.com) -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Globalization; -using System.Runtime.Serialization; -using System.Security.Permissions; -using System.Text; -using System.Runtime.InteropServices; - -namespace System.IO { - - [Serializable] - [ComVisible (true)] - public class FileNotFoundException : IOException { - - const int Result = unchecked ((int)0x80131621); - - private string fileName; - private string fusionLog; - - // Constructors - public FileNotFoundException () - : base (Locale.GetText ("Unable to find the specified file.")) - { - HResult = Result; - } - - public FileNotFoundException (string message) - : base (message) - { - HResult = Result; - } - - public FileNotFoundException (string message, Exception innerException) - : base (message, innerException) - { - HResult = Result; - } - - public FileNotFoundException (string message, string fileName) - : base (message) - { - HResult = Result; - this.fileName = fileName; - } - - public FileNotFoundException (string message, string fileName, Exception innerException) - : base (message, innerException) - { - HResult = Result; - this.fileName = fileName; - } - - protected FileNotFoundException (SerializationInfo info, StreamingContext context) - : base (info, context) - { - fileName = info.GetString ("FileNotFound_FileName"); - fusionLog = info.GetString ("FileNotFound_FusionLog"); - } - - public string FileName - { - get { return fileName; } - } - - public string FusionLog { - // note: MS runtime throws a SecurityException when the Exception is created - // but a FileLoadException once the exception as been thrown. Mono always - // throw a SecurityException in both case (anyway fusionLog is currently empty) - [SecurityPermission (SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)] - get { return fusionLog; } - } - - public override string Message { - get { - if (base.message == null) { - if (fileName != null) { - string message = string.Format ( - "Could not load file or assembly '{0}' or one of" - + " its dependencies. The system cannot find the" - + " file specified.", fileName); - return message; - } - } - return base.message; - } - } - - public override void GetObjectData (SerializationInfo info, StreamingContext context) - { - base.GetObjectData (info, context); - info.AddValue ("FileNotFound_FileName", fileName); - info.AddValue ("FileNotFound_FusionLog", fusionLog); - } - - public override string ToString () - { - StringBuilder sb = new StringBuilder (GetType ().FullName); - sb.AppendFormat (": {0}", Message); - - if (fileName != null && fileName.Length > 0) { - sb.Append (Environment.NewLine); - sb.AppendFormat ("File name: '{0}'", fileName); - } - - if (this.InnerException != null) - sb.AppendFormat (" ---> {0}", InnerException); - - if (this.StackTrace != null) { - sb.Append (Environment.NewLine); - sb.Append (StackTrace); - } - - return sb.ToString (); - } - } -} diff --git a/mcs/class/corlib/System.IO/FileStream.cs b/mcs/class/corlib/System.IO/FileStream.cs index 1cc5364dfd5..610247d2e08 100644 --- a/mcs/class/corlib/System.IO/FileStream.cs +++ b/mcs/class/corlib/System.IO/FileStream.cs @@ -988,7 +988,7 @@ namespace System.IO if (count > 0) { // Use the fastest method, all range checks has been done - Buffer.BlockCopyInternal (buf, buf_offset, dest, dest_offset, count); + Buffer.InternalBlockCopy (buf, buf_offset, dest, dest_offset, count); buf_offset += count; } diff --git a/mcs/class/corlib/System.IO/IOException.cs b/mcs/class/corlib/System.IO/IOException.cs deleted file mode 100644 index e4c2deff921..00000000000 --- a/mcs/class/corlib/System.IO/IOException.cs +++ /dev/null @@ -1,68 +0,0 @@ -// -// System.IO.IOException.cs -// -// Author: -// Paolo Molaro (lupus@ximian.com) -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.Serialization; -using System.Runtime.InteropServices; - -namespace System.IO { - [Serializable] - [ComVisible (true)] - public class IOException : SystemException { - - // Constructors - public IOException () - : base ("I/O Error") - { - } - - public IOException (string message) - : base (message) - { - } - - public IOException (string message, Exception innerException) - : base (message, innerException) - { - } - - protected IOException (SerializationInfo info, StreamingContext context) - : base (info, context) - { - } - - public IOException (string message, int hresult) - : base (message) - { - this.HResult = hresult; - } - } -} diff --git a/mcs/class/corlib/System.IO/PathTooLongException.cs b/mcs/class/corlib/System.IO/PathTooLongException.cs deleted file mode 100644 index a856ea83c29..00000000000 --- a/mcs/class/corlib/System.IO/PathTooLongException.cs +++ /dev/null @@ -1,68 +0,0 @@ -// -// System.IO.PathTooLongException.cs -// -// Author: -// Duncan Mak (duncan@ximian.com) -// -// 2002 (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System; -using System.Globalization; -using System.IO; -using System.Runtime.Serialization; -using System.Runtime.InteropServices; - -namespace System.IO -{ - [Serializable] - [ComVisible (true)] - public class PathTooLongException : IOException - { - // Constructors - public PathTooLongException () - : base (Locale.GetText ("Pathname is longer than the maximum length")) - { - } - - public PathTooLongException (string message) - : base (message) - { - } - - protected PathTooLongException (SerializationInfo info, - StreamingContext context) - : base (info, context) - { - } - - public PathTooLongException (string message, Exception innerException) - :base (message, innerException) - { - } - - } -} diff --git a/mcs/class/corlib/System.Runtime.Remoting.Contexts/Context.cs b/mcs/class/corlib/System.Runtime.Remoting.Contexts/Context.cs index 3dcdce4733e..7b8c0dfd920 100644 --- a/mcs/class/corlib/System.Runtime.Remoting.Contexts/Context.cs +++ b/mcs/class/corlib/System.Runtime.Remoting.Contexts/Context.cs @@ -150,7 +150,13 @@ namespace System.Runtime.Remoting.Contexts { return rp.ObjectIdentity.ClientDynamicProperties; } else + { +#if FEATURE_REMOTING return obj.ObjectIdentity.ServerDynamicProperties; +#else + throw new NotSupportedException (); +#endif + } } else if (ctx != null && obj == null) { diff --git a/mcs/class/corlib/System.Runtime.Remoting/TypeInfo.cs b/mcs/class/corlib/System.Runtime.Remoting/TypeInfo.cs index 59f2c8bbd8e..06f54b12ceb 100644 --- a/mcs/class/corlib/System.Runtime.Remoting/TypeInfo.cs +++ b/mcs/class/corlib/System.Runtime.Remoting/TypeInfo.cs @@ -56,7 +56,7 @@ namespace System.Runtime.Remoting int baseCount = 0; Type baseType = type.BaseType; - while (baseType != typeof (MarshalByRefObject) && baseType != typeof(object)) + while (baseType != typeof (MarshalByRefObject) && baseType != null) { baseType = baseType.BaseType; baseCount++; diff --git a/mcs/class/corlib/System/Action.cs b/mcs/class/corlib/System/Action.cs deleted file mode 100644 index 438f7fc31d2..00000000000 --- a/mcs/class/corlib/System/Action.cs +++ /dev/null @@ -1,68 +0,0 @@ -// -// Action.cs -// -// Authors: -// Ben Maurer (bmaurer@ximian.com) -// Marek Safar (marek.safar@gmail.com) -// -// Copyright (C) 2004, 2010 Novell -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.CompilerServices; - -namespace System -{ -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate void Action (); - - public delegate void Action (T obj); - -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate void Action (T1 arg1, T2 arg2); - -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate void Action (T1 arg1, T2 arg2, T3 arg3); - -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate void Action (T1 arg1, T2 arg2, T3 arg3, T4 arg4); - - public delegate void Action (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5); - public delegate void Action (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6); - public delegate void Action (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7); - public delegate void Action (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8); -} diff --git a/mcs/class/corlib/System/ApplicationId.cs b/mcs/class/corlib/System/ApplicationId.cs deleted file mode 100644 index b8675911fc3..00000000000 --- a/mcs/class/corlib/System/ApplicationId.cs +++ /dev/null @@ -1,138 +0,0 @@ -// -// System.ApplicationId class -// -// Author: -// Sebastien Pouliot -// -// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.InteropServices; -using System.Text; - -namespace System { - - [Serializable] - [ComVisible (true)] - public sealed class ApplicationId { - - private byte[] _token; - private string _name; - private Version _version; - private string _proc; - private string _culture; - - public ApplicationId (byte[] publicKeyToken, string name, Version version, string processorArchitecture, string culture) - { - if (publicKeyToken == null) - throw new ArgumentNullException ("publicKeyToken"); - if (name == null) - throw new ArgumentNullException ("name"); - if (version == null) - throw new ArgumentNullException ("version"); - - _token = (byte[]) publicKeyToken.Clone (); - _name = name; - _version = version; - _proc = processorArchitecture; - _culture = culture; - } - - // properties - - public string Culture { - get { return _culture; } - } - - public string Name { - get { return _name; } - } - - public string ProcessorArchitecture { - get { return _proc; } - } - - public byte[] PublicKeyToken { - get { return (byte[]) _token.Clone (); } - } - - public Version Version { - get { return _version; } - } - - // methods - - public ApplicationId Copy () - { - return new ApplicationId (_token, _name, _version, _proc, _culture); - } - - public override bool Equals (object o) - { - if (o == null) - return false; - ApplicationId appid = (o as ApplicationId); - if (appid == null) - return false; - if (_name != appid._name) - return false; - if (_proc != appid._proc) - return false; - if (_culture != appid._culture) - return false; - if (!_version.Equals (appid._version)) - return false; - if (_token.Length != appid._token.Length) - return false; - for (int i=0; i < _token.Length; i++) - if (_token [i] != appid._token [i]) - return false; - return true; - } - - public override int GetHashCode () - { - int code = _name.GetHashCode () ^ _version.GetHashCode (); - for (int i=0; i < _token.Length; i++) - code ^= _token [i]; - // ProcessorArchitecture and Culture aren't part of the hash code - // Confirmed by Microsoft in FDBK13339 - return code; - } - - public override string ToString () - { - StringBuilder sb = new StringBuilder (); - sb.Append (_name); - if (_culture != null) - sb.AppendFormat (", culture=\"{0}\"", _culture); - sb.AppendFormat (", version=\"{0}\", publicKeyToken=\"", _version); - for (int i=0; i < _token.Length; i++) - sb.Append (_token [i].ToString ("X2")); - if (_proc != null) - sb.AppendFormat ("\", processorArchitecture =\"{0}\"", _proc); - else - sb.Append ("\""); - return sb.ToString (); - } - } -} diff --git a/mcs/class/corlib/System/Array.cs b/mcs/class/corlib/System/Array.cs index b4afbe2eb84..9c263400572 100644 --- a/mcs/class/corlib/System/Array.cs +++ b/mcs/class/corlib/System/Array.cs @@ -3045,7 +3045,7 @@ namespace System if (count < 0 || startIndex < array.GetLowerBound (0) || startIndex - 1 > array.GetUpperBound (0) - count) throw new ArgumentOutOfRangeException (); - return EqualityComparer.Default.IndexOf (array, value, startIndex, startIndex + count); + return EqualityComparer.Default.IndexOf (array, value, startIndex, count); } public static int LastIndexOf (T [] array, T value) diff --git a/mcs/class/corlib/System/AsyncCallback.cs b/mcs/class/corlib/System/AsyncCallback.cs deleted file mode 100644 index 3f2bf733cb6..00000000000 --- a/mcs/class/corlib/System/AsyncCallback.cs +++ /dev/null @@ -1,38 +0,0 @@ -// -// System.AsyncCallback.cs -// -// Author: -// Paolo Molaro (lupus@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System -{ - [System.Runtime.InteropServices.ComVisible (true)] - [Serializable] - public delegate void AsyncCallback (IAsyncResult ar); -} diff --git a/mcs/class/corlib/System/AttributeTargets.cs b/mcs/class/corlib/System/AttributeTargets.cs deleted file mode 100644 index 3a023d38b22..00000000000 --- a/mcs/class/corlib/System/AttributeTargets.cs +++ /dev/null @@ -1,63 +0,0 @@ -// -// System.AttributeTargets.cs -// -// This code was automatically generated from -// ECMA CLI XML Library Specification. -// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)] -// Created: Fri, 7 Sep 2001 16:31:48 UTC -// Source file: AllTypes.xml -// URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.InteropServices; - -namespace System { - - [ComVisible (true)] - [Serializable] - [Flags] - public enum AttributeTargets - { - Assembly = 0x00000001, - Module = 0x00000002, - Class = 0x00000004, - Struct = 0x00000008, - Enum = 0x00000010, - Constructor = 0x00000020, - Method = 0x00000040, - Property = 0x00000080, - Field = 0x00000100, - Event = 0x00000200, - Interface = 0x00000400, - Parameter = 0x00000800, - Delegate = 0x00001000, - ReturnValue = 0x00002000, - - GenericParameter = 0x00004000, - All = Assembly | Module | Class | Struct | Enum | Constructor | - Method | Property | Field | Event | Interface | Parameter | Delegate | ReturnValue | GenericParameter - } -} - diff --git a/mcs/class/corlib/System/BadImageFormatException.cs b/mcs/class/corlib/System/BadImageFormatException.cs deleted file mode 100644 index a6db337bb4e..00000000000 --- a/mcs/class/corlib/System/BadImageFormatException.cs +++ /dev/null @@ -1,147 +0,0 @@ -// -// System.BadImageFormatException.cs -// -// Authors: -// Sean MacIsaac (macisaac@ximian.com) -// Duncan Mak (duncan@ximian.com) -// Andreas Nahr (ClassDevelopment@A-SoftTech.com) -// -// (C) 2001 Ximian, Inc. -// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Globalization; -using System.Runtime.Serialization; -using System.Security.Permissions; -using System.Runtime.InteropServices; -using System.Text; - -namespace System -{ - [Serializable] - [ComVisible (true)] - public class BadImageFormatException : SystemException - { - const int Result = unchecked ((int)0x8007000B); - - // Fields - private string fileName; - private string fusionLog; - - // Constructors - public BadImageFormatException () - : base (Locale.GetText ("Format of the executable (.exe) or library (.dll) is invalid.")) - { - HResult = Result; - } - - public BadImageFormatException (string message) - : base (message) - { - HResult = Result; - } - - protected BadImageFormatException (SerializationInfo info, StreamingContext context) - : base (info, context) - { - fileName = info.GetString ("BadImageFormat_FileName"); - fusionLog = info.GetString ("BadImageFormat_FusionLog"); - } - - public BadImageFormatException (string message, Exception inner) - : base (message, inner) - { - HResult = Result; - } - - public BadImageFormatException (string message, string fileName) - : base (message) - { - this.fileName = fileName; - HResult = Result; - } - - public BadImageFormatException (string message, string fileName, Exception inner) - : base (message, inner) - { - this.fileName = fileName; - HResult = Result; - } - - // Properties - public override string Message - { - get { - if (base.message == null) { - return string.Format ( - "Could not load file or assembly '{0}' or one of" - + " its dependencies. An attempt was made to load" - + " a program with an incorrect format.", fileName); - } - return base.Message; - } - } - - public string FileName - { - get { return fileName; } - } - - [MonoTODO ("Probably not entirely correct. fusionLog needs to be set somehow (we are probably missing internal constuctor)")] - public string FusionLog { - // note: MS runtime throws a SecurityException when the Exception is created - // but a FileLoadException once the exception as been thrown. Mono always - // throw a SecurityException in both case (anyway fusionLog is currently empty) - [SecurityPermission (SecurityAction.Demand, ControlEvidence=true, ControlPolicy=true)] - get { return fusionLog; } - } - - // Methods - public override void GetObjectData (SerializationInfo info, StreamingContext context) - { - base.GetObjectData (info, context); - info.AddValue ("BadImageFormat_FileName", fileName); - info.AddValue ("BadImageFormat_FusionLog", fusionLog); - } - - public override string ToString () - { - StringBuilder sb = new StringBuilder (GetType ().FullName); - sb.AppendFormat (": {0}", Message); - - if (fileName != null && fileName.Length > 0) { - sb.Append (Environment.NewLine); - sb.AppendFormat ("File name: '{0}'", fileName); - } - - if (this.InnerException != null) - sb.AppendFormat (" ---> {0}", InnerException); - - if (this.StackTrace != null) { - sb.Append (Environment.NewLine); - sb.Append (StackTrace); - } - - return sb.ToString (); - } - } -} diff --git a/mcs/class/corlib/System/Buffer.cs b/mcs/class/corlib/System/Buffer.cs deleted file mode 100644 index 3f4960d7b79..00000000000 --- a/mcs/class/corlib/System/Buffer.cs +++ /dev/null @@ -1,264 +0,0 @@ -// -// System.Buffer.cs -// -// Authors: -// Paolo Molaro (lupus@ximian.com) -// Dan Lewis (dihlewis@yahoo.co.uk) -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Diagnostics.Contracts; - -namespace System { - [ComVisible (true)] - public static class Buffer { - - public static int ByteLength (Array array) - { - // note: the other methods in this class also use ByteLength to test for - // null and non-primitive arguments as a side-effect. - - if (array == null) - throw new ArgumentNullException ("array"); - - int length = ByteLengthInternal (array); - if (length < 0) - throw new ArgumentException (Locale.GetText ("Object must be an array of primitives.")); - - return length; - } - - public static byte GetByte (Array array, int index) - { - if (index < 0 || index >= ByteLength (array)) - throw new ArgumentOutOfRangeException ("index", Locale.GetText( - "Value must be non-negative and less than the size of the collection.")); - - return GetByteInternal (array, index); - } - - public static void SetByte (Array array, int index, byte value) - { - if (index < 0 || index >= ByteLength (array)) - throw new ArgumentOutOfRangeException ("index", Locale.GetText( - "Value must be non-negative and less than the size of the collection.")); - - SetByteInternal (array, index, value); - } - - public static void BlockCopy (Array src, int srcOffset, Array dst, int dstOffset, int count) - { - if (src == null) - throw new ArgumentNullException ("src"); - - if (dst == null) - throw new ArgumentNullException ("dst"); - - if (srcOffset < 0) - throw new ArgumentOutOfRangeException ("srcOffset", Locale.GetText( - "Non-negative number required.")); - - if (dstOffset < 0) - throw new ArgumentOutOfRangeException ("dstOffset", Locale.GetText ( - "Non-negative number required.")); - - if (count < 0) - throw new ArgumentOutOfRangeException ("count", Locale.GetText ( - "Non-negative number required.")); - - // We do the checks in unmanaged code for performance reasons - bool res = BlockCopyInternal (src, srcOffset, dst, dstOffset, count); - if (!res) { - // watch for integer overflow - if ((srcOffset > ByteLength (src) - count) || (dstOffset > ByteLength (dst) - count)) - throw new ArgumentException (Locale.GetText ( - "Offset and length were out of bounds for the array or count is greater than " + - "the number of elements from index to the end of the source collection.")); - } - } - - // private - [MethodImplAttribute (MethodImplOptions.InternalCall)] - private extern static int ByteLengthInternal (Array array); - - [MethodImplAttribute (MethodImplOptions.InternalCall)] - private extern static byte GetByteInternal (Array array, int index); - - [MethodImplAttribute (MethodImplOptions.InternalCall)] - private extern static void SetByteInternal (Array array, int index, int value); - - [MethodImplAttribute (MethodImplOptions.InternalCall)] - internal extern static bool BlockCopyInternal (Array src, int src_offset, Array dest, int dest_offset, int count); - - internal static bool InternalBlockCopy (Array src, int src_offset, Array dest, int dest_offset, int count) - { - return BlockCopyInternal (src, src_offset, dest, dest_offset, count); - } - - internal unsafe static void ZeroMemory (byte* src, long len) - { - while(len-- > 0) - *(src + len) = 0; - } - - internal unsafe static void Memcpy (byte* pDest, int destIndex, byte[] src, int srcIndex, int len) - { - Contract.Assert( (srcIndex >= 0) && (destIndex >= 0) && (len >= 0), "Index and length must be non-negative!"); - Contract.Assert(src.Length - srcIndex >= len, "not enough bytes in src"); - // If dest has 0 elements, the fixed statement will throw an - // IndexOutOfRangeException. Special-case 0-byte copies. - if (len==0) - return; - fixed(byte* pSrc = src) { - Memcpy(pDest + destIndex, pSrc + srcIndex, len); - } - } - - internal unsafe static void Memcpy(byte[] dest, int destIndex, byte* src, int srcIndex, int len) { - Contract.Assert( (srcIndex >= 0) && (destIndex >= 0) && (len >= 0), "Index and length must be non-negative!"); - Contract.Assert(dest.Length - destIndex >= len, "not enough bytes in dest"); - // If dest has 0 elements, the fixed statement will throw an - // IndexOutOfRangeException. Special-case 0-byte copies. - if (len==0) - return; - fixed(byte* pDest = dest) { - Memcpy(pDest + destIndex, src + srcIndex, len); - } - } - - internal static unsafe void memcpy4 (byte *dest, byte *src, int size) { - /*while (size >= 32) { - // using long is better than int and slower than double - // FIXME: enable this only on correct alignment or on platforms - // that can tolerate unaligned reads/writes of doubles - ((double*)dest) [0] = ((double*)src) [0]; - ((double*)dest) [1] = ((double*)src) [1]; - ((double*)dest) [2] = ((double*)src) [2]; - ((double*)dest) [3] = ((double*)src) [3]; - dest += 32; - src += 32; - size -= 32; - }*/ - while (size >= 16) { - ((int*)dest) [0] = ((int*)src) [0]; - ((int*)dest) [1] = ((int*)src) [1]; - ((int*)dest) [2] = ((int*)src) [2]; - ((int*)dest) [3] = ((int*)src) [3]; - dest += 16; - src += 16; - size -= 16; - } - while (size >= 4) { - ((int*)dest) [0] = ((int*)src) [0]; - dest += 4; - src += 4; - size -= 4; - } - while (size > 0) { - ((byte*)dest) [0] = ((byte*)src) [0]; - dest += 1; - src += 1; - --size; - } - } - internal static unsafe void memcpy2 (byte *dest, byte *src, int size) { - while (size >= 8) { - ((short*)dest) [0] = ((short*)src) [0]; - ((short*)dest) [1] = ((short*)src) [1]; - ((short*)dest) [2] = ((short*)src) [2]; - ((short*)dest) [3] = ((short*)src) [3]; - dest += 8; - src += 8; - size -= 8; - } - while (size >= 2) { - ((short*)dest) [0] = ((short*)src) [0]; - dest += 2; - src += 2; - size -= 2; - } - if (size > 0) - ((byte*)dest) [0] = ((byte*)src) [0]; - } - static unsafe void memcpy1 (byte *dest, byte *src, int size) { - while (size >= 8) { - ((byte*)dest) [0] = ((byte*)src) [0]; - ((byte*)dest) [1] = ((byte*)src) [1]; - ((byte*)dest) [2] = ((byte*)src) [2]; - ((byte*)dest) [3] = ((byte*)src) [3]; - ((byte*)dest) [4] = ((byte*)src) [4]; - ((byte*)dest) [5] = ((byte*)src) [5]; - ((byte*)dest) [6] = ((byte*)src) [6]; - ((byte*)dest) [7] = ((byte*)src) [7]; - dest += 8; - src += 8; - size -= 8; - } - while (size >= 2) { - ((byte*)dest) [0] = ((byte*)src) [0]; - ((byte*)dest) [1] = ((byte*)src) [1]; - dest += 2; - src += 2; - size -= 2; - } - if (size > 0) - ((byte*)dest) [0] = ((byte*)src) [0]; - } - - internal static unsafe void Memcpy (byte *dest, byte *src, int size) { - // FIXME: if pointers are not aligned, try to align them - // so a faster routine can be used. Handle the case where - // the pointers can't be reduced to have the same alignment - // (just ignore the issue on x86?) - if ((((int)dest | (int)src) & 3) != 0) { - if (((int)dest & 1) != 0 && ((int)src & 1) != 0 && size >= 1) { - dest [0] = src [0]; - ++dest; - ++src; - --size; - } - if (((int)dest & 2) != 0 && ((int)src & 2) != 0 && size >= 2) { - ((short*)dest) [0] = ((short*)src) [0]; - dest += 2; - src += 2; - size -= 2; - } - if ((((int)dest | (int)src) & 1) != 0) { - memcpy1 (dest, src, size); - return; - } - if ((((int)dest | (int)src) & 2) != 0) { - memcpy2 (dest, src, size); - return; - } - } - memcpy4 (dest, src, size); - } - } -} diff --git a/mcs/class/corlib/System/CLSCompliantAttribute.cs b/mcs/class/corlib/System/CLSCompliantAttribute.cs deleted file mode 100644 index 37d317daa52..00000000000 --- a/mcs/class/corlib/System/CLSCompliantAttribute.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// System.CLSCompliantAttribute.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - ///

- /// Used to indicate if an element of a program is CLS compliant. - /// - [AttributeUsage (AttributeTargets.All)] - [Serializable] - [ComVisible (true)] - public sealed class CLSCompliantAttribute : Attribute - { - bool is_compliant; - - public CLSCompliantAttribute (bool isCompliant) - { - this.is_compliant = isCompliant; - } - - public bool IsCompliant { - get { - return is_compliant; - } - } - } -} diff --git a/mcs/class/corlib/System/Comparison.cs b/mcs/class/corlib/System/Comparison.cs deleted file mode 100644 index f15ba11b37c..00000000000 --- a/mcs/class/corlib/System/Comparison.cs +++ /dev/null @@ -1,34 +0,0 @@ -// -// Comparison.cs -// -// Authors: -// Ben Maurer (bmaurer@ximian.com) -// Marek Safar (marek.safar@gmail.com) -// -// Copyright (C) 2004 Novell -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System -{ - public delegate int Comparison (T x, T y); -} - diff --git a/mcs/class/corlib/System/ConsoleCancelEventArgs.cs b/mcs/class/corlib/System/ConsoleCancelEventArgs.cs deleted file mode 100644 index 8684879fd16..00000000000 --- a/mcs/class/corlib/System/ConsoleCancelEventArgs.cs +++ /dev/null @@ -1,52 +0,0 @@ -// -// System.ConsoleCancelEventArgs -// -// Authors: -// Gonzalo Paniagua Javier (gonzalo@ximian.com) -// -// (C) 2005 Novell, Inc (http://www.novell.com) -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System { - [Serializable] - public sealed class ConsoleCancelEventArgs : EventArgs { - bool cancel; - ConsoleSpecialKey specialKey; - - internal ConsoleCancelEventArgs (ConsoleSpecialKey key) - { - specialKey = key; - } - - public bool Cancel { - get { return cancel; } - set { cancel = value; } - } - - public ConsoleSpecialKey SpecialKey { - get { return specialKey; } - } - } -} - diff --git a/mcs/class/corlib/System/ConsoleCancelEventHandler.cs b/mcs/class/corlib/System/ConsoleCancelEventHandler.cs deleted file mode 100644 index 027072f7054..00000000000 --- a/mcs/class/corlib/System/ConsoleCancelEventHandler.cs +++ /dev/null @@ -1,33 +0,0 @@ -// -// System.ConsoleCancelEventHandler -// -// Authors: -// Gonzalo Paniagua Javier (gonzalo@ximian.com) -// -// (C) 2005 Novell, Inc (http://www.novell.com) -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -namespace System { - public delegate void ConsoleCancelEventHandler (object sender, ConsoleCancelEventArgs e); -} - diff --git a/mcs/class/corlib/System/ConsoleColor.cs b/mcs/class/corlib/System/ConsoleColor.cs deleted file mode 100644 index e148296f694..00000000000 --- a/mcs/class/corlib/System/ConsoleColor.cs +++ /dev/null @@ -1,51 +0,0 @@ -// -// System.ConsoleColor -// -// Authors: -// Gonzalo Paniagua Javier (gonzalo@ximian.com) -// -// (C) 2005 Novell, Inc (http://www.novell.com) -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -namespace System { - [Serializable] - public enum ConsoleColor { - Black, - DarkBlue, - DarkGreen, - DarkCyan, - DarkRed, - DarkMagenta, - DarkYellow, - Gray, - DarkGray, - Blue, - Green, - Cyan, - Red, - Magenta, - Yellow, - White - } -} - diff --git a/mcs/class/corlib/System/ConsoleKey.cs b/mcs/class/corlib/System/ConsoleKey.cs deleted file mode 100644 index 78660b594a0..00000000000 --- a/mcs/class/corlib/System/ConsoleKey.cs +++ /dev/null @@ -1,180 +0,0 @@ -// -// System.ConsoleKey -// -// Authors: -// Gonzalo Paniagua Javier (gonzalo@ximian.com) -// -// (C) 2005 Novell, Inc (http://www.novell.com) -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -namespace System { - - [Serializable] - public enum ConsoleKey { - Backspace = 8, - Tab = 9, - Clear = 12, - Enter = 13, - Pause = 19, - Escape = 27, - Spacebar = 32, - PageUp = 33, - PageDown = 34, - End = 35, - Home = 36, - LeftArrow = 37, - UpArrow = 38, - RightArrow = 39, - DownArrow = 40, - Select = 41, - Print = 42, - Execute = 43, - PrintScreen = 44, - Insert = 45, - Delete = 46, - Help = 47, - D0 = 48, - D1 = 49, - D2 = 50, - D3 = 51, - D4 = 52, - D5 = 53, - D6 = 54, - D7 = 55, - D8 = 56, - D9 = 57, - A = 65, - B = 66, - C = 67, - D = 68, - E = 69, - F = 70, - G = 71, - H = 72, - I = 73, - J = 74, - K = 75, - L = 76, - M = 77, - N = 78, - O = 79, - P = 80, - Q = 81, - R = 82, - S = 83, - T = 84, - U = 85, - V = 86, - W = 87, - X = 88, - Y = 89, - Z = 90, - LeftWindows = 91, - RightWindows = 92, - Applications = 93, - Sleep = 95, - NumPad0 = 96, - NumPad1 = 97, - NumPad2 = 98, - NumPad3 = 99, - NumPad4 = 100, - NumPad5 = 101, - NumPad6 = 102, - NumPad7 = 103, - NumPad8 = 104, - NumPad9 = 105, - Multiply = 106, - Add = 107, - Separator = 108, - Subtract = 109, - Decimal = 110, - Divide = 111, - F1 = 112, - F2 = 113, - F3 = 114, - F4 = 115, - F5 = 116, - F6 = 117, - F7 = 118, - F8 = 119, - F9 = 120, - F10 = 121, - F11 = 122, - F12 = 123, - F13 = 124, - F14 = 125, - F15 = 126, - F16 = 127, - F17 = 128, - F18 = 129, - F19 = 130, - F20 = 131, - F21 = 132, - F22 = 133, - F23 = 134, - F24 = 135, - BrowserBack = 166, - BrowserForward = 167, - BrowserRefresh = 168, - BrowserStop = 169, - BrowserSearch = 170, - BrowserFavorites = 171, - BrowserHome = 172, - VolumeMute = 173, - VolumeDown = 174, - VolumeUp = 175, - MediaNext = 176, - MediaPrevious = 177, - MediaStop = 178, - MediaPlay = 179, - LaunchMail = 180, - LaunchMediaSelect = 181, - LaunchApp1 = 182, - LaunchApp2 = 183, - Oem1 = 186, - OemPlus = 187, - OemComma = 188, - OemMinus = 189, - OemPeriod = 190, - Oem2 = 191, - Oem3 = 192, - Oem4 = 219, - Oem5 = 220, - Oem6 = 221, - Oem7 = 222, - Oem8 = 223, - Oem102 = 226, - Process = 229, - Packet = 231, - Attention = 246, - CrSel = 247, - ExSel = 248, - EraseEndOfFile = 249, - Play = 250, - Zoom = 251, - NoName = 252, - Pa1 = 253, - OemClear = 254, - } -} - diff --git a/mcs/class/corlib/System/ConsoleKeyInfo.cs b/mcs/class/corlib/System/ConsoleKeyInfo.cs deleted file mode 100644 index 961cb949d62..00000000000 --- a/mcs/class/corlib/System/ConsoleKeyInfo.cs +++ /dev/null @@ -1,113 +0,0 @@ -// -// System.ConsoleKeyInfo.cs -// -// Authors: -// Gonzalo Paniagua Javier (gonzalo@ximian.com) -// -// (C) 2005 Novell, Inc (http://www.novell.com) -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -namespace System { - [Serializable] - public struct ConsoleKeyInfo { - internal static ConsoleKeyInfo Empty = new ConsoleKeyInfo ('\0', 0, false, false, false); - ConsoleKey _key; - char _keyChar; - ConsoleModifiers _mods; - - public ConsoleKeyInfo (char keyChar, ConsoleKey key, bool shift, bool alt, bool control) - { - _key = key; - _keyChar = keyChar; - _mods = 0; - SetModifiers (shift, alt, control); - } - - internal ConsoleKeyInfo (ConsoleKeyInfo other) - { - _key = other._key; - _keyChar = other._keyChar; - _mods = other._mods; - } - - internal void SetKey (ConsoleKey key) - { - _key = key; - } - - internal void SetKeyChar (char keyChar) - { - _keyChar = keyChar; - } - - internal void SetModifiers (bool shift, bool alt, bool control) - { - _mods = (shift) ? ConsoleModifiers.Shift : 0; - _mods |= (alt) ? ConsoleModifiers.Alt : 0; - _mods |= (control) ? ConsoleModifiers.Control : 0; - } - - public ConsoleKey Key - { - get { return _key; } - } - - public char KeyChar - { - get { return _keyChar; } - } - - public ConsoleModifiers Modifiers - { - get { return _mods; } - } - - public override bool Equals (object value) - { - if (!(value is ConsoleKeyInfo)) - return false; - - return Equals ((ConsoleKeyInfo) value); - } - - public static bool operator == (ConsoleKeyInfo a, ConsoleKeyInfo b) - { - return a.Equals (b); - } - - public static bool operator != (ConsoleKeyInfo a, ConsoleKeyInfo b) - { - return !a.Equals (b); - } - - public bool Equals (ConsoleKeyInfo obj) - { - return _key == obj._key && _keyChar == obj._keyChar && _mods == obj._mods; - } - - public override int GetHashCode () - { - return _key.GetHashCode () ^ _keyChar.GetHashCode () ^ _mods.GetHashCode (); - } - } -} diff --git a/mcs/class/corlib/System/ConsoleModifiers.cs b/mcs/class/corlib/System/ConsoleModifiers.cs deleted file mode 100644 index da716264af6..00000000000 --- a/mcs/class/corlib/System/ConsoleModifiers.cs +++ /dev/null @@ -1,39 +0,0 @@ -// -// System.ConsoleModifiers -// -// Authors: -// Gonzalo Paniagua Javier (gonzalo@ximian.com) -// -// (C) 2005 Novell, Inc (http://www.novell.com) -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -namespace System { - [Flags] - [Serializable] - public enum ConsoleModifiers { - Alt = 1, - Shift = 2, - Control = 4 - } -} - diff --git a/mcs/class/corlib/System/ConsoleSpecialKey.cs b/mcs/class/corlib/System/ConsoleSpecialKey.cs deleted file mode 100644 index 2d08ba4b854..00000000000 --- a/mcs/class/corlib/System/ConsoleSpecialKey.cs +++ /dev/null @@ -1,38 +0,0 @@ -// -// System.ConsoleSpecialKey -// -// Authors: -// Gonzalo Paniagua Javier (gonzalo@ximian.com) -// -// (C) 2005 Novell, Inc (http://www.novell.com) -// - -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -namespace System { - [Serializable] - public enum ConsoleSpecialKey { - ControlC, - ControlBreak - } -} - - diff --git a/mcs/class/corlib/System/ContextBoundObject.cs b/mcs/class/corlib/System/ContextBoundObject.cs deleted file mode 100644 index ca954d6d758..00000000000 --- a/mcs/class/corlib/System/ContextBoundObject.cs +++ /dev/null @@ -1,44 +0,0 @@ -// -// System.ContextBoundObject.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - [Serializable] - [ComVisible (true)] - public abstract class ContextBoundObject : MarshalByRefObject - { - protected ContextBoundObject () - { - } - } -} diff --git a/mcs/class/corlib/System/ContextStaticAttribute.cs b/mcs/class/corlib/System/ContextStaticAttribute.cs deleted file mode 100644 index 9593d24a2df..00000000000 --- a/mcs/class/corlib/System/ContextStaticAttribute.cs +++ /dev/null @@ -1,49 +0,0 @@ -// -// System.ContextStaticAttribute.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - /// - /// The ContextStatic attribute is used to flag fields as being unique - /// - [AttributeUsage (AttributeTargets.Field, Inherited=false)] - [Serializable] - [ComVisible (true)] - public class ContextStaticAttribute : Attribute - { - public ContextStaticAttribute () - : base () - { - } - } -} diff --git a/mcs/class/corlib/System/Converter.cs b/mcs/class/corlib/System/Converter.cs deleted file mode 100644 index 07e56188ea3..00000000000 --- a/mcs/class/corlib/System/Converter.cs +++ /dev/null @@ -1,33 +0,0 @@ -// -// Converter.cs -// -// Authors: -// Ben Maurer (bmaurer@ximian.com) -// Marek Safar (marek.safar@gmail.com) -// -// Copyright (C) 2004 Novell -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System -{ - public delegate TOutput Converter (TInput input); -} diff --git a/mcs/class/corlib/System/Environment.cs b/mcs/class/corlib/System/Environment.cs index ddbd37a5e27..fceac801220 100644 --- a/mcs/class/corlib/System/Environment.cs +++ b/mcs/class/corlib/System/Environment.cs @@ -57,7 +57,7 @@ namespace System { * of icalls, do not require an increment. */ #pragma warning disable 169 - private const int mono_corlib_version = 125; + private const int mono_corlib_version = 127; #pragma warning restore 169 [ComVisible (true)] diff --git a/mcs/class/corlib/System/EventArgs.cs b/mcs/class/corlib/System/EventArgs.cs deleted file mode 100644 index 6d903ec2cab..00000000000 --- a/mcs/class/corlib/System/EventArgs.cs +++ /dev/null @@ -1,46 +0,0 @@ -// -// System.EventArgs.cs -// -// Author: -// Michael Lambert (michaellambert@email.com) -// -// (C) 2001 Michael Lambert, All Rights Reserved -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - [Serializable] - [ComVisible (true)] - public class EventArgs - { - public static readonly EventArgs Empty = new EventArgs (); - - public EventArgs () - { - } - } -} diff --git a/mcs/class/corlib/System/EventHandler.cs b/mcs/class/corlib/System/EventHandler.cs deleted file mode 100644 index 4d6706799dd..00000000000 --- a/mcs/class/corlib/System/EventHandler.cs +++ /dev/null @@ -1,43 +0,0 @@ -// -// System.EventHandler.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// Marek Safar (marek.safar@gmail.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System { - - [Serializable] - public delegate void EventHandler (object sender, TEventArgs e) - ; - - [Serializable] - [System.Runtime.InteropServices.ComVisible (true)] - public delegate void EventHandler (object sender, EventArgs e); -} diff --git a/mcs/class/corlib/System/Exception.cs b/mcs/class/corlib/System/Exception.cs index 23e4469433b..87c0a8a5f8d 100644 --- a/mcs/class/corlib/System/Exception.cs +++ b/mcs/class/corlib/System/Exception.cs @@ -57,7 +57,7 @@ namespace System (vtable/MRGCTX) of the frames. */ IntPtr [] trace_ips; Exception inner_exception; - internal string message; + internal string _message; string help_link; string class_name; string stack_trace; @@ -80,7 +80,7 @@ namespace System public Exception (string message) { - this.message = message; + this._message = message; } protected Exception (SerializationInfo info, StreamingContext context) @@ -89,7 +89,7 @@ namespace System throw new ArgumentNullException ("info"); class_name = info.GetString ("ClassName"); - message = info.GetString ("Message"); + _message = info.GetString ("Message"); help_link = info.GetString ("HelpURL"); stack_trace = info.GetString ("StackTraceString"); _remoteStackTraceString = info.GetString ("RemoteStackTraceString"); @@ -108,7 +108,7 @@ namespace System public Exception (string message, Exception innerException) { inner_exception = innerException; - this.message = message; + this._message = message; } public Exception InnerException { @@ -132,7 +132,7 @@ namespace System internal void SetMessage (string s) { - message = s; + _message = s; } internal void SetStackTrace (string s) @@ -150,11 +150,11 @@ namespace System public virtual string Message { get { - if (message == null) - message = string.Format (Locale.GetText ("Exception of type '{0}' was thrown."), + if (_message == null) + _message = string.Format (Locale.GetText ("Exception of type '{0}' was thrown."), ClassName); - return message; + return _message; } } @@ -302,7 +302,7 @@ namespace System throw new ArgumentNullException ("info"); info.AddValue ("ClassName", ClassName); - info.AddValue ("Message", message); + info.AddValue ("Message", _message); info.AddValue ("InnerException", inner_exception); info.AddValue ("HelpURL", help_link); info.AddValue ("StackTraceString", StackTrace); diff --git a/mcs/class/corlib/System/FlagsAttribute.cs b/mcs/class/corlib/System/FlagsAttribute.cs deleted file mode 100644 index cab0eec6513..00000000000 --- a/mcs/class/corlib/System/FlagsAttribute.cs +++ /dev/null @@ -1,54 +0,0 @@ -// -// System.FlagsAttribute.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System { - - /// - /// The FlagsAttribute tags enumerations as bitfields. - /// - /// - /// - /// The FlagsAttribute can be used to tag an enumeration to be - /// a bit field. This will allow the compiler and visual tools - /// to treat the bits in an enumeration as a set of flags. - /// - - [AttributeUsage (AttributeTargets.Enum, Inherited=false)] - [Serializable] - [ComVisible (true)] - public class FlagsAttribute : Attribute { - - // No methods. - - } -} diff --git a/mcs/class/corlib/System/Funcs.cs b/mcs/class/corlib/System/Funcs.cs deleted file mode 100644 index df011e8cea8..00000000000 --- a/mcs/class/corlib/System/Funcs.cs +++ /dev/null @@ -1,71 +0,0 @@ -// -// System.Func.cs -// -// Authors: -// Alejandro Serrano "Serras" (trupill@yahoo.es) -// Marek Safar (marek.safar@gmail.com) -// - -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR TArg PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// - -using System.Runtime.CompilerServices; - -namespace System { - -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate TResult Func (); - -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate TResult Func (T arg); - -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate TResult Func (T1 arg1, T2 arg2); - -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate TResult Func (T1 arg1, T2 arg2, T3 arg3); - -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public delegate TResult Func (T1 arg1, T2 arg2, T3 arg3, T4 arg4); - - public delegate TResult Func (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5); - public delegate TResult Func (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6); - public delegate TResult Func (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7); - public delegate TResult Func (T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8); -} diff --git a/mcs/class/corlib/System/Guid.cs b/mcs/class/corlib/System/Guid.cs index be979f692bf..753855f7a77 100644 --- a/mcs/class/corlib/System/Guid.cs +++ b/mcs/class/corlib/System/Guid.cs @@ -30,7 +30,7 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -#if !MONOTOUCH +#if !(MONOTOUCH && FULL_AOT_RUNTIME) using System.Security.Cryptography; diff --git a/mcs/class/corlib/System/IAppDomainSetup.cs b/mcs/class/corlib/System/IAppDomainSetup.cs deleted file mode 100644 index c4e6a7a4fdc..00000000000 --- a/mcs/class/corlib/System/IAppDomainSetup.cs +++ /dev/null @@ -1,63 +0,0 @@ -// -// System.IAppDomainSetup.cs -// -// Author: -// Dietmar Maurer (dietmar@ximian.com) -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System; -using System.Runtime.InteropServices; - -namespace System { - - [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)] - [Guid ("27FFF232-A7A8-40DD-8D4A-734AD59FCD41")] - [ComVisible(true)] - public interface IAppDomainSetup { - - string ApplicationBase { get; set; } - - string ApplicationName { get; set; } - - string CachePath { get; set; } - - string ConfigurationFile { get; set; } - - string DynamicBase { get; set; } - - string LicenseFile { get; set; } - - string PrivateBinPath { get; set; } - - string PrivateBinPathProbe { get; set; } - - string ShadowCopyDirectories { get; set; } - - string ShadowCopyFiles { get; set; } - } -} diff --git a/mcs/class/corlib/System/IApplicationDescription.cs b/mcs/class/corlib/System/IApplicationDescription.cs deleted file mode 100644 index 95f2967700a..00000000000 --- a/mcs/class/corlib/System/IApplicationDescription.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// System.IApplicationDescription interface -// -// Author: -// Sebastien Pouliot -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System { - - public interface IApplicationDescription : ICloneable { - - string ApplicationCodeBase { - get; - } - - string ApplicationManifest { - get; - } - - string ApplicationManifestPath { - get; - } - - string DeploymentCodeBase { - get; - } - - string DeploymentManifest { - get; - } - - string DeploymentManifestPath { - get; - } - } -} diff --git a/mcs/class/corlib/System/IAsyncResult.cs b/mcs/class/corlib/System/IAsyncResult.cs deleted file mode 100644 index 94062b85493..00000000000 --- a/mcs/class/corlib/System/IAsyncResult.cs +++ /dev/null @@ -1,67 +0,0 @@ -//------------------------------------------------------------------------------ -// -// System.IAsyncResult.cs -// -// Copyright (C) 2001 Michael Lambert, All Rights Reserved -// -// Author: Michael Lambert, michaellambert@email.com -// Created: Mon 08/24/2001 -// -//------------------------------------------------------------------------------ -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System; -using System.Threading; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -namespace System { - - [ComVisible(true)] - public interface IAsyncResult - { - object AsyncState - { - get; - } - - WaitHandle AsyncWaitHandle - { - get; - } - - bool CompletedSynchronously - { - get; - } - - bool IsCompleted - { - get; - } - } - -} // Namespace System - - diff --git a/mcs/class/corlib/System/ICloneable.cs b/mcs/class/corlib/System/ICloneable.cs deleted file mode 100644 index 931f53422a2..00000000000 --- a/mcs/class/corlib/System/ICloneable.cs +++ /dev/null @@ -1,44 +0,0 @@ -// -// System.ICloneable.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System { - [ComVisible(true)] -#if INSIDE_CORLIB - public -#else - internal -#endif - interface ICloneable { - object Clone (); - } -} diff --git a/mcs/class/corlib/System/IComparable.cs b/mcs/class/corlib/System/IComparable.cs deleted file mode 100644 index c5330021b0e..00000000000 --- a/mcs/class/corlib/System/IComparable.cs +++ /dev/null @@ -1,45 +0,0 @@ -// -// System.IComparable.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// Marek Safar (marek.safar@gmail.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System { - - [ComVisible(true)] - public interface IComparable { - int CompareTo (object obj); - } - - public interface IComparable { - int CompareTo (T other); - } -} diff --git a/mcs/class/corlib/System/IConvertible.cs b/mcs/class/corlib/System/IConvertible.cs deleted file mode 100644 index 3816252230c..00000000000 --- a/mcs/class/corlib/System/IConvertible.cs +++ /dev/null @@ -1,80 +0,0 @@ -// -// System.IConvertible.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -// -// Functions Implementing this interface should check out -// System.Convert. Most of these methods are implemented -// there for all these data types. -// -// System.Convert has ToType helper method for the object -// ToType (Type conversionType, IFormatProvider provider) -// method. In most cases you can specify your ToType function -// as calling -// -// public Type value; // value of this data type -// public object ToType(Type conversionType, IFormatProvider provider) { -// Convert.ToType (value, conversionType, provider); -// } -// -// Which is just a wrapper for your ToType methods. -// -// See http://lists.ximian.com/archives/public/mono-list/2001-July/000525.html -// for more discussion on the topic -// -using System.Runtime.InteropServices; - -namespace System { - - [ComVisible(true)] - [CLSCompliant(false)] - public interface IConvertible { - - TypeCode GetTypeCode (); - - bool ToBoolean (IFormatProvider provider); - byte ToByte (IFormatProvider provider); - char ToChar (IFormatProvider provider); - DateTime ToDateTime (IFormatProvider provider); - decimal ToDecimal (IFormatProvider provider); - double ToDouble (IFormatProvider provider); - short ToInt16 (IFormatProvider provider); - int ToInt32 (IFormatProvider provider); - long ToInt64 (IFormatProvider provider); - sbyte ToSByte (IFormatProvider provider); - float ToSingle (IFormatProvider provider); - string ToString (IFormatProvider provider); - object ToType (Type conversionType, IFormatProvider provider); - ushort ToUInt16 (IFormatProvider provider); - uint ToUInt32 (IFormatProvider provider); - ulong ToUInt64 (IFormatProvider provider); - } -} diff --git a/mcs/class/corlib/System/ICustomFormatter.cs b/mcs/class/corlib/System/ICustomFormatter.cs deleted file mode 100644 index 876c5ce3c45..00000000000 --- a/mcs/class/corlib/System/ICustomFormatter.cs +++ /dev/null @@ -1,40 +0,0 @@ -// -// System.ICustomFormatter.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System { - - [ComVisible(true)] - public interface ICustomFormatter { - string Format (string format, object arg, IFormatProvider formatProvider); - } -} diff --git a/mcs/class/corlib/System/IDisposable.cs b/mcs/class/corlib/System/IDisposable.cs deleted file mode 100644 index 9c1859af508..00000000000 --- a/mcs/class/corlib/System/IDisposable.cs +++ /dev/null @@ -1,42 +0,0 @@ -// -// System.IDisposable.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System { - - [ComVisible(true)] - public interface IDisposable { - - void Dispose (); - - } -} diff --git a/mcs/class/corlib/System/IEquatable.cs b/mcs/class/corlib/System/IEquatable.cs deleted file mode 100644 index c4092d9b243..00000000000 --- a/mcs/class/corlib/System/IEquatable.cs +++ /dev/null @@ -1,33 +0,0 @@ -// -// System.IEquatable.cs -// -// Author: -// Ben Maurer -// -// Copyright (C) 2005 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System { - public interface IEquatable { - bool Equals (T other); - } -} diff --git a/mcs/class/corlib/System/IFormatProvider.cs b/mcs/class/corlib/System/IFormatProvider.cs deleted file mode 100644 index 26afc9e16a7..00000000000 --- a/mcs/class/corlib/System/IFormatProvider.cs +++ /dev/null @@ -1,40 +0,0 @@ -// -// System.IFormatProvider.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System { - - [ComVisible(true)] - public interface IFormatProvider { - object GetFormat (Type formatType); - } -} diff --git a/mcs/class/corlib/System/IFormattable.cs b/mcs/class/corlib/System/IFormattable.cs deleted file mode 100644 index 30a8670972a..00000000000 --- a/mcs/class/corlib/System/IFormattable.cs +++ /dev/null @@ -1,40 +0,0 @@ -// -// System.IFormattable.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System { - - [ComVisible(true)] - public interface IFormattable { - string ToString (string format, IFormatProvider formatProvider); - } -} diff --git a/mcs/class/corlib/System/IHostContext.cs b/mcs/class/corlib/System/IHostContext.cs deleted file mode 100644 index 841fa084999..00000000000 --- a/mcs/class/corlib/System/IHostContext.cs +++ /dev/null @@ -1,53 +0,0 @@ -// -// System.IHostContext interface -// -// Author: -// Sebastien Pouliot -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System { - - public interface IHostContext { - - bool AssumeTrust { - get; - } - - bool ExclusiveGrant { - get; - } - - bool IsFirstTimeInstall { - get; - } - - bool NoPrompt { - get; - } - - bool Persist { - get; - } - } -} diff --git a/mcs/class/corlib/System/IObservable.cs b/mcs/class/corlib/System/IObservable.cs deleted file mode 100644 index 5274dbb30cd..00000000000 --- a/mcs/class/corlib/System/IObservable.cs +++ /dev/null @@ -1,37 +0,0 @@ -// -// IObservable.cs -// -// Authors: -// Marek Safar -// -// Copyright (C) 2009 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - - -namespace System -{ - public interface IObservable - { - IDisposable Subscribe (IObserver observer); - } -} - diff --git a/mcs/class/corlib/System/IObserver.cs b/mcs/class/corlib/System/IObserver.cs deleted file mode 100644 index f6aaf6bb320..00000000000 --- a/mcs/class/corlib/System/IObserver.cs +++ /dev/null @@ -1,39 +0,0 @@ -// -// IObserver.cs -// -// Authors: -// Marek Safar -// -// Copyright (C) 2009 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - - -namespace System -{ - public interface IObserver - { - void OnCompleted (); - void OnError (Exception error); - void OnNext(T value); - } -} - diff --git a/mcs/class/corlib/System/IProgress.cs b/mcs/class/corlib/System/IProgress.cs deleted file mode 100644 index 690f62d5b3e..00000000000 --- a/mcs/class/corlib/System/IProgress.cs +++ /dev/null @@ -1,37 +0,0 @@ -// -// IProgress.cs -// -// Authors: -// Marek Safar -// -// Copyright (C) 2011 Xamarin, Inc (http://www.xamarin.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - - -namespace System -{ - public interface IProgress - { - void Report (T value); - } -} - diff --git a/mcs/class/corlib/System/IServiceProvider.cs b/mcs/class/corlib/System/IServiceProvider.cs deleted file mode 100644 index d9d0faa809d..00000000000 --- a/mcs/class/corlib/System/IServiceProvider.cs +++ /dev/null @@ -1,41 +0,0 @@ -// -// System.IServiceProvider.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.InteropServices; - -namespace System -{ - public interface IServiceProvider - { - object GetService (Type serviceType); - } -} diff --git a/mcs/class/corlib/System/InvalidTimeZoneException.cs b/mcs/class/corlib/System/InvalidTimeZoneException.cs deleted file mode 100644 index 27dd66a92a5..00000000000 --- a/mcs/class/corlib/System/InvalidTimeZoneException.cs +++ /dev/null @@ -1,52 +0,0 @@ -/* - * System.InvalidimeZoneException - * - * Author(s) - * Stephane Delcroix - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -using System.Runtime.CompilerServices; - -namespace System -{ - [Serializable] -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public - class InvalidTimeZoneException : Exception - { - public InvalidTimeZoneException () : base () - {} - - public InvalidTimeZoneException (string message) : base (message) - {} - - public InvalidTimeZoneException (string message, Exception innerException) : base (message, innerException) - {} - - protected InvalidTimeZoneException (Runtime.Serialization.SerializationInfo info, Runtime.Serialization.StreamingContext context) : base (info, context) - {} - } -} diff --git a/mcs/class/corlib/System/LoaderOptimization.cs b/mcs/class/corlib/System/LoaderOptimization.cs deleted file mode 100644 index 885ee079c59..00000000000 --- a/mcs/class/corlib/System/LoaderOptimization.cs +++ /dev/null @@ -1,49 +0,0 @@ -// -// System.LoaderOptimization.cs -// -// Author: -// Duncan Mak (duncan@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.InteropServices; - -namespace System -{ - [ComVisible (true)] - [Serializable] - public enum LoaderOptimization - { - NotSpecified = 0, - SingleDomain = 1, - MultiDomain = 2, - MultiDomainHost = 3, - - [Obsolete] - DomainMask = 3, - - [Obsolete] - DisallowBindings = 4 - } -} diff --git a/mcs/class/corlib/System/LoaderOptimizationAttribute.cs b/mcs/class/corlib/System/LoaderOptimizationAttribute.cs deleted file mode 100644 index c817f15b69c..00000000000 --- a/mcs/class/corlib/System/LoaderOptimizationAttribute.cs +++ /dev/null @@ -1,58 +0,0 @@ -// -// System.LoaderOptimizationAttribute.cs -// -// Author: -// Duncan Mak (duncan@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - [AttributeUsage (AttributeTargets.Method)] - [ComVisible (true)] - public sealed class LoaderOptimizationAttribute : Attribute - { - private LoaderOptimization lo; - - // Constructors - public LoaderOptimizationAttribute (byte value) - { - lo = (LoaderOptimization) value; - } - - public LoaderOptimizationAttribute (LoaderOptimization value) - { - lo = value; - } - - // Properties - public LoaderOptimization Value { - get { return lo; } - } - } -} diff --git a/mcs/class/corlib/System/MTAThreadAttribute.cs b/mcs/class/corlib/System/MTAThreadAttribute.cs deleted file mode 100644 index d684ee9d7e4..00000000000 --- a/mcs/class/corlib/System/MTAThreadAttribute.cs +++ /dev/null @@ -1,44 +0,0 @@ -// -// System.MTAThreadAttribute.cs -// -// Author: Duncan Mak (duncan@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - [AttributeUsage (AttributeTargets.Method)] - [ComVisible (true)] - public sealed class MTAThreadAttribute : Attribute - { - // Constructors - public MTAThreadAttribute () : base () - { - } - } -} diff --git a/mcs/class/corlib/System/NonSerializedAttribute.cs b/mcs/class/corlib/System/NonSerializedAttribute.cs deleted file mode 100644 index e5e2eeab1e4..00000000000 --- a/mcs/class/corlib/System/NonSerializedAttribute.cs +++ /dev/null @@ -1,44 +0,0 @@ -// -// System.NonSerializedAttribute.cs -// -// Author: -// Paolo Molaro (lupus@ximian.com) -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - [ComVisible (true)] - [AttributeUsage (AttributeTargets.Field, Inherited=false)] - public sealed class NonSerializedAttribute : Attribute - { - public NonSerializedAttribute () - { - } - } -} diff --git a/mcs/class/corlib/System/NullConsoleDriver.cs b/mcs/class/corlib/System/NullConsoleDriver.cs index 4ffabc85a30..ecec3b508b2 100644 --- a/mcs/class/corlib/System/NullConsoleDriver.cs +++ b/mcs/class/corlib/System/NullConsoleDriver.cs @@ -30,7 +30,10 @@ using System.Runtime.InteropServices; using System.Text; namespace System { - class NullConsoleDriver : IConsoleDriver { + class NullConsoleDriver : IConsoleDriver + { + static readonly ConsoleKeyInfo EmptyConsoleKeyInfo = new ConsoleKeyInfo ('\0', 0, false, false, false); + public ConsoleColor BackgroundColor { get { return ConsoleColor.Black; } set { @@ -151,7 +154,7 @@ namespace System { public ConsoleKeyInfo ReadKey (bool intercept) { - return ConsoleKeyInfo.Empty; + return EmptyConsoleKeyInfo; } public void ResetColor () diff --git a/mcs/class/corlib/System/ObsoleteAttribute.cs b/mcs/class/corlib/System/ObsoleteAttribute.cs deleted file mode 100644 index 942bbbc610e..00000000000 --- a/mcs/class/corlib/System/ObsoleteAttribute.cs +++ /dev/null @@ -1,75 +0,0 @@ -// -// System.ObsoleteAttribute.cs -// -// Author: -// Duncan Mak (duncan@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - [AttributeUsage (AttributeTargets.Class | AttributeTargets.Struct | - AttributeTargets.Enum | AttributeTargets.Constructor | - AttributeTargets.Method | AttributeTargets.Property | - AttributeTargets.Field | AttributeTargets.Event | - AttributeTargets.Interface | AttributeTargets.Delegate, - Inherited=false)] - [Serializable] - [ComVisible (true)] - public sealed class ObsoleteAttribute : Attribute - { - private string _message; - private bool _error; - - // Constructors - public ObsoleteAttribute () - : base () - { - } - - public ObsoleteAttribute (string message) - { - _message = message; - } - - public ObsoleteAttribute (string message, bool error) - { - _message = message; - _error = error; - } - - // Properties - public string Message { - get { return _message; } - } - - public bool IsError { - get { return _error; } - } - } -} diff --git a/mcs/class/corlib/System/ParamArrayAttribute.cs b/mcs/class/corlib/System/ParamArrayAttribute.cs deleted file mode 100644 index 4084798838d..00000000000 --- a/mcs/class/corlib/System/ParamArrayAttribute.cs +++ /dev/null @@ -1,48 +0,0 @@ -// -// System.ParamArrayAttribute.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - /// - /// Used to flag that the method will take a variable number - /// of arguments - /// - [AttributeUsage (AttributeTargets.Parameter)] - [ComVisible (true)] - public sealed class ParamArrayAttribute : Attribute - { - public ParamArrayAttribute () - { - } - } -} diff --git a/mcs/class/corlib/System/Predicate.cs b/mcs/class/corlib/System/Predicate.cs deleted file mode 100644 index 66086b0a9bb..00000000000 --- a/mcs/class/corlib/System/Predicate.cs +++ /dev/null @@ -1,34 +0,0 @@ -// -// System.Predicate.cs -// -// Authors: -// Ben Maurer (bmaurer@ximian.com) -// Marek Safar (marek.safar@gmail.com) -// -// Copyright (C) 2004 Novell -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -namespace System -{ - public delegate bool Predicate (T obj); -} - diff --git a/mcs/class/corlib/System/STAThreadAttribute.cs b/mcs/class/corlib/System/STAThreadAttribute.cs deleted file mode 100644 index 754ad34f834..00000000000 --- a/mcs/class/corlib/System/STAThreadAttribute.cs +++ /dev/null @@ -1,46 +0,0 @@ -// -// System.STAThreadAttribute.cs -// -// Author: -// Duncan Mak (duncan@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - [AttributeUsage (AttributeTargets.Method)] - [ComVisible (true)] - public sealed class STAThreadAttribute : Attribute - { - // Constructors - public STAThreadAttribute () - : base () - { - } - } -} diff --git a/mcs/class/corlib/System/SerializableAttribute.cs b/mcs/class/corlib/System/SerializableAttribute.cs deleted file mode 100644 index cfbb7669001..00000000000 --- a/mcs/class/corlib/System/SerializableAttribute.cs +++ /dev/null @@ -1,64 +0,0 @@ -// -// System.SerializableAttribute.cs -// -// Author: -// Miguel de Icaza (miguel@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - /// - /// Serialization Attribute for classes. - /// - - /// - /// Use SerializableAttribute to mark classes that do not implement - /// the ISerializable interface but that want to be serialized. - /// - /// Failing to do so will cause the system to throw an exception. - /// - /// When a class is market with the SerializableAttribute, all the - /// fields are automatically serialized with the exception of those - /// that are tagged with the NonSerializedAttribute. - /// - /// SerializableAttribute should only be used for classes that contain - /// simple data types that can be serialized and deserialized by the - /// runtime (typically you would use NonSerializedAttribute on data - /// that can be reconstructed at any point: like caches or precomputed - /// tables). - /// - - [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct - | AttributeTargets.Enum | AttributeTargets.Delegate, - Inherited=false)] - [ComVisible (true)] - public sealed class SerializableAttribute : Attribute - { - } -} diff --git a/mcs/class/corlib/System/TermInfoReader.cs b/mcs/class/corlib/System/TermInfoReader.cs index f4b03396225..6424d4fb79a 100644 --- a/mcs/class/corlib/System/TermInfoReader.cs +++ b/mcs/class/corlib/System/TermInfoReader.cs @@ -229,7 +229,7 @@ namespace System { length++; byte [] result = new byte [length]; - Buffer.BlockCopyInternal (buffer, offset, result, 0, length); + Buffer.InternalBlockCopy (buffer, offset, result, 0, length); return result; } diff --git a/mcs/class/corlib/System/ThreadStaticAttribute.cs b/mcs/class/corlib/System/ThreadStaticAttribute.cs deleted file mode 100644 index 3c13c3d58f9..00000000000 --- a/mcs/class/corlib/System/ThreadStaticAttribute.cs +++ /dev/null @@ -1,47 +0,0 @@ -// -// System.ThreadStaticAttribute.cs -// -// Author: -// Duncan Mak (duncan@ximian.com) -// -// (C) Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -using System.Runtime.InteropServices; - -namespace System -{ - [AttributeUsage (AttributeTargets.Field, Inherited=false)] - [Serializable] - [ComVisible (true)] - public class ThreadStaticAttribute : Attribute - { - // Constructors - public ThreadStaticAttribute () - : base () - { - } - } -} diff --git a/mcs/class/corlib/System/TimeZoneInfo.AdjustmentRule.cs b/mcs/class/corlib/System/TimeZoneInfo.AdjustmentRule.cs deleted file mode 100644 index 3afac7722d7..00000000000 --- a/mcs/class/corlib/System/TimeZoneInfo.AdjustmentRule.cs +++ /dev/null @@ -1,185 +0,0 @@ -/* - * System.TimeZoneInfo.AdjustmentRule - * - * Author(s) - * Stephane Delcroix - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -using System.Runtime.CompilerServices; -using System.Runtime.Serialization; - -namespace System -{ - public - sealed partial class TimeZoneInfo { - [SerializableAttribute] -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public sealed class AdjustmentRule : IEquatable, ISerializable, IDeserializationCallback - { - DateTime dateEnd; - public DateTime DateEnd { - get { return dateEnd; } - } - - DateTime dateStart; - public DateTime DateStart { - get { return dateStart; } - } - - TimeSpan daylightDelta; - public TimeSpan DaylightDelta { - get { return daylightDelta; } - } - - TransitionTime daylightTransitionEnd; - public TransitionTime DaylightTransitionEnd { - get { return daylightTransitionEnd; } - } - - TransitionTime daylightTransitionStart; - public TransitionTime DaylightTransitionStart { - get { return daylightTransitionStart; } - } - - public static AdjustmentRule CreateAdjustmentRule ( - DateTime dateStart, - DateTime dateEnd, - TimeSpan daylightDelta, - TransitionTime daylightTransitionStart, - TransitionTime daylightTransitionEnd) - { - return new AdjustmentRule (dateStart, dateEnd, daylightDelta, daylightTransitionStart, daylightTransitionEnd); - } - - private AdjustmentRule (SerializationInfo info, StreamingContext context) - { - if (info == null) - throw new ArgumentNullException ("info"); - dateStart = (DateTime) info.GetValue ("DateStart", typeof (DateTime)); - dateEnd = (DateTime) info.GetValue ("DateEnd", typeof (DateTime)); - daylightDelta = (TimeSpan) info.GetValue ("DaylightDelta", typeof (TimeSpan)); - daylightTransitionStart = (TimeZoneInfo.TransitionTime) info.GetValue ("DaylightTransitionStart", typeof (TimeZoneInfo.TransitionTime)); - daylightTransitionEnd = (TimeZoneInfo.TransitionTime) info.GetValue ("DaylightTransitionEnd", typeof (TimeZoneInfo.TransitionTime)); - } - - private AdjustmentRule ( - DateTime dateStart, - DateTime dateEnd, - TimeSpan daylightDelta, - TransitionTime daylightTransitionStart, - TransitionTime daylightTransitionEnd) - { - if (dateStart.Kind != DateTimeKind.Unspecified || dateEnd.Kind != DateTimeKind.Unspecified) - throw new ArgumentException ("the Kind property of dateStart or dateEnd parameter does not equal DateTimeKind.Unspecified"); - - if (daylightTransitionStart == daylightTransitionEnd) - throw new ArgumentException ("daylightTransitionStart parameter cannot equal daylightTransitionEnd parameter"); - - if (dateStart.Ticks % TimeSpan.TicksPerDay != 0 || dateEnd.Ticks % TimeSpan.TicksPerDay != 0) - throw new ArgumentException ("dateStart or dateEnd parameter includes a time of day value"); - - if (dateEnd < dateStart) - throw new ArgumentOutOfRangeException ("dateEnd is earlier than dateStart"); - - if (daylightDelta > new TimeSpan (14, 0, 0) || daylightDelta < new TimeSpan (-14, 0, 0)) - throw new ArgumentOutOfRangeException ("daylightDelta is less than -14 or greater than 14 hours"); - - if (daylightDelta.Ticks % TimeSpan.TicksPerSecond != 0) - throw new ArgumentOutOfRangeException ("daylightDelta parameter does not represent a whole number of seconds"); - - this.dateStart = dateStart; - this.dateEnd = dateEnd; - this.daylightDelta = daylightDelta; - this.daylightTransitionStart = daylightTransitionStart; - this.daylightTransitionEnd = daylightTransitionEnd; - } - - public bool Equals (TimeZoneInfo.AdjustmentRule other) - { - return dateStart == other.dateStart && - dateEnd == other.dateEnd && - daylightDelta == other.daylightDelta && - daylightTransitionStart == other.daylightTransitionStart && - daylightTransitionEnd == other.daylightTransitionEnd; - } - - public override int GetHashCode () - { - return dateStart.GetHashCode () ^ - dateEnd.GetHashCode () ^ - daylightDelta.GetHashCode () ^ - daylightTransitionStart.GetHashCode () ^ - daylightTransitionEnd.GetHashCode (); - } - - void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context) - { - if (info == null) - throw new ArgumentNullException ("info"); - info.AddValue ("DateStart", DateStart); - info.AddValue ("DateEnd", DateEnd); - info.AddValue ("DaylightDelta", DaylightDelta); - info.AddValue ("DaylightTransitionStart", DaylightTransitionStart); - info.AddValue ("DaylightTransitionEnd", DaylightTransitionEnd); - } - void IDeserializationCallback.OnDeserialization (object sender) - { - try { - TimeZoneInfo.AdjustmentRule.Validate (dateStart, dateEnd, daylightDelta, - daylightTransitionStart, daylightTransitionEnd); - } catch (ArgumentException ex) { - throw new SerializationException ("invalid serialization data", ex); - } - } - - private static void Validate ( - DateTime dateStart, - DateTime dateEnd, - TimeSpan daylightDelta, - TransitionTime daylightTransitionStart, - TransitionTime daylightTransitionEnd) - { - if (dateStart.Kind != DateTimeKind.Unspecified || dateEnd.Kind != DateTimeKind.Unspecified) - throw new ArgumentException ("the Kind property of dateStart or dateEnd parameter does not equal DateTimeKind.Unspecified"); - - if (daylightTransitionStart == daylightTransitionEnd) - throw new ArgumentException ("daylightTransitionStart parameter cannot equal daylightTransitionEnd parameter"); - - if (dateStart.Ticks % TimeSpan.TicksPerDay != 0 || dateEnd.Ticks % TimeSpan.TicksPerDay != 0) - throw new ArgumentException ("dateStart or dateEnd parameter includes a time of day value"); - - if (dateEnd < dateStart) - throw new ArgumentOutOfRangeException ("dateEnd is earlier than dateStart"); - - if (daylightDelta > new TimeSpan (14, 0, 0) || daylightDelta < new TimeSpan (-14, 0, 0)) - throw new ArgumentOutOfRangeException ("daylightDelta is less than -14 or greater than 14 hours"); - - if (daylightDelta.Ticks % TimeSpan.TicksPerSecond != 0) - throw new ArgumentOutOfRangeException ("daylightDelta parameter does not represent a whole number of seconds"); - } - } - } -} diff --git a/mcs/class/corlib/System/TimeZoneInfo.TransitionTime.cs b/mcs/class/corlib/System/TimeZoneInfo.TransitionTime.cs deleted file mode 100644 index 37a70641be4..00000000000 --- a/mcs/class/corlib/System/TimeZoneInfo.TransitionTime.cs +++ /dev/null @@ -1,290 +0,0 @@ -/* - * System.TimeZoneInfo.TransitionTime - * - * Author(s) - * Stephane Delcroix - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -using System.Runtime.CompilerServices; -using System.Runtime.Serialization; - -namespace System -{ - public - sealed partial class TimeZoneInfo - { - [SerializableAttribute] -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public struct TransitionTime : IEquatable, ISerializable, IDeserializationCallback - { - DateTime timeOfDay; - public DateTime TimeOfDay { - get { return timeOfDay; } - } - - int month; - public int Month { - get { return month; } - } - - int day; - public int Day { - get { -#if STRICT - if (!isFixedDateRule) - throw new Exception ("Day property is not valid for floating date rules"); -#endif - return day; - } - } - - int week; - public int Week { - get { -#if STRICT - if (isFixedDateRule) - throw new Exception ("Week property is not valid for fixed date rules"); -#endif - - return week; - } - } - - DayOfWeek dayOfWeek; - public DayOfWeek DayOfWeek { - get { -#if STRICT - if (isFixedDateRule) - throw new Exception ("DayOfWeek property is not valid for fixed date rules"); -#endif - - return dayOfWeek; - } - } - - bool isFixedDateRule; - public bool IsFixedDateRule { - get { return isFixedDateRule; } - } - - public static TransitionTime CreateFixedDateRule ( - DateTime timeOfDay, - int month, - int day) - { - return new TransitionTime (timeOfDay, month, day); - } - - public static TransitionTime CreateFloatingDateRule ( - DateTime timeOfDay, - int month, - int week, - DayOfWeek dayOfWeek) - { - return new TransitionTime (timeOfDay, month, week, dayOfWeek); - } - - private TransitionTime (SerializationInfo info, StreamingContext context) - { - if (info == null) - throw new ArgumentNullException ("info"); - timeOfDay = (DateTime) info.GetValue ("TimeOfDay", typeof (DateTime)); - month = (byte) info.GetValue ("Month", typeof (byte)); - week = (byte) info.GetValue ("Week", typeof (byte)); - day = (byte) info.GetValue ("Day", typeof (byte)); - dayOfWeek = (DayOfWeek) info.GetValue ("DayOfWeek", typeof (DayOfWeek)); - isFixedDateRule = (bool) info.GetValue ("IsFixedDateRule", typeof (bool)); - - if (isFixedDateRule) - { - week = -1; - dayOfWeek = (DayOfWeek) (-1); - } - if (!isFixedDateRule) - day = -1; - } - - private TransitionTime ( - DateTime timeOfDay, - int month, - int day) : this (timeOfDay, month) - { - if (day < 1 || day > 31) - throw new ArgumentOutOfRangeException ("day parameter is less than 1 or greater than 31"); - - this.day = day; - this.isFixedDateRule = true; - } - - private TransitionTime ( - DateTime timeOfDay, - int month, - int week, - DayOfWeek dayOfWeek) : this (timeOfDay, month) - { - if (week < 1 || week > 5) - throw new ArgumentOutOfRangeException ("week parameter is less than 1 or greater than 5"); - - if (dayOfWeek != DayOfWeek.Sunday && - dayOfWeek != DayOfWeek.Monday && - dayOfWeek != DayOfWeek.Tuesday && - dayOfWeek != DayOfWeek.Wednesday && - dayOfWeek != DayOfWeek.Thursday && - dayOfWeek != DayOfWeek.Friday && - dayOfWeek != DayOfWeek.Saturday) - throw new ArgumentOutOfRangeException ("dayOfWeek parameter is not a member od DayOfWeek enumeration"); - - this.week = week; - this.dayOfWeek = dayOfWeek; - this.isFixedDateRule = false; - } - - private TransitionTime ( - DateTime timeOfDay, - int month) - { - if (timeOfDay.Year != 1 || timeOfDay.Month != 1 || timeOfDay.Day != 1) - throw new ArgumentException ("timeOfDay parameter has a non-default date component"); - - if (timeOfDay.Kind != DateTimeKind.Unspecified) - throw new ArgumentException ("timeOfDay parameter Kind's property is not DateTimeKind.Unspecified"); - - if (timeOfDay.Ticks % TimeSpan.TicksPerMillisecond != 0) - throw new ArgumentException ("timeOfDay parameter does not represent a whole number of milliseconds"); - - if (month < 1 || month > 12) - throw new ArgumentOutOfRangeException ("month parameter is less than 1 or greater than 12"); - - this.timeOfDay = timeOfDay; - this.month = month; - - this.week = -1; - this.dayOfWeek = (System.DayOfWeek)(-1); - this.day = -1; - this.isFixedDateRule = false; - } - - public static bool operator == (TransitionTime t1, TransitionTime t2) - { - return ( t1.day == t2.day && - t1.dayOfWeek == t2.dayOfWeek && - t1.isFixedDateRule == t2.isFixedDateRule && - t1.month == t2.month && - t1.timeOfDay == t2.timeOfDay && - t1.week == t2.week); - } - - public static bool operator != (TransitionTime t1, TransitionTime t2) - { - return !(t1 == t2); - } - - - void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context) - { - if (info == null) - throw new ArgumentNullException ("info"); - info.AddValue ("TimeOfDay", TimeOfDay); - info.AddValue ("Month", System.Convert.ToByte(Month)); - if (week > -1) - info.AddValue ("Week", System.Convert.ToByte(week)); - else - info.AddValue ("Week", (byte) 1); - if (day > -1) - info.AddValue ("Day", System.Convert.ToByte(day)); - else - info.AddValue ("Day", (byte) 1); - if (dayOfWeek != ((System.DayOfWeek) (-1))) - info.AddValue ("DayOfWeek", dayOfWeek); - else - info.AddValue ("DayOfWeek", DayOfWeek.Sunday); - info.AddValue ("IsFixedDateRule", IsFixedDateRule); - } - - public override bool Equals (object obj) - { - if (obj is TransitionTime) - return this == (TransitionTime) obj; - return false; - } - - public bool Equals (TimeZoneInfo.TransitionTime other) - { - return this == other; - } - - public override int GetHashCode () - { - return (day ^ (int)dayOfWeek ^ month ^ (int)timeOfDay.Ticks ^ week); - } - - void IDeserializationCallback.OnDeserialization (object sender) - { - try { - TimeZoneInfo.TransitionTime.Validate (timeOfDay, month, week, day, dayOfWeek, isFixedDateRule); - } catch (ArgumentException ex) { - throw new SerializationException ("invalid serialization data", ex); - } - } - - private static void Validate (DateTime timeOfDay, int month,int week, int day, DayOfWeek dayOfWeek, bool isFixedDateRule) - { - if (timeOfDay.Year != 1 || timeOfDay.Month != 1 || timeOfDay.Day != 1) - throw new ArgumentException ("timeOfDay parameter has a non-default date component"); - - if (timeOfDay.Kind != DateTimeKind.Unspecified) - throw new ArgumentException ("timeOfDay parameter Kind's property is not DateTimeKind.Unspecified"); - - if (timeOfDay.Ticks % TimeSpan.TicksPerMillisecond != 0) - throw new ArgumentException ("timeOfDay parameter does not represent a whole number of milliseconds"); - - if (day < 1 || day > 31) { - if (!(!isFixedDateRule && day == -1)) - throw new ArgumentOutOfRangeException ("day parameter is less than 1 or greater than 31"); - } - - if (week < 1 || week > 5) { - if (!(isFixedDateRule && week == -1)) - throw new ArgumentOutOfRangeException ("week parameter is less than 1 or greater than 5"); - } - - if (month < 1 || month > 12) - throw new ArgumentOutOfRangeException ("month parameter is less than 1 or greater than 12"); - - if (dayOfWeek != DayOfWeek.Sunday && - dayOfWeek != DayOfWeek.Monday && - dayOfWeek != DayOfWeek.Tuesday && - dayOfWeek != DayOfWeek.Wednesday && - dayOfWeek != DayOfWeek.Thursday && - dayOfWeek != DayOfWeek.Friday && - dayOfWeek != DayOfWeek.Saturday) { - if (!(isFixedDateRule && dayOfWeek == (DayOfWeek) (-1))) - throw new ArgumentOutOfRangeException ("dayOfWeek parameter is not a member od DayOfWeek enumeration"); - } - } - } - } -} diff --git a/mcs/class/corlib/System/TimeZoneInfo.cs b/mcs/class/corlib/System/TimeZoneInfo.cs index d2b5f666802..aa93584c933 100644 --- a/mcs/class/corlib/System/TimeZoneInfo.cs +++ b/mcs/class/corlib/System/TimeZoneInfo.cs @@ -45,14 +45,7 @@ using Microsoft.Win32; namespace System { -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - [SerializableAttribute] - public - sealed partial class TimeZoneInfo : IEquatable, ISerializable, IDeserializationCallback + partial class TimeZoneInfo { TimeSpan baseUtcOffset; public TimeSpan BaseUtcOffset { @@ -233,6 +226,18 @@ namespace System } #endif + private static bool TryAddTicks (DateTime date, long ticks, out DateTime result, DateTimeKind kind = DateTimeKind.Unspecified) + { + var resultTicks = date.Ticks + ticks; + if (resultTicks < DateTime.MinValue.Ticks || resultTicks > DateTime.MaxValue.Ticks) { + result = default (DateTime); + return false; + } + + result = new DateTime (resultTicks, kind); + return true; + } + public static void ClearCachedData () { local = null; @@ -280,17 +285,13 @@ namespace System { if (destinationTimeZone == null) throw new ArgumentNullException("destinationTimeZone"); - + var utcDateTime = dateTimeOffset.UtcDateTime; - AdjustmentRule rule = destinationTimeZone.GetApplicableRule (utcDateTime); - - if (rule != null && destinationTimeZone.IsDaylightSavingTime(utcDateTime)) { - var offset = destinationTimeZone.BaseUtcOffset + rule.DaylightDelta; - return new DateTimeOffset(DateTime.SpecifyKind(utcDateTime, DateTimeKind.Unspecified) + offset, offset); - } - else { - return new DateTimeOffset(DateTime.SpecifyKind(utcDateTime, DateTimeKind.Unspecified) + destinationTimeZone.BaseUtcOffset, destinationTimeZone.BaseUtcOffset); - } + + bool isDst; + var utcOffset = destinationTimeZone.GetUtcOffset(utcDateTime, out isDst); + + return new DateTimeOffset(DateTime.SpecifyKind(utcDateTime, DateTimeKind.Unspecified) + utcOffset, utcOffset); } public static DateTime ConvertTimeBySystemTimeZoneId (DateTime dateTime, string destinationTimeZoneId) @@ -315,19 +316,16 @@ namespace System if (this == TimeZoneInfo.Utc) return DateTime.SpecifyKind (dateTime, DateTimeKind.Utc); - - //FIXME: do not rely on DateTime implementation ! - if (this == TimeZoneInfo.Local) - { - return dateTime.ToLocalTime (); - } + var utcOffset = GetUtcOffset (dateTime); - AdjustmentRule rule = GetApplicableRule (dateTime); - if (rule != null && IsDaylightSavingTime (DateTime.SpecifyKind (dateTime, DateTimeKind.Utc))) - return DateTime.SpecifyKind (dateTime + BaseUtcOffset + rule.DaylightDelta , DateTimeKind.Unspecified); - else - return DateTime.SpecifyKind (dateTime + BaseUtcOffset, DateTimeKind.Unspecified); + var kind = (this == TimeZoneInfo.Local)? DateTimeKind.Local : DateTimeKind.Unspecified; + + DateTime result; + if (!TryAddTicks (dateTime, utcOffset.Ticks, out result, kind)) + return DateTime.SpecifyKind (DateTime.MaxValue, kind); + + return result; } public static DateTime ConvertTimeFromUtc (DateTime dateTime, TimeZoneInfo destinationTimeZone) @@ -375,22 +373,14 @@ namespace System if (dateTime.Kind == DateTimeKind.Utc) return dateTime; - if (sourceTimeZone.IsAmbiguousTime (dateTime) || !sourceTimeZone.IsDaylightSavingTime (dateTime)) { - var ticks = dateTime.Ticks - sourceTimeZone.BaseUtcOffset.Ticks; - if (ticks < DateTime.MinValue.Ticks) - ticks = DateTime.MinValue.Ticks; - else if (ticks > DateTime.MaxValue.Ticks) - ticks = DateTime.MaxValue.Ticks; + bool isDst; + var utcOffset = sourceTimeZone.GetUtcOffset (dateTime, out isDst); - return new DateTime (ticks, DateTimeKind.Utc); - } - - AdjustmentRule rule = sourceTimeZone.GetApplicableRule (dateTime); - if (rule != null) - return DateTime.SpecifyKind (dateTime - sourceTimeZone.BaseUtcOffset - rule.DaylightDelta, DateTimeKind.Utc); - else - return DateTime.SpecifyKind (dateTime - sourceTimeZone.BaseUtcOffset, DateTimeKind.Utc); - + DateTime utcDateTime; + if (!TryAddTicks (dateTime, -utcOffset.Ticks, out utcDateTime, DateTimeKind.Utc)) + return DateTime.SpecifyKind (DateTime.MinValue, DateTimeKind.Utc); + + return utcDateTime; } static internal TimeSpan GetDateTimeNowUtcOffsetFromUtc(DateTime time, out Boolean isAmbiguousLocalDst) @@ -728,23 +718,22 @@ namespace System tz = TimeZoneInfo.Local; bool isTzDst; - var tzOffset = GetUtcOffset (dateTime, tz, out isTzDst); + var tzOffset = GetUtcOffsetHelper (dateTime, tz, out isTzDst); if (tz == this) { isDST = isTzDst; return tzOffset; } - var utcTicks = dateTime.Ticks - tzOffset.Ticks; - if (utcTicks < 0 || utcTicks > DateTime.MaxValue.Ticks) + DateTime utcDateTime; + if (!TryAddTicks (dateTime, -tzOffset.Ticks, out utcDateTime, DateTimeKind.Utc)) return BaseUtcOffset; - var utcDateTime = new DateTime (utcTicks, DateTimeKind.Utc); - - return GetUtcOffset (utcDateTime, this, out isDST); + return GetUtcOffsetHelper (utcDateTime, this, out isDST); } - private static TimeSpan GetUtcOffset (DateTime dateTime, TimeZoneInfo tz, out bool isDST) + // This is an helper method used by the method above, do not use this on its own. + private static TimeSpan GetUtcOffsetHelper (DateTime dateTime, TimeZoneInfo tz, out bool isDST) { if (dateTime.Kind == DateTimeKind.Local && tz != TimeZoneInfo.Local) throw new Exception (); @@ -768,20 +757,16 @@ namespace System return tz.BaseUtcOffset; } - var stdTicks = dateTime.Ticks - tz.BaseUtcOffset.Ticks; - if (stdTicks < 0 || stdTicks > DateTime.MaxValue.Ticks) + DateTime stdUtcDateTime; + if (!TryAddTicks (dateTime, -tz.BaseUtcOffset.Ticks, out stdUtcDateTime, DateTimeKind.Utc)) return tz.BaseUtcOffset; - var stdUtcDateTime = new DateTime (stdTicks, DateTimeKind.Utc); var tzRule = tz.GetApplicableRule (stdUtcDateTime); DateTime dstUtcDateTime = DateTime.MinValue; if (tzRule != null) { - var dstTicks = stdUtcDateTime.Ticks - tzRule.DaylightDelta.Ticks; - if (dstTicks < 0 || dstTicks > DateTime.MaxValue.Ticks) + if (!TryAddTicks (stdUtcDateTime, -tzRule.DaylightDelta.Ticks, out dstUtcDateTime, DateTimeKind.Utc)) return tz.BaseUtcOffset; - - dstUtcDateTime = new DateTime (dstTicks, DateTimeKind.Utc); } if (tzRule != null && tz.IsInDST (tzRule, stdUtcDateTime) && tz.IsInDST (tzRule, dstUtcDateTime)) { @@ -895,6 +880,23 @@ namespace System throw new NotImplementedException (); } + public bool IsInvalidTime (DateTime dateTime) + { + if (dateTime.Kind == DateTimeKind.Utc) + return false; + if (dateTime.Kind == DateTimeKind.Local && this != Local) + return false; + + AdjustmentRule rule = GetApplicableRule (dateTime); + if (rule != null) { + DateTime tpoint = TransitionPoint (rule.DaylightTransitionStart, dateTime.Year); + if (dateTime >= tpoint && dateTime < tpoint + rule.DaylightDelta) + return true; + } + + return false; + } + void IDeserializationCallback.OnDeserialization (object sender) { try { @@ -1025,10 +1027,13 @@ namespace System //Applicable rules are in standard time DateTime date = dateTime; - if (dateTime.Kind == DateTimeKind.Local && this != TimeZoneInfo.Local) - date = date.ToUniversalTime () + BaseUtcOffset; - else if (dateTime.Kind == DateTimeKind.Utc && this != TimeZoneInfo.Utc) - date = date + BaseUtcOffset; + if (dateTime.Kind == DateTimeKind.Local && this != TimeZoneInfo.Local) { + if (!TryAddTicks (date.ToUniversalTime (), BaseUtcOffset.Ticks, out date)) + return null; + } else if (dateTime.Kind == DateTimeKind.Utc && this != TimeZoneInfo.Utc) { + if (!TryAddTicks (date, BaseUtcOffset.Ticks, out date)) + return null; + } // get the date component of the datetime date = date.Date; @@ -1057,19 +1062,13 @@ namespace System DateTime date = dateTime; if (dateTime.Kind == DateTimeKind.Local && this != TimeZoneInfo.Local) { - var ticks = date.ToUniversalTime ().Ticks + BaseUtcOffset.Ticks; - if (ticks < DateTime.MinValue.Ticks || ticks > DateTime.MaxValue.Ticks) + if (!TryAddTicks (date.ToUniversalTime (), BaseUtcOffset.Ticks, out date, DateTimeKind.Utc)) return false; - - date = new DateTime (ticks, DateTimeKind.Utc); } if (dateTime.Kind != DateTimeKind.Utc) { - var ticks = date.Ticks - BaseUtcOffset.Ticks; - if (ticks < DateTime.MinValue.Ticks || ticks > DateTime.MaxValue.Ticks) + if (!TryAddTicks (date, -BaseUtcOffset.Ticks, out date, DateTimeKind.Utc)) return false; - - date = new DateTime (ticks, DateTimeKind.Utc); } for (var i = transitions.Count - 1; i >= 0; i--) { @@ -1205,6 +1204,14 @@ namespace System if (dst_end.Date == new DateTime (dst_end.Year, 1, 1) && dst_end.Year > dst_start.Year) dst_end -= new TimeSpan (24, 0, 0); + /* + * AdjustmentRule specifies a DST period that starts and ends within a year. + * When we have a DST period longer than a year, the generated AdjustmentRule may not be usable. + * Thus we fallback to the transitions. + */ + if (dst_start.AddYears (1) < dst_end) + storeTransition = true; + DateTime dateStart, dateEnd; if (dst_start.Month < 7) dateStart = new DateTime (dst_start.Year, 1, 1); @@ -1304,333 +1311,32 @@ namespace System } #region reference sources - // Shortcut for TimeZoneInfo.Local.GetUtcOffset - internal static TimeSpan GetLocalUtcOffset(DateTime dateTime, TimeZoneInfoOptions flags) - { - bool dst; - return Local.GetUtcOffset (dateTime, out dst); - } - - internal TimeSpan GetUtcOffset(DateTime dateTime, TimeZoneInfoOptions flags) - { - bool dst; - return GetUtcOffset (dateTime, out dst); - } - - // used by GetUtcOffsetFromUtc (DateTime.Now, DateTime.ToLocalTime) for max/min whole-day range checks - private static DateTime s_maxDateOnly = new DateTime(9999, 12, 31); - private static DateTime s_minDateOnly = new DateTime(1, 1, 2); - - static internal TimeSpan GetUtcOffsetFromUtc (DateTime time, TimeZoneInfo zone, out Boolean isDaylightSavings, out Boolean isAmbiguousLocalDst) - { - isDaylightSavings = false; - isAmbiguousLocalDst = false; - TimeSpan baseOffset = zone.BaseUtcOffset; - Int32 year; - AdjustmentRule rule; - - if (time > s_maxDateOnly) { - rule = zone.GetAdjustmentRuleForTime(DateTime.MaxValue); - year = 9999; - } - else if (time < s_minDateOnly) { - rule = zone.GetAdjustmentRuleForTime(DateTime.MinValue); - year = 1; - } - else { - DateTime targetTime = time + baseOffset; - year = time.Year; - rule = zone.GetAdjustmentRuleForTime(targetTime); - } - - if (rule != null) { - isDaylightSavings = GetIsDaylightSavingsFromUtc(time, year, zone.baseUtcOffset, rule, out isAmbiguousLocalDst); - baseOffset += (isDaylightSavings ? rule.DaylightDelta : TimeSpan.Zero /* */); - } - - return baseOffset; - } - - // assumes dateTime is in the current time zone's time - private AdjustmentRule GetAdjustmentRuleForTime(DateTime dateTime) { - if (adjustmentRules == null || adjustmentRules.Length == 0) { - return null; - } - -#if WINXP_AND_WIN2K3_SUPPORT - // On pre-Vista versions of Windows if you run "cmd /c date" or "cmd /c time" to update the system time - // the operating system doesn't pick up the correct time zone adjustment rule (it stays on the currently loaded rule). - // We need to use the OS API data in this scenario instead of the loaded adjustment rules from the registry for - // consistency. Otherwise DateTime.Now might not match the time displayed in the system tray. - if (!Environment.IsWindowsVistaOrAbove && s_cachedData.GetCorrespondingKind(this) == DateTimeKind.Local) { - return s_cachedData.GetOneYearLocalFromLocal(dateTime.Year).rule; - } -#endif - // Only check the whole-date portion of the dateTime - - // This is because the AdjustmentRule DateStart & DateEnd are stored as - // Date-only values {4/2/2006 - 10/28/2006} but actually represent the - // time span {4/2/2006@00:00:00.00000 - 10/28/2006@23:59:59.99999} - DateTime date = dateTime.Date; - - for (int i = 0; i < adjustmentRules.Length; i++) { - if (adjustmentRules[i].DateStart <= date && adjustmentRules[i].DateEnd >= date) { - return adjustmentRules[i]; - } - } - - return null; - } - - // - // GetIsDaylightSavingsFromUtc - - // - // Helper function that checks if a given dateTime is in Daylight Saving Time (DST) - // This function assumes the dateTime is in UTC and AdjustmentRule is in a different time zone - // - static private Boolean GetIsDaylightSavingsFromUtc(DateTime time, Int32 Year, TimeSpan utc, AdjustmentRule rule, out Boolean isAmbiguousLocalDst) { - isAmbiguousLocalDst = false; - - if (rule == null) { - return false; - } - - // Get the daylight changes for the year of the specified time. - TimeSpan offset = utc; /* */ - DaylightTime daylightTime = GetDaylightTime(Year, rule); - - // The start and end times represent the range of universal times that are in DST for that year. - // Within that there is an ambiguous hour, usually right at the end, but at the beginning in - // the unusual case of a negative daylight savings delta. - DateTime startTime = daylightTime.Start - offset; - DateTime endTime = daylightTime.End - offset - rule.DaylightDelta; /* */ - DateTime ambiguousStart; - DateTime ambiguousEnd; - if (daylightTime.Delta.Ticks > 0) { - ambiguousStart = endTime - daylightTime.Delta; - ambiguousEnd = endTime; - } else { - ambiguousStart = startTime; - ambiguousEnd = startTime - daylightTime.Delta; - } - - Boolean isDst = CheckIsDst(startTime, time, endTime); - - // See if the resulting local time becomes ambiguous. This must be captured here or the - // DateTime will not be able to round-trip back to UTC accurately. - if (isDst) { - isAmbiguousLocalDst = (time >= ambiguousStart && time < ambiguousEnd); - - if (!isAmbiguousLocalDst && ambiguousStart.Year != ambiguousEnd.Year) { - // there exists an extreme corner case where the start or end period is on a year boundary and - // because of this the comparison above might have been performed for a year-early or a year-later - // than it should have been. - DateTime ambiguousStartModified; - DateTime ambiguousEndModified; - try { - ambiguousStartModified = ambiguousStart.AddYears(1); - ambiguousEndModified = ambiguousEnd.AddYears(1); - isAmbiguousLocalDst = (time >= ambiguousStart && time < ambiguousEnd); - } - catch (ArgumentOutOfRangeException) {} - - if (!isAmbiguousLocalDst) { - try { - ambiguousStartModified = ambiguousStart.AddYears(-1); - ambiguousEndModified = ambiguousEnd.AddYears(-1); - isAmbiguousLocalDst = (time >= ambiguousStart && time < ambiguousEnd); - } - catch (ArgumentOutOfRangeException) {} - } - - } - } - - return isDst; - } - - - static private Boolean CheckIsDst(DateTime startTime, DateTime time, DateTime endTime) { - Boolean isDst; - - int startTimeYear = startTime.Year; - int endTimeYear = endTime.Year; - - if (startTimeYear != endTimeYear) { - endTime = endTime.AddYears(startTimeYear - endTimeYear); - } - - int timeYear = time.Year; - - if (startTimeYear != timeYear) { - time = time.AddYears(startTimeYear - timeYear); - } - - if (startTime > endTime) { - // In southern hemisphere, the daylight saving time starts later in the year, and ends in the beginning of next year. - // Note, the summer in the southern hemisphere begins late in the year. - isDst = (time < endTime || time >= startTime); - } - else { - // In northern hemisphere, the daylight saving time starts in the middle of the year. - isDst = (time >= startTime && time < endTime); - } - return isDst; - } - - // - // GetDaylightTime - - // - // Helper function that returns a DaylightTime from a year and AdjustmentRule - // - static private DaylightTime GetDaylightTime(Int32 year, AdjustmentRule rule) { - TimeSpan delta = rule.DaylightDelta; - DateTime startTime = TransitionTimeToDateTime(year, rule.DaylightTransitionStart); - DateTime endTime = TransitionTimeToDateTime(year, rule.DaylightTransitionEnd); - return new DaylightTime(startTime, endTime, delta); - } - - // - // TransitionTimeToDateTime - - // - // Helper function that converts a year and TransitionTime into a DateTime - // - static private DateTime TransitionTimeToDateTime(Int32 year, TransitionTime transitionTime) { - DateTime value; - DateTime timeOfDay = transitionTime.TimeOfDay; - - if (transitionTime.IsFixedDateRule) { - // create a DateTime from the passed in year and the properties on the transitionTime - - // if the day is out of range for the month then use the last day of the month - Int32 day = DateTime.DaysInMonth(year, transitionTime.Month); - - value = new DateTime(year, transitionTime.Month, (day < transitionTime.Day) ? day : transitionTime.Day, - timeOfDay.Hour, timeOfDay.Minute, timeOfDay.Second, timeOfDay.Millisecond); - } - else { - if (transitionTime.Week <= 4) { - // - // Get the (transitionTime.Week)th Sunday. - // - value = new DateTime(year, transitionTime.Month, 1, - timeOfDay.Hour, timeOfDay.Minute, timeOfDay.Second, timeOfDay.Millisecond); - - int dayOfWeek = (int)value.DayOfWeek; - int delta = (int)transitionTime.DayOfWeek - dayOfWeek; - if (delta < 0) { - delta += 7; - } - delta += 7 * (transitionTime.Week - 1); - - if (delta > 0) { - value = value.AddDays(delta); - } - } - else { - // - // If TransitionWeek is greater than 4, we will get the last week. - // - Int32 daysInMonth = DateTime.DaysInMonth(year, transitionTime.Month); - value = new DateTime(year, transitionTime.Month, daysInMonth, - timeOfDay.Hour, timeOfDay.Minute, timeOfDay.Second, timeOfDay.Millisecond); - - // This is the day of week for the last day of the month. - int dayOfWeek = (int)value.DayOfWeek; - int delta = dayOfWeek - (int)transitionTime.DayOfWeek; - if (delta < 0) { - delta += 7; - } - - if (delta > 0) { - value = value.AddDays(-delta); - } - } - } - return value; - } - - // - // IsInvalidTime - - // - // returns true when dateTime falls into a "hole in time". - // - public Boolean IsInvalidTime(DateTime dateTime) { - Boolean isInvalid = false; - - if ( (dateTime.Kind == DateTimeKind.Unspecified) - || (dateTime.Kind == DateTimeKind.Local && this == Local) ) { - - // only check Unspecified and (Local when this TimeZoneInfo instance is Local) - AdjustmentRule rule = GetAdjustmentRuleForTime(dateTime); - - - if (rule != null) { - DaylightTime daylightTime = GetDaylightTime(dateTime.Year, rule); - isInvalid = GetIsInvalidTime(dateTime, rule, daylightTime); - } - else { - isInvalid = false; - } - } - - return isInvalid; - } - - // - // GetIsInvalidTime - - // - // Helper function that checks if a given DateTime is in an invalid time ("time hole") - // A "time hole" occurs at a DST transition point when time jumps forward; - // For example, in Pacific Standard Time on Sunday, April 2, 2006 time jumps from - // 1:59:59.9999999 to 3AM. The time range 2AM to 2:59:59.9999999AM is the "time hole". - // A "time hole" is not limited to only occurring at the start of DST, and may occur at - // the end of DST as well. - // - static private Boolean GetIsInvalidTime(DateTime time, AdjustmentRule rule, DaylightTime daylightTime) { - Boolean isInvalid = false; - if (rule == null || rule.DaylightDelta == TimeSpan.Zero) { - return isInvalid; - } - - DateTime startInvalidTime; - DateTime endInvalidTime; - - // if at DST start we transition forward in time then there is an ambiguous time range at the DST end - if (rule.DaylightDelta < TimeSpan.Zero) { - startInvalidTime = daylightTime.End; - endInvalidTime = daylightTime.End - rule.DaylightDelta; /* */ - } - else { - startInvalidTime = daylightTime.Start; - endInvalidTime = daylightTime.Start + rule.DaylightDelta; /* */ - } - - isInvalid = (time >= startInvalidTime && time < endInvalidTime); - - if (!isInvalid && startInvalidTime.Year != endInvalidTime.Year) { - // there exists an extreme corner case where the start or end period is on a year boundary and - // because of this the comparison above might have been performed for a year-early or a year-later - // than it should have been. - DateTime startModifiedInvalidTime; - DateTime endModifiedInvalidTime; - try { - startModifiedInvalidTime = startInvalidTime.AddYears(1); - endModifiedInvalidTime = endInvalidTime.AddYears(1); - isInvalid = (time >= startModifiedInvalidTime && time < endModifiedInvalidTime); - } - catch (ArgumentOutOfRangeException) {} - - if (!isInvalid) { - try { - startModifiedInvalidTime = startInvalidTime.AddYears(-1); - endModifiedInvalidTime = endInvalidTime.AddYears(-1); - isInvalid = (time >= startModifiedInvalidTime && time < endModifiedInvalidTime); - } - catch (ArgumentOutOfRangeException) {} - } - } - return isInvalid; - } + // Shortcut for TimeZoneInfo.Local.GetUtcOffset + internal static TimeSpan GetLocalUtcOffset(DateTime dateTime, TimeZoneInfoOptions flags) + { + bool dst; + return Local.GetUtcOffset (dateTime, out dst); + } + + internal TimeSpan GetUtcOffset(DateTime dateTime, TimeZoneInfoOptions flags) + { + bool dst; + return GetUtcOffset (dateTime, out dst); + } + + static internal TimeSpan GetUtcOffsetFromUtc (DateTime time, TimeZoneInfo zone, out Boolean isDaylightSavings, out Boolean isAmbiguousLocalDst) + { + isDaylightSavings = false; + isAmbiguousLocalDst = false; + TimeSpan baseOffset = zone.BaseUtcOffset; + + if (zone.IsAmbiguousTime (time)) { + isAmbiguousLocalDst = true; + return baseOffset; + } + + return zone.GetUtcOffset (time, out isDaylightSavings); + } #endregion } diff --git a/mcs/class/corlib/System/TimeZoneNotFoundException.cs b/mcs/class/corlib/System/TimeZoneNotFoundException.cs deleted file mode 100644 index 1333d971c82..00000000000 --- a/mcs/class/corlib/System/TimeZoneNotFoundException.cs +++ /dev/null @@ -1,53 +0,0 @@ -/* - * System.TimeZoneNotFoundException - * - * Author(s) - * Stephane Delcroix - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - - -using System.Runtime.CompilerServices; - -namespace System -{ - [Serializable] -#if MOBILE - [TypeForwardedFrom (Consts.AssemblySystem_Core)] -#else - [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] -#endif - public - class TimeZoneNotFoundException : Exception - { - public TimeZoneNotFoundException () : base () - {} - - public TimeZoneNotFoundException (string message) : base (message) - {} - - public TimeZoneNotFoundException (string message, Exception innerException) : base (message, innerException) - {} - - protected TimeZoneNotFoundException (Runtime.Serialization.SerializationInfo info, Runtime.Serialization.StreamingContext context) : base (info, context) - {} - } -} diff --git a/mcs/class/corlib/System/TypeLoadException.cs b/mcs/class/corlib/System/TypeLoadException.cs deleted file mode 100644 index f963ae1de70..00000000000 --- a/mcs/class/corlib/System/TypeLoadException.cs +++ /dev/null @@ -1,120 +0,0 @@ -// -// System.TypeLoadException.cs -// -// Authors: -// Sean MacIsaac (macisaac@ximian.com) -// Duncan Mak (duncan@ximian.com) -// -// (C) 2001 Ximian, Inc. http://www.ximian.com -// - -// -// Copyright (C) 2004 Novell, Inc (http://www.novell.com) -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// - -using System.Runtime.Serialization; -using System.Runtime.InteropServices; - -namespace System -{ - [Serializable] - [ComVisible (true)] - [StructLayout (LayoutKind.Sequential)] - public class TypeLoadException : SystemException - { - const int Result = unchecked ((int)0x80131522); - - // Fields - private string className, assemblyName; - - // Constructors - public TypeLoadException () - : base (Locale.GetText ("A type load exception has occurred.")) - { - HResult = Result; - } - - public TypeLoadException (string message) - : base (message) - { - HResult = Result; - } - - public TypeLoadException (string message, Exception inner) - : base (message, inner) - { - HResult = Result; - } - - internal TypeLoadException (string className, string assemblyName) : this () - { - this.className = className; - this.assemblyName = assemblyName; - } - - protected TypeLoadException (SerializationInfo info, StreamingContext context) - : base (info, context) - { - if (info == null) - throw new ArgumentNullException ("info"); - - className = info.GetString ("TypeLoadClassName"); - assemblyName = info.GetString ("TypeLoadAssemblyName"); - } - - // Properties - public override string Message { - get { - if (className != null) { - if ((assemblyName != null) && (assemblyName != String.Empty)) - return String.Format ("Could not load type '{0}' from assembly '{1}'.", className, assemblyName); - else - return String.Format ("Could not load type '{0}'.", className); - } - else - return base.Message; - } - } - - public string TypeName { - get { - if (className == null) - return String.Empty; - else - return className; - } - } - - // Methods - public override void GetObjectData (SerializationInfo info, StreamingContext context) - { - if (info == null) - throw new ArgumentNullException ("info"); - - base.GetObjectData (info, context); - info.AddValue ("TypeLoadClassName", className, typeof (string)); - info.AddValue ("TypeLoadAssemblyName", assemblyName, typeof (string)); - info.AddValue ("TypeLoadMessageArg", "", typeof (string)); - info.AddValue ("TypeLoadResourceID", 0, typeof (int)); - } - } -} diff --git a/mcs/class/corlib/Test/System.Collections.Generic/DictionaryTest.cs b/mcs/class/corlib/Test/System.Collections.Generic/DictionaryTest.cs index a361fbc50f8..129ee6d0bcc 100644 --- a/mcs/class/corlib/Test/System.Collections.Generic/DictionaryTest.cs +++ b/mcs/class/corlib/Test/System.Collections.Generic/DictionaryTest.cs @@ -633,6 +633,60 @@ namespace MonoTests.System.Collections.Generic { } } +#if !MONO + [Test] + public void SerializationCompatibilty () + { + /* Serialization output from .net + + var dict = new Dictionary (); + dict.Add ("key", "value"); + + var dictSerializedStream = new MemoryStream (); + fmt.Serialize (dictSerializedStream, dict); + + dictSerializedStream.Seek (0, SeekOrigin.Begin); + var res = Convert.ToBase64String (dictSerializedStream.ToArray (), Base64FormattingOptions.InsertLineBreaks); + + */ + + var x = "AAEAAAD/////AQAAAAAAAAAEAQAAAOIBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuRGljdGlv" + + "bmFyeWAyW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJl" + + "PW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldLFtTeXN0ZW0uU3RyaW5n" + + "LCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRv" + + "a2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAHVmVyc2lvbghDb21wYXJlcghIYXNoU2l6ZQ1LZXlW" + + "YWx1ZVBhaXJzAAMAAwiSAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLkdlbmVyaWNFcXVhbGl0" + + "eUNvbXBhcmVyYDFbW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1" + + "bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dCOYBU3lzdGVt" + + "LkNvbGxlY3Rpb25zLkdlbmVyaWMuS2V5VmFsdWVQYWlyYDJbW1N5c3RlbS5TdHJpbmcsIG1zY29y" + + "bGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3" + + "YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAs" + + "IEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dW10BAAAA" + + "CQIAAAADAAAACQMAAAAEAgAAAJIBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuR2VuZXJpY0Vx" + + "dWFsaXR5Q29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAu" + + "MCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0AAAAA" + + "BwMAAAAAAQAAAAEAAAAD5AFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5LZXlWYWx1ZVBhaXJg" + + "MltbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0" + + "cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNj" + + "b3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1i" + + "NzdhNWM1NjE5MzRlMDg5XV0E/P///+QBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuS2V5VmFs" + + "dWVQYWlyYDJbW1N5c3RlbS5TdHJpbmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1" + + "cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV0sW1N5c3RlbS5TdHJp" + + "bmcsIG1zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5" + + "VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OV1dAgAAAANrZXkFdmFsdWUBAQYFAAAAA2tleQYGAAAABXZh" + + "bHVlCw=="; + + var dict = new Dictionary (); + dict.Add ("key", "value"); + + BinaryFormatter fmt = new BinaryFormatter (); + var mdict = (Dictionary) fmt.Deserialize (new MemoryStream (Convert.FromBase64String (x))); + + Assert.AreEqual (1, dict.Count); + Assert.AreEqual (dict.Comparer.GetType (), mdict.Comparer.GetType ()); + } +#endif + [Test] public void ZeroCapacity () { diff --git a/mcs/class/corlib/Test/System.Collections.Generic/EqualityComparerTest.cs b/mcs/class/corlib/Test/System.Collections.Generic/EqualityComparerTest.cs index 5a0fd3b6a25..e238781bcb7 100644 --- a/mcs/class/corlib/Test/System.Collections.Generic/EqualityComparerTest.cs +++ b/mcs/class/corlib/Test/System.Collections.Generic/EqualityComparerTest.cs @@ -37,6 +37,11 @@ namespace MonoTests.System.Collections.Generic { [TestFixture] public class EqualityComparerTest { + enum E + { + A, + B + } [Test] public void Default_GetHashCode_Null () @@ -59,6 +64,13 @@ namespace MonoTests.System.Collections.Generic { IEqualityComparer comparer = EqualityComparer.Default; Assert.IsTrue (comparer.Equals (null, null)); } + + [Test] + public void EnumComparison () + { + Assert.IsFalse (EqualityComparer.Default.Equals (E.A, E.B)); + Assert.IsFalse (EqualityComparer.Default.Equals (E.A, E.B)); + } } } diff --git a/mcs/class/corlib/Test/System/TimeZoneInfo.AdjustmentRuleTest.cs b/mcs/class/corlib/Test/System/TimeZoneInfo.AdjustmentRuleTest.cs index 940b1290ea3..62ae67cfc81 100644 --- a/mcs/class/corlib/Test/System/TimeZoneInfo.AdjustmentRuleTest.cs +++ b/mcs/class/corlib/Test/System/TimeZoneInfo.AdjustmentRuleTest.cs @@ -55,16 +55,17 @@ namespace MonoTests.System } [Test] - [ExpectedException (typeof (ArgumentOutOfRangeException))] public void EndBeforeStart () { - if (Environment.OSVersion.Platform != PlatformID.Unix) - throw new ArgumentOutOfRangeException ();; DateTime dateStart = new DateTime (2007,01,01); DateTime dateEnd = new DateTime (2006,01,01); TimeZoneInfo.TransitionTime daylightTransitionStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule (new DateTime (1,1,1,2,0,0), 03, 11); TimeZoneInfo.TransitionTime daylightTransitionEnd = TimeZoneInfo.TransitionTime.CreateFixedDateRule (new DateTime (1,1,1,2,0,0), 10, 11); - TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (dateStart, dateEnd, new TimeSpan (1,0,0), daylightTransitionStart, daylightTransitionEnd); + try { + TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (dateStart, dateEnd, new TimeSpan (1,0,0), daylightTransitionStart, daylightTransitionEnd); + Assert.Fail (); + } catch (ArgumentException) { + } } [Test] @@ -79,7 +80,6 @@ namespace MonoTests.System } [Test] - [ExpectedException (typeof (ArgumentOutOfRangeException))] public void DeltaNotInSeconds () { if (Environment.OSVersion.Platform != PlatformID.Unix) @@ -88,7 +88,11 @@ namespace MonoTests.System DateTime dateEnd = new DateTime (2008,01,01); TimeZoneInfo.TransitionTime daylightTransitionStart = TimeZoneInfo.TransitionTime.CreateFixedDateRule (new DateTime (1,1,1,2,0,0), 03, 11); TimeZoneInfo.TransitionTime daylightTransitionEnd = TimeZoneInfo.TransitionTime.CreateFixedDateRule (new DateTime (1,1,1,2,0,0), 10, 11); - TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (dateStart, dateEnd, new TimeSpan (55), daylightTransitionStart, daylightTransitionEnd); + try { + TimeZoneInfo.AdjustmentRule.CreateAdjustmentRule (dateStart, dateEnd, new TimeSpan (55), daylightTransitionStart, daylightTransitionEnd); + Assert.Fail (); + } catch (ArgumentException) { + } } } diff --git a/mcs/class/corlib/corlib.dll.sources b/mcs/class/corlib/corlib.dll.sources index 079fc0d6688..98ab6f9cf26 100644 --- a/mcs/class/corlib/corlib.dll.sources +++ b/mcs/class/corlib/corlib.dll.sources @@ -88,31 +88,16 @@ System/AppDomain.cs System/AppDomainInitializer.cs System/AppDomainManager.cs System/AppDomainSetup.cs -System/ApplicationId.cs System/ApplicationIdentity.cs System/ArgIterator.cs System/Array.cs System/AssemblyLoadEventArgs.cs System/AssemblyLoadEventHandler.cs -System/AsyncCallback.cs -System/AttributeTargets.cs -System/BadImageFormatException.cs -System/Buffer.cs -System/CLSCompliantAttribute.cs System/CStreamReader.cs System/CStreamWriter.cs System/Console.cs System/Console.iOS.cs -System/ConsoleCancelEventArgs.cs -System/ConsoleCancelEventHandler.cs -System/ConsoleColor.cs System/ConsoleDriver.cs -System/ConsoleKey.cs -System/ConsoleKeyInfo.cs -System/ConsoleModifiers.cs -System/ConsoleSpecialKey.cs -System/ContextBoundObject.cs -System/ContextStaticAttribute.cs System/ControlCharacters.cs System/CrossAppDomainDelegate.cs System/Delegate.cs @@ -122,36 +107,15 @@ System/Double.cs System/EmptyArray.cs System/Environment.cs System/EnvironmentVariableTarget.cs -System/EventArgs.cs -System/EventHandler.cs System/Exception.cs -System/FlagsAttribute.cs -System/Funcs.cs System/GC.cs System/GCCollectionMode.cs System/GCNotificationStatus.cs System/Guid.cs System/Guid.MonoTouch.cs -System/IAppDomainSetup.cs -System/IAsyncResult.cs -System/IObservable.cs -System/IObserver.cs -System/ICloneable.cs -System/IComparable.cs -System/IEquatable.cs System/IConsoleDriver.cs -System/IConvertible.cs -System/ICustomFormatter.cs -System/IDisposable.cs -System/IFormatProvider.cs -System/IFormattable.cs System/IntPtr.cs -System/InvalidTimeZoneException.cs -System/IProgress.cs -System/IServiceProvider.cs System/KnownTerminals.cs -System/LoaderOptimization.cs -System/LoaderOptimizationAttribute.cs System/LocalDataStoreSlot.cs System/MarshalByRefObject.cs System/Math.cs @@ -161,16 +125,12 @@ System/MonoCustomAttrs.cs System/MonoListItem.cs System/MonoType.cs System/MonoTouchAOTHelper.cs -System/MTAThreadAttribute.cs System/MulticastDelegate.cs -System/NonSerializedAttribute.cs System/NullConsoleDriver.cs System/Nullable.cs System/NumberFormatter.cs System/Object.cs -System/ObsoleteAttribute.cs System/OperatingSystem.cs -System/ParamArrayAttribute.cs System/PlatformID.cs System/ResolveEventArgs.cs System/ResolveEventHandler.cs @@ -179,28 +139,21 @@ System/RuntimeFieldHandle.cs System/RuntimeMethodHandle.cs System/RuntimeTypeHandle.cs System/ModuleHandle.cs -System/SerializableAttribute.cs System/Single.cs -System/STAThreadAttribute.cs System/StringComparison.cs System/TermInfoBooleans.cs System/TermInfoDriver.cs System/TermInfoNumbers.cs System/TermInfoReader.cs System/TermInfoStrings.cs -System/ThreadStaticAttribute.cs System/TimeZone.cs System/TimeZoneInfo.cs -System/TimeZoneInfo.AdjustmentRule.cs System/TimeZoneInfo.Android.cs System/TimeZoneInfo.MonoTouch.cs System/TimeZoneInfo.Serialization.cs -System/TimeZoneInfo.TransitionTime.cs -System/TimeZoneNotFoundException.cs ../../build/common/MonoTODOAttribute.cs System/TypeSpec.cs System/TypeCode.cs -System/TypeLoadException.cs System/UIntPtr.cs System/ValueType.cs System/Variant.cs @@ -208,7 +161,6 @@ System/Void.cs System/WeakReference.cs System/WeakReference_T.cs System/WindowsConsoleDriver.cs -System/_AppDomain.cs System/__ComObject.cs System.Configuration.Assemblies/AssemblyHash.cs System.Configuration.Assemblies/AssemblyHashAlgorithm.cs @@ -254,32 +206,25 @@ System.Globalization/RegionInfo.MonoTouch.cs System.Globalization/TextInfo.cs System.IO/Directory.cs System.IO/DirectoryInfo.cs -System.IO/DirectoryNotFoundException.cs System.IO/DriveInfo.cs -System.IO/DriveNotFoundException.cs System.IO/DriveType.cs -System.IO/EndOfStreamException.cs System.IO/File.cs System.IO/FileAccess.cs System.IO/FileAttributes.cs System.IO/FileInfo.cs -System.IO/FileLoadException.cs System.IO/FileMode.cs -System.IO/FileNotFoundException.cs System.IO/FileOptions.cs System.IO/FileShare.cs System.IO/FileStream.cs System.IO/FileStreamAsyncResult.cs System.IO/FileSystemInfo.cs System.IO/HGlobalUnmanagedMemoryStream.cs -System.IO/IOException.cs System.IO/LogcatTextWriter.cs System.IO/MonoIO.cs System.IO/MonoIOError.cs System.IO/MonoFileType.cs System.IO/MonoIOStat.cs System.IO/Path.cs -System.IO/PathTooLongException.cs System.IO/SearchOption.cs System.IO/SearchPattern.cs System.IO/SeekOrigin.cs @@ -1154,12 +1099,6 @@ System.Threading/Timer.cs System.Threading/TimerCallback.cs System.Threading/Volatile.cs System.Threading/WaitHandle.cs -System/Action.cs -System/Comparison.cs -System/Converter.cs -System/Predicate.cs -System.Collections.Generic/Comparer.cs -System.Collections.Generic/EqualityComparer.cs System.Threading.Tasks/DecoupledTask.cs ../Mono.Parallel/Mono.Threading/AtomicBoolean.cs @@ -1176,7 +1115,6 @@ ReferenceSources/Environment.cs ReferenceSources/ExecutionContext.cs ReferenceSources/HashHelpers.cs ReferenceSources/ParseNumbers.cs -ReferenceSources/TimeZoneInfoOptions.cs ReferenceSources/AppDomain.cs ReferenceSources/CLRConfig.cs ReferenceSources/JitHelpers.cs @@ -1189,28 +1127,46 @@ ReferenceSources/MonoRuntimeWorkItem.cs ReferenceSources/MethodBase.cs ReferenceSources/RuntimeHandles.cs ReferenceSources/CompareInfo.cs +ReferenceSources/TypeBuilderInstantiation.cs +ReferenceSources/Buffer.cs ../../../external/referencesource/mscorlib/system/__filters.cs ../../../external/referencesource/mscorlib/system/__hresults.cs ../../../external/referencesource/mscorlib/system/accessviolationexception.cs +../../../external/referencesource/mscorlib/system/action.cs ../../../external/referencesource/mscorlib/system/activator.cs ../../../external/referencesource/mscorlib/system/AggregateException.cs +../../../external/referencesource/mscorlib/system/appdomainattributes.cs ../../../external/referencesource/mscorlib/system/appdomainunloadedexception.cs ../../../external/referencesource/mscorlib/system/applicationexception.cs +../../../external/referencesource/mscorlib/system/applicationid.cs ../../../external/referencesource/mscorlib/system/argumentexception.cs ../../../external/referencesource/mscorlib/system/argumentnullexception.cs ../../../external/referencesource/mscorlib/system/argumentoutofrangeexception.cs ../../../external/referencesource/mscorlib/system/arithmeticexception.cs ../../../external/referencesource/mscorlib/system/arraysegment.cs ../../../external/referencesource/mscorlib/system/arraytypemismatchexception.cs +../../../external/referencesource/mscorlib/system/asynccallback.cs ../../../external/referencesource/mscorlib/system/attribute.cs +../../../external/referencesource/mscorlib/system/attributetargets.cs ../../../external/referencesource/mscorlib/system/attributeusageattribute.cs +../../../external/referencesource/mscorlib/system/badimageformatexception.cs ../../../external/referencesource/mscorlib/system/bitconverter.cs ../../../external/referencesource/mscorlib/system/boolean.cs +../../../external/referencesource/mscorlib/system/buffer.cs ../../../external/referencesource/mscorlib/system/byte.cs ../../../external/referencesource/mscorlib/system/cannotunloadappdomainexception.cs ../../../external/referencesource/mscorlib/system/char.cs ../../../external/referencesource/mscorlib/system/charenumerator.cs +../../../external/referencesource/mscorlib/system/consolecanceleventargs.cs +../../../external/referencesource/mscorlib/system/consolecolor.cs +../../../external/referencesource/mscorlib/system/consolekey.cs +../../../external/referencesource/mscorlib/system/consolekeyinfo.cs +../../../external/referencesource/mscorlib/system/consolemodifiers.cs +../../../external/referencesource/mscorlib/system/consolespecialkey.cs +../../../external/referencesource/mscorlib/system/contextboundobject.cs +../../../external/referencesource/mscorlib/system/contextstaticattribute.cs +../../../external/referencesource/mscorlib/system/clscompliantattribute.cs ../../../external/referencesource/mscorlib/system/contextmarshalexception.cs ../../../external/referencesource/mscorlib/system/convert.cs ../../../external/referencesource/mscorlib/system/datamisalignedexception.cs @@ -1227,10 +1183,24 @@ ReferenceSources/CompareInfo.cs ../../../external/referencesource/mscorlib/system/empty.cs ../../../external/referencesource/mscorlib/system/enum.cs ../../../external/referencesource/mscorlib/system/entrypointnotfoundexception.cs +../../../external/referencesource/mscorlib/system/eventargs.cs +../../../external/referencesource/mscorlib/system/eventhandler.cs ../../../external/referencesource/mscorlib/system/executionengineexception.cs ../../../external/referencesource/mscorlib/system/fieldaccessexception.cs +../../../external/referencesource/mscorlib/system/flagsattribute.cs ../../../external/referencesource/mscorlib/system/formatexception.cs ../../../external/referencesource/mscorlib/system/guid.cs +../../../external/referencesource/mscorlib/system/iappdomain.cs +../../../external/referencesource/mscorlib/system/iappdomainsetup.cs +../../../external/referencesource/mscorlib/system/iasyncresult.cs +../../../external/referencesource/mscorlib/system/icloneable.cs +../../../external/referencesource/mscorlib/system/icomparable.cs +../../../external/referencesource/mscorlib/system/iconvertible.cs +../../../external/referencesource/mscorlib/system/icustomformatter.cs +../../../external/referencesource/mscorlib/system/idisposable.cs +../../../external/referencesource/mscorlib/system/iequatable.cs +../../../external/referencesource/mscorlib/system/iformatprovider.cs +../../../external/referencesource/mscorlib/system/iformattable.cs ../../../external/referencesource/mscorlib/system/invalidcastexception.cs ../../../external/referencesource/mscorlib/system/indexoutofrangeexception.cs ../../../external/referencesource/mscorlib/system/invalidoperationexception.cs @@ -1240,23 +1210,31 @@ ReferenceSources/CompareInfo.cs ../../../external/referencesource/mscorlib/system/int16.cs ../../../external/referencesource/mscorlib/system/int32.cs ../../../external/referencesource/mscorlib/system/int64.cs +../../../external/referencesource/mscorlib/system/iobservable.cs +../../../external/referencesource/mscorlib/system/iobserver.cs +../../../external/referencesource/mscorlib/system/iprogress.cs +../../../external/referencesource/mscorlib/system/iserviceobjectprovider.cs +../../../external/referencesource/mscorlib/system/invalidtimezoneexception.cs ../../../external/referencesource/mscorlib/system/Lazy.cs ../../../external/referencesource/mscorlib/system/memberaccessexception.cs ../../../external/referencesource/mscorlib/system/methodaccessexception.cs +../../../external/referencesource/mscorlib/system/midpointrounding.cs ../../../external/referencesource/mscorlib/system/missingfieldexception.cs ../../../external/referencesource/mscorlib/system/missingmemberexception.cs ../../../external/referencesource/mscorlib/system/missingmethodexception.cs ../../../external/referencesource/mscorlib/system/multicastnotsupportedexception.cs +../../../external/referencesource/mscorlib/system/nonserializedattribute.cs ../../../external/referencesource/mscorlib/system/notfinitenumberexception.cs ../../../external/referencesource/mscorlib/system/notimplementedexception.cs ../../../external/referencesource/mscorlib/system/notsupportedexception.cs -../../../external/referencesource/mscorlib/system/midpointrounding.cs ../../../external/referencesource/mscorlib/system/nullreferenceexception.cs ../../../external/referencesource/mscorlib/system/number.cs ../../../external/referencesource/mscorlib/system/objectdisposedexception.cs +../../../external/referencesource/mscorlib/system/obsoleteattribute.cs ../../../external/referencesource/mscorlib/system/operationcanceledexception.cs ../../../external/referencesource/mscorlib/system/outofmemoryexception.cs ../../../external/referencesource/mscorlib/system/overflowexception.cs +../../../external/referencesource/mscorlib/system/paramarrayattribute.cs ../../../external/referencesource/mscorlib/system/platformnotsupportedexception.cs ../../../external/referencesource/mscorlib/system/progress.cs ../../../external/referencesource/mscorlib/system/random.cs @@ -1264,6 +1242,7 @@ ReferenceSources/CompareInfo.cs ../../../external/referencesource/mscorlib/system/resid.cs ../../../external/referencesource/mscorlib/system/rttype.cs ../../../external/referencesource/mscorlib/system/sbyte.cs +../../../external/referencesource/mscorlib/system/serializableattribute.cs ../../../external/referencesource/mscorlib/system/stackoverflowexception.cs ../../../external/referencesource/mscorlib/system/string.cs ../../../external/referencesource/mscorlib/system/stringcomparer.cs @@ -1271,11 +1250,16 @@ ReferenceSources/CompareInfo.cs ../../../external/referencesource/mscorlib/system/systemexception.cs ../../../external/referencesource/mscorlib/system/timeoutexception.cs ../../../external/referencesource/mscorlib/system/timespan.cs +../../../external/referencesource/mscorlib/system/threadattributes.cs +../../../external/referencesource/mscorlib/system/threadstaticattribute.cs ../../../external/referencesource/mscorlib/system/throwhelper.cs +../../../external/referencesource/mscorlib/system/timezoneinfo.cs +../../../external/referencesource/mscorlib/system/timezonenotfoundexception.cs ../../../external/referencesource/mscorlib/system/tuple.cs ../../../external/referencesource/mscorlib/system/type.cs ../../../external/referencesource/mscorlib/system/typeaccessexception.cs ../../../external/referencesource/mscorlib/system/typeinitializationexception.cs +../../../external/referencesource/mscorlib/system/typeloadexception.cs ../../../external/referencesource/mscorlib/system/typedreference.cs ../../../external/referencesource/mscorlib/system/typeunloadedexception.cs ../../../external/referencesource/mscorlib/system/uint16.cs @@ -1322,8 +1306,10 @@ ReferenceSources/CompareInfo.cs ../../../external/referencesource/mscorlib/system/collections/stack.cs ../../../external/referencesource/mscorlib/system/collections/structuralcomparisons.cs +../../../external/referencesource/mscorlib/system/collections/generic/comparer.cs ../../../external/referencesource/mscorlib/system/collections/generic/debugview.cs ../../../external/referencesource/mscorlib/system/collections/generic/dictionary.cs +../../../external/referencesource/mscorlib/system/collections/generic/equalitycomparer.cs ../../../external/referencesource/mscorlib/system/collections/generic/icollection.cs ../../../external/referencesource/mscorlib/system/collections/generic/icomparer.cs ../../../external/referencesource/mscorlib/system/collections/generic/idictionary.cs @@ -1397,10 +1383,18 @@ ReferenceSources/CompareInfo.cs ../../../external/referencesource/mscorlib/system/globalization/unicodecategory.cs ../../../external/referencesource/mscorlib/system/io/__error.cs +../../../external/referencesource/mscorlib/system/io/__hresults.cs ../../../external/referencesource/mscorlib/system/io/binaryreader.cs ../../../external/referencesource/mscorlib/system/io/binarywriter.cs ../../../external/referencesource/mscorlib/system/io/bufferedstream.cs +../../../external/referencesource/mscorlib/system/io/directorynotfoundexception.cs +../../../external/referencesource/mscorlib/system/io/drivenotfoundexception.cs +../../../external/referencesource/mscorlib/system/io/endofstreamexception.cs +../../../external/referencesource/mscorlib/system/io/ioexception.cs +../../../external/referencesource/mscorlib/system/io/fileloadexception.cs +../../../external/referencesource/mscorlib/system/io/filenotfoundexception.cs ../../../external/referencesource/mscorlib/system/io/memorystream.cs +../../../external/referencesource/mscorlib/system/io/pathtoolongexception.cs ../../../external/referencesource/mscorlib/system/io/pinnedbuffermemorystream.cs ../../../external/referencesource/mscorlib/system/io/stream.cs ../../../external/referencesource/mscorlib/system/io/streamreader.cs @@ -1542,6 +1536,8 @@ ReferenceSources/CompareInfo.cs ../../../external/referencesource/mscorlib/system/runtime/compilerservices/unsafevaluetypeattribute.cs ../../../external/referencesource/mscorlib/system/runtime/compilerservices/YieldAwaitable.cs +../../../external/referencesource/mscorlib/system/security/util/hex.cs + ../../../external/referencesource/mscorlib/system/text/asciiencoding.cs ../../../external/referencesource/mscorlib/system/text/codepageencoding.cs ../../../external/referencesource/mscorlib/system/text/decoderbestfitfallback.cs diff --git a/mcs/class/reference-assemblies/Makefile b/mcs/class/reference-assemblies/Makefile index a14f96f208a..e4b660ba5df 100644 --- a/mcs/class/reference-assemblies/Makefile +++ b/mcs/class/reference-assemblies/Makefile @@ -4,10 +4,16 @@ include ../../build/rules.make all-local: +PROFILE_DIR=$(DESTDIR)$(mono_libdir)/mono/ + install-local: - $(MKINSTALLDIRS) $(DESTDIR)$(LIBRARY_INSTALL_DIR) - $(INSTALL_LIB) ../../../external/binary-reference-assemblies/v4.0/* $(DESTDIR)$(LIBRARY_INSTALL_DIR) + $(MKINSTALLDIRS) $(PROFILE_DIR)/2.0 + $(MKINSTALLDIRS) $(PROFILE_DIR)/3.5 + $(MKINSTALLDIRS) $(PROFILE_DIR)/4.0 + $(INSTALL_LIB) ../../../external/binary-reference-assemblies/v2.0/* $(PROFILE_DIR)/2.0 + $(INSTALL_LIB) ../../../external/binary-reference-assemblies/v3.5/* $(PROFILE_DIR)/3.5 + $(INSTALL_LIB) ../../../external/binary-reference-assemblies/v4.0/* $(PROFILE_DIR)/4.0 -DISTFILES = $(wildcard ../../../external/binary-reference-assemblies/v4.0/*) Makefile +DISTFILES = $(wildcard ../../../external/binary-reference-assemblies/v4.0/*) $(wildcard ../../../external/binary-reference-assemblies/v3.5/*) $(wildcard ../../../external/binary-reference-assemblies/v2.0/*) Makefile dist-local: dist-default diff --git a/mcs/mcs/anonymous.cs b/mcs/mcs/anonymous.cs index 1063fb1b077..12bf992bbcc 100644 --- a/mcs/mcs/anonymous.cs +++ b/mcs/mcs/anonymous.cs @@ -1920,17 +1920,16 @@ namespace Mono.CSharp { var delegate_method = method.Spec; if (storey != null && storey.MemberName.IsGeneric) { - TypeSpec t = storey.Instance.Type; - // // Mutate anonymous method instance type if we are in nested // hoisted generic anonymous method storey // if (ec.IsAnonymousStoreyMutateRequired) { - t = storey.Mutator.Mutate (t); + ec.Emit (OpCodes.Ldftn, delegate_method); + } else { + TypeSpec t = storey.Instance.Type; + ec.Emit (OpCodes.Ldftn, TypeBuilder.GetMethod (t.GetMetaInfo (), (MethodInfo) delegate_method.GetMetaInfo ())); } - - ec.Emit (OpCodes.Ldftn, TypeBuilder.GetMethod (t.GetMetaInfo (), (MethodInfo) delegate_method.GetMetaInfo ())); } else { if (delegate_method.IsGeneric) { TypeParameterSpec[] tparams; diff --git a/mcs/mcs/decl.cs b/mcs/mcs/decl.cs index 16f8bcb3836..d60e6ca0aec 100644 --- a/mcs/mcs/decl.cs +++ b/mcs/mcs/decl.cs @@ -573,8 +573,11 @@ namespace Mono.CSharp { // protected type then the type is accessible // while (mc.Parent != null && mc.Parent.PartialContainer != null) { - if (mc.Parent.PartialContainer.IsBaseTypeDefinition (p_parent)) + if (mc.Parent.PartialContainer.IsBaseTypeDefinition (p_parent)) { same_access_restrictions = true; + break; + } + mc = mc.Parent; } } @@ -586,8 +589,15 @@ namespace Mono.CSharp { same_access_restrictions = p.MemberDefinition.IsInternalAsPublic (mc.Module.DeclaringAssembly); else if (al == (Modifiers.PROTECTED | Modifiers.INTERNAL)) same_access_restrictions = mc.Parent.PartialContainer.IsBaseTypeDefinition (p_parent) && p.MemberDefinition.IsInternalAsPublic (mc.Module.DeclaringAssembly); - else + else if (al == Modifiers.PROTECTED) goto case Modifiers.PROTECTED; + else if (al == Modifiers.PRIVATE) { + if (p.MemberDefinition.IsInternalAsPublic (mc.Module.DeclaringAssembly)) { + same_access_restrictions = true; + } else { + goto case Modifiers.PROTECTED; + } + } break; diff --git a/mcs/mcs/ecore.cs b/mcs/mcs/ecore.cs index d7d370893c6..5965fb53e9d 100644 --- a/mcs/mcs/ecore.cs +++ b/mcs/mcs/ecore.cs @@ -4727,6 +4727,9 @@ namespace Mono.CSharp { var cand_param = candidate_pd.FixedParameters [j]; var best_param = best_pd.FixedParameters [j]; + if (cand_param.HasDefaultValue != best_param.HasDefaultValue) + return cand_param.HasDefaultValue; + if (candidate_pd.Count == best_pd.Count) { // // LAMESPEC: @@ -4734,8 +4737,6 @@ namespace Mono.CSharp { // void Foo (int i = 0) is better than void Foo (params int[]) for Foo () // void Foo (string[] s, string value = null) is better than Foo (string s, params string[]) for Foo (null) or Foo () // - if (cand_param.HasDefaultValue != best_param.HasDefaultValue) - return cand_param.HasDefaultValue; if (cand_param.HasDefaultValue) { ++j; @@ -4749,8 +4750,7 @@ namespace Mono.CSharp { // void Foo (string s, int i = 0) <-> Foo (string s, byte i = 0) // void Foo (string s, params int[]) <-> Foo (string s, params byte[]) // - if (cand_param.HasDefaultValue && best_param.HasDefaultValue) - return false; + return false; } break; diff --git a/mcs/mcs/expression.cs b/mcs/mcs/expression.cs index f4df8c9c443..40eb0068b2d 100644 --- a/mcs/mcs/expression.cs +++ b/mcs/mcs/expression.cs @@ -11437,19 +11437,19 @@ namespace Mono.CSharp // public class StackAlloc : Expression { TypeSpec otype; - Expression t; + Expression texpr; Expression count; public StackAlloc (Expression type, Expression count, Location l) { - t = type; + texpr = type; this.count = count; loc = l; } public Expression TypeExpression { get { - return this.t; + return texpr; } } @@ -11490,7 +11490,7 @@ namespace Mono.CSharp ec.Report.Error (255, loc, "Cannot use stackalloc in finally or catch"); } - otype = t.ResolveAsType (ec); + otype = texpr.ResolveAsType (ec); if (otype == null) return null; @@ -11522,7 +11522,7 @@ namespace Mono.CSharp { StackAlloc target = (StackAlloc) t; target.count = count.Clone (clonectx); - target.t = t.Clone (clonectx); + target.texpr = texpr.Clone (clonectx); } public override object Accept (StructuralVisitor visitor) diff --git a/mcs/mcs/property.cs b/mcs/mcs/property.cs index 1d46ab2dab8..7d95e44efdb 100644 --- a/mcs/mcs/property.cs +++ b/mcs/mcs/property.cs @@ -548,19 +548,21 @@ namespace Mono.CSharp } if (Set == null) { - if ((ModFlags & Modifiers.SEALED) != 0 && base_prop.HasSet && !base_prop.Set.IsAccessible (this)) { - // TODO: Should be different error code but csc uses for some reason same - Report.SymbolRelatedToPreviousError (base_prop); - Report.Error (546, Location, - "`{0}': cannot override because `{1}' does not have accessible set accessor", - GetSignatureForError (), base_prop.GetSignatureForError ()); - ok = false; - } + if (base_prop.HasSet) { + if ((ModFlags & Modifiers.SEALED) != 0 && !base_prop.Set.IsAccessible (this)) { + // TODO: Should be different error code but csc uses for some reason same + Report.SymbolRelatedToPreviousError (base_prop); + Report.Error (546, Location, + "`{0}': cannot override because `{1}' does not have accessible set accessor", + GetSignatureForError (), base_prop.GetSignatureForError ()); + ok = false; + } - if ((ModFlags & Modifiers.AutoProperty) != 0) { - Report.Error (8080, Location, "`{0}': Auto-implemented properties must override all accessors of the overridden property", - GetSignatureForError ()); - ok = false; + if ((ModFlags & Modifiers.AutoProperty) != 0) { + Report.Error (8080, Location, "`{0}': Auto-implemented properties must override all accessors of the overridden property", + GetSignatureForError ()); + ok = false; + } } } else { if (!base_prop.HasSet) { diff --git a/mcs/tests/gtest-autoproperty-17.cs b/mcs/tests/gtest-autoproperty-17.cs new file mode 100644 index 00000000000..1897e33eb9b --- /dev/null +++ b/mcs/tests/gtest-autoproperty-17.cs @@ -0,0 +1,18 @@ +using System; + +class MainClass +{ + abstract public class Bar + { + abstract public bool Condition { get; } + } + + class Baz: Bar + { + public override bool Condition { get; } = true; + } + + public static void Main (string[] args) + { + } +} diff --git a/mcs/tests/gtest-optional-09.cs b/mcs/tests/gtest-optional-09.cs index cfbe860a7dc..7117ab291e7 100644 --- a/mcs/tests/gtest-optional-09.cs +++ b/mcs/tests/gtest-optional-09.cs @@ -59,20 +59,30 @@ public class Program static int Test_6 (params object[] o) { - return 0; + return 1; } static int Test_6 (int i = 1, params object[] a) { - return 1; + return 0; } static int Test_7 (bool b, params object[] o) { - return 0; + return 1; } static int Test_7 (bool b, int i = 1, params object[] a) + { + return 0; + } + + static int Test_8 (Type t, bool b = false, int x = 0) + { + return 0; + } + + static int Test_8 (Type t, params int[] x) { return 1; } @@ -100,6 +110,9 @@ public class Program if (Test_7 (false) != 0) return 7; + if (Test_8 (typeof (bool)) != 0) + return 8; + Console.WriteLine ("ok"); return 0; } diff --git a/mcs/tests/test-922.cs b/mcs/tests/test-922.cs new file mode 100644 index 00000000000..a5ea96ae0a1 --- /dev/null +++ b/mcs/tests/test-922.cs @@ -0,0 +1,16 @@ +public class A +{ + protected internal struct C { } +} + +class B +{ + class D : A + { + public A.C Property { get; set; } + } + + public static void Main () + { + } +} \ No newline at end of file diff --git a/mcs/tests/test-anon-177.cs b/mcs/tests/test-anon-177.cs new file mode 100644 index 00000000000..cb31425b532 --- /dev/null +++ b/mcs/tests/test-anon-177.cs @@ -0,0 +1,25 @@ +using System; +using System.Linq; +using System.Collections.Generic; + +class X +{ + public static void Execute(TArg args) + { + Action a = () => { + List s = new List () { + "test" + }; + + object res = null; + var res2 = s.Select(acrl => acrl.Select(acr => res)).ToArray (); + }; + + a (); + } + + public static void Main () + { + Execute (null); + } +} \ No newline at end of file diff --git a/mcs/tests/test-anon-70.cs b/mcs/tests/test-anon-70.cs index 2376311430a..d0fe4b7a07a 100644 --- a/mcs/tests/test-anon-70.cs +++ b/mcs/tests/test-anon-70.cs @@ -26,9 +26,12 @@ public class C Test (delegate () { int i = *v.GetUnsafeValue (); }); + + Test (delegate () { + byte* buffer = stackalloc byte[8192]; + }); } - public static void Main () { Exception diffException; diff --git a/mcs/tests/ver-il-net_4_5.xml b/mcs/tests/ver-il-net_4_5.xml index 0cfc6332252..ef04802a541 100644 --- a/mcs/tests/ver-il-net_4_5.xml +++ b/mcs/tests/ver-il-net_4_5.xml @@ -20573,6 +20573,32 @@ + + + + 2 + + + 7 + + + + + 0 + + + 7 + + + + + 14 + + + 14 + + + @@ -29740,11 +29766,17 @@ 10 - 161 + 192 7 + + 10 + + + 10 + @@ -51412,6 +51444,32 @@ + + + + 7 + + + + + 2 + + + 7 + + + + + 14 + + + 8 + + + 7 + + + @@ -55562,6 +55620,33 @@ + + + + 21 + + + 8 + + + 58 + + + 7 + + + + + 26 + + + 14 + + + 7 + + + @@ -58028,7 +58113,7 @@ - 36 + 70 99 @@ -58078,7 +58163,10 @@ - + + 12 + + 17 diff --git a/mcs/tools/xbuild/Makefile b/mcs/tools/xbuild/Makefile index 05c24763cde..949f3e59663 100644 --- a/mcs/tools/xbuild/Makefile +++ b/mcs/tools/xbuild/Makefile @@ -41,8 +41,12 @@ install-bin-data: install-frameworks: $(MKINSTALLDIRS) $(DESTDIR)$(NETFRAMEWORK_DIR)/v$(FRAMEWORK_VERSION)/RedistList $(INSTALL_DATA) frameworks/net_$(FRAMEWORK_VERSION).xml $(DESTDIR)$(NETFRAMEWORK_DIR)/v$(FRAMEWORK_VERSION)/RedistList/FrameworkList.xml + $(MKINSTALLDIRS) $(DESTDIR)$(NETFRAMEWORK_DIR)/v2.0/RedistList + $(INSTALL_DATA) frameworks/net_2.0.xml $(DESTDIR)$(NETFRAMEWORK_DIR)/v2.0/RedistList/FrameworkList.xml $(MKINSTALLDIRS) $(DESTDIR)$(NETFRAMEWORK_DIR)/v3.0/RedistList $(INSTALL_DATA) frameworks/net_3.0.xml $(DESTDIR)$(NETFRAMEWORK_DIR)/v3.0/RedistList/FrameworkList.xml + $(MKINSTALLDIRS) $(DESTDIR)$(NETFRAMEWORK_DIR)/v3.5/RedistList + $(INSTALL_DATA) frameworks/net_3.5.xml $(DESTDIR)$(NETFRAMEWORK_DIR)/v3.5/RedistList/FrameworkList.xml $(MKINSTALLDIRS) $(DESTDIR)$(NETFRAMEWORK_DIR)/v4.0/RedistList $(INSTALL_DATA) frameworks/net_4.0.xml $(DESTDIR)$(NETFRAMEWORK_DIR)/v4.0/RedistList/FrameworkList.xml $(MKINSTALLDIRS) $(DESTDIR)$(NETFRAMEWORK_DIR)/v4.0/Profile/Client/RedistList diff --git a/mono-core.spec.in b/mono-core.spec.in deleted file mode 100644 index 04c4e326ebf..00000000000 --- a/mono-core.spec.in +++ /dev/null @@ -1,1518 +0,0 @@ -%{!?ext_man: %define ext_man .gz} -%define llvm no -%define sgen yes - -%ifnarch %ix86 x86_64 -%define llvm no -%endif - -%ifnarch %ix86 x86_64 s390x -%define sgen no -%endif - -Name: mono-core -License: LGPL v2.1 only -Group: Development/Languages/Mono -Summary: A .NET Runtime Environment -Url: http://www.mono-project.com -Version: @VERSION@ -Release: 0 -Source0: mono-%{version}.tar.bz2 -BuildRequires: bison -%if 0%{?suse_version} -BuildRequires: fdupes -BuildRequires: xorg-x11-libX11-devel -%else -BuildRequires: libX11-devel -%endif -BuildRequires: gcc-c++ -BuildRequires: pkgconfig -BuildRequires: zlib-devel -%ifnarch ia64 -BuildRequires: valgrind-devel -%endif -%if %llvm == yes -BuildRequires: llvm-mono-devel -%endif -BuildRoot: %{_tmppath}/%{name}-%{version}-build -Obsoletes: mono -Obsoletes: mono-cairo -Obsoletes: mono-drawing -Obsoletes: mono-ikvm -Obsoletes: mono-posix -Obsoletes: mono-xml-relaxng -Obsoletes: mono-ziplib -Provides: mono = %{version}-%{release} -Provides: mono-cairo -Provides: mono-drawing -Provides: mono-ikvm -Provides: mono-posix -Provides: mono-xml-relaxng -Provides: mono-ziplib -# This version of mono has issues with the following versions of apps: -# (not because of regressions, but because bugfixes in mono uncover bugs in the apps) -Conflicts: banshee < 1.0 -Conflicts: f-spot < 0.4 -Conflicts: helix-banshee < 1.0 -Conflicts: mono-addins < 0.3.1 -%if 0%{?suse_version} -Recommends: libgdiplus0 >= 2.6 -%endif -%if %llvm == yes -Recommends: libmono-llvm0 = %{version}-%{release} -%endif -Provides: mono(Commons.Xml.Relaxng) = 1.0.5000.0 -Provides: mono(CustomMarshalers) = 1.0.5000.0 -Provides: mono(I18N) = 1.0.5000.0 -Provides: mono(I18N.West) = 1.0.5000.0 -Provides: mono(ICSharpCode.SharpZipLib) = 0.6.0.0 -Provides: mono(ICSharpCode.SharpZipLib) = 0.84.0.0 -Provides: mono(Mono.Cairo) = 1.0.5000.0 -Provides: mono(Mono.CompilerServices.SymbolWriter) = 1.0.5000.0 -Provides: mono(Mono.Posix) = 1.0.5000.0 -Provides: mono(Mono.Security) = 1.0.5000.0 -Provides: mono(System) = 1.0.5000.0 -Provides: mono(System.Security) = 1.0.5000.0 -Provides: mono(System.Xml) = 1.0.5000.0 -Provides: mono(mscorlib) = 1.0.5000.0 - -%define _use_internal_dependency_generator 0 -%define __find_provides env sh -c 'filelist=($(cat)) && { printf "%s\\n" "${filelist[@]}" | /usr/lib/rpm/find-provides && printf "%s\\n" "${filelist[@]}" | prefix=%{buildroot}%{_prefix} %{buildroot}%{_bindir}/mono-find-provides ; } | sort | uniq' -%define __find_requires env sh -c 'filelist=($(cat)) && { printf "%s\\n" "${filelist[@]}" | /usr/lib/rpm/find-requires && printf "%s\\n" "${filelist[@]}" | prefix=%{buildroot}%{_prefix} %{buildroot}%{_bindir}/mono-find-requires ; } | sort | uniq' - -%description -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -%prep -%setup -q -n mono-%{version} - -%build -# These are only needed if there are patches to the runtime -#rm -f libgc/libtool.m4 -#autoreconf --force --install -#autoreconf --force --install libgc -export CFLAGS=" $RPM_OPT_FLAGS -fno-strict-aliasing" -# distro specific configure options -%if %llvm == yes -export PATH=/opt/novell/llvm-mono/bin:$PATH -%endif -%configure \ - --target=%{_host} \ - --with-sgen=%{sgen} \ -%if %llvm == yes - --enable-loadedllvm \ - --disable-system-aot \ -%endif -%ifnarch %ix86 x86_64 - --disable-system-aot \ -%endif - --with-ikvm=yes \ - --with-moonlight=no -#make # We are not -jN safe! %{?jobs:-j%jobs} -# We are now ! -make get-monolite-latest -make %{?_smp_mflags} - -%install -make install DESTDIR=%buildroot -# remove .la files (they are generally bad news) -rm -f %buildroot%_libdir/*.la -# remove Windows-only stuff -rm -rf %buildroot%_prefix/lib/mono/*/Mono.Security.Win32* -rm -f %buildroot%_libdir/libMonoSupportW.* -# remove .a files for libraries that are really only for us -rm -f %buildroot%_libdir/libMonoPosixHelper.a -rm -f %buildroot%_libdir/libikvm-native.a -rm -f %buildroot%_libdir/libmono-llvm.a -# remove libgc cruft -rm -rf %buildroot%_datadir/libgc-mono -# remove stuff that we don't package -rm -f %buildroot%_bindir/cilc -rm -f %buildroot%_mandir/man1/cilc.1* -rm -f %buildroot%_prefix/lib/mono/*/browsercaps-updater.exe* -rm -f %buildroot%_prefix/lib/mono/*/culevel.exe* -rm -f %buildroot%_prefix/lib/mono/2.0/cilc.exe* -# brp-compress doesn't search _mandir -# so we cheat it -ln -s . %buildroot%_prefix%_prefix -RPM_BUILD_ROOT=%buildroot%_prefix /usr/lib/rpm/brp-compress -rm %buildroot%_prefix%_prefix -%if 0%{?suse_version} -%fdupes %buildroot%_prefix -%endif -%find_lang mcs - -%clean -rm -rf %buildroot - -%files -f mcs.lang -%defattr(-, root, root) -%doc AUTHORS COPYING.LIB ChangeLog NEWS README.md -%config %_sysconfdir/mono/2.0/machine.config -%config %_sysconfdir/mono/2.0/settings.map -%config %_sysconfdir/mono/4.0/machine.config -%config %_sysconfdir/mono/4.0/settings.map -%config %_sysconfdir/mono/4.5/machine.config -%config %_sysconfdir/mono/4.5/settings.map -%config %_sysconfdir/mono/config -%dir %_prefix/lib/mono -%dir %_prefix/lib/mono/2.0 -%dir %_prefix/lib/mono/3.5 -%dir %_prefix/lib/mono/4.0 -%dir %_prefix/lib/mono/4.5 -%dir %_prefix/lib/mono/compat-2.0 -%dir %_prefix/lib/mono/gac -%dir %_sysconfdir/mono -%dir %_sysconfdir/mono/2.0 -%dir %_sysconfdir/mono/4.0 -%dir %_sysconfdir/mono/4.5 -%_bindir/al -%_bindir/al2 -%_bindir/certmgr -%_bindir/chktrust -%_bindir/crlupdate -%_bindir/csharp -%_bindir/dmcs -%_bindir/gacutil -%_bindir/gacutil2 -%_bindir/ikdasm -%_bindir/mcs -%_bindir/mono -%_bindir/mono-configuration-crypto -%if %sgen == yes -%_bindir/mono-sgen -%endif -%_bindir/mono-boehm -%_bindir/mono-test-install -%_bindir/mozroots -%_bindir/peverify -%_bindir/setreg -%_bindir/sn -%_libdir/libMonoPosixHelper.so* -%_libdir/libikvm-native.so -%_mandir/man1/certmgr.1%ext_man -%_mandir/man1/chktrust.1%ext_man -%_mandir/man1/crlupdate.1%ext_man -%_mandir/man1/csharp.1%ext_man -%_mandir/man1/gacutil.1%ext_man -%_mandir/man1/mcs.1%ext_man -%_mandir/man1/mono-configuration-crypto.1%ext_man -%_mandir/man1/mono.1%ext_man -%_mandir/man1/mozroots.1%ext_man -%_mandir/man1/setreg.1%ext_man -%_mandir/man1/sn.1%ext_man -%_mandir/man5/mono-config.5%ext_man -%_prefix/lib/mono/2.0/Commons.Xml.Relaxng.dll -%_prefix/lib/mono/2.0/CustomMarshalers.dll -%_prefix/lib/mono/2.0/I18N.West.dll -%_prefix/lib/mono/2.0/I18N.dll -%_prefix/lib/mono/2.0/ICSharpCode.SharpZipLib.dll -%_prefix/lib/mono/2.0/Microsoft.VisualC.dll -%_prefix/lib/mono/2.0/Mono.C5.dll -%_prefix/lib/mono/2.0/Mono.CSharp.dll -%_prefix/lib/mono/2.0/Mono.Cairo.dll -%_prefix/lib/mono/2.0/Mono.CompilerServices.SymbolWriter.dll -%_prefix/lib/mono/2.0/Mono.Management.dll -%_prefix/lib/mono/2.0/Mono.Posix.dll -%_prefix/lib/mono/2.0/Mono.Security.dll -%_prefix/lib/mono/2.0/Mono.Simd.dll -%_prefix/lib/mono/2.0/Mono.Tasklets.dll -%_prefix/lib/mono/2.0/System.Configuration.dll -%_prefix/lib/mono/2.0/System.Core.dll -%_prefix/lib/mono/2.0/System.Drawing.dll -%_prefix/lib/mono/2.0/System.Net.dll -%_prefix/lib/mono/2.0/System.Security.dll -%_prefix/lib/mono/2.0/System.Xml.Linq.dll -%_prefix/lib/mono/2.0/System.Xml.dll -%_prefix/lib/mono/2.0/System.dll -%_prefix/lib/mono/2.0/System.Json.dll -%_prefix/lib/mono/2.0/al.exe* -%_prefix/lib/mono/2.0/cscompmgd.dll -%_prefix/lib/mono/2.0/gacutil.exe* -%_prefix/lib/mono/2.0/mscorlib.dll* -%_prefix/lib/mono/4.0/Commons.Xml.Relaxng.dll -%_prefix/lib/mono/4.0/CustomMarshalers.dll -%_prefix/lib/mono/4.0/I18N.West.dll -%_prefix/lib/mono/4.0/I18N.dll -%_prefix/lib/mono/4.0/ICSharpCode.SharpZipLib.dll -%_prefix/lib/mono/4.0/Microsoft.CSharp.dll -%_prefix/lib/mono/4.0/Microsoft.VisualC.dll -%_prefix/lib/mono/4.0/Mono.C5.dll -%_prefix/lib/mono/4.0/Mono.CSharp.dll -%_prefix/lib/mono/4.0/Mono.Cairo.dll -%_prefix/lib/mono/4.0/Mono.CompilerServices.SymbolWriter.dll -%_prefix/lib/mono/4.0/Mono.Management.dll -%_prefix/lib/mono/4.0/Mono.Parallel.dll -%_prefix/lib/mono/4.0/Mono.Posix.dll -%_prefix/lib/mono/4.0/Mono.Security.dll -%_prefix/lib/mono/4.0/Mono.Simd.dll -%_prefix/lib/mono/4.0/Mono.Tasklets.dll -%_prefix/lib/mono/4.0/System.Configuration.dll -%_prefix/lib/mono/4.0/System.Core.dll -%_prefix/lib/mono/4.0/System.Drawing.dll -%_prefix/lib/mono/4.0/System.Dynamic.dll -%_prefix/lib/mono/4.0/System.Json.dll -%_prefix/lib/mono/4.0/System.Json.Microsoft.dll -%_prefix/lib/mono/4.0/System.Net.dll -%_prefix/lib/mono/4.0/System.Numerics.dll -%_prefix/lib/mono/4.0/System.Security.dll -%_prefix/lib/mono/4.0/System.Xml.Linq.dll -%_prefix/lib/mono/4.0/System.Xml.dll -%_prefix/lib/mono/4.0/System.dll -%_prefix/lib/mono/4.5/al.exe* -%_prefix/lib/mono/4.5/certmgr.exe* -%_prefix/lib/mono/4.5/chktrust.exe* -%_prefix/lib/mono/4.5/crlupdate.exe* -%_prefix/lib/mono/4.0/cscompmgd.dll -%_prefix/lib/mono/4.5/csharp.exe* -%_prefix/lib/mono/4.5/gacutil.exe* -%_prefix/lib/mono/4.5/ikdasm.exe* -%_prefix/lib/mono/4.5/mcs.exe* -%_prefix/lib/mono/4.5/mozroots.exe* -%_prefix/lib/mono/4.0/mscorlib.dll* -%_prefix/lib/mono/4.5/setreg.exe* -%_prefix/lib/mono/4.5/sn.exe* -%_prefix/lib/mono/4.5/Commons.Xml.Relaxng.dll -%_prefix/lib/mono/4.5/CustomMarshalers.dll -%_prefix/lib/mono/4.5/I18N.CJK.dll -%_prefix/lib/mono/4.5/I18N.MidEast.dll -%_prefix/lib/mono/4.5/I18N.Other.dll -%_prefix/lib/mono/4.5/I18N.Rare.dll -%_prefix/lib/mono/4.5/I18N.West.dll -%_prefix/lib/mono/4.5/I18N.dll -%_prefix/lib/mono/4.5/IBM.Data.DB2.dll -%_prefix/lib/mono/4.5/ICSharpCode.SharpZipLib.dll -%_prefix/lib/mono/4.5/Microsoft.CSharp.dll -%_prefix/lib/mono/4.5/Microsoft.VisualC.dll -%_prefix/lib/mono/4.5/Mono.C5.dll -%_prefix/lib/mono/4.5/Mono.CSharp.dll -%_prefix/lib/mono/4.5/Mono.Cairo.dll -%_prefix/lib/mono/4.5/Mono.CompilerServices.SymbolWriter.dll -%_prefix/lib/mono/4.5/Mono.Management.dll -%_prefix/lib/mono/4.5/Mono.Parallel.dll -%_prefix/lib/mono/4.5/Mono.Posix.dll -%_prefix/lib/mono/4.5/Mono.Security.dll -%_prefix/lib/mono/4.5/Mono.Simd.dll -%_prefix/lib/mono/4.5/Mono.Tasklets.dll -%_prefix/lib/mono/4.5/System.Configuration.dll -%_prefix/lib/mono/4.5/System.Core.dll -%_prefix/lib/mono/4.5/System.Drawing.dll -%_prefix/lib/mono/4.5/System.Dynamic.dll -%_prefix/lib/mono/4.5/System.IO.Compression.dll -%_prefix/lib/mono/4.5/System.IO.Compression.FileSystem.dll -%_prefix/lib/mono/4.5/System.Json.dll -%_prefix/lib/mono/4.5/System.Json.Microsoft.dll -%_prefix/lib/mono/4.5/System.Net.dll -%_prefix/lib/mono/4.5/System.Net.Http.dll -%_prefix/lib/mono/4.5/System.Net.Http.WebRequest.dll -%_prefix/lib/mono/4.5/System.Numerics.dll -%_prefix/lib/mono/4.5/System.Security.dll -%_prefix/lib/mono/4.5/System.Threading.Tasks.Dataflow.dll -%_prefix/lib/mono/4.5/System.Xml.Linq.dll -%_prefix/lib/mono/4.5/System.Xml.dll -%_prefix/lib/mono/4.5/System.dll -%_prefix/lib/mono/4.5/cscompmgd.dll -%_prefix/lib/mono/4.5/mscorlib.dll* -%_prefix/lib/mono/4.5/System.Windows.dll -%_prefix/lib/mono/4.5/System.Xml.Serialization.dll -%_prefix/lib/mono/4.5/Facades/*.dll -%_prefix/lib/mono/compat-2.0/ICSharpCode.SharpZipLib.dll -%_prefix/lib/mono/gac/Commons.Xml.Relaxng -%_prefix/lib/mono/gac/CustomMarshalers -%_prefix/lib/mono/gac/I18N -%_prefix/lib/mono/gac/I18N.West -%_prefix/lib/mono/gac/ICSharpCode.SharpZipLib -%_prefix/lib/mono/gac/Microsoft.CSharp -%_prefix/lib/mono/gac/Microsoft.VisualC -%_prefix/lib/mono/gac/Mono.C5 -%_prefix/lib/mono/gac/Mono.CSharp -%_prefix/lib/mono/gac/Mono.Cairo -%_prefix/lib/mono/gac/Mono.Cecil -%_prefix/lib/mono/gac/Mono.Cecil.Mdb -%_prefix/lib/mono/gac/Mono.CompilerServices.SymbolWriter -%_prefix/lib/mono/gac/Mono.Management -%_prefix/lib/mono/gac/Mono.Parallel -%_prefix/lib/mono/gac/Mono.Posix -%_prefix/lib/mono/gac/Mono.Security -%_prefix/lib/mono/gac/Mono.Simd -%_prefix/lib/mono/gac/Mono.Tasklets -%_prefix/lib/mono/gac/System -%_prefix/lib/mono/gac/System.Configuration -%_prefix/lib/mono/gac/System.Core -%_prefix/lib/mono/gac/System.Drawing -%_prefix/lib/mono/gac/System.Dynamic -%_prefix/lib/mono/gac/System.IO.Compression -%_prefix/lib/mono/gac/System.IO.Compression.FileSystem -%_prefix/lib/mono/gac/System.Net -%_prefix/lib/mono/gac/System.Net.Http -%_prefix/lib/mono/gac/System.Net.Http.WebRequest -%_prefix/lib/mono/gac/System.Numerics -%_prefix/lib/mono/gac/System.Security -%_prefix/lib/mono/gac/System.Threading.Tasks.Dataflow -%_prefix/lib/mono/gac/System.Xml -%_prefix/lib/mono/gac/System.Xml.Linq -%_prefix/lib/mono/gac/System.Json -%_prefix/lib/mono/gac/System.Json.Microsoft -%_prefix/lib/mono/gac/System.Windows -%_prefix/lib/mono/gac/System.Xml.Serialization -%_prefix/lib/mono/gac/cscompmgd -%_prefix/lib/mono/mono-configuration-crypto - -%package -n libmono-2_0-1 -License: LGPL v2.1 only -Summary: A Library for embedding Mono in your Application -Group: Development/Libraries/C and C++ - -%description -n libmono-2_0-1 -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -A Library for embedding Mono in your Application. - -%files -n libmono-2_0-1 -%defattr(-, root, root) -%_libdir/libmono-2.0.so.1* - -%post -n libmono-2_0-1 -p /sbin/ldconfig - -%postun -n libmono-2_0-1 -p /sbin/ldconfig - -%package -n libmono-2_0-devel -License: LGPL v2.1 only -Summary: Development files for libmono -Group: Development/Languages/Mono -Requires: mono-core == %version-%release - -%description -n libmono-2_0-devel -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Development files for libmono. - -%files -n libmono-2_0-devel -%defattr(-, root, root) -%_bindir/mono-gdb.py -%_includedir/mono-2.0 -%_libdir/libmono-2.0.a -%_libdir/libmono-2.0.so -%_libdir/pkgconfig/mono-2.pc - -%if %sgen == yes -%package -n libmonosgen-2_0-1 -License: LGPL v2.1 only -Summary: A Library for embedding Mono in your Application (sgen version) -Group: Development/Libraries/C and C++ - -%description -n libmonosgen-2_0-1 -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -A Library for embedding Mono in your Application (sgen version). - -%files -n libmonosgen-2_0-1 -%defattr(-, root, root) -%_libdir/libmonosgen-2.0.so.1* - -%post -n libmonosgen-2_0-1 -p /sbin/ldconfig - -%postun -n libmonosgen-2_0-1 -p /sbin/ldconfig - -%package -n libmonosgen-2_0-devel -License: LGPL v2.1 only -Summary: Development files for libmonosgen -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Requires: libmono-2_0-devel - -%description -n libmonosgen-2_0-devel -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Development files for libmonosgen. - -%files -n libmonosgen-2_0-devel -%defattr(-, root, root) -%_bindir/mono-sgen-gdb.py -%_libdir/libmonosgen-2.0.a -%_libdir/libmonosgen-2.0.so -%_libdir/pkgconfig/monosgen-2.pc -%endif - -%package -n libmonoboehm-2_0-1 -License: LGPL v2.1 only -Summary: A Library for embedding Mono in your Application (boehm version) -Group: Development/Libraries/C and C++ - -%description -n libmonoboehm-2_0-1 -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -A Library for embedding Mono in your Application (boehm version). - -%files -n libmonoboehm-2_0-1 -%defattr(-, root, root) -%_libdir/libmonoboehm-2.0.so.1* - -%post -n libmonoboehm-2_0-1 -p /sbin/ldconfig - -%postun -n libmonoboehm-2_0-1 -p /sbin/ldconfig - -%package -n libmonoboehm-2_0-devel -License: LGPL v2.1 only -Summary: Development files for libmonosgen -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Requires: libmono-2_0-devel - -%description -n libmonoboehm-2_0-devel -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Development files for libmonoboehm. - -%files -n libmonoboehm-2_0-devel -%defattr(-, root, root) -%_libdir/libmonoboehm-2.0.a -%_libdir/libmonoboehm-2.0.so - -%if %llvm == yes -%package -n libmono-llvm0 -License: LGPL v2.1 only -Summary: Loadable LLVM libary for mono -Group: Development/Libraries/C and C++ - -%description -n libmono-llvm0 -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Loadable LLVM libary for mono. - -%files -n libmono-llvm0 -%defattr(-, root, root) -%_libdir/libmono-llvm.so* - -%post -n libmono-llvm0 -p /sbin/ldconfig - -%postun -n libmono-llvm0 -p /sbin/ldconfig -%endif - -%package -n mono-locale-extras -License: LGPL v2.1 only -Summary: Extra locale information -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Provides: mono(I18N.CJK) = 1.0.5000.0 -Provides: mono(I18N.MidEast) = 1.0.5000.0 -Provides: mono(I18N.Other) = 1.0.5000.0 -Provides: mono(I18N.Rare) = 1.0.5000.0 - -%description -n mono-locale-extras -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Extra locale information. - -%files -n mono-locale-extras -%defattr(-, root, root) -%_prefix/lib/mono/2.0/I18N.CJK.dll -%_prefix/lib/mono/2.0/I18N.MidEast.dll -%_prefix/lib/mono/2.0/I18N.Other.dll -%_prefix/lib/mono/2.0/I18N.Rare.dll -%_prefix/lib/mono/4.0/I18N.CJK.dll -%_prefix/lib/mono/4.0/I18N.MidEast.dll -%_prefix/lib/mono/4.0/I18N.Other.dll -%_prefix/lib/mono/4.0/I18N.Rare.dll -%_prefix/lib/mono/4.5/I18N.CJK.dll -%_prefix/lib/mono/4.5/I18N.MidEast.dll -%_prefix/lib/mono/4.5/I18N.Other.dll -%_prefix/lib/mono/4.5/I18N.Rare.dll -%_prefix/lib/mono/gac/I18N.CJK -%_prefix/lib/mono/gac/I18N.MidEast -%_prefix/lib/mono/gac/I18N.Other -%_prefix/lib/mono/gac/I18N.Rare - -%package -n mono-data -License: LGPL v2.1 only -Summary: Database connectivity for Mono -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Obsoletes: mono-directory -Obsoletes: mono-ms-enterprise -Obsoletes: mono-novell-directory -Provides: mono-directory -Provides: mono-ms-enterprise -Provides: mono-novell-directory -Provides: mono(Mono.Data.Tds) = 1.0.5000.0 -Provides: mono(Novell.Directory.Ldap) = 1.0.5000.0 -Provides: mono(System.Data) = 1.0.5000.0 -Provides: mono(System.DirectoryServices) = 1.0.5000.0 -Provides: mono(System.DirectoryServices.Protocols) = 1.0.5000.0 -Provides: mono(System.EnterpriseServices) = 1.0.5000.0 - -%description -n mono-data -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Database connectivity for Mono. - -%files -n mono-data -%defattr(-, root, root) -%_bindir/sqlmetal -%_bindir/sqlsharp -%_mandir/man1/sqlsharp.1%ext_man -%_prefix/lib/mono/2.0/Mono.Data.Tds.dll -%_prefix/lib/mono/2.0/Novell.Directory.Ldap.dll -%_prefix/lib/mono/2.0/System.Data.DataSetExtensions.dll -%_prefix/lib/mono/2.0/System.Data.Linq.dll -%_prefix/lib/mono/2.0/System.Data.dll -%_prefix/lib/mono/2.0/System.DirectoryServices.dll -%_prefix/lib/mono/2.0/System.DirectoryServices.Protocols.dll -%_prefix/lib/mono/2.0/System.EnterpriseServices.dll -%_prefix/lib/mono/2.0/System.Runtime.Serialization.dll -%_prefix/lib/mono/2.0/System.Transactions.dll -%_prefix/lib/mono/4.0/Mono.Data.Tds.dll -%_prefix/lib/mono/4.0/Novell.Directory.Ldap.dll -%_prefix/lib/mono/4.0/System.Data.DataSetExtensions.dll -%_prefix/lib/mono/4.0/System.Data.Linq.dll -%_prefix/lib/mono/4.0/System.Data.dll -%_prefix/lib/mono/4.0/System.DirectoryServices.dll -%_prefix/lib/mono/4.0/System.DirectoryServices.Protocols.dll -%_prefix/lib/mono/4.0/System.EnterpriseServices.dll -%_prefix/lib/mono/4.0/System.Runtime.Serialization.dll -%_prefix/lib/mono/4.0/System.Transactions.dll -%_prefix/lib/mono/4.0/WebMatrix.Data.dll -%_prefix/lib/mono/4.5/Mono.Data.Tds.dll -%_prefix/lib/mono/4.5/Novell.Directory.Ldap.dll -%_prefix/lib/mono/4.5/System.Data.DataSetExtensions.dll -%_prefix/lib/mono/4.5/System.Data.Linq.dll -%_prefix/lib/mono/4.5/System.Data.dll -%_prefix/lib/mono/4.5/System.DirectoryServices.dll -%_prefix/lib/mono/4.5/System.DirectoryServices.Protocols.dll -%_prefix/lib/mono/4.5/System.EnterpriseServices.dll -%_prefix/lib/mono/4.5/System.Runtime.Serialization.dll -%_prefix/lib/mono/4.5/System.Transactions.dll -%_prefix/lib/mono/4.5/WebMatrix.Data.dll -%_prefix/lib/mono/4.5/EntityFramework.dll -%_prefix/lib/mono/4.5/EntityFramework.SqlServer.dll -%_prefix/lib/mono/4.5/sqlmetal.exe* -%_prefix/lib/mono/4.5/sqlsharp.exe* -%_prefix/lib/mono/gac/Mono.Data.Tds -%_prefix/lib/mono/gac/Novell.Directory.Ldap -%_prefix/lib/mono/gac/System.Data -%_prefix/lib/mono/gac/System.Data.DataSetExtensions -%_prefix/lib/mono/gac/System.Data.Linq -%_prefix/lib/mono/gac/System.DirectoryServices -%_prefix/lib/mono/gac/System.DirectoryServices.Protocols -%_prefix/lib/mono/gac/System.EnterpriseServices -%_prefix/lib/mono/gac/System.Runtime.Serialization -%_prefix/lib/mono/gac/System.Transactions -%_prefix/lib/mono/gac/WebMatrix.Data -%_prefix/lib/mono/gac/EntityFramework -%_prefix/lib/mono/gac/EntityFramework.SqlServer - -%package -n mono-winforms -License: LGPL v2.1 only -Summary: Mono's Windows Forms implementation -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Provides: mono-window-forms -Obsoletes: mono-window-forms -Provides: mono(Accessibility) = 1.0.5000.0 -Provides: mono(System.Design) = 1.0.5000.0 -Provides: mono(System.Drawing) = 1.0.5000.0 -Provides: mono(System.Drawing.Design) = 1.0.5000.0 -Provides: mono(System.Windows.Forms) = 1.0.5000.0 - -%description -n mono-winforms -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Mono's Windows Forms implementation. - -%files -n mono-winforms -%defattr(-, root, root) -%_prefix/lib/mono/2.0/Accessibility.dll -%_prefix/lib/mono/2.0/Mono.WebBrowser.dll -%_prefix/lib/mono/2.0/System.Design.dll -%_prefix/lib/mono/2.0/System.Drawing.Design.dll -%_prefix/lib/mono/2.0/System.Windows.Forms.dll -%_prefix/lib/mono/4.0/Accessibility.dll -%_prefix/lib/mono/4.0/Mono.WebBrowser.dll -%_prefix/lib/mono/4.0/System.Design.dll -%_prefix/lib/mono/4.0/System.Drawing.Design.dll -%_prefix/lib/mono/4.0/System.Windows.Forms.DataVisualization.dll -%_prefix/lib/mono/4.0/System.Windows.Forms.dll -%_prefix/lib/mono/4.5/Accessibility.dll -%_prefix/lib/mono/4.5/Mono.WebBrowser.dll -%_prefix/lib/mono/4.5/System.Design.dll -%_prefix/lib/mono/4.5/System.Drawing.Design.dll -%_prefix/lib/mono/4.5/System.Windows.Forms.DataVisualization.dll -%_prefix/lib/mono/4.5/System.Windows.Forms.dll -%_prefix/lib/mono/gac/Accessibility -%_prefix/lib/mono/gac/Mono.WebBrowser -%_prefix/lib/mono/gac/System.Design -%_prefix/lib/mono/gac/System.Drawing.Design -%_prefix/lib/mono/gac/System.Windows.Forms -%_prefix/lib/mono/gac/System.Windows.Forms.DataVisualization - -%package -n ibm-data-db2 -License: LGPL v2.1 only -Summary: Database connectivity for DB2 -Group: Development/Languages/Mono -Requires: mono-core == %version-%release - -%description -n ibm-data-db2 -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Database connectivity for DB2. - -%files -n ibm-data-db2 -%defattr(-, root, root) -%_prefix/lib/mono/2.0/IBM.Data.DB2.dll -%_prefix/lib/mono/4.0/IBM.Data.DB2.dll -%_prefix/lib/mono/4.5/IBM.Data.DB2.dll -%_prefix/lib/mono/gac/IBM.Data.DB2 - -%package -n mono-extras -License: LGPL v2.1 only -Summary: Extra packages -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Obsoletes: mono-ms-extras -Provides: mono-ms-extras -Provides: mono(Mono.Messaging) = 1.0.5000.0 -Provides: mono(Mono.Messaging.RabbitMQ) = 1.0.5000.0 -Provides: mono(RabbitMQ.Client) = 1.0.5000.0 -Provides: mono(System.Configuration.Install) = 1.0.5000.0 -Provides: mono(System.Management) = 1.0.5000.0 -Provides: mono(System.Messaging) = 1.0.5000.0 -Provides: mono(System.ServiceProcess) = 1.0.5000.0 -Provides: mono(mono-service) = 1.0.5000.0 - -%description -n mono-extras -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Extra packages. - -%files -n mono-extras -%defattr(-, root, root) -%_bindir/mono-service -%_bindir/mono-service2 -%_mandir/man1/mono-service.1%ext_man -%_prefix/lib/mono/2.0/Mono.Messaging.RabbitMQ.dll -%_prefix/lib/mono/2.0/Mono.Messaging.dll -%_prefix/lib/mono/2.0/RabbitMQ.Client.Apigen.exe* -%_prefix/lib/mono/2.0/RabbitMQ.Client.dll -%_prefix/lib/mono/2.0/System.Configuration.Install.dll -%_prefix/lib/mono/2.0/System.Management.dll -%_prefix/lib/mono/2.0/System.Messaging.dll -%_prefix/lib/mono/2.0/System.ServiceProcess.dll -%_prefix/lib/mono/2.0/mono-service.exe* -%_prefix/lib/mono/4.0/Mono.Messaging.RabbitMQ.dll -%_prefix/lib/mono/4.0/Mono.Messaging.dll -%_prefix/lib/mono/4.0/RabbitMQ.Client.Apigen.exe* -%_prefix/lib/mono/4.0/RabbitMQ.Client.dll -%_prefix/lib/mono/4.0/System.Configuration.Install.dll -%_prefix/lib/mono/4.0/System.Management.dll -%_prefix/lib/mono/4.0/System.Messaging.dll -%_prefix/lib/mono/4.0/System.Runtime.Caching.dll -%_prefix/lib/mono/4.0/System.ServiceProcess.dll -%_prefix/lib/mono/4.0/System.Xaml.dll -%_prefix/lib/mono/4.5/installutil.exe* -%_prefix/lib/mono/4.5/mono-service.exe* -%_prefix/lib/mono/4.5/Mono.Messaging.RabbitMQ.dll -%_prefix/lib/mono/4.5/Mono.Messaging.dll -%_prefix/lib/mono/4.5/RabbitMQ.Client.Apigen.exe* -%_prefix/lib/mono/4.5/RabbitMQ.Client.dll -%_prefix/lib/mono/4.5/System.Configuration.Install.dll -%_prefix/lib/mono/4.5/System.Management.dll -%_prefix/lib/mono/4.5/System.Messaging.dll -%_prefix/lib/mono/4.5/System.Runtime.Caching.dll -%_prefix/lib/mono/4.5/System.ServiceProcess.dll -%_prefix/lib/mono/4.5/System.Xaml.dll -%_prefix/lib/mono/gac/Mono.Messaging -%_prefix/lib/mono/gac/Mono.Messaging.RabbitMQ -%_prefix/lib/mono/gac/RabbitMQ.Client -%_prefix/lib/mono/gac/System.Configuration.Install -%_prefix/lib/mono/gac/System.Management -%_prefix/lib/mono/gac/System.Messaging -%_prefix/lib/mono/gac/System.Runtime.Caching -%_prefix/lib/mono/gac/System.ServiceProcess -%_prefix/lib/mono/gac/System.Xaml -%_prefix/lib/mono/gac/mono-service - -%package -n mono-data-sqlite -License: LGPL v2.1 only -Summary: Database connectivity for Mono -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Requires: mono-data == %version-%release -Provides: mono(Mono.Data.Sqlite) = 1.0.5000.0 - -%description -n mono-data-sqlite -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Database connectivity for Mono. - -%files -n mono-data-sqlite -%defattr(-, root, root) -%_prefix/lib/mono/2.0/Mono.Data.Sqlite.dll -%_prefix/lib/mono/4.0/Mono.Data.Sqlite.dll -%_prefix/lib/mono/4.5/Mono.Data.Sqlite.dll -%_prefix/lib/mono/gac/Mono.Data.Sqlite - -%package -n mono-wcf -License: MIT License (or similar) ; Ms-Pl -Summary: Mono implementation of WCF, Windows Communication Foundation -Group: Development/Languages/Mono -Requires: mono-core == %version-%release - -%description -n mono-wcf -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Mono implementation of WCF, Windows Communication Foundation - -%files -n mono-wcf -%defattr(-, root, root) -%_bindir/svcutil -%_libdir/pkgconfig/wcf.pc -%_prefix/lib/mono/2.0/System.Data.Services.dll -%_prefix/lib/mono/2.0/System.IdentityModel.Selectors.dll -%_prefix/lib/mono/2.0/System.IdentityModel.dll -%_prefix/lib/mono/2.0/System.ServiceModel.Web.dll -%_prefix/lib/mono/2.0/System.ServiceModel.dll -%_prefix/lib/mono/4.0/System.Data.Services.dll -%_prefix/lib/mono/4.0/System.IdentityModel.Selectors.dll -%_prefix/lib/mono/4.0/System.IdentityModel.dll -%_prefix/lib/mono/4.0/System.Runtime.DurableInstancing.dll -%_prefix/lib/mono/4.0/System.ServiceModel.Activation.dll -%_prefix/lib/mono/4.0/System.ServiceModel.Discovery.dll -%_prefix/lib/mono/4.0/System.ServiceModel.Routing.dll -%_prefix/lib/mono/4.0/System.ServiceModel.Web.dll -%_prefix/lib/mono/4.0/System.ServiceModel.dll -%_prefix/lib/mono/4.5/System.Data.Services.dll -%_prefix/lib/mono/4.5/System.IdentityModel.Selectors.dll -%_prefix/lib/mono/4.5/System.IdentityModel.dll -%_prefix/lib/mono/4.5/System.Runtime.DurableInstancing.dll -%_prefix/lib/mono/4.5/System.ServiceModel.Activation.dll -%_prefix/lib/mono/4.5/System.ServiceModel.Discovery.dll -%_prefix/lib/mono/4.5/System.ServiceModel.Routing.dll -%_prefix/lib/mono/4.5/System.ServiceModel.Web.dll -%_prefix/lib/mono/4.5/System.ServiceModel.dll -%_prefix/lib/mono/4.5/svcutil.exe* -%_prefix/lib/mono/gac/System.Data.Services -%_prefix/lib/mono/gac/System.IdentityModel -%_prefix/lib/mono/gac/System.IdentityModel.Selectors -%_prefix/lib/mono/gac/System.Runtime.DurableInstancing -%_prefix/lib/mono/gac/System.ServiceModel -%_prefix/lib/mono/gac/System.ServiceModel.Activation -%_prefix/lib/mono/gac/System.ServiceModel.Discovery -%_prefix/lib/mono/gac/System.ServiceModel.Routing -%_prefix/lib/mono/gac/System.ServiceModel.Web - -%package -n mono-winfxcore -License: MIT License (or similar) ; Ms-Pl -Summary: Mono implementation of core WinFX APIs -Group: Development/Languages/Mono -Requires: mono-core == %version-%release - -%description -n mono-winfxcore -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Mono implementation of core WinFX APIs - -%files -n mono-winfxcore -%defattr(-, root, root) -%_prefix/lib/mono/2.0/System.Data.Services.Client.dll* -%_prefix/lib/mono/2.0/WindowsBase.dll* -%_prefix/lib/mono/4.0/System.Data.Services.Client.dll* -%_prefix/lib/mono/4.0/WindowsBase.dll* -%_prefix/lib/mono/4.5/System.Data.Services.Client.dll* -%_prefix/lib/mono/4.5/WindowsBase.dll* -%_prefix/lib/mono/gac/System.Data.Services.Client -%_prefix/lib/mono/gac/WindowsBase - -%package -n mono-web -License: MIT License (or similar) ; Ms-Pl -Summary: Mono implementation of ASP.NET, Remoting and Web Services -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Obsoletes: mono-remoting -Obsoletes: mono-web-forms -Obsoletes: mono-web-services -Provides: mono-remoting -Provides: mono-web-forms -Provides: mono-web-services -Provides: mono(Mono.Http) = 1.0.5000.0 -Provides: mono(System.Runtime.Remoting) = 1.0.5000.0 -Provides: mono(System.Runtime.Serialization.Formatters.Soap) = 1.0.5000.0 -Provides: mono(System.Web) = 1.0.5000.0 -Provides: mono(System.Web.Services) = 1.0.5000.0 - -%description -n mono-web -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Mono implementation of ASP.NET, Remoting and Web Services. - -%files -n mono-web -%defattr(-, root, root) -%config %_sysconfdir/mono/2.0/Browsers -%config %_sysconfdir/mono/2.0/DefaultWsdlHelpGenerator.aspx -%config %_sysconfdir/mono/2.0/web.config -%config %_sysconfdir/mono/4.0/Browsers -%config %_sysconfdir/mono/4.0/DefaultWsdlHelpGenerator.aspx -%config %_sysconfdir/mono/4.0/web.config -%config %_sysconfdir/mono/4.5/Browsers -%config %_sysconfdir/mono/4.5/DefaultWsdlHelpGenerator.aspx -%config %_sysconfdir/mono/4.5/web.config -%config %_sysconfdir/mono/browscap.ini -%config %_sysconfdir/mono/mconfig/config.xml -%dir %_sysconfdir/mono/mconfig -%_bindir/disco -%_bindir/mconfig -%_bindir/soapsuds -%_bindir/wsdl -%_bindir/wsdl2 -%_bindir/xsd -%_libdir/pkgconfig/aspnetwebstack.pc -%_mandir/man1/disco.1%ext_man -%_mandir/man1/mconfig.1%ext_man -%_mandir/man1/soapsuds.1%ext_man -%_mandir/man1/wsdl.1%ext_man -%_mandir/man1/xsd.1%ext_man -%_prefix/lib/mono/2.0/Mono.Http.dll -%_prefix/lib/mono/2.0/System.ComponentModel.DataAnnotations.dll -%_prefix/lib/mono/2.0/System.Runtime.Remoting.dll -%_prefix/lib/mono/2.0/System.Runtime.Serialization.Formatters.Soap.dll -%_prefix/lib/mono/2.0/System.Web.Abstractions.dll -%_prefix/lib/mono/2.0/System.Web.Routing.dll -%_prefix/lib/mono/2.0/System.Web.Services.dll -%_prefix/lib/mono/2.0/System.Web.dll -%_prefix/lib/mono/2.0/wsdl.exe* -%_prefix/lib/mono/2.0/xsd.exe* -%_prefix/lib/mono/4.0/Microsoft.Web.Infrastructure.dll -%_prefix/lib/mono/4.0/Mono.Http.dll -%_prefix/lib/mono/4.0/System.ComponentModel.Composition.dll -%_prefix/lib/mono/4.0/System.ComponentModel.DataAnnotations.dll -%_prefix/lib/mono/4.0/System.Runtime.Remoting.dll -%_prefix/lib/mono/4.0/System.Runtime.Serialization.Formatters.Soap.dll -%_prefix/lib/mono/4.0/System.Web.Abstractions.dll -%_prefix/lib/mono/4.0/System.Web.ApplicationServices.dll -%_prefix/lib/mono/4.0/System.Web.Routing.dll -%_prefix/lib/mono/4.0/System.Web.Services.dll -%_prefix/lib/mono/4.0/System.Web.dll -%_prefix/lib/mono/4.5/Mono.Http.dll -%_prefix/lib/mono/4.5/System.ComponentModel.Composition.dll -%_prefix/lib/mono/4.5/System.ComponentModel.DataAnnotations.dll -%_prefix/lib/mono/4.5/System.Net.Http.Formatting.dll -%_prefix/lib/mono/4.5/System.Runtime.Remoting.dll -%_prefix/lib/mono/4.5/System.Runtime.Serialization.Formatters.Soap.dll -%_prefix/lib/mono/4.5/System.Web.Abstractions.dll -%_prefix/lib/mono/4.5/System.Web.ApplicationServices.dll -%_prefix/lib/mono/4.5/System.Web.Http.dll -%_prefix/lib/mono/4.5/System.Web.Http.SelfHost.dll -%_prefix/lib/mono/4.5/System.Web.Http.WebHost.dll -%_prefix/lib/mono/4.5/System.Web.Routing.dll -%_prefix/lib/mono/4.5/System.Web.Razor.dll -%_prefix/lib/mono/4.5/System.Web.Services.dll -%_prefix/lib/mono/4.5/System.Web.WebPages.Deployment.dll -%_prefix/lib/mono/4.5/System.Web.WebPages.Razor.dll -%_prefix/lib/mono/4.5/System.Web.WebPages.dll -%_prefix/lib/mono/4.5/System.Web.dll -%_prefix/lib/mono/4.5/disco.exe* -%_prefix/lib/mono/4.5/mconfig.exe* -%_prefix/lib/mono/4.5/soapsuds.exe* -%_prefix/lib/mono/4.5/wsdl.exe* -%_prefix/lib/mono/4.5/xsd.exe* -%_prefix/lib/mono/4.5/Microsoft.Web.Infrastructure.dll -%_prefix/lib/mono/gac/Microsoft.Web.Infrastructure -%_prefix/lib/mono/gac/Mono.Http -%_prefix/lib/mono/gac/System.ComponentModel.Composition -%_prefix/lib/mono/gac/System.ComponentModel.DataAnnotations -%_prefix/lib/mono/gac/System.Net.Http.Formatting -%_prefix/lib/mono/gac/System.Runtime.Remoting -%_prefix/lib/mono/gac/System.Runtime.Serialization.Formatters.Soap -%_prefix/lib/mono/gac/System.Web -%_prefix/lib/mono/gac/System.Web.Abstractions -%_prefix/lib/mono/gac/System.Web.ApplicationServices -%_prefix/lib/mono/gac/System.Web.Http -%_prefix/lib/mono/gac/System.Web.Http.SelfHost -%_prefix/lib/mono/gac/System.Web.Http.WebHost -%_prefix/lib/mono/gac/System.Web.Routing -%_prefix/lib/mono/gac/System.Web.Razor -%_prefix/lib/mono/gac/System.Web.Services -%_prefix/lib/mono/gac/System.Web.WebPages.Deployment -%_prefix/lib/mono/gac/System.Web.WebPages.Razor -%_prefix/lib/mono/gac/System.Web.WebPages - -%package -n mono-mvc -License: MIT License (or similar) ; Ms-Pl -Summary: Mono implementation of ASP.NET MVC -Group: Development/Languages/Mono -Requires: mono-core == %version-%release - -%description -n mono-mvc -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Mono implementation of ASP.NET MVC. - -%files -n mono-mvc -%defattr(-, root, root) -%_libdir/pkgconfig/system.web.extensions.design_1.0.pc -%_libdir/pkgconfig/system.web.extensions_1.0.pc -%_libdir/pkgconfig/system.web.mvc.pc -%_libdir/pkgconfig/system.web.mvc2.pc -%_libdir/pkgconfig/system.web.mvc3.pc -%_prefix/lib/mono/2.0/System.Web.DynamicData.dll -%_prefix/lib/mono/2.0/System.Web.Extensions.Design.dll -%_prefix/lib/mono/2.0/System.Web.Extensions.dll -%_prefix/lib/mono/2.0/System.Web.Mvc.dll -%_prefix/lib/mono/4.0/System.Web.DynamicData.dll -%_prefix/lib/mono/4.0/System.Web.Extensions.Design.dll -%_prefix/lib/mono/4.0/System.Web.Extensions.dll -%_prefix/lib/mono/4.5/System.Web.DynamicData.dll -%_prefix/lib/mono/4.5/System.Web.Extensions.Design.dll -%_prefix/lib/mono/4.5/System.Web.Extensions.dll -%_prefix/lib/mono/4.5/System.Web.Mvc.dll -%_prefix/lib/mono/compat-2.0/System.Web.Extensions.Design.dll -%_prefix/lib/mono/compat-2.0/System.Web.Extensions.dll -%_prefix/lib/mono/compat-2.0/System.Web.Mvc.dll -%_prefix/lib/mono/gac/System.Web.DynamicData -%_prefix/lib/mono/gac/System.Web.Extensions -%_prefix/lib/mono/gac/System.Web.Extensions.Design -%_prefix/lib/mono/gac/System.Web.Mvc - -%package -n mono-data-oracle -License: LGPL v2.1 only -Summary: Database connectivity for Mono -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Requires: mono-data == %version-%release -Provides: mono(System.Data.OracleClient) = 1.0.5000.0 - -%description -n mono-data-oracle -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Database connectivity for Mono. - -%files -n mono-data-oracle -%defattr(-, root, root) -%_prefix/lib/mono/2.0/System.Data.OracleClient.dll -%_prefix/lib/mono/4.0/System.Data.OracleClient.dll -%_prefix/lib/mono/4.5/System.Data.OracleClient.dll -%_prefix/lib/mono/gac/System.Data.OracleClient - -%package -n mono-data-postgresql -License: LGPL v2.1 only -Summary: Database connectivity for Mono -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Requires: mono-data == %version-%release -Provides: mono(Npgsql) = 1.0.5000.0 - -%description -n mono-data-postgresql -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Database connectivity for Mono. - -%files -n mono-data-postgresql -%defattr(-, root, root) -%_prefix/lib/mono/2.0/Npgsql.dll -%_prefix/lib/mono/4.0/Npgsql.dll -%_prefix/lib/mono/4.5/Npgsql.dll -%_prefix/lib/mono/gac/Npgsql - -%package -n mono-rx-core -License: MIT License (or similar) ; Apache License 2.0 -Summary: Reactive Extensions for Mono core libraries -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Provides: mono(System.Reactive.Interfaces) = 1.0.5000.0 - -%description -n mono-rx-core -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Reactive Extensions for Mono, core packages, which don't depend on -desktop-specific features. - -%files -n mono-rx-core -%defattr(-, root, root) -%_libdir/pkgconfig/reactive.pc -%_prefix/lib/mono/4.5/System.Reactive.Core.dll -%_prefix/lib/mono/4.5/System.Reactive.Debugger.dll -%_prefix/lib/mono/4.5/System.Reactive.Experimental.dll -%_prefix/lib/mono/4.5/System.Reactive.Interfaces.dll -%_prefix/lib/mono/4.5/System.Reactive.Linq.dll -%_prefix/lib/mono/4.5/System.Reactive.Observable.Aliases.dll -%_prefix/lib/mono/4.5/System.Reactive.PlatformServices.dll -%_prefix/lib/mono/4.5/System.Reactive.Providers.dll -%_prefix/lib/mono/4.5/System.Reactive.Runtime.Remoting.dll -%_prefix/lib/mono/gac/System.Reactive.Core -%_prefix/lib/mono/gac/System.Reactive.Debugger -%_prefix/lib/mono/gac/System.Reactive.Experimental -%_prefix/lib/mono/gac/System.Reactive.Interfaces -%_prefix/lib/mono/gac/System.Reactive.Linq -%_prefix/lib/mono/gac/System.Reactive.Observable.Aliases -%_prefix/lib/mono/gac/System.Reactive.PlatformServices -%_prefix/lib/mono/gac/System.Reactive.Providers -%_prefix/lib/mono/gac/System.Reactive.Runtime.Remoting - -%package -n mono-rx-desktop -License: MIT License (or similar) ; Apache License 2.0 -Summary: Reactive Extensions for Mono desktop-specific libraries -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Requires: mono-rx-core == %version-%release -Provides: mono(System.Reactive.Interfaces) = 1.0.5000.0 - -%description -n mono-rx-desktop -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Reactive Extensions for Mono, desktop-specific packages (winforms, -windows threading). - -%files -n mono-rx-desktop -%defattr(-, root, root) -%_prefix/lib/mono/4.5/System.Reactive.Windows.Forms.dll -%_prefix/lib/mono/4.5/System.Reactive.Windows.Threading.dll -%_prefix/lib/mono/gac/System.Reactive.Windows.Forms -%_prefix/lib/mono/gac/System.Reactive.Windows.Threading - -%package -n mono-nunit -License: LGPL v2.1 only -Summary: NUnit Testing Framework -Group: Development/Languages/Mono -Requires: mono-core == %version-%release - -%description -n mono-nunit -NUnit is a unit-testing framework for all .Net languages. Initially -ported from JUnit, the current release, version 2.2, is the fourth -major release of this Unit based unit testing tool for Microsoft .NET. -It is written entirely in C# and has been completely redesigned to -take advantage of many .NET language features, for example -custom attributes and other reflection related capabilities. NUnit -brings xUnit to all .NET languages. - -%files -n mono-nunit -%defattr(-, root, root) -%_libdir/pkgconfig/mono-nunit.pc -%_prefix/bin/nunit-console -%_prefix/bin/nunit-console2 -%_prefix/bin/nunit-console4 -%_prefix/lib/mono/2.0/nunit-console-runner.dll -%_prefix/lib/mono/2.0/nunit-console.exe* -%_prefix/lib/mono/2.0/nunit.core.dll -%_prefix/lib/mono/2.0/nunit.core.extensions.dll -%_prefix/lib/mono/2.0/nunit.core.interfaces.dll -%_prefix/lib/mono/2.0/nunit.framework.dll -%_prefix/lib/mono/2.0/nunit.framework.extensions.dll -%_prefix/lib/mono/2.0/nunit.mocks.dll -%_prefix/lib/mono/2.0/nunit.util.dll -%_prefix/lib/mono/4.5/nunit-console-runner.dll -%_prefix/lib/mono/4.5/nunit-console.exe* -%_prefix/lib/mono/4.5/nunit.core.dll -%_prefix/lib/mono/4.5/nunit.core.extensions.dll -%_prefix/lib/mono/4.5/nunit.core.interfaces.dll -%_prefix/lib/mono/4.5/nunit.framework.dll -%_prefix/lib/mono/4.5/nunit.framework.extensions.dll -%_prefix/lib/mono/4.5/nunit.mocks.dll -%_prefix/lib/mono/4.5/nunit.util.dll -%_prefix/lib/mono/gac/nunit-console-runner -%_prefix/lib/mono/gac/nunit.core -%_prefix/lib/mono/gac/nunit.core.extensions -%_prefix/lib/mono/gac/nunit.core.interfaces -%_prefix/lib/mono/gac/nunit.framework -%_prefix/lib/mono/gac/nunit.framework.extensions -%_prefix/lib/mono/gac/nunit.mocks -%_prefix/lib/mono/gac/nunit.util - -%package -n mono-devel -License: LGPL v2.1 only -Summary: Mono development tools -Group: Development/Languages/Mono -Requires: mono-core == %version-%release -Requires: libgdiplus0 -Requires: pkgconfig -Provides: mono-xbuild -# Required because they are referenced by .pc files -Requires: mono-data == %version-%release -Requires: mono-data-oracle == %version-%release -Requires: mono-extras == %version-%release -Requires: mono-web == %version-%release -Requires: mono-winforms == %version-%release -# We build natively on ppc64 now -%ifarch ppc64 -Provides: mono-biarchcompat -Obsoletes: mono-biarchcompat -%endif -Provides: mono(PEAPI) = 1.0.5000.0 -Provides: mono(resgen) = 1.0.5000.0 - -%description -n mono-devel -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. This package contains compilers and -other tools needed to develop .NET applications. - -Mono development tools. - -%post -n mono-devel -p /sbin/ldconfig - -%postun -n mono-devel -p /sbin/ldconfig - -%files -n mono-devel -%defattr(-, root, root) -%_bindir/caspol -%_bindir/ccrewrite -%_bindir/cccheck -%_bindir/cert2spc -%_bindir/dtd2rng -%_bindir/dtd2xsd -%_bindir/genxs -%_bindir/httpcfg -%_bindir/ilasm -%_bindir/installvst -%_bindir/lc -%_bindir/macpack -%_bindir/makecert -%_bindir/mkbundle -%_bindir/mono-api-info -%_bindir/mono-cil-strip -%_bindir/mono-find-provides -%_bindir/mono-find-requires -%_bindir/mono-heapviz -%_bindir/mono-shlib-cop -%_bindir/mono-xmltool -%_bindir/monodis -%_bindir/monograph -%_bindir/monolinker -%_bindir/monop -%_bindir/monop2 -%_bindir/mprof-report -%_bindir/pdb2mdb -%_bindir/pedump -%_bindir/permview -%_bindir/prj2make -%_bindir/resgen -%_bindir/resgen2 -%_bindir/secutil -%_bindir/sgen -%_bindir/signcode -%_bindir/xbuild -%_bindir/mdbrebase -%dir %_datadir/mono-2.0 -%dir %_datadir/mono-2.0/mono -%dir %_datadir/mono-2.0/mono/cil -%_datadir/mono-2.0/mono/cil/cil-opcodes.xml -%_libdir/libmono-profiler-*.* -%_libdir/pkgconfig/cecil.pc -%_libdir/pkgconfig/dotnet.pc -%_libdir/pkgconfig/dotnet35.pc -%_libdir/pkgconfig/mono-cairo.pc -%_libdir/pkgconfig/mono-lineeditor.pc -%_libdir/pkgconfig/mono-options.pc -%_libdir/pkgconfig/mono.pc -%_libdir/pkgconfig/xbuild12.pc -%_mandir/man1/al.1%ext_man -%_mandir/man1/ccrewrite.1%ext_man -%_mandir/man1/cccheck.1%ext_man -%_mandir/man1/cert2spc.1%ext_man -%_mandir/man1/dtd2xsd.1%ext_man -%_mandir/man1/genxs.1%ext_man -%_mandir/man1/httpcfg.1%ext_man -%_mandir/man1/ilasm.1%ext_man -%_mandir/man1/lc.1%ext_man -%_mandir/man1/macpack.1%ext_man -%_mandir/man1/makecert.1%ext_man -%_mandir/man1/mkbundle.1%ext_man -%_mandir/man1/mono-api-info.1%ext_man -%_mandir/man1/mono-cil-strip.1%ext_man -%_mandir/man1/mono-shlib-cop.1%ext_man -%_mandir/man1/mono-xmltool.1%ext_man -%_mandir/man1/monodis.1%ext_man -%_mandir/man1/monolinker.1%ext_man -%_mandir/man1/monop.1%ext_man -%_mandir/man1/mprof-report.1%ext_man -%_mandir/man1/pdb2mdb.1%ext_man -%_mandir/man1/permview.1%ext_man -%_mandir/man1/prj2make.1%ext_man -%_mandir/man1/resgen.1%ext_man -%_mandir/man1/secutil.1%ext_man -%_mandir/man1/sgen.1%ext_man -%_mandir/man1/signcode.1%ext_man -%_mandir/man1/xbuild.1%ext_man -%_prefix/lib/mono-source-libs -%_prefix/lib/mono/2.0/MSBuild -%_prefix/lib/mono/2.0/Microsoft.Build.Engine.dll -%_prefix/lib/mono/2.0/Microsoft.Build.Framework.dll -%_prefix/lib/mono/2.0/Microsoft.Build.Tasks.dll -%_prefix/lib/mono/2.0/Microsoft.Build.Utilities.dll -%_prefix/lib/mono/2.0/Microsoft.Build.xsd -%_prefix/lib/mono/2.0/Microsoft.CSharp.targets -%_prefix/lib/mono/2.0/Microsoft.Common.targets -%_prefix/lib/mono/2.0/Microsoft.Common.tasks -%_prefix/lib/mono/2.0/Microsoft.VisualBasic.targets -%_prefix/lib/mono/2.0/Mono.Debugger.Soft.dll -%_prefix/lib/mono/2.0/Mono.XBuild.Tasks.dll -%_prefix/lib/mono/2.0/PEAPI.dll -%_prefix/lib/mono/2.0/genxs.exe* -%_prefix/lib/mono/2.0/ilasm.exe* -%_prefix/lib/mono/2.0/mkbundle.exe* -%_prefix/lib/mono/2.0/monolinker.* -%_prefix/lib/mono/2.0/monop.exe* -%_prefix/lib/mono/2.0/resgen.exe* -%_prefix/lib/mono/2.0/xbuild.exe* -%_prefix/lib/mono/2.0/xbuild.rsp -%_prefix/lib/mono/3.5/MSBuild -%_prefix/lib/mono/3.5/Microsoft.Build.Engine.dll -%_prefix/lib/mono/3.5/Microsoft.Build.Framework.dll -%_prefix/lib/mono/3.5/Microsoft.Build.Tasks.v3.5.dll -%_prefix/lib/mono/3.5/Microsoft.Build.Utilities.v3.5.dll -%_prefix/lib/mono/3.5/Microsoft.Build.xsd -%_prefix/lib/mono/3.5/Microsoft.CSharp.targets -%_prefix/lib/mono/3.5/Microsoft.Common.targets -%_prefix/lib/mono/3.5/Microsoft.Common.tasks -%_prefix/lib/mono/3.5/Microsoft.VisualBasic.targets -%_prefix/lib/mono/3.5/Mono.XBuild.Tasks.dll -%_prefix/lib/mono/3.5/xbuild.exe* -%_prefix/lib/mono/3.5/xbuild.rsp -%_prefix/lib/mono/4.0/Microsoft.Build.dll -%_prefix/lib/mono/4.0/Microsoft.Build.Engine.dll -%_prefix/lib/mono/4.0/Microsoft.Build.Framework.dll -%_prefix/lib/mono/4.0/Microsoft.Build.Tasks.v4.0.dll -%_prefix/lib/mono/4.0/Microsoft.Build.Utilities.v4.0.dll -%_prefix/lib/mono/4.0/Mono.Debugger.Soft.dll -%_prefix/lib/mono/4.0/Mono.XBuild.Tasks.dll -%_prefix/lib/mono/4.0/PEAPI.dll -%_prefix/lib/mono/4.5/MSBuild -%_prefix/lib/mono/4.5/Microsoft.Build.dll -%_prefix/lib/mono/4.5/Microsoft.Build.Engine.dll -%_prefix/lib/mono/4.5/Microsoft.Build.Framework.dll -%_prefix/lib/mono/4.5/Microsoft.Build.Tasks.v4.0.dll -%_prefix/lib/mono/4.5/Microsoft.Build.Utilities.v4.0.dll -%_prefix/lib/mono/4.5/Microsoft.Build.xsd -%_prefix/lib/mono/4.5/Microsoft.CSharp.targets -%_prefix/lib/mono/4.5/Microsoft.Common.targets -%_prefix/lib/mono/4.5/Microsoft.Common.tasks -%_prefix/lib/mono/4.5/Microsoft.VisualBasic.targets -%_prefix/lib/mono/4.5/Mono.Debugger.Soft.dll -%_prefix/lib/mono/4.5/Mono.CodeContracts.dll -%_prefix/lib/mono/4.5/Mono.XBuild.Tasks.dll -%_prefix/lib/mono/4.5/PEAPI.dll -%_prefix/lib/mono/4.5/caspol.exe* -%_prefix/lib/mono/4.5/cccheck.exe* -%_prefix/lib/mono/4.5/ccrewrite.exe* -%_prefix/lib/mono/4.5/cert2spc.exe* -%_prefix/lib/mono/4.5/dtd2rng.exe* -%_prefix/lib/mono/4.5/dtd2xsd.exe* -%_prefix/lib/mono/4.5/genxs.exe* -%_prefix/lib/mono/4.5/httpcfg.exe* -%_prefix/lib/mono/4.5/ictool.exe* -%_prefix/lib/mono/4.5/ilasm.exe* -%_prefix/lib/mono/4.5/installvst.exe* -%_prefix/lib/mono/4.5/lc.exe* -%_prefix/lib/mono/4.5/macpack.exe* -%_prefix/lib/mono/4.5/makecert.exe* -%_prefix/lib/mono/4.5/mkbundle.exe* -%_prefix/lib/mono/4.5/mono-api-info.exe* -%_prefix/lib/mono/4.5/mono-cil-strip.exe* -%_prefix/lib/mono/4.5/mono-shlib-cop.exe* -%_prefix/lib/mono/4.5/mono-xmltool.exe* -%_prefix/lib/mono/4.5/monolinker.* -%_prefix/lib/mono/4.5/monop.exe* -%_prefix/lib/mono/4.5/pdb2mdb.exe* -%_prefix/lib/mono/4.5/permview.exe* -%_prefix/lib/mono/4.5/resgen.exe* -%_prefix/lib/mono/4.5/secutil.exe* -%_prefix/lib/mono/4.5/sgen.exe* -%_prefix/lib/mono/4.5/signcode.exe* -%_prefix/lib/mono/4.5/xbuild.exe* -%_prefix/lib/mono/4.5/xbuild.rsp -%_prefix/lib/mono/4.5/mdbrebase.exe* -%_prefix/lib/mono/gac/Microsoft.Build -%_prefix/lib/mono/gac/Microsoft.Build.Engine -%_prefix/lib/mono/gac/Microsoft.Build.Framework -%_prefix/lib/mono/gac/Microsoft.Build.Tasks -%_prefix/lib/mono/gac/Microsoft.Build.Tasks.v3.5 -%_prefix/lib/mono/gac/Microsoft.Build.Tasks.v4.0 -%_prefix/lib/mono/gac/Microsoft.Build.Tasks.v12.0 -%_prefix/lib/mono/gac/Microsoft.Build.Utilities -%_prefix/lib/mono/gac/Microsoft.Build.Utilities.v3.5 -%_prefix/lib/mono/gac/Microsoft.Build.Utilities.v4.0 -%_prefix/lib/mono/gac/Microsoft.Build.Utilities.v12.0 -%_prefix/lib/mono/gac/Mono.CodeContracts -%_prefix/lib/mono/gac/Mono.Debugger.Soft -%_prefix/lib/mono/gac/Mono.XBuild.Tasks -%_prefix/lib/mono/gac/PEAPI -%_prefix/lib/mono/xbuild -%_prefix/lib/mono/xbuild-frameworks - -%package -n monodoc-core -License: LGPL v2.1 only -Summary: Monodoc - Documentation tools for C# code -Group: Development/Tools/Other -Requires: mono-core == %version-%release -Obsoletes: monodoc -Provides: monodoc -# Added to uncompress and compare documentation used by build-compare -Requires: unzip - -%description -n monodoc-core -Monodoc-core contains documentation tools for C#. - -%files -n monodoc-core -%defattr(-, root, root) -%_bindir/mdassembler -%_bindir/mdoc -%_bindir/mdoc-assemble -%_bindir/mdoc-export-html -%_bindir/mdoc-export-msxdoc -%_bindir/mdoc-update -%_bindir/mdoc-validate -%_bindir/mdvalidater -%_bindir/mod -%_bindir/monodocer -%_bindir/monodocs2html -%_bindir/monodocs2slashdoc -%_libdir/pkgconfig/monodoc.pc -%_mandir/man1/mdassembler.1%ext_man -%_mandir/man1/mdoc-assemble.1%ext_man -%_mandir/man1/mdoc-export-html.1%ext_man -%_mandir/man1/mdoc-export-msxdoc.1%ext_man -%_mandir/man1/mdoc-update.1%ext_man -%_mandir/man1/mdoc-validate.1%ext_man -%_mandir/man1/mdoc.1%ext_man -%_mandir/man1/mdvalidater.1%ext_man -%_mandir/man1/monodocer.1%ext_man -%_mandir/man1/monodocs2html.1%ext_man -%_mandir/man5/mdoc.5%ext_man -%_prefix/lib/mono/4.5/mdoc.exe* -%_prefix/lib/mono/4.5/mod.exe* -%_prefix/lib/mono/4.0/monodoc.dll* -%_prefix/lib/mono/gac/monodoc -%_prefix/lib/mono/monodoc -%_prefix/lib/monodoc - -%package -n mono-complete -License: LGPL v2.1 only -Summary: Install everything built from the mono source tree -Group: Development/Languages/Mono -Requires: mono-core = %version-%release -Requires: ibm-data-db2 = %version-%release -Requires: libmono-2_0-1 = %version-%release -Requires: libmono-2_0-devel = %version-%release -%if %llvm == yes -Requires: libmono-llvm0 = %version-%release -%endif -%if %sgen == yes -Requires: libmonosgen-2_0-1 = %version-%release -Requires: libmonosgen-2_0-devel = %version-%release -%endif -Requires: mono-data = %version-%release -Requires: mono-data-oracle = %version-%release -Requires: mono-data-postgresql = %version-%release -Requires: mono-data-sqlite = %version-%release -Requires: mono-devel = %version-%release -Requires: mono-extras = %version-%release -Requires: mono-locale-extras = %version-%release -Requires: mono-nunit = %version-%release -Requires: mono-wcf = %version-%release -Requires: mono-web = %version-%release -Requires: mono-winforms = %version-%release -Requires: mono-winfxcore = %version-%release -Requires: monodoc-core = %version-%release - -%description -n mono-complete -The Mono Project is an open development initiative that is working to -develop an open source, Unix version of the .NET development platform. -Its objective is to enable Unix developers to build and deploy -cross-platform .NET applications. The project will implement various -technologies that have been submitted to the ECMA for standardization. - -Install everything built from the mono source tree. Note that this does -not install anything from outside the mono source (XSP, mono-basic, etc.). - -%files -n mono-complete -%defattr(-, root, root) -%dir %_prefix/lib/mono/compat-2.0 - -%changelog diff --git a/mono/dis/TODO b/mono/dis/TODO deleted file mode 100644 index fb42dc0758a..00000000000 --- a/mono/dis/TODO +++ /dev/null @@ -1,5 +0,0 @@ -* Write test cases - - Write test cases to stress test TypeSpec. This is done by - creating arrays of various dimensions, sizes, and lower - bounds. diff --git a/mono/io-layer/Makefile.am b/mono/io-layer/Makefile.am index bca6a114399..47e31071494 100644 --- a/mono/io-layer/Makefile.am +++ b/mono/io-layer/Makefile.am @@ -28,7 +28,6 @@ OTHER_H = \ semaphores.h \ sockets.h \ status.h \ - system.h \ threads.h \ timefuncs.h \ types.h \ @@ -83,8 +82,6 @@ OTHER_SRC = \ socket-private.h \ socket-wrappers.h \ status.h \ - system.c \ - system.h \ threads.h \ thread-private.h \ timefuncs.c \ diff --git a/mono/io-layer/processes.c b/mono/io-layer/processes.c index 913a08570a4..ce7aee14c88 100644 --- a/mono/io-layer/processes.c +++ b/mono/io-layer/processes.c @@ -90,6 +90,7 @@ #include #include #include +#include /* The process' environment strings */ #if defined(__APPLE__) && !defined (__arm__) && !defined (__aarch64__) @@ -1309,11 +1310,19 @@ GetProcessTimes (gpointer process, WapiFileTime *create_time, /* Not sure if w32 allows NULLs here or not */ return FALSE; - if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) - /* This is a pseudo handle, so just fail for now - */ - return FALSE; - + if (WAPI_IS_PSEUDO_PROCESS_HANDLE (process)) { + gpointer pid = GINT_TO_POINTER (WAPI_HANDLE_TO_PID(process)); + gint64 start_ticks, user_ticks, kernel_ticks; + + mono_process_get_times (pid, &start_ticks, &user_ticks, &kernel_ticks); + + _wapi_guint64_to_filetime (start_ticks, create_time); + _wapi_guint64_to_filetime (user_ticks, kernel_time); + _wapi_guint64_to_filetime (kernel_ticks, user_time); + + return TRUE; + } + process_handle = lookup_process_handle (process); if (!process_handle) { DEBUG ("%s: Can't find process %p", __func__, process); diff --git a/mono/io-layer/system.c b/mono/io-layer/system.c deleted file mode 100644 index 3a336ce2cef..00000000000 --- a/mono/io-layer/system.c +++ /dev/null @@ -1,32 +0,0 @@ -/* - * system.c: System information - * - * Author: - * Dick Porter (dick@ximian.com) - * - * (C) 2002 Ximian, Inc. - */ - -#include -#include -#include -#include -#include - -#include "mono/io-layer/wapi.h" - -void GetSystemInfo(WapiSystemInfo *info) -{ - info->dwPageSize=getpagesize(); - - /* Fill in the rest of this junk. Maybe with libgtop */ -#ifdef _SC_NPROCESSORS_ONLN - info->dwNumberOfProcessors = sysconf (_SC_NPROCESSORS_ONLN); - if (info->dwNumberOfProcessors <= 0) - info->dwNumberOfProcessors = 1; -#else - info->dwNumberOfProcessors = 1; -#endif -} - - diff --git a/mono/io-layer/system.h b/mono/io-layer/system.h deleted file mode 100644 index 390b1776b7d..00000000000 --- a/mono/io-layer/system.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * system.h: System information - * - * Author: - * Dick Porter (dick@ximian.com) - * - * (C) 2002 Ximian, Inc. - */ - -#ifndef _WAPI_SYSTEM_H_ -#define _WAPI_SYSTEM_H_ - -#include - -G_BEGIN_DECLS - -typedef struct _WapiSystemInfo WapiSystemInfo; - -struct _WapiSystemInfo -{ - union _anon_union - { - guint32 dwOemId; - struct _anon_struct - { - guint16 wProcessorArchitecture; - guint16 wReserved; - } _anon_struct; - } _anon_union; - - guint32 dwPageSize; - gpointer lpMinimumApplicationAddress; - gpointer lpMaximumApplicationAddress; - guint32 /*_PTR?*/ dwActiveProcessorMask; - guint32 dwNumberOfProcessors; - guint32 dwProcessorType; - guint32 dwAllocationGranularity; - guint16 wProcessorLevel; - guint16 wProcessorRevision; -}; - -extern void GetSystemInfo(WapiSystemInfo *info); - -G_END_DECLS -#endif /* _WAPI_SYSTEM_H_ */ diff --git a/mono/io-layer/threads.h b/mono/io-layer/threads.h index d2dbcbfaf1c..13b6bd1401f 100644 --- a/mono/io-layer/threads.h +++ b/mono/io-layer/threads.h @@ -30,7 +30,6 @@ extern gsize GetCurrentThreadId(void); /* NB return is 32bit in MS API */ extern void Sleep(guint32 ms); extern guint32 SleepEx(guint32 ms, gboolean alertable); -void wapi_interrupt_thread (gpointer handle); void wapi_clear_interruption (void); gboolean wapi_thread_set_wait_handle (gpointer handle); void wapi_thread_clear_wait_handle (gpointer handle); diff --git a/mono/io-layer/uglify.h b/mono/io-layer/uglify.h index 120ce317747..aa847569cb8 100644 --- a/mono/io-layer/uglify.h +++ b/mono/io-layer/uglify.h @@ -63,8 +63,6 @@ typedef WapiLargeInteger LARGE_INTEGER; typedef WapiLargeInteger *PLARGE_INTEGER; typedef WapiULargeInteger ULARGE_INTEGER; typedef WapiULargeInteger *PULARGE_INTEGER; -typedef WapiSystemInfo SYSTEM_INFO; -typedef WapiSystemInfo *LPSYSTEM_INFO; typedef WapiFloatingSaveArea FLOATING_SAVE_AREA; typedef WapiFloatingSaveArea *PFLOATING_SAVE_AREA; typedef WapiContext CONTEXT; diff --git a/mono/io-layer/wapi.h b/mono/io-layer/wapi.h index e2c9639c3d4..c2a89920c34 100644 --- a/mono/io-layer/wapi.h +++ b/mono/io-layer/wapi.h @@ -26,7 +26,6 @@ #include #include #include -#include #include #include #include diff --git a/mono/io-layer/wthreads.c b/mono/io-layer/wthreads.c index 98a932b7e25..90a8cc4ffa8 100644 --- a/mono/io-layer/wthreads.c +++ b/mono/io-layer/wthreads.c @@ -341,15 +341,6 @@ _wapi_thread_apc_pending (gpointer handle) * call the wait function again. This essentially means that the target thread will * busy wait until it is ready to process the interruption. */ -void -wapi_interrupt_thread (gpointer thread_handle) -{ - gpointer wait_handle; - - wait_handle = wapi_prepare_interrupt_thread (thread_handle); - wapi_finish_interrupt_thread (wait_handle); -} - gpointer wapi_prepare_interrupt_thread (gpointer thread_handle) { diff --git a/mono/metadata/Makefile.am b/mono/metadata/Makefile.am index 0cbcf73f826..1241a7a079e 100644 --- a/mono/metadata/Makefile.am +++ b/mono/metadata/Makefile.am @@ -367,5 +367,5 @@ endif endif endif -EXTRA_DIST = make-bundle.pl sample-bundle $(win32_sources) $(unix_sources) $(null_sources) runtime.h \ +EXTRA_DIST = $(win32_sources) $(unix_sources) $(null_sources) runtime.h \ tpool-poll.c tpool-epoll.c tpool-kqueue.c diff --git a/mono/metadata/TODO b/mono/metadata/TODO deleted file mode 100644 index f37fd656388..00000000000 --- a/mono/metadata/TODO +++ /dev/null @@ -1,4 +0,0 @@ - -* Uniform names - - We have a mess of names in the icall.c file, we need to sort that out. diff --git a/mono/metadata/appdomain.c b/mono/metadata/appdomain.c index b959cb96b04..c6d3071d05b 100644 --- a/mono/metadata/appdomain.c +++ b/mono/metadata/appdomain.c @@ -78,7 +78,7 @@ * Changes which are already detected at runtime, like the addition * of icalls, do not require an increment. */ -#define MONO_CORLIB_VERSION 125 +#define MONO_CORLIB_VERSION 127 typedef struct { diff --git a/mono/metadata/class-internals.h b/mono/metadata/class-internals.h index 36080792d10..d2b6722e173 100644 --- a/mono/metadata/class-internals.h +++ b/mono/metadata/class-internals.h @@ -1062,7 +1062,6 @@ mono_inflate_generic_signature (MonoMethodSignature *sig, MonoGenericContext *co typedef struct { MonoImage *corlib; - MonoImage *system; MonoClass *object_class; MonoClass *byte_class; MonoClass *void_class; @@ -1091,6 +1090,7 @@ typedef struct { MonoClass *methodhandle_class; MonoClass *systemtype_class; MonoClass *monotype_class; + MonoClass *runtimetype_class; MonoClass *exception_class; MonoClass *threadabortexception_class; MonoClass *thread_class; diff --git a/mono/metadata/class.c b/mono/metadata/class.c index 4148bec9508..2c7f94abb5c 100644 --- a/mono/metadata/class.c +++ b/mono/metadata/class.c @@ -6051,7 +6051,13 @@ mono_generic_class_get_class (MonoGenericClass *gclass) mono_generic_class_setup_parent (klass, gklass); if (gclass->is_dynamic) { - klass->inited = 1; + /* + * We don't need to do any init workf with unbaked typebuilders. Generic instances created at this point will be later unregistered and/or fixed. + * This is to avoid work that would probably give wrong results as fields change as we build the TypeBuilder. + * See remove_instantiations_of_and_ensure_contents in reflection.c and its usage in reflection.c to understand the fixup stage of SRE banking. + */ + if (!gklass->wastypebuilder) + klass->inited = 1; mono_class_setup_supertypes (klass); diff --git a/mono/metadata/decimal-ms.c b/mono/metadata/decimal-ms.c index 47a4ed06ca8..9330f0fb57b 100644 --- a/mono/metadata/decimal-ms.c +++ b/mono/metadata/decimal-ms.c @@ -55,8 +55,13 @@ static const uint32_t ten_to_ten_div_4 = 2500000000U; #define DECIMAL_LO32(dec) ((dec).v.v.Lo32) #define DECIMAL_MID32(dec) ((dec).v.v.Mid32) #define DECIMAL_HI32(dec) ((dec).Hi32) -#define DECIMAL_LO64_GET(dec) ((dec).v.Lo64) -#define DECIMAL_LO64_SET(dec,value) {(dec).v.Lo64 = value; } +#if G_BYTE_ORDER != G_LITTLE_ENDIAN +# define DECIMAL_LO64_GET(dec) (((uint64_t)((dec).v.v.Mid32) << 32) | (dec).v.v.Lo32) +# define DECIMAL_LO64_SET(dec,value) {(dec).v.v.Lo32 = (value); (dec).v.v.Mid32 = ((value) >> 32); } +#else +# define DECIMAL_LO64_GET(dec) ((dec).v.Lo64) +# define DECIMAL_LO64_SET(dec,value) {(dec).v.Lo64 = value; } +#endif #define DECIMAL_SETZERO(dec) {DECIMAL_LO32(dec) = 0; DECIMAL_MID32(dec) = 0; DECIMAL_HI32(dec) = 0; DECIMAL_SIGNSCALE(dec) = 0;} #define COPYDEC(dest, src) {DECIMAL_SIGNSCALE(dest) = DECIMAL_SIGNSCALE(src); DECIMAL_HI32(dest) = DECIMAL_HI32(src); \ @@ -2215,6 +2220,8 @@ mono_decimal_compare (MonoDecimal *left, MonoDecimal *right) uint32_t right_sign; MonoDecimal result; + result.Hi32 = 0; // Just to shut up the compiler + // First check signs and whether either are zero. If both are // non-zero and of the same sign, just use subtraction to compare. // diff --git a/mono/metadata/domain.c b/mono/metadata/domain.c index 801d58e4162..d2d92fd51c9 100755 --- a/mono/metadata/domain.c +++ b/mono/metadata/domain.c @@ -600,9 +600,6 @@ mono_init_internal (const char *filename, const char *exe_filename, const char * } mono_defaults.corlib = mono_assembly_get_image (ass); - /* might be NULL if System.dll is not yet loaded */ - mono_defaults.system = mono_image_loaded ("System"); - mono_defaults.object_class = mono_class_from_name ( mono_defaults.corlib, "System", "Object"); g_assert (mono_defaults.object_class != 0); @@ -716,6 +713,10 @@ mono_init_internal (const char *filename, const char *exe_filename, const char * mono_defaults.corlib, "System", "MonoType"); g_assert (mono_defaults.monotype_class != 0); + mono_defaults.runtimetype_class = mono_class_from_name ( + mono_defaults.corlib, "System", "RuntimeType"); + g_assert (mono_defaults.runtimetype_class != 0); + mono_defaults.exception_class = mono_class_from_name ( mono_defaults.corlib, "System", "Exception"); g_assert (mono_defaults.exception_class != 0); diff --git a/mono/metadata/file-mmap-posix.c b/mono/metadata/file-mmap-posix.c index e4b2bd75d6d..227b3cc9697 100644 --- a/mono/metadata/file-mmap-posix.c +++ b/mono/metadata/file-mmap-posix.c @@ -9,7 +9,7 @@ #include -#ifndef TARGET_WIN32 +#ifndef HOST_WIN32 #include #include diff --git a/mono/metadata/file-mmap-windows.c b/mono/metadata/file-mmap-windows.c index 78203ad47a8..56d598ee7f2 100644 --- a/mono/metadata/file-mmap-windows.c +++ b/mono/metadata/file-mmap-windows.c @@ -9,7 +9,7 @@ #include -#ifdef TARGET_WIN32 +#ifdef HOST_WIN32 #include #include diff --git a/mono/metadata/icall-def.h b/mono/metadata/icall-def.h index 87bb85e5664..530ad048095 100644 --- a/mono/metadata/icall-def.h +++ b/mono/metadata/icall-def.h @@ -105,10 +105,10 @@ ICALL(ARRAY_12, "SetValue", ves_icall_System_Array_SetValue) ICALL(ARRAY_13, "SetValueImpl", ves_icall_System_Array_SetValueImpl) ICALL_TYPE(BUFFER, "System.Buffer", BUFFER_1) -ICALL(BUFFER_1, "BlockCopyInternal", ves_icall_System_Buffer_BlockCopyInternal) -ICALL(BUFFER_2, "ByteLengthInternal", ves_icall_System_Buffer_ByteLengthInternal) -ICALL(BUFFER_3, "GetByteInternal", ves_icall_System_Buffer_GetByteInternal) -ICALL(BUFFER_4, "SetByteInternal", ves_icall_System_Buffer_SetByteInternal) +ICALL(BUFFER_1, "InternalBlockCopy", ves_icall_System_Buffer_BlockCopyInternal) +ICALL(BUFFER_2, "_ByteLength", ves_icall_System_Buffer_ByteLengthInternal) +ICALL(BUFFER_3, "_GetByte", ves_icall_System_Buffer_GetByteInternal) +ICALL(BUFFER_4, "_SetByte", ves_icall_System_Buffer_SetByteInternal) ICALL_TYPE (COMPO_W, "System.ComponentModel.Win32Exception", COMPO_W_1) ICALL (COMPO_W_1, "W32ErrorMessage", ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage) @@ -426,22 +426,22 @@ ICALL(SOCK_6, "Connect_internal(intptr,System.Net.SocketAddress,int&)", ves_ical ICALL (SOCK_6a, "Disconnect_internal(intptr,bool,int&)", ves_icall_System_Net_Sockets_Socket_Disconnect_internal) ICALL(SOCK_7, "GetSocketOption_arr_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,byte[]&,int&)", ves_icall_System_Net_Sockets_Socket_GetSocketOption_arr_internal) ICALL(SOCK_8, "GetSocketOption_obj_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,object&,int&)", ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal) +ICALL(SOCK_21, "IOControl_internal(intptr,int,byte[],byte[],int&)", ves_icall_System_Net_Sockets_Socket_IOControl_internal) ICALL(SOCK_9, "Listen_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_Listen_internal) ICALL(SOCK_10, "LocalEndPoint_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_LocalEndPoint_internal) ICALL(SOCK_11, "Poll_internal", ves_icall_System_Net_Sockets_Socket_Poll_internal) +ICALL(SOCK_13, "ReceiveFrom_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress&,int&)", ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal) ICALL(SOCK_11a, "Receive_internal(intptr,System.Net.Sockets.Socket/WSABUF[],System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Receive_array_internal) ICALL(SOCK_12, "Receive_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Receive_internal) -ICALL(SOCK_13, "RecvFrom_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress&,int&)", ves_icall_System_Net_Sockets_Socket_RecvFrom_internal) ICALL(SOCK_14, "RemoteEndPoint_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_RemoteEndPoint_internal) ICALL(SOCK_15, "Select_internal(System.Net.Sockets.Socket[]&,int,int&)", ves_icall_System_Net_Sockets_Socket_Select_internal) -ICALL(SOCK_15a, "SendFile(intptr,string,byte[],byte[],System.Net.Sockets.TransmitFileOptions)", ves_icall_System_Net_Sockets_Socket_SendFile) +ICALL(SOCK_15a, "SendFile_internal(intptr,string,byte[],byte[],System.Net.Sockets.TransmitFileOptions)", ves_icall_System_Net_Sockets_Socket_SendFile_internal) ICALL(SOCK_16, "SendTo_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_SendTo_internal) ICALL(SOCK_16a, "Send_internal(intptr,System.Net.Sockets.Socket/WSABUF[],System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Send_array_internal) ICALL(SOCK_17, "Send_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Send_internal) ICALL(SOCK_18, "SetSocketOption_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,object,byte[],int,int&)", ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal) ICALL(SOCK_19, "Shutdown_internal(intptr,System.Net.Sockets.SocketShutdown,int&)", ves_icall_System_Net_Sockets_Socket_Shutdown_internal) ICALL(SOCK_20, "Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType,int&)", ves_icall_System_Net_Sockets_Socket_Socket_internal) -ICALL(SOCK_21, "WSAIoctl(intptr,int,byte[],byte[],int&)", ves_icall_System_Net_Sockets_Socket_WSAIoctl) ICALL(SOCK_21a, "cancel_blocking_socket_operation", icall_cancel_blocking_socket_operation) ICALL(SOCK_22, "socket_pool_queue", icall_append_io_job) @@ -733,7 +733,7 @@ ICALL(RT_1, "CreateInstanceInternal", ves_icall_System_Activator_CreateInstanceI ICALL(RT_2, "GetConstructors_internal", ves_icall_Type_GetConstructors_internal) ICALL(RT_3, "GetEvents_internal", ves_icall_Type_GetEvents_internal) ICALL(RT_5, "GetFields_internal", ves_icall_Type_GetFields_internal) -ICALL(RT_6, "GetGenericArguments", ves_icall_MonoType_GetGenericArguments) +ICALL(RT_6, "GetGenericArgumentsInternal", ves_icall_MonoType_GetGenericArguments) ICALL(RT_7, "GetGenericParameterAttributes", ves_icall_Type_GetGenericParameterAttributes) ICALL(RT_8, "GetGenericParameterConstraints_impl", ves_icall_Type_GetGenericParameterConstraints) ICALL(RT_9, "GetGenericParameterPosition", ves_icall_Type_GetGenericParameterPosition) diff --git a/mono/metadata/icall.c b/mono/metadata/icall.c index 056e76eada4..1132dbfeb0f 100644 --- a/mono/metadata/icall.c +++ b/mono/metadata/icall.c @@ -2293,31 +2293,38 @@ ves_icall_MonoType_GetArrayRank (MonoReflectionType *type) return class->rank; } +static MonoArray* +create_type_array (MonoDomain *domain, MonoBoolean runtimeTypeArray, int count) +{ + MonoArray *res; + res = mono_array_new (domain, runtimeTypeArray ? mono_defaults.runtimetype_class : mono_defaults.systemtype_class, count); + return res; +} + ICALL_EXPORT MonoArray* -ves_icall_MonoType_GetGenericArguments (MonoReflectionType *type) +ves_icall_MonoType_GetGenericArguments (MonoReflectionType *type, MonoBoolean runtimeTypeArray) { MonoArray *res; MonoClass *klass, *pklass; MonoDomain *domain = mono_object_domain (type); - MonoVTable *array_vtable = mono_class_vtable_full (domain, mono_array_class_get_cached (mono_defaults.systemtype_class, 1), TRUE); int i; klass = mono_class_from_mono_type (type->type); if (klass->generic_container) { MonoGenericContainer *container = klass->generic_container; - res = mono_array_new_specific (array_vtable, container->type_argc); + res = create_type_array (domain, runtimeTypeArray, container->type_argc); for (i = 0; i < container->type_argc; ++i) { pklass = mono_class_from_generic_parameter (mono_generic_container_get_param (container, i), klass->image, FALSE); mono_array_setref (res, i, mono_type_get_object (domain, &pklass->byval_arg)); } } else if (klass->generic_class) { MonoGenericInst *inst = klass->generic_class->context.class_inst; - res = mono_array_new_specific (array_vtable, inst->type_argc); + res = create_type_array (domain, runtimeTypeArray, inst->type_argc); for (i = 0; i < inst->type_argc; ++i) mono_array_setref (res, i, mono_type_get_object (domain, inst->type_argv [i])); } else { - res = mono_array_new_specific (array_vtable, 0); + res = NULL; } return res; } @@ -6996,8 +7003,8 @@ mono_TypedReference_MakeTypedReferenceInternal (MonoObject *target, MonoArray *f MonoTypedRef res; MonoReflectionField *f; MonoClass *klass; - MonoType *ftype; - guint8 *p; + MonoType *ftype = NULL; + guint8 *p = NULL; int i; memset (&res, 0, sizeof (res)); diff --git a/mono/metadata/image.c b/mono/metadata/image.c index 1e9596cff5d..2cf48fda847 100644 --- a/mono/metadata/image.c +++ b/mono/metadata/image.c @@ -1643,7 +1643,6 @@ mono_image_close_except_pools (MonoImage *image) free_hash (image->var_cache_slow); free_hash (image->mvar_cache_slow); free_hash (image->wrapper_param_names); - free_hash (image->native_wrapper_aot_cache); free_hash (image->pinvoke_scopes); free_hash (image->pinvoke_scope_filenames); for (i = 0; i < image->gshared_types_len; ++i) diff --git a/mono/metadata/make-bundle.pl b/mono/metadata/make-bundle.pl deleted file mode 100755 index fff9a87b9c7..00000000000 --- a/mono/metadata/make-bundle.pl +++ /dev/null @@ -1,104 +0,0 @@ -#!/usr/bin/perl -w -# Copyright (C) 2003 Ximian, Inc. -# Paolo Molaro (lupus@ximian.com) -# -# Create an header file to be included in the mono libraries to -# bundle assemblies inside the runtime. -# The template file contains a list of assemblies, one per line, -# with the name followed by a ':' and the filename. -# Lines starting with '#' and empty lines are ignored. -# See sample-bundle for an example. -# We need to use an assembly file because gcc can't handle large arrays:-( - -if ($#ARGV != 2) { - die "Usage: make-bundle.pl template headerfile.h asm-file\n"; -} - -my $template = $ARGV [0]; -my $header = $ARGV [1]; -my $output = $ARGV [2]; -my %assemblies = (); - -my $line = 0; -open (T, $template) || die "Cannot open bundle template: $!\n"; -while () { - ++$line; - next if (/^\s*#/); - next if (/^\s*$/); - if (/^([a-zA-Z0-9-.]+):\s*(.+?)\s*$/) { - my ($name, $filename) = ($1, $2); - if (exists $assemblies {$name}) { - die "Assembly $name defined multiple times.\n"; - } else { - $assemblies {$name} = $filename; - } - } else { - die "Unknown format at line $line: $_"; - } -} -close (T); - -open (O, ">$output.tmp") || die "Cannot open $output: $!\n"; -open (H, ">$header.tmp") || die "Cannot open $output: $!\n"; -print H <<"EOF"; -/* File generated by make-bundle: do not edit! */ - -#ifndef __MONO_BUNDLE_H__ -#define __MONO_BUNDLE_H__ - -typedef struct { - const char *name; - const unsigned char *data; - const unsigned int size; -} MonoBundledAssembly; - -EOF - -my $bundle_entries = ""; - -foreach my $name (sort keys %assemblies) { - my $file = $assemblies {$name}; - my ($nread, $buf, $i, $cname, $need_eol, $size); - $cname = $name; - $cname =~ s/[-.]/_/g; - open (F, $file) || die "Cannot open $file: $!\n"; - $size = -s F; -# print O "/* assembly $name from $file */\n"; -# print O "static const unsigned char assembly_data_$cname [] = {\n"; - print O ".globl assembly_data_$cname\n"; - print O "\t.section .rodata\n"; - print O "\t.align 32\n"; - print O "\t.type assembly_data_$cname, \@object\n"; - print O "\t.size assembly_data_$cname, $size\n"; - print O "assembly_data_$cname:\n"; - print H "extern const unsigned char assembly_data_$cname [];\n"; - print H "static const MonoBundledAssembly assembly_bundle_$cname = {\"$name\", assembly_data_$cname, $size};\n"; - $bundle_entries .= "\t&assembly_bundle_$cname,\n"; - $need_eol = 0; - print "Adding assembly '$name' from $file...\n"; - while (($n = sysread (F, $buf, 32))) { - for ($i = 0; $i < $n; ++$i) { - print O "\t.byte ", ord (substr ($buf, $i, 1)), "\n"; - } -# print O ",\n" if ($need_eol); -# $need_eol = 1; -# print O "\t"; -# for ($i = 0; $i < $n; ++$i) { -# print O ", " if $i > 0; -# print O ord (substr ($buf, $i, 1)); -# } - } -# print O "\n};\n\n"; - close (F); -} - -print H "\nstatic const MonoBundledAssembly* bundled_assemblies [] = {\n"; -print H $bundle_entries; -print H "\tNULL\n"; -print H "};\n\n"; -print H "#endif /* __MONO_BUNDLE_H__ */\n"; -close (O); -close (H); -rename ("$header.tmp", $header); -rename ("$output.tmp", $output); - diff --git a/mono/metadata/mono-endian.h b/mono/metadata/mono-endian.h index 343b97194a2..acc2590193f 100644 --- a/mono/metadata/mono-endian.h +++ b/mono/metadata/mono-endian.h @@ -14,7 +14,49 @@ typedef union { unsigned char cval [8]; } mono_rdouble; -#if NO_UNALIGNED_ACCESS +#if defined(__s390x__) + +#define read16(x) s390x_read16(*(guint16 *)(x)) +#define read32(x) s390x_read32(*(guint32 *)(x)) +#define read64(x) s390x_read64(*(guint64 *)(x)) + +static __inline__ guint16 +s390x_read16(guint16 x) +{ + guint16 ret; + + __asm__ (" lrvr %0,%1\n" + " sra %0,16\n" + : "=r" (ret) : "r" (x)); + + return(ret); +} + +static __inline__ guint32 +s390x_read32(guint32 x) +{ + guint32 ret; + + __asm__ (" lrvr %0,%1\n" + : "=r" (ret) : "r" (x)); + + return(ret); +} + +static __inline__ guint64 +s390x_read64(guint64 x) +{ + guint64 ret; + + __asm__ (" lrvgr %0,%1\n" + : "=r" (ret) : "r" (x)); + + return(ret); +} + +#else + +# if NO_UNALIGNED_ACCESS guint16 mono_read16 (const unsigned char *x); guint32 mono_read32 (const unsigned char *x); @@ -24,12 +66,14 @@ guint64 mono_read64 (const unsigned char *x); #define read32(x) (mono_read32 ((const unsigned char *)(x))) #define read64(x) (mono_read64 ((const unsigned char *)(x))) -#else +# else #define read16(x) GUINT16_FROM_LE (*((const guint16 *) (x))) #define read32(x) GUINT32_FROM_LE (*((const guint32 *) (x))) #define read64(x) GUINT64_FROM_LE (*((const guint64 *) (x))) +# endif + #endif #define readr4(x,dest) \ diff --git a/mono/metadata/monosn.c b/mono/metadata/monosn.c deleted file mode 100644 index c9114c4744a..00000000000 --- a/mono/metadata/monosn.c +++ /dev/null @@ -1,551 +0,0 @@ -/* - * monosn.c: Mono String Name Utility - * - * Author: - * Paolo Molaro (lupus@ximian.com) - * - * Copyright 2002-2003 Ximian, Inc (http://www.ximian.com) - * Copyright 2004-2009 Novell, Inc (http://www.novell.com) - * - */ -#include -#include -#include -#include -#include -#include "mono/utils/mono-digest.h" -/* trim headers */ - -#include -#include - -#define RSA1_MAGIC 0x32415351 -#define RSA2_MAGIC 0x32415352 -#define PRIVKEY_MAGIC 0x00000207 -#define PUBKEY_MAGIC 0x00008004 - -typedef struct { - guchar type, version; - guint16 reserved1; - guint32 algid; -} MonoKeyHeader; - -typedef struct { - MonoKeyHeader header; - guint32 bitlen; - guint32 exponent; - guchar modulus [MONO_ZERO_LEN_ARRAY]; -} MonoRSAPubHeader; - -static void -print_data (const char *data, int len) -{ - int i; - for (i = 0; i < len; ++i) { - if (i && !(i % 32)) - printf ("\n"); - printf ("%02x", data [i] & 0xff); - } - printf ("\n"); -} - -static int -show_token (const char *file, int is_assembly, int show_pubkey) { - char token [20]; - if (!is_assembly) { - char *pubkey; - gsize len; - if (!g_file_get_contents (file, &pubkey, &len, NULL)) { - printf ("Cannot load file: %s\n", file); - return 2; - } - mono_digest_get_public_token (token, pubkey, len); - if (show_pubkey) { - printf ("Public key is\n"); - print_data (pubkey, len); - } - g_free (pubkey); - } else { - MonoImage *image; - const char *pubkey; - guint32 len; - - mono_metadata_init (); - mono_images_init (); - mono_assemblies_init (); - mono_loader_init (); - - image = mono_image_open (file, NULL); - if (!image) { - printf ("Cannot open image file: %s\n", file); - return 2; - } - pubkey = mono_image_get_public_key (image, &len); - if (!pubkey) { - printf ("%s does not represent a strongly named assembly\n", mono_image_get_name(image)); - mono_image_close (image); - return 2; - } - if (show_pubkey) { - printf ("Public key is\n"); - print_data (pubkey, len); - } - mono_digest_get_public_token (token, pubkey, len); - mono_image_close (image); - } - printf ("Public key token is "); - print_data (token, 8); - return 0; -} - -static int -extract_data_to_file (int pubk, const char *assembly, const char *outfile) { - MonoImage *image; - FILE *file; - const char *pubkey; - guint32 len; - - image = mono_image_open (assembly, NULL); - if (!image) { - printf ("Cannot open image file: %s\n", assembly); - return 2; - } - if (pubk) - pubkey = mono_image_get_public_key (image, &len); - else - pubkey = mono_image_get_strong_name (image, &len); - if (!pubkey) { - printf ("%s does not represent a strongly named assembly\n", mono_image_get_name(image)); - mono_image_close (image); - return 2; - } - if (!(file = fopen (outfile, "wb"))) { - printf ("Cannot open output file: %s\n", outfile); - return 2; - } - fwrite (pubkey, len, 1, file); - fclose (file); - mono_image_close (image); - return 0; -} - -const static guint8 asciitable [128] = { - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0x3e, 0xff, 0xff, 0xff, 0x3f, - 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, - 0x3a, 0x3b, 0x3c, 0x3d, 0xff, 0xff, - 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, - 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, - 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, - 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, - 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, - 0x19, 0xff, 0xff, 0xff, 0xff, 0xff, - 0xff, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, - 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, - 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, - 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, - 0x31, 0x32, 0x33, 0xff, 0xff, 0xff, - 0xff, 0xff -}; - -/* data is changed in place */ -static char* -pem_decode (guchar *data, int len, int *rlen) { - guchar *p, *s; - int b64len, i, rem = 0, full; - int b0, b1, b2, b3, offset, dlen; - - p = strstr (data, "-----BEGIN"); - s = strstr (data, "\n-----END"); - if (!p || !s) - return NULL; - while (*p != '\n') p++; - *s = 0; - s = data = p; - while (*p) { - if (isalnum (*p) || *p == '+' || *p == '=' || *p == '/') { - *s++ = *p++; - } else { - p++; - } - } - *s = 0; - b64len = s - data; - - full = b64len >> 2; - if (data [b64len - 1] == '=') { - full--; - rem++; - } - if (data [b64len - 2] == '=') - rem++; - offset = 0; - p = data; - for (i = 0; i < full; ++i) { - b0 = asciitable [data [offset++]]; - b1 = asciitable [data [offset++]]; - b2 = asciitable [data [offset++]]; - b3 = asciitable [data [offset++]]; - - *p++ = (b0 << 2) | (b1 >> 4); - *p++ = (b1 << 4) | (b2 >> 2); - *p++ = (b2 << 6) | b3; - } - dlen = full * 3; - switch (rem) { - case 1: - b0 = asciitable [data [offset++]]; - b1 = asciitable [data [offset++]]; - b2 = asciitable [data [offset++]]; - - *p++ = (b0 << 2) | (b1 >> 4); - *p++ = (b1 << 4) | (b2 >> 2); - dlen += 2; - break; - case 2: - b0 = asciitable [data [offset++]]; - b1 = asciitable [data [offset++]]; - - *p++ = (b0 << 2) | (b1 >> 4); - dlen++; - break; - } - *rlen = dlen; - return data; -} - -enum { - DER_INTEGER = 2, - DER_BITSTRING = 3, - DER_NULL = 5, - DER_OBJID = 6, - DER_SEQUENCE = 16, - DER_INVALID = -1, - DER_END = -2 -}; - -static int -der_get_next (guchar *data, int dlen, int offset, int *len, guchar **rdata) -{ - int i, l, type, val; - - if (offset + 1 >= dlen) - return DER_END; - - type = data [offset++] & 0x1f; - if (data [offset] == 0x80) /* not supported */ - return DER_INVALID; - l = 0; - if (data [offset] & 0x80) { - val = data [offset++] & 0x7f; - for (i = 0; i < val; ++i) { - l = (l << 8) | data [offset++]; - } - } else { - l = data [offset++]; - } - *len = l; - *rdata = data + offset; - return type; -} - -static void -dump_asn1 (guchar *key, int len) { - int type, offset, elen; - guchar *edata; - - offset = 0; - while ((type = der_get_next (key, len, offset, &elen, &edata)) >= 0) { - switch (type) { - case DER_SEQUENCE: - g_print ("seq (%d) at %d\n", elen, offset); - dump_asn1 (edata, elen); - offset = elen + edata - key; - break; - case DER_BITSTRING: - g_print ("bits (%d) at %p + %d\n", elen, edata, offset); - dump_asn1 (edata + 1, elen); - offset = 1 + elen + edata - key; - break; - case DER_INTEGER: - g_print ("int (%d) at %d\n", elen, offset); - offset = elen + edata - key; - break; - case DER_NULL: - g_print ("null (%d) at %d\n", elen, offset); - offset = elen + edata - key; - break; - case DER_OBJID: - g_print ("objid (%d) at %d\n", elen, offset); - offset = elen + edata - key; - break; - default: - return; - } - } -} - -static guint32 -get_der_int (guchar *data, int len) -{ - guint32 val = 0; - int i; - for (i = 0; i < len; ++i) - val = (val << 8) | data [i]; - return val; -} - -static void -mem_reverse (guchar *p, int len) { - int i, t; - - for (i = 0; i < len/2; ++i) { - t = p [i]; - p [i] = p [len - i - 1]; - p [len - i - 1] = t; - } -} - -static int -convert_der_key (guchar *key, int len, guchar **ret, int *retlen) -{ - int type, offset, val, elen; - guchar *r, *edata; - - offset = 0; - type = der_get_next (key, len, offset, &elen, &edata); - if (type != DER_SEQUENCE) - return 1; - key = edata; - len = elen; - type = der_get_next (key, len, offset, &elen, &edata); - if (type == DER_INTEGER) { - int i; - guchar *ints [6]; - int lengths [6]; - guchar *p; - /* a private RSA key */ - val = get_der_int (edata, elen); - if (val != 0) - return 2; - offset = elen + edata - key; - /* the modulus */ - type = der_get_next (key, len, offset, &elen, &edata); - if (type != DER_INTEGER) - return 2; - offset = elen + edata - key; - if ((elen & 1) && *edata == 0) { - edata ++; - elen--; - } - r = g_new0 (guchar, elen*4 + elen/2 + 20); - r [0] = 0x7; r [1] = 0x2; r [5] = 0x24; - r [8] = 0x52; r [9] = 0x53; r [10] = 0x41; r [11] = 0x32; - *(guint32*)(r + 12) = elen * 8; - memcpy (r + 20, edata, elen); - mem_reverse (r + 20, elen); - p = r + 20 + elen; - /* the exponent */ - type = der_get_next (key, len, offset, &elen, &edata); - if (type != DER_INTEGER) - return 2; - offset = elen + edata - key; - val = get_der_int (edata, elen); - *(guint32*)(r + 16) = val; - for (i = 0; i < 6; i++) { - type = der_get_next (key, len, offset, &elen, &edata); - if (type != DER_INTEGER) - return 2; - offset = elen + edata - key; - if ((elen & 1) && *edata == 0) { - edata++; - elen--; - } - ints [i] = edata; - lengths [i] = elen; - g_print ("len: %d\n", elen); - } - /* prime1 */ - g_print ("prime1 at %d (%d)\n", p-r, lengths [1]); - memcpy (p, ints [1], lengths [1]); - mem_reverse (p, lengths [1]); - p += lengths [1]; - /* prime2 */ - g_print ("prime2 at %d (%d)\n", p-r, lengths [2]); - memcpy (p, ints [2], lengths [2]); - mem_reverse (p, lengths [2]); - p += lengths [2]; - /* exponent1 */ - g_print ("exp1 at %d (%d)\n", p-r, lengths [3]); - memcpy (p, ints [3], lengths [3]); - mem_reverse (p, lengths [3]); - p += lengths [3]; - /* exponent2 */ - g_print ("exp2 at %d (%d)\n", p-r, lengths [4]); - memcpy (p, ints [4], lengths [4]); - mem_reverse (p, lengths [4]); - p += lengths [4]; - /* coeff */ - g_print ("coeff at %d (%d)\n", p-r, lengths [5]); - memcpy (p, ints [5], lengths [5]); - mem_reverse (p, lengths [5]); - p += lengths [5]; - /* private exponent */ - g_print ("prive at %d (%d)\n", p-r, lengths [0]); - memcpy (p, ints [0], lengths [0]); - mem_reverse (p, lengths [0]); - p += lengths [0]; - *ret = r; - *retlen = p-r; - return 0; - } - return 1; -} - -static int -convert_format (const char *from, const char *outfile) { - guchar *key, *bindata, *keyout; - gsize len; - int binlen, ret, lenout; - FILE *file; - - if (!g_file_get_contents (from, (gchar**) &key, &len, NULL)) { - printf ("Cannot load file: %s\n", from); - return 2; - } - - if (*key == 0 || *key == 0x24) { - g_free (key); - printf ("Cannot convert to pem format yet\n"); - return 2; - } - bindata = pem_decode (key, len, &binlen); - if (!(file = fopen (outfile, "wb"))) { - g_free (key); - printf ("Cannot open output file: %s\n", outfile); - return 2; - } - dump_asn1 (bindata, binlen); - ret = convert_der_key (bindata, binlen, &keyout, &lenout); - if (!ret) { - fwrite (keyout, lenout, 1, file); - g_free (keyout); - } else { - printf ("Cannot convert key\n"); - } - fclose (file); - g_free (key); - return ret; -} - -static int -get_digest (const char *from, const char *outfile) -{ - guchar *ass; - guchar digest [20]; - gsize len; - guint32 snpos, snsize; - FILE *file; - MonoImage *image; - MonoSHA1Context sha1; - - image = mono_image_open (from, NULL); - if (!image) { - printf ("Cannot open image file: %s\n", from); - return 2; - } - snpos = mono_image_strong_name_position (image, &snsize); - if (!snpos) { - /*printf ("%s does not represent a strongly named assembly\n", from); - mono_image_close (image); - return 2;*/ - snsize = 0; - } - - if (!g_file_get_contents (from, (gchar**) &ass, &len, NULL)) { - printf ("Cannot load file: %s\n", from); - mono_image_close (image); - return 2; - } - /* - * FIXME: we may need to set the STRONGNAMESIGNED flag in the cli header - * before taking the sha1 digest of the image. - */ - mono_sha1_init (&sha1); - mono_sha1_update (&sha1, ass, snpos); - mono_sha1_update (&sha1, ass + snpos + snsize, len - snsize - snpos); - mono_sha1_final (&sha1, digest); - - mono_image_close (image); - g_free (ass); - if (!(file = fopen (outfile, "wb"))) { - printf ("Cannot open output file: %s\n", outfile); - return 2; - } - fwrite (digest, 20, 1, file); - fclose (file); - return 0; -} - -static void -help (int err) { - printf ("monosn: Mono Strong Name Utility\nUsage: monosn option [arguments]\n"); - printf ("Available options:\n"); - printf ("\t-C keyin keyout Convert key file format from PEM to cryptoAPI (or the reverse).\n"); - printf ("\t-e assembly file Extract the public key from assembly to file.\n"); - printf ("\t-E assembly file Extract the strong name from assembly to file.\n"); - printf ("\t-r assembly file Extract the sha1 digest from assembly to file.\n"); - printf ("\t-t[p] file Display the public key token from file.\n"); - printf ("\t-T[p] assembly Display the public key token from assembly.\n"); - exit (err); -} - -int -main (int argc, char *argv[]) { - int opt; - - if (argc < 2 || argv [1] [0] != '-') - help (1); - - opt = argv [1] [1]; - switch (opt) { - case 'C': - if (argc != 4) - help (1); - return convert_format (argv [2], argv [3]); - case 'e': - if (argc != 4) - help (1); - return extract_data_to_file (1, argv [2], argv [3]); - case 'E': - if (argc != 4) - help (1); - return extract_data_to_file (0, argv [2], argv [3]); - case 'h': - case '?': - help (0); - return 0; - case 'r': - if (argc != 4) - help (1); - return get_digest (argv [2], argv [3]); - case 't': - if (argc != 3) - help (1); - return show_token (argv [2], 0, argv [1] [2] == 'p'); - case 'T': - if (argc != 3) - help (1); - return show_token (argv [2], 1, argv [1] [2] == 'p'); - default: - help (1); - } - return 0; -} - diff --git a/mono/metadata/object-internals.h b/mono/metadata/object-internals.h index 15be4b4a5c2..43a27343c8a 100644 --- a/mono/metadata/object-internals.h +++ b/mono/metadata/object-internals.h @@ -266,12 +266,6 @@ typedef struct { MonoString *param_name; } MonoArgumentException; -typedef struct { - MonoSystemException base; - MonoString *msg; - MonoString *type_name; -} MonoTypeLoadException; - typedef struct { MonoObject object; MonoObject *async_state; diff --git a/mono/metadata/object-offsets.h b/mono/metadata/object-offsets.h index ec6eb18540d..37d0f3612ce 100644 --- a/mono/metadata/object-offsets.h +++ b/mono/metadata/object-offsets.h @@ -203,6 +203,7 @@ DECL_OFFSET(MonoContext, rsp) DECL_OFFSET(MonoContext, r8) DECL_OFFSET(MonoContext, r9) DECL_OFFSET(MonoContext, r10) +DECL_OFFSET(MonoContext, r11) DECL_OFFSET(MonoContext, r12) DECL_OFFSET(MonoContext, r13) DECL_OFFSET(MonoContext, r14) @@ -217,9 +218,10 @@ DECL_OFFSET(MonoLMF, rsp) DECL_OFFSET(MonoLMF, rbp) DECL_OFFSET(MonoLMF, rip) +DECL_OFFSET(SeqPointInfo, ss_tramp_addr) DECL_OFFSET(SeqPointInfo, bp_addrs) + DECL_OFFSET(DynCallArgs, res) -DECL_OFFSET(SeqPointInfo, ss_trigger_page) DECL_OFFSET(MonoLMFTramp, regs) DECL_OFFSET(MonoLMFTramp, lmf_addr) diff --git a/mono/metadata/sample-bundle b/mono/metadata/sample-bundle deleted file mode 100644 index ef8bbb380f2..00000000000 --- a/mono/metadata/sample-bundle +++ /dev/null @@ -1,5 +0,0 @@ -# sample bundle template for use with the configure option --with-bundle=... - -console: ../tests/console.exe -mscorlib: /usr/local/lib/corlib.dll - diff --git a/mono/metadata/socket-io.c b/mono/metadata/socket-io.c index a3c2ac0c336..a84fcd771a1 100644 --- a/mono/metadata/socket-io.c +++ b/mono/metadata/socket-io.c @@ -633,8 +633,8 @@ static gint32 get_family_hint(void) MonoVTable *vtable; socket_class = mono_class_from_name (get_socket_assembly (), "System.Net.Sockets", "Socket"); - ipv4_field = mono_class_get_field_from_name (socket_class, "ipv4Supported"); - ipv6_field = mono_class_get_field_from_name (socket_class, "ipv6Supported"); + ipv4_field = mono_class_get_field_from_name (socket_class, "ipv4_supported"); + ipv6_field = mono_class_get_field_from_name (socket_class, "ipv6_supported"); vtable = mono_class_vtable (mono_domain_get (), socket_class); g_assert (vtable); mono_runtime_class_init (vtable); @@ -1406,7 +1406,7 @@ gint32 ves_icall_System_Net_Sockets_Socket_Receive_array_internal(SOCKET sock, M return(recv); } -gint32 ves_icall_System_Net_Sockets_Socket_RecvFrom_internal(SOCKET sock, MonoArray *buffer, gint32 offset, gint32 count, gint32 flags, MonoObject **sockaddr, gint32 *error) +gint32 ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal(SOCKET sock, MonoArray *buffer, gint32 offset, gint32 count, gint32 flags, MonoObject **sockaddr, gint32 *error) { int ret; guchar *buf; @@ -1573,7 +1573,7 @@ static SOCKET Socket_to_SOCKET(MonoObject *sockobj) MonoSafeHandle *safe_handle; MonoClassField *field; - field = mono_class_get_field_from_name (sockobj->vtable->klass, "socket"); + field = mono_class_get_field_from_name (sockobj->vtable->klass, "safe_handle"); safe_handle = ((MonoSafeHandle*) (*(gpointer *)(((char *)sockobj)+field->offset))); if (safe_handle == NULL) @@ -2198,7 +2198,7 @@ void ves_icall_System_Net_Sockets_Socket_Shutdown_internal(SOCKET sock, } gint -ves_icall_System_Net_Sockets_Socket_WSAIoctl (SOCKET sock, gint32 code, +ves_icall_System_Net_Sockets_Socket_IOControl_internal (SOCKET sock, gint32 code, MonoArray *input, MonoArray *output, gint32 *error) { @@ -2467,7 +2467,7 @@ extern MonoBoolean ves_icall_System_Net_Dns_GetHostName_internal(MonoString **h_ } gboolean -ves_icall_System_Net_Sockets_Socket_SendFile (SOCKET sock, MonoString *filename, MonoArray *pre_buffer, MonoArray *post_buffer, gint flags) +ves_icall_System_Net_Sockets_Socket_SendFile_internal (SOCKET sock, MonoString *filename, MonoArray *pre_buffer, MonoArray *post_buffer, gint flags) { HANDLE file; gint32 error; diff --git a/mono/metadata/socket-io.h b/mono/metadata/socket-io.h index 3f2dd85a5ad..6eda7248c61 100644 --- a/mono/metadata/socket-io.h +++ b/mono/metadata/socket-io.h @@ -204,7 +204,7 @@ extern void ves_icall_System_Net_Sockets_Socket_Bind_internal(SOCKET sock, MonoO extern void ves_icall_System_Net_Sockets_Socket_Connect_internal(SOCKET sock, MonoObject *sockaddr, gint32 *error); extern gint32 ves_icall_System_Net_Sockets_Socket_Receive_internal(SOCKET sock, MonoArray *buffer, gint32 offset, gint32 count, gint32 flags, gint32 *error); extern gint32 ves_icall_System_Net_Sockets_Socket_Receive_array_internal(SOCKET sock, MonoArray *buffers, gint32 flags, gint32 *error); -extern gint32 ves_icall_System_Net_Sockets_Socket_RecvFrom_internal(SOCKET sock, MonoArray *buffer, gint32 offset, gint32 count, gint32 flags, MonoObject **sockaddr, gint32 *error); +extern gint32 ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal(SOCKET sock, MonoArray *buffer, gint32 offset, gint32 count, gint32 flags, MonoObject **sockaddr, gint32 *error); extern gint32 ves_icall_System_Net_Sockets_Socket_Send_internal(SOCKET sock, MonoArray *buffer, gint32 offset, gint32 count, gint32 flags, gint32 *error); extern gint32 ves_icall_System_Net_Sockets_Socket_Send_array_internal(SOCKET sock, MonoArray *buffers, gint32 flags, gint32 *error); extern gint32 ves_icall_System_Net_Sockets_Socket_SendTo_internal(SOCKET sock, MonoArray *buffer, gint32 offset, gint32 count, gint32 flags, MonoObject *sockaddr, gint32 *error); @@ -213,13 +213,13 @@ extern void ves_icall_System_Net_Sockets_Socket_Shutdown_internal(SOCKET sock, g extern void ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal(SOCKET sock, gint32 level, gint32 name, MonoObject **obj_val, gint32 *error); extern void ves_icall_System_Net_Sockets_Socket_GetSocketOption_arr_internal(SOCKET sock, gint32 level, gint32 name, MonoArray **byte_val, gint32 *error); extern void ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal(SOCKET sock, gint32 level, gint32 name, MonoObject *obj_val, MonoArray *byte_val, gint32 int_val, gint32 *error); -extern int ves_icall_System_Net_Sockets_Socket_WSAIoctl (SOCKET sock, gint32 code, MonoArray *input, MonoArray *output, gint32 *error); +extern int ves_icall_System_Net_Sockets_Socket_IOControl_internal (SOCKET sock, gint32 code, MonoArray *input, MonoArray *output, gint32 *error); extern MonoBoolean ves_icall_System_Net_Dns_GetHostByName_internal(MonoString *host, MonoString **h_name, MonoArray **h_aliases, MonoArray **h_addr_list); extern MonoBoolean ves_icall_System_Net_Dns_GetHostByAddr_internal(MonoString *addr, MonoString **h_name, MonoArray **h_aliases, MonoArray **h_addr_list); extern MonoBoolean ves_icall_System_Net_Dns_GetHostName_internal(MonoString **h_name); extern MonoBoolean ves_icall_System_Net_Sockets_Socket_Poll_internal (SOCKET sock, gint mode, gint timeout, gint32 *error); extern void ves_icall_System_Net_Sockets_Socket_Disconnect_internal(SOCKET sock, MonoBoolean reuse, gint32 *error); -extern gboolean ves_icall_System_Net_Sockets_Socket_SendFile (SOCKET sock, MonoString *filename, MonoArray *pre_buffer, MonoArray *post_buffer, gint flags); +extern gboolean ves_icall_System_Net_Sockets_Socket_SendFile_internal (SOCKET sock, MonoString *filename, MonoArray *pre_buffer, MonoArray *post_buffer, gint flags); void icall_cancel_blocking_socket_operation (MonoThread *thread); extern void mono_network_init(void); diff --git a/mono/metadata/threadpool-ms-io.c b/mono/metadata/threadpool-ms-io.c index 5bc9830d515..772a2fe5c6c 100644 --- a/mono/metadata/threadpool-ms-io.c +++ b/mono/metadata/threadpool-ms-io.c @@ -259,7 +259,7 @@ epoll_init (void) #ifdef EPOOL_CLOEXEC threadpool_io->epoll.fd = epoll_create1 (EPOLL_CLOEXEC); #else - threadpool_io->epoll.fd = epoll_create1 (256); + threadpool_io->epoll.fd = epoll_create (256); fcntl (threadpool_io->epoll.fd, F_SETFD, FD_CLOEXEC); #endif @@ -1062,43 +1062,39 @@ ensure_cleanedup (void) io_status = STATUS_CLEANED_UP; } -gboolean -mono_threadpool_ms_is_io (MonoObject *target, MonoObject *state) +static gboolean +is_socket_async_callback (MonoImage *system_image, MonoClass *class) { - static MonoClass *socket_class = NULL; - static MonoClass *socket_async_class = NULL; - static MonoClass *process_class = NULL; - static MonoClass *async_read_handler_class = NULL; - MonoClass *class; - MonoSocketAsyncResult *sockares; + MonoClass *socket_async_callback_class = NULL; - if (!mono_defaults.system) - mono_defaults.system = mono_image_loaded ("System"); - if (!mono_defaults.system) - return FALSE; - g_assert (mono_defaults.system); + socket_async_callback_class = mono_class_from_name (system_image, "System.Net.Sockets", "SocketAsyncCallback"); + g_assert (socket_async_callback_class); - if (!socket_class) - socket_class = mono_class_from_name (mono_defaults.system, "System.Net.Sockets", "Socket"); - g_assert (socket_class); + return class == socket_async_callback_class; +} + +static gboolean +is_async_read_handler (MonoImage *system_image, MonoClass *class) +{ + MonoClass *process_class = NULL; - if (!process_class) - process_class = mono_class_from_name (mono_defaults.system, "System.Diagnostics", "Process"); + process_class = mono_class_from_name (system_image, "System.Diagnostics", "Process"); g_assert (process_class); - class = target->vtable->klass; + return class->nested_in && class->nested_in == process_class && strcmp (class->name, "AsyncReadHandler") == 0; +} - if (!socket_async_class) { - if (class->nested_in && class->nested_in == socket_class && strcmp (class->name, "SocketAsyncCall") == 0) - socket_async_class = class; - } +gboolean +mono_threadpool_ms_is_io (MonoObject *target, MonoObject *state) +{ + MonoImage *system_image; + MonoSocketAsyncResult *sockares; - if (!async_read_handler_class) { - if (class->nested_in && class->nested_in == process_class && strcmp (class->name, "AsyncReadHandler") == 0) - async_read_handler_class = class; - } + system_image = mono_image_loaded ("System"); + if (!system_image) + return FALSE; - if (class != socket_async_class && class != async_read_handler_class) + if (!is_socket_async_callback (system_image, target->vtable->klass) && !is_async_read_handler (system_image, target->vtable->klass)) return FALSE; sockares = (MonoSocketAsyncResult*) state; @@ -1237,17 +1233,16 @@ mono_threadpool_ms_io_remove_domain_jobs (MonoDomain *domain) void mono_threadpool_io_enqueue_socket_async_result (MonoDomain *domain, MonoSocketAsyncResult *sockares) { - static MonoClass *socket_runtime_work_item_class = NULL; + MonoImage *system_image; + MonoClass *socket_runtime_work_item_class; MonoSocketRuntimeWorkItem *srwi; g_assert (sockares); - if (!mono_defaults.system) - mono_defaults.system = mono_image_loaded ("System"); - g_assert (mono_defaults.system); + system_image = mono_image_loaded ("System"); + g_assert (system_image); - if (!socket_runtime_work_item_class) - socket_runtime_work_item_class = mono_class_from_name (mono_defaults.system, "System.Net.Sockets", "MonoSocketRuntimeWorkItem"); + socket_runtime_work_item_class = mono_class_from_name (system_image, "System.Net.Sockets", "MonoSocketRuntimeWorkItem"); g_assert (socket_runtime_work_item_class); srwi = (MonoSocketRuntimeWorkItem*) mono_object_new (domain, socket_runtime_work_item_class); diff --git a/mono/metadata/threadpool-ms.c b/mono/metadata/threadpool-ms.c index 529f46e5911..7f45061e935 100644 --- a/mono/metadata/threadpool-ms.c +++ b/mono/metadata/threadpool-ms.c @@ -21,16 +21,15 @@ #include #include +#include +#include -#ifdef PLATFORM_ANDROID +#if !defined (HAVE_COMPLEX_H) #include <../../support/libm/complex.h> #else #include #endif -#include -#include - #include #include #include @@ -1521,3 +1520,24 @@ ves_icall_System_Threading_Microsoft_ThreadPool_RequestWorkerThread (void) { return worker_request (mono_domain_get ()); } + +gboolean G_GNUC_UNUSED +ves_icall_System_Threading_Microsoft_ThreadPool_PostQueuedCompletionStatus (MonoNativeOverlapped *native_overlapped) +{ + /* This copy the behavior of the current Mono implementation */ + mono_raise_exception (mono_get_exception_not_implemented (NULL)); + return FALSE; +} + +gboolean G_GNUC_UNUSED +ves_icall_System_Threading_Microsoft_ThreadPool_BindIOCompletionCallbackNative (gpointer file_handle) +{ + /* This copy the behavior of the current Mono implementation */ + return TRUE; +} + +gboolean G_GNUC_UNUSED +ves_icall_System_Threading_Microsoft_ThreadPool_IsThreadPoolHosted (void) +{ + return FALSE; +} diff --git a/mono/metadata/threadpool-ms.h b/mono/metadata/threadpool-ms.h index 3f579faa178..4b91cd85449 100644 --- a/mono/metadata/threadpool-ms.h +++ b/mono/metadata/threadpool-ms.h @@ -19,13 +19,13 @@ enum { typedef struct _MonoRuntimeWorkItem MonoRuntimeWorkItem; typedef struct _MonoNativeOverlapped MonoNativeOverlapped; -static void +static void G_GNUC_UNUSED mono_threadpool_ms_init (void) { /* Initialization is done lazily */ } -static void +static void G_GNUC_UNUSED mono_threadpool_ms_init_tls (void) { /* The WSQ is now implemented in managed */ @@ -47,7 +47,7 @@ mono_threadpool_ms_suspend (void); void mono_threadpool_ms_resume (void); -static gboolean +static gboolean G_GNUC_UNUSED mono_threadpool_ms_is_queue_array (MonoArray *arr) { /* The queue is in managed code */ @@ -78,26 +78,14 @@ ves_icall_System_Threading_Microsoft_ThreadPool_ReportThreadStatus (gboolean is_ gboolean ves_icall_System_Threading_Microsoft_ThreadPool_RequestWorkerThread (void); -static gboolean -ves_icall_System_Threading_Microsoft_ThreadPool_PostQueuedCompletionStatus (MonoNativeOverlapped *native_overlapped) -{ - /* This copy the behavior of the current Mono implementation */ - mono_raise_exception (mono_get_exception_not_implemented (NULL)); - return FALSE; -} +gboolean +ves_icall_System_Threading_Microsoft_ThreadPool_PostQueuedCompletionStatus (MonoNativeOverlapped *native_overlapped); -static gboolean -ves_icall_System_Threading_Microsoft_ThreadPool_BindIOCompletionCallbackNative (gpointer file_handle) -{ - /* This copy the behavior of the current Mono implementation */ - return TRUE; -} +gboolean +ves_icall_System_Threading_Microsoft_ThreadPool_BindIOCompletionCallbackNative (gpointer file_handle); -static gboolean -ves_icall_System_Threading_Microsoft_ThreadPool_IsThreadPoolHosted (void) -{ - return FALSE; -} +gboolean +ves_icall_System_Threading_Microsoft_ThreadPool_IsThreadPoolHosted (void); /* Internals */ @@ -106,4 +94,4 @@ mono_threadpool_ms_enqueue_async_result (MonoDomain *domain, MonoAsyncResult *as void mono_threadpool_ms_enqueue_work_item (MonoDomain *domain, MonoObject *work_item); -#endif // _MONO_THREADPOOL_MICROSOFT_H_ \ No newline at end of file +#endif // _MONO_THREADPOOL_MICROSOFT_H_ diff --git a/mono/metadata/threadpool.c b/mono/metadata/threadpool.c index c32a0700a72..3de93ca49e2 100644 --- a/mono/metadata/threadpool.c +++ b/mono/metadata/threadpool.c @@ -213,16 +213,6 @@ is_corlib_type (MonoDomain *domain, MonoClass *klass) return klass->image == mono_defaults.corlib; } -/* - * Note that we call it is_socket_type() where 'socket' refers to the image - * that contains the System.Net.Sockets.Socket type. -*/ -static gboolean -is_socket_type (MonoDomain *domain, MonoClass *klass) -{ - return is_system_type (domain, klass); -} - #define check_type_cached(domain, ASSEMBLY, _class, _namespace, _name, loc) do { \ if (*loc) \ return *loc == _class; \ @@ -235,8 +225,6 @@ is_socket_type (MonoDomain *domain, MonoClass *klass) #define check_corlib_type_cached(domain, _class, _namespace, _name, loc) check_type_cached (domain, corlib, _class, _namespace, _name, loc) -#define check_socket_type_cached(domain, _class, _namespace, _name, loc) check_type_cached (domain, socket, _class, _namespace, _name, loc) - #define check_system_type_cached(domain, _class, _namespace, _name, loc) check_type_cached (domain, system, _class, _namespace, _name, loc) static gboolean @@ -245,26 +233,18 @@ is_corlib_asyncresult (MonoDomain *domain, MonoClass *klass) check_corlib_type_cached (domain, klass, "System.Runtime.Remoting.Messaging", "AsyncResult", &domain->corlib_asyncresult_class); } -static gboolean -is_socket (MonoDomain *domain, MonoClass *klass) -{ - check_socket_type_cached (domain, klass, "System.Net.Sockets", "Socket", &domain->socket_class); -} - static gboolean is_socketasyncresult (MonoDomain *domain, MonoClass *klass) { - return (klass->nested_in && - is_socket (domain, klass->nested_in) && - !strcmp (klass->name, "SocketAsyncResult")); + static MonoClass *socket_async_result_klass = NULL; + check_system_type_cached (domain, klass, "System.Net.Sockets", "SocketAsyncResult", &socket_async_result_klass); } static gboolean is_socketasynccall (MonoDomain *domain, MonoClass *klass) { - return (klass->nested_in && - is_socket (domain, klass->nested_in) && - !strcmp (klass->name, "SocketAsyncCall")); + static MonoClass *socket_async_callback_klass = NULL; + check_system_type_cached (domain, klass, "System.Net.Sockets", "SocketAsyncCallback", &socket_async_callback_klass); } static gboolean diff --git a/mono/metadata/threads.c b/mono/metadata/threads.c index 6af48dbd318..a4ff67a62ae 100644 --- a/mono/metadata/threads.c +++ b/mono/metadata/threads.c @@ -434,7 +434,7 @@ static void thread_cleanup (MonoInternalThread *thread) } /* This needs to be called even if handle_remove () fails */ if (mono_thread_cleanup_fn) - mono_thread_cleanup_fn (thread->tid); + mono_thread_cleanup_fn ((MonoNativeThreadId)thread->tid); return; } mono_release_type_locks (thread); @@ -461,7 +461,7 @@ static void thread_cleanup (MonoInternalThread *thread) thread->appdomain_refs = NULL; if (mono_thread_cleanup_fn) - mono_thread_cleanup_fn (thread->tid); + mono_thread_cleanup_fn ((MonoNativeThreadId)thread->tid); if (mono_gc_is_moving ()) { MONO_GC_UNREGISTER_ROOT (thread->thread_pinning_ref); diff --git a/mono/mini/Makefile.am.in b/mono/mini/Makefile.am.in index 794512a093d..83a73d25574 100755 --- a/mono/mini/Makefile.am.in +++ b/mono/mini/Makefile.am.in @@ -658,7 +658,7 @@ rcheck: mono $(regtests) if NACL_CODEGEN for i in $(regtests); do echo "running test $$i"; $(RUNTIME) $$i --exclude 'NaClDisable' || exit 1; done else - -($(RUNTIME) --regression $(regtests); echo $$? > regressionexitcode.out) | ./emitnunit.pl + -($(RUNTIME) --regression $(regtests); echo $$? > regressionexitcode.out) | $(srcdir)/emitnunit.pl exit $$(cat regressionexitcode.out) endif @@ -667,9 +667,9 @@ rcheck2: mono $(regtests) check-seq-points: mono $(regtests) rm -f TestResults_op_il_seq_point.xml - for i in $(regtests); do ./test_op_il_seq_point.sh $$i || (./test_op_il_seq_point_headerfooter.sh; exit 1) || exit 1; done - for i in $(regtests); do ./test_op_il_seq_point.sh $$i --aot || (./test_op_il_seq_point_headerfooter.sh; exit 1) || exit 1; done - ./test_op_il_seq_point_headerfooter.sh + for i in $(regtests); do $(srcdir)/test_op_il_seq_point.sh $$i || ($(srcdir)/test_op_il_seq_point_headerfooter.sh; exit 1) || exit 1; done + for i in $(regtests); do $(srcdir)/test_op_il_seq_point.sh $$i --aot || ($(srcdir)/test_op_il_seq_point_headerfooter.sh; exit 1) || exit 1; done + $(srcdir)/test_op_il_seq_point_headerfooter.sh gctest: mono gc-test.exe MONO_DEBUG_OPTIONS=clear-nursery-at-gc $(RUNTIME) --regression gc-test.exe @@ -740,6 +740,7 @@ BUILT_SOURCES = version.h $(arch_built) CLEANFILES= $(BUILT_SOURCES) *.exe *.dll EXTRA_DIST = TestDriver.cs \ genmdesc.pl \ + emitnunit.pl \ $(test_sources) \ $(x86_sources) cpu-x86.md \ $(amd64_sources) cpu-amd64.md \ diff --git a/mono/mini/README b/mono/mini/README deleted file mode 100644 index 7a64e0aae0e..00000000000 --- a/mono/mini/README +++ /dev/null @@ -1 +0,0 @@ -Mini is the new JIT compiler for Mono. diff --git a/mono/mini/TODO b/mono/mini/TODO deleted file mode 100644 index d214318c813..00000000000 --- a/mono/mini/TODO +++ /dev/null @@ -1,77 +0,0 @@ -* use a pool of MBState structures to speedup monoburg instead of using a - mempool. -* the decode tables in the burg-generated could use short instead of int - (this should save about 1 KB) -* track the use of ESP, so that we can avoid the x86_lea in the epilog - - -Other Ideas: - -* the ORP people avoids optimizations inside catch handlers - just to save - memory (for example allocation of strings - instead they allocate strings when - the code is executed (like the --shared option)). But there are only a few - functions using catch handlers, so I consider this a minor issue. - -* some performance critical functions should be inlined. These include: - - mono_mempool_alloc and mono_mempool_alloc0 - - EnterCriticalSection and LeaveCriticalSection - - TlsSetValue - - mono_metadata_row_col - - mono_g_hash_table_lookup - - mono_domain_get - -* if a function which involves locking is called from another function which - acquires the same lock, it might be useful to create a separate _inner - version of the function which does not re-acquire the lock. This is a perf - win only if the function is called a lot of times, like mono_get_method. - -* we can avoid calls to class init trampolines if the are multiple calls to the - same trampoline in the same basic block. See: - - http://bugzilla.ximian.com/show_bug.cgi?id=51096 - -Usability ---------- - -* Remove the various optimization list of flags description, have an - extra --help-optimizations flag. - -* Remove the various graph options, have a separate --help-graph for - that list. - -Cleanup -------- - -Clean up the usage of the various CEE_/OP_ constants inside the JIT. - -Currently, there are the 5 variants for each opcode: -- CEE_... -- OP_... -- OP_I... -- OP_L... -- OP_P... - -Some opcodes have some variants, while others don't. - -They are used as follows: -- In method_to_ir, CEE_ means the IL opcode ie. without operand size information -- In the rules inside the .brg files CEE_ means the same as OP_I..., since - long opcodes were transformed into OP_L.... by method_to_ir. -- In the IR emitted by the rules inside the .brg files, CEE_ means the same as - OP_P..., since it is usually generated for pointer manipulation. -- In mono_arch_emit_opcode, CEE_ means OP_P.... - -As can be seen above, this is a mess. A proposed solution would be the -following: - -- In method_to_ir, transform CEE_ opcodes into the appropriate OP_I/OP_L - opcodes. -- Get rid of the OP_P opcodes, and use the OP_... opcodes instead, since the - two usually means the same. -- In the IR emitted by the burg rules, use the OP_... opcodes instead of the - CEE and OP_P opcodes. - -Using these rules would ensure that the same opcode means the same thing in -all parts of the JIT. - - diff --git a/mono/mini/aot-compiler.c b/mono/mini/aot-compiler.c index fe3033391d7..8139f97998c 100644 --- a/mono/mini/aot-compiler.c +++ b/mono/mini/aot-compiler.c @@ -137,7 +137,7 @@ typedef struct MonoAotOptions { typedef struct MonoAotStats { int ccount, mcount, lmfcount, abscount, gcount, ocount, genericcount; - int code_size, info_size, ex_info_size, unwind_info_size, got_size, class_info_size, got_info_size, plt_size; + gint64 code_size, info_size, ex_info_size, unwind_info_size, got_size, class_info_size, got_info_size, plt_size; int methods_without_got_slots, direct_calls, all_calls, llvm_count; int got_slots, offsets_size; int got_slot_types [MONO_PATCH_INFO_NONE]; @@ -6137,6 +6137,13 @@ emit_trampolines (MonoAotCompile *acfg) mono_arch_get_throw_corlib_exception (&info, TRUE); emit_trampoline (acfg, acfg->got_offset, info); +#ifdef MONO_ARCH_HAVE_SDB_TRAMPOLINES + mono_arch_create_sdb_trampoline (TRUE, &info, TRUE); + emit_trampoline (acfg, acfg->got_offset, info); + mono_arch_create_sdb_trampoline (FALSE, &info, TRUE); + emit_trampoline (acfg, acfg->got_offset, info); +#endif + #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED mono_arch_get_gsharedvt_trampoline (&info, TRUE); if (info) { @@ -7883,7 +7890,7 @@ emit_exception_info (MonoAotCompile *acfg) // By design aot-runtime decode_exception_debug_info is not able to load sequence point debug data from a file. // As it is not possible to load debug data from a file its is also not possible to store it in a file. gboolean method_seq_points_to_file = acfg->aot_opts.gen_seq_points_file && - cfg->gen_seq_points && !cfg->gen_seq_points_debug_data; + cfg->gen_seq_points && !cfg->gen_sdb_seq_points; gboolean method_seq_points_to_binary = cfg->gen_seq_points && !method_seq_points_to_file; emit_exception_debug_info (acfg, cfg, method_seq_points_to_binary); @@ -9168,7 +9175,8 @@ int mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options) { MonoImage *image = ass->image; - int i, res, all_sizes; + int i, res; + gint64 all_sizes; MonoAotCompile *acfg; char *outfile_name, *tmp_outfile_name, *p; char llvm_stats_msg [256]; @@ -9228,7 +9236,7 @@ mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options) MonoDebugOptions *opt = mini_get_debug_options (); opt->mdb_optimizations = TRUE; - opt->gen_seq_points_debug_data = TRUE; + opt->gen_sdb_seq_points = TRUE; if (!mono_debug_enabled ()) { aot_printerrf (acfg, "The soft-debug AOT option requires the --debug option.\n"); @@ -9555,14 +9563,14 @@ mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options) all_sizes = acfg->stats.code_size + acfg->stats.info_size + acfg->stats.ex_info_size + acfg->stats.unwind_info_size + acfg->stats.class_info_size + acfg->stats.got_info_size + acfg->stats.offsets_size + acfg->stats.plt_size; aot_printf (acfg, "Code: %d(%d%%) Info: %d(%d%%) Ex Info: %d(%d%%) Unwind Info: %d(%d%%) Class Info: %d(%d%%) PLT: %d(%d%%) GOT Info: %d(%d%%) Offsets: %d(%d%%) GOT: %d\n", - acfg->stats.code_size, acfg->stats.code_size * 100 / all_sizes, - acfg->stats.info_size, acfg->stats.info_size * 100 / all_sizes, - acfg->stats.ex_info_size, acfg->stats.ex_info_size * 100 / all_sizes, - acfg->stats.unwind_info_size, acfg->stats.unwind_info_size * 100 / all_sizes, - acfg->stats.class_info_size, acfg->stats.class_info_size * 100 / all_sizes, - acfg->stats.plt_size ? acfg->stats.plt_size : acfg->plt_offset, acfg->stats.plt_size ? acfg->stats.plt_size * 100 / all_sizes : 0, - acfg->stats.got_info_size, acfg->stats.got_info_size * 100 / all_sizes, - acfg->stats.offsets_size, acfg->stats.offsets_size * 100 / all_sizes, + (int)acfg->stats.code_size, (int)(acfg->stats.code_size * 100 / all_sizes), + (int)acfg->stats.info_size, (int)(acfg->stats.info_size * 100 / all_sizes), + (int)acfg->stats.ex_info_size, (int)(acfg->stats.ex_info_size * 100 / all_sizes), + (int)acfg->stats.unwind_info_size, (int)(acfg->stats.unwind_info_size * 100 / all_sizes), + (int)acfg->stats.class_info_size, (int)(acfg->stats.class_info_size * 100 / all_sizes), + acfg->stats.plt_size ? (int)acfg->stats.plt_size : (int)acfg->plt_offset, acfg->stats.plt_size ? (int)(acfg->stats.plt_size * 100 / all_sizes) : 0, + (int)acfg->stats.got_info_size, (int)(acfg->stats.got_info_size * 100 / all_sizes), + (int)acfg->stats.offsets_size, (int)(acfg->stats.offsets_size * 100 / all_sizes), (int)(acfg->got_offset * sizeof (gpointer))); aot_printf (acfg, "Compiled: %d/%d (%d%%)%s, No GOT slots: %d (%d%%), Direct calls: %d (%d%%)\n", acfg->stats.ccount, acfg->stats.mcount, acfg->stats.mcount ? (acfg->stats.ccount * 100) / acfg->stats.mcount : 100, diff --git a/mono/mini/aot-runtime.c b/mono/mini/aot-runtime.c index b6f694b7ea2..056985fc26f 100644 --- a/mono/mini/aot-runtime.c +++ b/mono/mini/aot-runtime.c @@ -60,6 +60,7 @@ #include "mini.h" #include "seq-points.h" #include "version.h" +#include "debugger-agent.h" #ifndef DISABLE_AOT @@ -859,7 +860,10 @@ decode_method_ref_with_target (MonoAotModule *module, MethodRef *ref, MonoMethod int atype = decode_value (p, &p); ref->method = mono_gc_get_managed_allocator_by_type (atype); - g_assert (ref->method); + if (!ref->method) { + fprintf (stderr, "Error: No managed allocator, but we need one for AOT.\nAre you using non-standard GC options?\n"); + exit (1); + } break; } case MONO_WRAPPER_WRITE_BARRIER: @@ -4508,6 +4512,10 @@ load_function_full (MonoAotModule *amodule, const char *name, MonoTrampInfo **ou target = mono_create_ftnptr_malloc (target); } else if (!strcmp (ji->data.name, "mono_thread_get_and_clear_pending_exception")) { target = mono_thread_get_and_clear_pending_exception; + } else if (!strcmp (ji->data.name, "debugger_agent_single_step_from_context")) { + target = debugger_agent_single_step_from_context; + } else if (!strcmp (ji->data.name, "debugger_agent_breakpoint_from_context")) { + target = debugger_agent_breakpoint_from_context; } else if (strstr (ji->data.name, "generic_trampoline_")) { target = mono_aot_get_trampoline (ji->data.name); } else if (aot_jit_icall_hash && g_hash_table_lookup (aot_jit_icall_hash, ji->data.name)) { diff --git a/mono/mini/cpu-amd64.md b/mono/mini/cpu-amd64.md index b24b0e5f500..00b01e9a47c 100755 --- a/mono/mini/cpu-amd64.md +++ b/mono/mini/cpu-amd64.md @@ -65,7 +65,7 @@ break: len:2 tailcall: len:120 clob:c br: len:6 label: len:0 -seq_point: len:31 clob:c +seq_point: len:46 clob:c il_seq_point: len:0 long_add: dest:i src1:i src2:i len:3 clob:1 nacl:6 diff --git a/mono/mini/cpu-s390x.md b/mono/mini/cpu-s390x.md index bc1a513d40b..091c6b1103d 100644 --- a/mono/mini/cpu-s390x.md +++ b/mono/mini/cpu-s390x.md @@ -132,9 +132,9 @@ float_rem_un: dest:f src1:f src2:f len:16 float_sub: dest:f src1:f src2:f len:6 fmove: dest:f src1:f len:4 move_f_to_i4: dest:i src1:f len:4 -move_i4_to_f: dest:f src1:i len:4 +move_i4_to_f: dest:f src1:i len:8 move_f_to_i8: dest:i src1:f len:4 -move_i8_to_f: dest:f src1:i len:4 +move_i8_to_f: dest:f src1:i len:8 i8const: dest:i len:20 icompare: src1:i src2:i len:4 icompare_imm: src1:i len:18 diff --git a/mono/mini/debugger-agent.c b/mono/mini/debugger-agent.c index e7776b004d2..6e07d05e5da 100644 --- a/mono/mini/debugger-agent.c +++ b/mono/mini/debugger-agent.c @@ -1032,7 +1032,7 @@ mono_debugger_agent_init (void) breakpoints_init (); suspend_init (); - mini_get_debug_options ()->gen_seq_points_debug_data = TRUE; + mini_get_debug_options ()->gen_sdb_seq_points = TRUE; /* * This is needed because currently we don't handle liveness info. */ @@ -2309,7 +2309,7 @@ decode_ptr_id (guint8 *buf, guint8 **endbuf, guint8 *limit, IdType type, MonoDom dbg_unlock (); if (res->domain == NULL) { - DEBUG_PRINTF (0, "ERR_UNLOADED, id=%d, type=%d.\n", id, type); + DEBUG_PRINTF (1, "ERR_UNLOADED, id=%d, type=%d.\n", id, type); *err = ERR_UNLOADED; return NULL; } @@ -4727,7 +4727,7 @@ breakpoint_matches_assembly (MonoBreakpoint *bp, MonoAssembly *assembly) } static void -process_breakpoint_inner (DebuggerTlsData *tls) +process_breakpoint_inner (DebuggerTlsData *tls, gboolean from_signal) { MonoJitInfo *ji; guint8 *ip; @@ -4757,7 +4757,8 @@ process_breakpoint_inner (DebuggerTlsData *tls) /* * Skip the instruction causing the breakpoint signal. */ - mono_arch_skip_breakpoint (ctx, ji); + if (from_signal) + mono_arch_skip_breakpoint (ctx, ji); if (method->wrapper_type || tls->disable_breakpoints) return; @@ -4850,7 +4851,7 @@ process_breakpoint_inner (DebuggerTlsData *tls) /* Process a breakpoint/single step event after resuming from a signal handler */ static void -process_signal_event (void (*func) (DebuggerTlsData*)) +process_signal_event (void (*func) (DebuggerTlsData*, gboolean)) { DebuggerTlsData *tls; MonoThreadUnwindState orig_restore_state; @@ -4861,7 +4862,7 @@ process_signal_event (void (*func) (DebuggerTlsData*)) memcpy (&orig_restore_state, &tls->restore_state, sizeof (MonoThreadUnwindState)); mono_thread_state_init_from_monoctx (&tls->restore_state, &tls->handler_ctx); - func (tls); + func (tls, TRUE); /* This is called when resuming from a signal handler, so it shouldn't return */ memcpy (&ctx, &tls->restore_state.ctx, sizeof (MonoContext)); @@ -4973,7 +4974,7 @@ ss_depth_to_string (StepDepth depth) } static void -process_single_step_inner (DebuggerTlsData *tls) +process_single_step_inner (DebuggerTlsData *tls, gboolean from_signal) { MonoJitInfo *ji; guint8 *ip; @@ -4989,7 +4990,8 @@ process_single_step_inner (DebuggerTlsData *tls) ip = MONO_CONTEXT_GET_IP (ctx); /* Skip the instruction causing the single step */ - mono_arch_skip_single_step (ctx); + if (from_signal) + mono_arch_skip_single_step (ctx); if (suspend_count > 0) { process_suspend (tls, ctx); @@ -5112,7 +5114,7 @@ debugger_agent_single_step_from_context (MonoContext *ctx) memcpy (&orig_restore_state, &tls->restore_state, sizeof (MonoThreadUnwindState)); mono_thread_state_init_from_monoctx (&tls->restore_state, ctx); - process_single_step_inner (tls); + process_single_step_inner (tls, FALSE); memcpy (ctx, &tls->restore_state.ctx, sizeof (MonoContext)); memcpy (&tls->restore_state, &orig_restore_state, sizeof (MonoThreadUnwindState)); @@ -5129,7 +5131,7 @@ debugger_agent_breakpoint_from_context (MonoContext *ctx) memcpy (&orig_restore_state, &tls->restore_state, sizeof (MonoContext)); mono_thread_state_init_from_monoctx (&tls->restore_state, ctx); - process_breakpoint_inner (tls); + process_breakpoint_inner (tls, FALSE); memcpy (ctx, &tls->restore_state.ctx, sizeof (MonoContext)); memcpy (&tls->restore_state, &orig_restore_state, sizeof (MonoThreadUnwindState)); @@ -5322,6 +5324,18 @@ ss_start (SingleStepReq *ss_req, MonoMethod *method, SeqPoint* sp, MonoSeqPointI if (ss_req->nframes == 0) ss_req->nframes = nframes; + + if ((ss_req->depth == STEP_DEPTH_OVER) && (!sp && !parent_sp)) { + DEBUG_PRINTF (1, "[dbg] No parent frame for step over, transition to step into.\n"); + /* + * This is needed since if we leave managed code, and later return to it, step over + * is not going to stop. + * This approach is a bit ugly, since we change the step depth, but it only affects + * clients who reuse the same step request, and only in this special case. + */ + ss_req->depth = STEP_DEPTH_INTO; + } + if (ss_req->depth == STEP_DEPTH_OVER) { /* Need to stop in catch clauses as well */ for (i = 0; i < nframes; ++i) { @@ -9845,4 +9859,16 @@ mono_debugger_agent_unhandled_exception (MonoException *exc) g_assert_not_reached (); } +void +debugger_agent_single_step_from_context (MonoContext *ctx) +{ + g_assert_not_reached (); +} + +void +debugger_agent_breakpoint_from_context (MonoContext *ctx) +{ + g_assert_not_reached (); +} + #endif diff --git a/mono/mini/exceptions-mips.c b/mono/mini/exceptions-mips.c index 8ab97bf5a30..f0158e5b7a9 100644 --- a/mono/mini/exceptions-mips.c +++ b/mono/mini/exceptions-mips.c @@ -77,6 +77,7 @@ mono_arch_get_restore_context (MonoTrampInfo **info, gboolean aot) g_assert ((code - start) < sizeof(start)); mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); return start; } @@ -168,6 +169,7 @@ mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot) g_assert ((code - start) < sizeof(start)); mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); return start; } @@ -281,6 +283,7 @@ mono_arch_get_throw_exception_generic (guint8 *start, int size, int corlib, gboo g_assert ((code - start) < size); mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); return start; } @@ -348,6 +351,7 @@ mono_arch_get_throw_exception_by_name (void) start = code = mono_global_codeman_reserve (size); mips_break (code, 0xfd); mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); return start; } diff --git a/mono/mini/exceptions-ppc.c b/mono/mini/exceptions-ppc.c index aa0b3f778cc..4b8d1642c16 100644 --- a/mono/mini/exceptions-ppc.c +++ b/mono/mini/exceptions-ppc.c @@ -218,6 +218,7 @@ mono_arch_get_restore_context (MonoTrampInfo **info, gboolean aot) g_assert ((code - start) <= size); mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); if (info) *info = mono_tramp_info_create ("restore_context", start, code - start, ji, unwind_ops); @@ -306,6 +307,7 @@ mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot) g_assert ((code - start) < size); mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); if (info) *info = mono_tramp_info_create ("call_filter", start, code - start, ji, unwind_ops); @@ -434,6 +436,7 @@ mono_arch_get_throw_exception_generic (int size, MonoTrampInfo **info, int corli ppc_break (code); g_assert ((code - start) <= size); mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); if (info) *info = mono_tramp_info_create (corlib ? "throw_corlib_exception" : (rethrow ? "rethrow_exception" : "throw_exception"), start, code - start, ji, unwind_ops); diff --git a/mono/mini/exceptions-s390x.c b/mono/mini/exceptions-s390x.c index 9c2cfc932d5..78fd645c785 100644 --- a/mono/mini/exceptions-s390x.c +++ b/mono/mini/exceptions-s390x.c @@ -210,6 +210,9 @@ mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot) g_assert ((code - start) < SZ_THROW); + mono_arch_flush_icache(start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); + if (info) *info = mono_tramp_info_create ("call_filter", start, code - start, ji, @@ -357,6 +360,9 @@ mono_arch_get_throw_exception_generic (int size, MonoTrampInfo **info, s390_break (code); g_assert ((code - start) < size); + mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); + if (info) *info = mono_tramp_info_create (corlib ? "throw_corlib_exception" : (rethrow ? "rethrow_exception" diff --git a/mono/mini/exceptions-x86.c b/mono/mini/exceptions-x86.c index bfd42414e0b..03e7aec44a0 100644 --- a/mono/mini/exceptions-x86.c +++ b/mono/mini/exceptions-x86.c @@ -109,6 +109,9 @@ mono_win32_get_handle_stackoverflow (void) /* return */ x86_ret (code); + mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); + return start; } @@ -354,6 +357,9 @@ mono_arch_get_restore_context (MonoTrampInfo **info, gboolean aot) g_slist_free (unwind_ops); } + mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); + return start; } @@ -431,6 +437,9 @@ mono_arch_get_call_filter (MonoTrampInfo **info, gboolean aot) g_slist_free (unwind_ops); } + mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); + g_assert ((code - start) < kMaxCodeSize); return start; } @@ -653,6 +662,9 @@ get_throw_trampoline (const char *name, gboolean rethrow, gboolean llvm, gboolea g_slist_free (unwind_ops); } + mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); + return start; } @@ -943,6 +955,9 @@ mono_x86_get_signal_exception_trampoline (MonoTrampInfo **info, gboolean aot) g_slist_free (unwind_ops); } + mono_arch_flush_icache (start, code - start); + mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING, NULL); + return start; } diff --git a/mono/mini/ir-emit.h b/mono/mini/ir-emit.h index 67d073448d3..fe05ecca2d3 100644 --- a/mono/mini/ir-emit.h +++ b/mono/mini/ir-emit.h @@ -408,7 +408,7 @@ handle_gsharedvt_ldaddr (MonoCompile *cfg) } while (0) #define NEW_SEQ_POINT(cfg,dest,il_offset,intr_loc) do { \ - MONO_INST_NEW ((cfg), (dest), cfg->gen_seq_points_debug_data ? OP_SEQ_POINT : OP_IL_SEQ_POINT); \ + MONO_INST_NEW ((cfg), (dest), cfg->gen_sdb_seq_points ? OP_SEQ_POINT : OP_IL_SEQ_POINT); \ (dest)->inst_imm = (il_offset); \ (dest)->flags = intr_loc ? MONO_INST_SINGLE_STEP_LOC : 0; \ } while (0) diff --git a/mono/mini/liveness.c b/mono/mini/liveness.c index 85b6ba04001..a3bd43d3a41 100644 --- a/mono/mini/liveness.c +++ b/mono/mini/liveness.c @@ -812,7 +812,7 @@ update_liveness2 (MonoCompile *cfg, MonoInst *ins, gboolean set_volatile, int in } else { /* Try dead code elimination */ - if ((var != cfg->ret) && !(var->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT)) && ((ins->opcode == OP_ICONST) || (ins->opcode == OP_I8CONST) || (ins->opcode == OP_R8CONST)) && !(var->flags & MONO_INST_VOLATILE)) { + if (!cfg->disable_deadce_vars && (var != cfg->ret) && !(var->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT)) && ((ins->opcode == OP_ICONST) || (ins->opcode == OP_I8CONST) || (ins->opcode == OP_R8CONST)) && !(var->flags & MONO_INST_VOLATILE)) { LIVENESS_DEBUG (printf ("\tdead def of R%d, eliminated\n", ins->dreg)); NULLIFY_INS (ins); return; diff --git a/mono/mini/method-to-ir.c b/mono/mini/method-to-ir.c index 89c24195770..e87a9deeca5 100755 --- a/mono/mini/method-to-ir.c +++ b/mono/mini/method-to-ir.c @@ -2998,7 +2998,7 @@ direct_icalls_enabled (MonoCompile *cfg) if (cfg->compile_llvm) return FALSE; #endif - if (cfg->gen_seq_points_debug_data || cfg->disable_direct_icalls) + if (cfg->gen_sdb_seq_points || cfg->disable_direct_icalls) return FALSE; return TRUE; } @@ -7798,16 +7798,13 @@ mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_b cfg->stat_cil_code_size += header->code_size; seq_points = cfg->gen_seq_points && cfg->method == method; -#ifdef PLATFORM_ANDROID - seq_points &= cfg->method->wrapper_type == MONO_WRAPPER_NONE; -#endif if (method->wrapper_type == MONO_WRAPPER_NATIVE_TO_MANAGED) { /* We could hit a seq point before attaching to the JIT (#8338) */ seq_points = FALSE; } - if (cfg->gen_seq_points_debug_data && cfg->method == method) { + if (cfg->gen_sdb_seq_points && cfg->method == method) { minfo = mono_debug_lookup_method (method); if (minfo) { int i, n_il_offsets; @@ -13074,7 +13071,7 @@ mono_method_to_ir (MonoCompile *cfg, MonoMethod *method, MonoBasicBlock *start_b } /* Add a sequence point for method entry/exit events */ - if (seq_points && cfg->gen_seq_points_debug_data) { + if (seq_points && cfg->gen_sdb_seq_points) { NEW_SEQ_POINT (cfg, ins, METHOD_ENTRY_IL_OFFSET, FALSE); MONO_ADD_INS (init_localsbb, ins); NEW_SEQ_POINT (cfg, ins, METHOD_EXIT_IL_OFFSET, FALSE); diff --git a/mono/mini/mini-amd64.c b/mono/mini/mini-amd64.c index 3bf75530531..f43fe603302 100755 --- a/mono/mini/mini-amd64.c +++ b/mono/mini/mini-amd64.c @@ -52,7 +52,7 @@ static gboolean optimize_for_xen = TRUE; #define IS_REX(inst) (((inst) >= 0x40) && ((inst) <= 0x4f)) -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 /* Under windows, the calling convention is never stdcall */ #define CALLCONV_IS_STDCALL(call_conv) (FALSE) #else @@ -85,6 +85,9 @@ static int breakpoint_fault_size; /* The size of the single step instruction causing the actual fault */ static int single_step_fault_size; +/* The single step trampoline */ +static gpointer ss_trampoline; + /* Offset between fp and the first argument in the callee */ #define ARGS_OFFSET 16 #define GP_SCRATCH_REG AMD64_R11 @@ -523,7 +526,7 @@ typedef struct { #define DEBUG(a) if (cfg->verbose_level > 1) a -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 static AMD64_Reg_No param_regs [] = { AMD64_RCX, AMD64_RDX, AMD64_R8, AMD64_R9 }; static AMD64_Reg_No return_regs [] = { AMD64_RAX, AMD64_RDX }; @@ -551,7 +554,7 @@ add_general (guint32 *gr, guint32 *stack_size, ArgInfo *ainfo) } } -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 #define FLOAT_PARAM_REGS 4 #else #define FLOAT_PARAM_REGS 8 @@ -615,7 +618,7 @@ merge_argument_class_from_type (MonoGenericSharingContext *gsctx, MonoType *type break; case MONO_TYPE_R4: case MONO_TYPE_R8: -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 class2 = ARG_CLASS_INTEGER; #else class2 = ARG_CLASS_SSE; @@ -748,7 +751,7 @@ add_valuetype (MonoGenericSharingContext *gsctx, MonoMethodSignature *sig, ArgIn klass = mono_class_from_mono_type (type); size = mini_type_stack_size_full (gsctx, &klass->byval_arg, NULL, sig->pinvoke); -#ifndef HOST_WIN32 +#ifndef TARGET_WIN32 if (!sig->pinvoke && ((is_return && (size == 8)) || (!is_return && (size <= 16)))) { /* We pass and return vtypes of size 8 in a register */ } else if (!sig->pinvoke || (size == 0) || (size > 16)) { @@ -830,7 +833,7 @@ add_valuetype (MonoGenericSharingContext *gsctx, MonoMethodSignature *sig, ArgIn g_assert (info); g_assert (fields); -#ifndef HOST_WIN32 +#ifndef TARGET_WIN32 if (info->native_size > 16) { ainfo->offset = *stack_size; *stack_size += ALIGN_TO (info->native_size, 8); @@ -1003,7 +1006,7 @@ get_call_info (MonoGenericSharingContext *gsctx, MonoMemPool *mp, MonoMethodSign gr = 0; fr = 0; -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 /* Reserve space where the callee can save the argument registers */ stack_size = 4 * sizeof (mgreg_t); #endif @@ -1112,7 +1115,7 @@ get_call_info (MonoGenericSharingContext *gsctx, MonoMemPool *mp, MonoMethodSign ArgInfo *ainfo = &cinfo->args [sig->hasthis + i]; MonoType *ptype; -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 /* The float param registers and other param registers must be the same index on Windows x64.*/ if (gr > fr) fr = gr; @@ -1537,7 +1540,7 @@ mono_arch_get_global_int_regs (MonoCompile *cfg) #ifndef __native_client_codegen__ regs = g_list_prepend (regs, (gpointer)AMD64_R15); #endif -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 regs = g_list_prepend (regs, (gpointer)AMD64_RDI); regs = g_list_prepend (regs, (gpointer)AMD64_RSI); #endif @@ -2005,13 +2008,17 @@ mono_arch_create_vars (MonoCompile *cfg) } } - if (cfg->gen_seq_points_debug_data) { + if (cfg->gen_sdb_seq_points) { MonoInst *ins; if (cfg->compile_aot) { MonoInst *ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL); ins->flags |= MONO_INST_VOLATILE; cfg->arch.seq_point_info_var = ins; + + ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL); + ins->flags |= MONO_INST_VOLATILE; + cfg->arch.ss_tramp_var = ins; } ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL); @@ -2024,7 +2031,7 @@ mono_arch_create_vars (MonoCompile *cfg) if (cfg->method->save_lmf) { cfg->lmf_ir = TRUE; -#if !defined(HOST_WIN32) +#if !defined(TARGET_WIN32) if (mono_get_lmf_tls_offset () != -1 && !optimize_for_xen) cfg->lmf_ir_mono_lmf = TRUE; #endif @@ -2995,12 +3002,12 @@ emit_call_body (MonoCompile *cfg, guint8 *code, guint32 patch_type, gconstpointe static inline guint8* emit_call (MonoCompile *cfg, guint8 *code, guint32 patch_type, gconstpointer data, gboolean win64_adjust_stack) { -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 if (win64_adjust_stack) amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, 32); #endif code = emit_call_body (cfg, code, patch_type, data); -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 if (win64_adjust_stack) amd64_alu_reg_imm (code, X86_ADD, AMD64_RSP, 32); #endif @@ -3340,7 +3347,7 @@ mono_emit_stack_alloc (MonoCompile *cfg, guchar *code, MonoInst* tree) int sreg = tree->sreg1; int need_touch = FALSE; -#if defined(HOST_WIN32) +#if defined(TARGET_WIN32) need_touch = TRUE; #elif defined(MONO_ARCH_SIGSEGV_ON_ALTSTACK) if (!tree->flags & MONO_INST_INIT) @@ -3584,7 +3591,7 @@ mono_amd64_get_tls_gs_offset (void) guint8* mono_amd64_emit_tls_get (guint8* code, int dreg, int tls_offset) { -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 if (tls_offset < 64) { x86_prefix (code, X86_GS_PREFIX); amd64_mov_reg_mem (code, dreg, (tls_offset * 8) + 0x1480, 8); @@ -3650,7 +3657,7 @@ emit_tls_get_reg (guint8* code, int dreg, int offset_reg) static guint8* amd64_emit_tls_set (guint8 *code, int sreg, int tls_offset) { -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 g_assert_not_reached (); #elif defined(__APPLE__) x86_prefix (code, X86_GS_PREFIX); @@ -3667,7 +3674,7 @@ static guint8* amd64_emit_tls_set_reg (guint8 *code, int sreg, int offset_reg) { /* offset_reg contains a value translated by mono_arch_translate_tls_offset () */ -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 g_assert_not_reached (); #elif defined(__APPLE__) x86_prefix (code, X86_GS_PREFIX); @@ -4169,17 +4176,33 @@ mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb) case OP_SEQ_POINT: { int i; - /* - * Read from the single stepping trigger page. This will cause a - * SIGSEGV when single stepping is enabled. - * We do this _before_ the breakpoint, so single stepping after - * a breakpoint is hit will step to the next IL offset. - */ if (ins->flags & MONO_INST_SINGLE_STEP_LOC) { - MonoInst *var = cfg->arch.ss_trigger_page_var; + if (cfg->compile_aot) { + MonoInst *var = cfg->arch.ss_tramp_var; + guint8 *label; + + /* Load ss_tramp_var */ + amd64_mov_reg_membase (code, AMD64_R11, var->inst_basereg, var->inst_offset, 8); + /* Load the trampoline address */ + amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11, 0, 8); + /* Call it if it is non-null */ + amd64_test_reg_reg (code, AMD64_R11, AMD64_R11); + label = code; + amd64_branch8 (code, X86_CC_Z, 0, FALSE); + amd64_call_reg (code, AMD64_R11); + amd64_patch (label, code); + } else { + /* + * Read from the single stepping trigger page. This will cause a + * SIGSEGV when single stepping is enabled. + * We do this _before_ the breakpoint, so single stepping after + * a breakpoint is hit will step to the next IL offset. + */ + MonoInst *var = cfg->arch.ss_trigger_page_var; - amd64_mov_reg_membase (code, AMD64_R11, var->inst_basereg, var->inst_offset, 8); - amd64_alu_membase_imm_size (code, X86_CMP, AMD64_R11, 0, 0, 4); + amd64_mov_reg_membase (code, AMD64_R11, var->inst_basereg, var->inst_offset, 8); + amd64_alu_membase_imm_size (code, X86_CMP, AMD64_R11, 0, 0, 4); + } } /* @@ -4191,13 +4214,19 @@ mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb) guint32 offset = code - cfg->native_code; guint32 val; MonoInst *info_var = cfg->arch.seq_point_info_var; + guint8 *label; /* Load info var */ amd64_mov_reg_membase (code, AMD64_R11, info_var->inst_basereg, info_var->inst_offset, 8); val = ((offset) * sizeof (guint8*)) + MONO_STRUCT_OFFSET (SeqPointInfo, bp_addrs); - /* Load the info->bp_addrs [offset], which is either a valid address or the address of a trigger page */ + /* Load the info->bp_addrs [offset], which is either NULL or the address of the breakpoint trampoline */ amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11, val, 8); - amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11, 0, 8); + amd64_test_reg_reg (code, AMD64_R11, AMD64_R11); + label = code; + amd64_branch8 (code, X86_CC_Z, 0, FALSE); + /* Call the trampoline */ + amd64_call_reg (code, AMD64_R11); + amd64_patch (label, code); } else { /* * A placeholder for a possible breakpoint inserted by @@ -6745,7 +6774,7 @@ mono_arch_emit_prolog (MonoCompile *cfg) mono_emit_unwind_op_def_cfa_offset (cfg, code, cfa_offset); mono_emit_unwind_op_offset (cfg, code, AMD64_RBP, - cfa_offset); async_exc_point (code); -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 mono_arch_unwindinfo_add_push_nonvol (&cfg->arch.unwindinfo, cfg->native_code, code, AMD64_RBP); #endif /* These are handled automatically by the stack marking code */ @@ -6754,7 +6783,7 @@ mono_arch_emit_prolog (MonoCompile *cfg) amd64_mov_reg_reg (code, AMD64_RBP, AMD64_RSP, sizeof(mgreg_t)); mono_emit_unwind_op_def_cfa_reg (cfg, code, AMD64_RBP); async_exc_point (code); -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 mono_arch_unwindinfo_add_set_fpreg (&cfg->arch.unwindinfo, cfg->native_code, code, AMD64_RBP); #endif } @@ -6795,7 +6824,7 @@ mono_arch_emit_prolog (MonoCompile *cfg) /* Allocate stack frame */ if (alloc_size) { /* See mono_emit_stack_alloc */ -#if defined(HOST_WIN32) || defined(MONO_ARCH_SIGSEGV_ON_ALTSTACK) +#if defined(TARGET_WIN32) || defined(MONO_ARCH_SIGSEGV_ON_ALTSTACK) guint32 remaining_size = alloc_size; /*FIXME handle unbounded code expansion, we should use a loop in case of more than X interactions*/ guint32 required_code_size = ((remaining_size / 0x1000) + 1) * 10; /*10 is the max size of amd64_alu_reg_imm + amd64_test_membase_reg*/ @@ -6815,7 +6844,7 @@ mono_arch_emit_prolog (MonoCompile *cfg) mono_emit_unwind_op_def_cfa_offset (cfg, code, cfa_offset); } async_exc_point (code); -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 if (cfg->arch.omit_fp) mono_arch_unwindinfo_add_alloc_stack (&cfg->arch.unwindinfo, cfg->native_code, code, 0x1000); #endif @@ -6830,7 +6859,7 @@ mono_arch_emit_prolog (MonoCompile *cfg) mono_emit_unwind_op_def_cfa_offset (cfg, code, cfa_offset); async_exc_point (code); } -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 if (cfg->arch.omit_fp) mono_arch_unwindinfo_add_alloc_stack (&cfg->arch.unwindinfo, cfg->native_code, code, remaining_size); #endif @@ -7184,7 +7213,7 @@ mono_arch_emit_prolog (MonoCompile *cfg) } } - if (cfg->gen_seq_points_debug_data) { + if (cfg->gen_sdb_seq_points) { MonoInst *info_var = cfg->arch.seq_point_info_var; /* Initialize seq_point_info_var */ @@ -7197,18 +7226,23 @@ mono_arch_emit_prolog (MonoCompile *cfg) amd64_mov_membase_reg (code, info_var->inst_basereg, info_var->inst_offset, AMD64_R11, 8); } - /* Initialize ss_trigger_page_var */ - ins = cfg->arch.ss_trigger_page_var; - - g_assert (ins->opcode == OP_REGOFFSET); - if (cfg->compile_aot) { + /* Initialize ss_tramp_var */ + ins = cfg->arch.ss_tramp_var; + g_assert (ins->opcode == OP_REGOFFSET); + amd64_mov_reg_membase (code, AMD64_R11, info_var->inst_basereg, info_var->inst_offset, 8); - amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11, MONO_STRUCT_OFFSET (SeqPointInfo, ss_trigger_page), 8); + amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11, MONO_STRUCT_OFFSET (SeqPointInfo, ss_tramp_addr), 8); + amd64_mov_membase_reg (code, ins->inst_basereg, ins->inst_offset, AMD64_R11, 8); } else { + /* Initialize ss_trigger_page_var */ + ins = cfg->arch.ss_trigger_page_var; + + g_assert (ins->opcode == OP_REGOFFSET); + amd64_mov_reg_imm (code, AMD64_R11, (guint64)ss_trigger_page); + amd64_mov_membase_reg (code, ins->inst_basereg, ins->inst_offset, AMD64_R11, 8); } - amd64_mov_membase_reg (code, ins->inst_basereg, ins->inst_offset, AMD64_R11, 8); } cfg->code_len = code - cfg->native_code; @@ -7919,7 +7953,7 @@ get_delegate_invoke_impl (gboolean has_target, guint32 param_count, guint32 *cod /* We have to shift the arguments left */ amd64_mov_reg_reg (code, AMD64_RAX, AMD64_ARG_REG1, 8); for (i = 0; i < param_count; ++i) { -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 if (i < 3) amd64_mov_reg_reg (code, param_regs [i], param_regs [i + 1], 8); else @@ -8483,7 +8517,7 @@ mono_arch_set_breakpoint (MonoJitInfo *ji, guint8 *ip) SeqPointInfo *info = mono_arch_get_seq_point_info (mono_domain_get (), ji->code_start); g_assert (info->bp_addrs [native_offset] == 0); - info->bp_addrs [native_offset] = bp_trigger_page; + info->bp_addrs [native_offset] = mini_get_breakpoint_trampoline (); } else { /* * In production, we will use int3 (has to fix the size in the md @@ -8517,8 +8551,7 @@ mono_arch_clear_breakpoint (MonoJitInfo *ji, guint8 *ip) guint32 native_offset = ip - (guint8*)ji->code_start; SeqPointInfo *info = mono_arch_get_seq_point_info (mono_domain_get (), ji->code_start); - g_assert (info->bp_addrs [native_offset] == 0); - info->bp_addrs [native_offset] = info; + info->bp_addrs [native_offset] = NULL; } else { for (i = 0; i < breakpoint_size; ++i) x86_nop (code); @@ -8554,8 +8587,7 @@ void mono_arch_skip_breakpoint (MonoContext *ctx, MonoJitInfo *ji) { if (ji->from_aot) { - /* amd64_mov_reg_membase (code, AMD64_R11, AMD64_R11, 0, 8) */ - MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 3); + /* The breakpoint instruction is a call */ } else { MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + breakpoint_fault_size); } @@ -8570,6 +8602,7 @@ void mono_arch_start_single_stepping (void) { mono_mprotect (ss_trigger_page, mono_pagesize (), 0); + ss_trampoline = mini_get_single_step_trampoline (); } /* @@ -8581,6 +8614,7 @@ void mono_arch_stop_single_stepping (void) { mono_mprotect (ss_trigger_page, mono_pagesize (), MONO_MMAP_READ); + ss_trampoline = NULL; } /* @@ -8631,7 +8665,6 @@ mono_arch_get_seq_point_info (MonoDomain *domain, guint8 *code) { SeqPointInfo *info; MonoJitInfo *ji; - int i; // FIXME: Add a free function @@ -8647,11 +8680,7 @@ mono_arch_get_seq_point_info (MonoDomain *domain, guint8 *code) // FIXME: Optimize the size info = g_malloc0 (sizeof (SeqPointInfo) + (ji->code_size * sizeof (gpointer))); - info->ss_trigger_page = ss_trigger_page; - info->bp_trigger_page = bp_trigger_page; - /* Initialize to a valid address */ - for (i = 0; i < ji->code_size; ++i) - info->bp_addrs [i] = info; + info->ss_tramp_addr = &ss_trampoline; mono_domain_lock (domain); g_hash_table_insert (domain_jit_info (domain)->arch_seq_points, diff --git a/mono/mini/mini-amd64.h b/mono/mini/mini-amd64.h index f6eb5f1aeed..92917877e2a 100644 --- a/mono/mini/mini-amd64.h +++ b/mono/mini/mini-amd64.h @@ -207,12 +207,13 @@ typedef struct MonoCompileArch { #endif gpointer seq_point_info_var; gpointer ss_trigger_page_var; + gpointer ss_tramp_var; gpointer lmf_var; } MonoCompileArch; -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 #define PARAM_REGS 4 #else #define PARAM_REGS 6 @@ -220,8 +221,7 @@ typedef struct MonoCompileArch { /* Structure used by the sequence points in AOTed code */ typedef struct { - gpointer ss_trigger_page; - gpointer bp_trigger_page; + gpointer ss_tramp_addr; gpointer bp_addrs [MONO_ZERO_LEN_ARRAY]; } SeqPointInfo; @@ -287,7 +287,7 @@ typedef struct { #define MONO_ARCH_NOMAP32BIT 1 #endif -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 #define MONO_AMD64_ARG_REG1 AMD64_RCX #define MONO_AMD64_ARG_REG2 AMD64_RDX #define MONO_AMD64_ARG_REG3 AMD64_R8 @@ -354,6 +354,7 @@ typedef struct { #define MONO_ARCH_HAVE_OP_TAIL_CALL 1 #define MONO_ARCH_HAVE_TRANSLATE_TLS_OFFSET 1 #define MONO_ARCH_HAVE_DUMMY_INIT 1 +#define MONO_ARCH_HAVE_SDB_TRAMPOLINES 1 #if defined(TARGET_OSX) || defined(__linux__) #define MONO_ARCH_HAVE_TLS_GET_REG 1 @@ -409,7 +410,7 @@ typedef struct { extern MonoBreakpointInfo mono_breakpoint_info [MONO_BREAKPOINT_ARRAY_SIZE]; -#ifdef HOST_WIN32 +#ifdef TARGET_WIN32 void mono_arch_unwindinfo_add_push_nonvol (gpointer* monoui, gpointer codebegin, gpointer nextip, guchar reg ); void mono_arch_unwindinfo_add_set_fpreg (gpointer* monoui, gpointer codebegin, gpointer nextip, guchar reg ); diff --git a/mono/mini/mini-arm.c b/mono/mini/mini-arm.c index 3a12ed0329f..4ed7342572c 100644 --- a/mono/mini/mini-arm.c +++ b/mono/mini/mini-arm.c @@ -2154,7 +2154,7 @@ mono_arch_create_vars (MonoCompile *cfg) } } - if (cfg->gen_seq_points_debug_data) { + if (cfg->gen_sdb_seq_points) { if (cfg->soft_breakpoints) { MonoInst *ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL); ins->flags |= MONO_INST_VOLATILE; diff --git a/mono/mini/mini-exceptions.c b/mono/mini/mini-exceptions.c index 276df0f69d6..52ffc899a7d 100644 --- a/mono/mini/mini-exceptions.c +++ b/mono/mini/mini-exceptions.c @@ -2656,7 +2656,9 @@ mono_thread_state_init_from_sigctx (MonoThreadUnwindState *ctx, void *sigctx) if (sigctx) mono_sigctx_to_monoctx (sigctx, &ctx->ctx); else -#if MONO_ARCH_HAS_MONO_CONTEXT && !defined(MONO_CROSS_COMPILE) +#if defined(MONO_CROSS_COMPILE) + ctx->valid = FALSE; //A cross compiler doesn't need to suspend. +#elif MONO_ARCH_HAS_MONO_CONTEXT MONO_CONTEXT_GET_CURRENT (ctx->ctx); #else g_error ("Use a null sigctx requires a working mono-context"); diff --git a/mono/mini/mini-generic-sharing.c b/mono/mini/mini-generic-sharing.c index 4a0947fc2b5..246558de2cb 100644 --- a/mono/mini/mini-generic-sharing.c +++ b/mono/mini/mini-generic-sharing.c @@ -15,8 +15,8 @@ #include "mini.h" -//#define ALLOW_PARTIAL_SHARING TRUE -#define ALLOW_PARTIAL_SHARING FALSE +#define ALLOW_PARTIAL_SHARING TRUE +//#define ALLOW_PARTIAL_SHARING FALSE #if 0 #define DEBUG(...) __VA_ARGS__ diff --git a/mono/mini/mini-llvm.c b/mono/mini/mini-llvm.c index faf1de75321..277e2296ac9 100644 --- a/mono/mini/mini-llvm.c +++ b/mono/mini/mini-llvm.c @@ -1106,6 +1106,8 @@ emit_volatile_load (EmitContext *ctx, int vreg) */ if (t->type == MONO_TYPE_U1 || t->type == MONO_TYPE_U2 || t->type == MONO_TYPE_CHAR || t->type == MONO_TYPE_BOOLEAN) v = LLVMBuildZExt (ctx->builder, v, LLVMInt32Type (), ""); + else if (t->type == MONO_TYPE_I1 || t->type == MONO_TYPE_I2) + v = LLVMBuildSExt (ctx->builder, v, LLVMInt32Type (), ""); else if (t->type == MONO_TYPE_U8) v = LLVMBuildZExt (ctx->builder, v, LLVMInt64Type (), ""); } @@ -2573,11 +2575,6 @@ emit_handler_start (EmitContext *ctx, MonoBasicBlock *bb, LLVMBuilderRef builder * These symbols are not really used, the clause_index is embedded into the EH tables generated by DwarfMonoException in LLVM. */ LLVMSetLinkage (type_info, LLVMInternalLinkage); - -#ifdef TARGET_ARM - // test_0_invalid_unbox_arrays () fails - LLVM_FAILURE (ctx, "aot+clauses"); -#endif } else { /* * After the cfg mempool is freed, the type info will point to stale memory, @@ -2697,6 +2694,7 @@ process_bb (EmitContext *ctx, MonoBasicBlock *bb) } emit_handler_start (ctx, bb, builder); + CHECK_FAILURE (ctx); builder = ctx->builder; } diff --git a/mono/mini/mini-runtime.c b/mono/mini/mini-runtime.c index 215bbf53283..8fec989a9fb 100755 --- a/mono/mini/mini-runtime.c +++ b/mono/mini/mini-runtime.c @@ -2664,7 +2664,7 @@ mini_parse_debug_options (void) else if (!strcmp (arg, "explicit-null-checks")) debug_options.explicit_null_checks = TRUE; else if (!strcmp (arg, "gen-seq-points")) - debug_options.gen_seq_points_debug_data = TRUE; + debug_options.gen_sdb_seq_points = TRUE; else if (!strcmp (arg, "gen-compact-seq-points")) debug_options.gen_seq_points_compact_data = TRUE; else if (!strcmp (arg, "init-stacks")) diff --git a/mono/mini/mini-trampolines.c b/mono/mini/mini-trampolines.c index daac4fe90e7..51d7e12dca0 100644 --- a/mono/mini/mini-trampolines.c +++ b/mono/mini/mini-trampolines.c @@ -1866,3 +1866,67 @@ mini_get_nullified_class_init_trampoline (void) return nullified_class_init_trampoline; } + +/* + * mini_get_single_step_trampoline: + * + * Return a trampoline which calls debugger_agent_single_step_from_context (). + */ +gpointer +mini_get_single_step_trampoline (void) +{ + static gpointer trampoline; + + if (!trampoline) { + gpointer tramp; + MonoTrampInfo *info; + + if (mono_aot_only) { + tramp = mono_aot_get_trampoline ("sdb_single_step_trampoline"); + } else { +#ifdef MONO_ARCH_HAVE_SDB_TRAMPOLINES + tramp = mono_arch_create_sdb_trampoline (TRUE, &info, FALSE); + mono_tramp_info_register (info); +#else + tramp = NULL; + g_assert_not_reached (); +#endif + } + mono_memory_barrier (); + trampoline = tramp; + } + + return trampoline; +} + +/* + * mini_get_breakpoint_trampoline: + * + * Return a trampoline which calls debugger_agent_breakpoint_from_context (). + */ +gpointer +mini_get_breakpoint_trampoline (void) +{ + static gpointer trampoline; + + if (!trampoline) { + gpointer tramp; + MonoTrampInfo *info; + + if (mono_aot_only) { + tramp = mono_aot_get_trampoline ("sdb_breakpoint_trampoline"); + } else { +#ifdef MONO_ARCH_HAVE_SDB_TRAMPOLINES + tramp = mono_arch_create_sdb_trampoline (FALSE, &info, FALSE); + mono_tramp_info_register (info); +#else + tramp = NULL; + g_assert_not_reached (); +#endif + } + mono_memory_barrier (); + trampoline = tramp; + } + + return trampoline; +} diff --git a/mono/mini/mini.c b/mono/mini/mini.c index 7b36bf8d457..82c756e0985 100755 --- a/mono/mini/mini.c +++ b/mono/mini/mini.c @@ -2412,7 +2412,7 @@ mono_codegen (MonoCompile *cfg) if (cfg->opt & MONO_OPT_PEEPHOLE) mono_arch_peephole_pass_2 (cfg, bb); - if (cfg->gen_seq_points && !cfg->gen_seq_points_debug_data) + if (cfg->gen_seq_points && !cfg->gen_sdb_seq_points) bb_deduplicate_op_il_seq_points (cfg, bb); } @@ -3119,8 +3119,16 @@ mini_method_compile (MonoMethod *method, guint32 opts, MonoDomain *domain, JitFl cfg->full_aot = full_aot; cfg->skip_visibility = method->skip_visibility; cfg->orig_method = method; - cfg->gen_seq_points = debug_options.gen_seq_points_compact_data || debug_options.gen_seq_points_debug_data; - cfg->gen_seq_points_debug_data = debug_options.gen_seq_points_debug_data; + cfg->gen_seq_points = debug_options.gen_seq_points_compact_data || debug_options.gen_sdb_seq_points; + cfg->gen_sdb_seq_points = debug_options.gen_sdb_seq_points; + +#ifdef PLATFORM_ANDROID + if (cfg->method->wrapper_type != MONO_WRAPPER_NONE) { + /* FIXME: Why is this needed */ + cfg->gen_seq_points = FALSE; + cfg->gen_sdb_seq_points = FALSE; + } +#endif cfg->explicit_null_checks = debug_options.explicit_null_checks; cfg->soft_breakpoints = debug_options.soft_breakpoints; diff --git a/mono/mini/mini.h b/mono/mini/mini.h index 427b39bb679..148158b3f47 100644 --- a/mono/mini/mini.h +++ b/mono/mini/mini.h @@ -105,7 +105,7 @@ #endif /* Version number of the AOT file format */ -#define MONO_AOT_FILE_VERSION 110 +#define MONO_AOT_FILE_VERSION 111 //TODO: This is x86/amd64 specific. #define mono_simd_shuffle_mask(a,b,c,d) ((a) | ((b) << 2) | ((c) << 4) | ((d) << 6)) @@ -1518,7 +1518,7 @@ typedef struct { guint keep_cil_nops : 1; guint gen_seq_points : 1; /* Generate seq points for use by the debugger */ - guint gen_seq_points_debug_data : 1; + guint gen_sdb_seq_points : 1; guint explicit_null_checks : 1; guint compute_gc_maps : 1; guint soft_breakpoints : 1; @@ -1884,7 +1884,7 @@ typedef struct { * Whenever data such as next sequence points and flags is required. * Next sequence points and flags are required by the debugger agent. */ - gboolean gen_seq_points_debug_data; + gboolean gen_sdb_seq_points; gboolean gen_seq_points_compact_data; gboolean explicit_null_checks; /* @@ -2364,6 +2364,8 @@ const char* mono_get_generic_trampoline_simple_name (MonoTrampolineType tr char* mono_get_generic_trampoline_name (MonoTrampolineType tramp_type); char* mono_get_rgctx_fetch_trampoline_name (int slot); gpointer mini_get_nullified_class_init_trampoline (void); +gpointer mini_get_single_step_trampoline (void); +gpointer mini_get_breakpoint_trampoline (void); gpointer mini_add_method_trampoline (MonoMethod *orig_method, MonoMethod *m, gpointer compiled_method, gboolean add_static_rgctx_tramp, gboolean add_unbox_tramp); gboolean mini_jit_info_is_gsharedvt (MonoJitInfo *ji); @@ -2437,6 +2439,7 @@ gpointer mono_arch_create_rgctx_lazy_fetch_trampoline (guint32 slot, MonoTrampI gpointer mono_arch_create_general_rgctx_lazy_fetch_trampoline (MonoTrampInfo **info, gboolean aot); gpointer mono_arch_create_generic_class_init_trampoline (MonoTrampInfo **info, gboolean aot); gpointer mono_arch_get_nullified_class_init_trampoline (MonoTrampInfo **info); +guint8* mono_arch_create_sdb_trampoline (gboolean single_step, MonoTrampInfo **info, gboolean aot); gpointer mono_arch_create_monitor_enter_trampoline (MonoTrampInfo **info, gboolean is_v4, gboolean aot); gpointer mono_arch_create_monitor_exit_trampoline (MonoTrampInfo **info, gboolean aot); guint8 *mono_arch_create_llvm_native_thunk (MonoDomain *domain, guint8* addr) MONO_LLVM_INTERNAL; diff --git a/mono/mini/mini.prj b/mono/mini/mini.prj deleted file mode 100644 index b9bd7c25f61..00000000000 --- a/mono/mini/mini.prj +++ /dev/null @@ -1,28 +0,0 @@ -;; -*- Prcs -*- -(Created-By-Prcs-Version 1 3 2) -(Project-Description "The mono SSA-based JIT.") -(Project-Version mini 0 3) -(Parent-Version mini 0 2) -(Version-Log "") -(New-Version-Log "") -(Checkin-Time "Sat, 21 Sep 2002 12:11:29 +0200") -(Checkin-Login lupus) -(Populate-Ignore ()) -(Project-Keywords) -(Files -;; This is a comment. Fill in files here. -;; For example: (prcs/checkout.cc ()) - -;; Files added by populate at Sat, 08 Jun 2002 17:27:56 +0200, -;; to version 0.0(w), by lupus: - - (regalloc.c (mini/0_regalloc.c 1.1 664)) - (cfold.c (mini/1_cfold.c 1.1 664)) - (mini-x86.c (mini/2_mini-x86.c 1.2 664)) - (mini.h (mini/3_mini.h 1.3 664)) - (makefile (mini/4_makefile 1.3 664)) - (test.cs (mini/5_test.cs 1.1 664)) - (mini.c (mini/6_mini.c 1.3 664)) -) -(Merge-Parents) -(New-Merge-Parents) diff --git a/mono/mini/seq-points.c b/mono/mini/seq-points.c index 26ac63986a3..c0dcd6da7da 100644 --- a/mono/mini/seq-points.c +++ b/mono/mini/seq-points.c @@ -49,7 +49,7 @@ mono_save_seq_point_info (MonoCompile *cfg) GSList **next = NULL; SeqPoint* seq_points; GByteArray* array; - gboolean has_debug_data = cfg->gen_seq_points_debug_data; + gboolean has_debug_data = cfg->gen_sdb_seq_points; if (!cfg->seq_points) return; diff --git a/mono/mini/simd-intrinsics.c b/mono/mini/simd-intrinsics.c index bf1e37d31b1..0f484a98758 100644 --- a/mono/mini/simd-intrinsics.c +++ b/mono/mini/simd-intrinsics.c @@ -61,7 +61,16 @@ The advantage of this change is that it could have a _membase version and promot without a OP_LDADDR. */ -#ifdef MONO_ARCH_SIMD_INTRINSICS +#if defined (MONO_ARCH_SIMD_INTRINSICS) + +#if defined (DISABLE_JIT) + +void +mono_simd_intrinsics_init (void) +{ +} + +#else //#define IS_DEBUG_ON(cfg) (0) @@ -1673,4 +1682,5 @@ mono_emit_simd_intrinsics (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSign return NULL; } -#endif +#endif /* DISABLE_JIT */ +#endif /* MONO_ARCH_SIMD_INTRINSICS */ diff --git a/mono/mini/tramp-amd64.c b/mono/mini/tramp-amd64.c index 0c7f8b2b13f..6bf83070e3d 100755 --- a/mono/mini/tramp-amd64.c +++ b/mono/mini/tramp-amd64.c @@ -27,12 +27,15 @@ #include "mini.h" #include "mini-amd64.h" +#include "debugger-agent.h" #if defined(__native_client_codegen__) && defined(__native_client__) #include #include #endif +#define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1)) + #define IS_REX(inst) (((inst) >= 0x40) && ((inst) <= 0x4f)) /* @@ -1358,3 +1361,115 @@ mono_arch_get_plt_info_offset (guint8 *plt_entry, mgreg_t *regs, guint8 *code) return *(guint32*)(plt_entry + 6); #endif } + +/* + * mono_arch_create_sdb_trampoline: + * + * Return a trampoline which captures the current context, passes it to + * debugger_agent_single_step_from_context ()/debugger_agent_breakpoint_from_context (), + * then restores the (potentially changed) context. + */ +guint8* +mono_arch_create_sdb_trampoline (gboolean single_step, MonoTrampInfo **info, gboolean aot) +{ + int tramp_size = 256; + int framesize, ctx_offset, cfa_offset; + guint8 *code, *buf; + GSList *unwind_ops = NULL; + MonoJumpInfo *ji = NULL; + + code = buf = mono_global_codeman_reserve (tramp_size); + + framesize = sizeof (MonoContext); + framesize = ALIGN_TO (framesize, MONO_ARCH_FRAME_ALIGNMENT); + + // CFA = sp + 8 + cfa_offset = 8; + mono_add_unwind_op_def_cfa (unwind_ops, code, buf, AMD64_RSP, 8); + // IP saved at CFA - 8 + mono_add_unwind_op_offset (unwind_ops, code, buf, AMD64_RIP, -cfa_offset); + + amd64_push_reg (code, AMD64_RBP); + cfa_offset += sizeof(mgreg_t); + mono_add_unwind_op_def_cfa_offset (unwind_ops, code, buf, cfa_offset); + mono_add_unwind_op_offset (unwind_ops, code, buf, AMD64_RBP, - cfa_offset); + + amd64_mov_reg_reg (code, AMD64_RBP, AMD64_RSP, sizeof(mgreg_t)); + mono_add_unwind_op_def_cfa_reg (unwind_ops, code, buf, AMD64_RBP); + amd64_alu_reg_imm (code, X86_SUB, AMD64_RSP, framesize); + + ctx_offset = 0; + + /* Initialize a MonoContext structure on the stack */ + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rax), AMD64_RAX, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rbx), AMD64_RBX, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rcx), AMD64_RCX, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rdx), AMD64_RDX, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rsi), AMD64_RSI, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rdi), AMD64_RDI, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r8), AMD64_R8, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r9), AMD64_R9, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r10), AMD64_R10, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r11), AMD64_R11, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r12), AMD64_R12, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r13), AMD64_R13, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r14), AMD64_R14, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r15), AMD64_R15, sizeof (mgreg_t)); + + amd64_mov_reg_membase (code, AMD64_R11, AMD64_RBP, 0, sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rbp), AMD64_R11, sizeof (mgreg_t)); + amd64_lea_membase (code, AMD64_R11, AMD64_RBP, 2 * sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rsp), AMD64_R11, sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R11, AMD64_RBP, sizeof (mgreg_t), sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rip), AMD64_R11, sizeof (mgreg_t)); + + /* Call the single step/breakpoint function in sdb */ + amd64_lea_membase (code, AMD64_ARG_REG1, AMD64_RSP, ctx_offset); + + if (aot) { + if (single_step) + code = mono_arch_emit_load_aotconst (buf, code, &ji, MONO_PATCH_INFO_JIT_ICALL_ADDR, "debugger_agent_single_step_from_context"); + else + code = mono_arch_emit_load_aotconst (buf, code, &ji, MONO_PATCH_INFO_JIT_ICALL_ADDR, "debugger_agent_breakpoint_from_context"); + amd64_call_reg (code, AMD64_R11); + } else { + if (single_step) + amd64_call_code (code, debugger_agent_single_step_from_context); + else + amd64_call_code (code, debugger_agent_breakpoint_from_context); + } + + /* Restore registers from ctx */ + amd64_mov_reg_membase (code, AMD64_RAX, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rax), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_RBX, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rbx), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_RCX, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rcx), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_RDX, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rdx), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_RSI, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rsi), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_RDI, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rdi), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R8, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r8), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R9, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r9), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R10, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r10), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R11, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r11), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R12, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r12), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R13, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r13), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R14, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r14), sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R15, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, r15), sizeof (mgreg_t)); + + amd64_mov_reg_membase (code, AMD64_R11, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rbp), sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RBP, 0, AMD64_R11, sizeof (mgreg_t)); + amd64_mov_reg_membase (code, AMD64_R11, AMD64_RSP, ctx_offset + MONO_STRUCT_OFFSET (MonoContext, rip), sizeof (mgreg_t)); + amd64_mov_membase_reg (code, AMD64_RBP, sizeof (mgreg_t), AMD64_R11, sizeof (mgreg_t)); + + amd64_leave (code); + amd64_ret (code); + + mono_arch_flush_icache (code, code - buf); + g_assert (code - buf <= tramp_size); + + if (info) { + const char *tramp_name = single_step ? "sdb_single_step_trampoline" : "sdb_breakpoint_trampoline"; + *info = mono_tramp_info_create (tramp_name, buf, code - buf, ji, unwind_ops); + } + + return buf; +} diff --git a/mono/mini/unwind.c b/mono/mini/unwind.c index 6e95ad6e5d5..17bf3ad8962 100644 --- a/mono/mini/unwind.c +++ b/mono/mini/unwind.c @@ -68,16 +68,11 @@ static int map_hw_reg_to_dwarf_reg [] = { 72, 73, 74, 75, 76, 77, 78, 79, }; #elif defined (TARGET_X86) -#ifdef __APPLE__ /* - * LLVM seems to generate unwind info where esp is encoded as 5, and ebp as 4, ie see this line: - * def ESP : RegisterWithSubRegs<"esp", [SP]>, DwarfRegNum<[-2, 5, 4]>; - * in lib/Target/X86/X86RegisterInfo.td in the llvm sources. + * ebp and esp are swapped: + * http://lists.cs.uiuc.edu/pipermail/lldb-dev/2014-January/003101.html */ static int map_hw_reg_to_dwarf_reg [] = { 0, 1, 2, 3, 5, 4, 6, 7, 8 }; -#else -static int map_hw_reg_to_dwarf_reg [] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; -#endif /* + 1 is for IP */ #define NUM_REGS X86_NREG + 1 #define DWARF_DATA_ALIGN (-4) diff --git a/mono/profiler/Makefile.am b/mono/profiler/Makefile.am index 63c62f015b2..115232490c3 100644 --- a/mono/profiler/Makefile.am +++ b/mono/profiler/Makefile.am @@ -18,11 +18,10 @@ if HAVE_VTUNE vtune_lib = libmono-profiler-vtune.la endif -lib_LTLIBRARIES = libmono-profiler-cov.la libmono-profiler-aot.la libmono-profiler-iomap.la libmono-profiler-log.la $(vtune_lib) +lib_LTLIBRARIES = libmono-profiler-aot.la libmono-profiler-iomap.la libmono-profiler-log.la $(vtune_lib) if PLATFORM_DARWIN libmono_profiler_log_la_LDFLAGS = -Wl,-undefined -Wl,suppress -Wl,-flat_namespace -libmono_profiler_cov_la_LDFLAGS = -Wl,-undefined -Wl,suppress -Wl,-flat_namespace endif if PLATFORM_ANDROID libmono_profiler_log_la_LDFLAGS = -avoid-version @@ -56,12 +55,8 @@ else LIBMONO=$(top_builddir)/mono/mini/libmonosgen-$(API_VER).la endif -libmono_profiler_cov_la_SOURCES = mono-cov.c -libmono_profiler_cov_la_LIBADD = $(LIBMONO) $(GLIB_LIBS) $(LIBICONV) libmono_profiler_aot_la_SOURCES = mono-profiler-aot.c libmono_profiler_aot_la_LIBADD = $(LIBMONO) $(GLIB_LIBS) $(LIBICONV) -#libmono_profiler_logging_la_SOURCES = mono-profiler-logging.c -#libmono_profiler_logging_la_LIBADD = $(LIBMONO) $(GLIB_LIBS) $(LIBICONV) libmono_profiler_iomap_la_SOURCES = mono-profiler-iomap.c libmono_profiler_iomap_la_LIBADD = $(LIBMONO) $(GLIB_LIBS) $(LIBICONV) libmono_profiler_log_la_SOURCES = proflog.c @@ -96,5 +91,5 @@ else check-local: testlog endif -EXTRA_DIST=utils.c utils.h proflog.h log-profiler.txt perf_event.h \ +EXTRA_DIST=utils.c utils.h proflog.h perf_event.h \ $(PLOG_TESTS_SRC) ptestrunner.pl diff --git a/mono/profiler/log-profiler.txt b/mono/profiler/log-profiler.txt deleted file mode 100644 index 10140c6b3bb..00000000000 --- a/mono/profiler/log-profiler.txt +++ /dev/null @@ -1,411 +0,0 @@ -# The Mono log profiler - -The Mono *log* profiler can be used to collect a lot of information about -a program running in the Mono runtime. This data can be used (both while the process -is running and later) to do analyses of the program behaviour, determine -resource usage, performance issues or even look for particular execution patterns. - -This is accomplished by logging the events provided by the Mono runtime through the -profiling interface and periodically writing them to a file which can be later -inspected with the command line *mprof-report* program or with a GUI (not developed yet). - -The events collected include (among others): - -* method enter and leave -* object allocation -* garbage collection -* JIT compilation -* metadata loading -* lock contention -* exceptions - -In addition, the profiler can periodically collect info about all the objects -present in the heap at the end of a garbage collection (this is called heap shot -and currently implemented only for the sgen garbage collector). -Another available profiler mode is the *sampling* or *statistical* mode: -periodically the program is sampled and the information about what the program was -busy with is saved. This allows to get information about the program behaviour -without degrading its performance too much (usually less than 10%). - -## Basic profiler usage - -The simpler way to use the profiler is the following: - -`mono --profile=log program.exe` - -At the end of the execution the file *output.mlpd* will be found in the current -directory. A summary report of the data can be printed by running: - -`mprof-report output.mlpd` - -With this invocation a huge amount of data is collected about the program execution -and collecting and saving this data can significantly slow down program execution. -If saving the profiling data is not needed, a report can be generated directly with: - -`mono --profile=log:report program.exe` - -If the information about allocations is not of interest, it can be excluded: - -`mono --profile=log:noalloc program.exe` - -On the other hand, if method call timing is not important, while allocations are, -the needed info can be gathered with: - -`mono --profile=log:nocalls program.exe` - -You will still be able to inspect information about the sequence of calls that lead -to each allocation because at each object allocation a stack trace is collected if -full enter/leave information is not available. - -To periodically collect heap shots (and exclude method and allocation events) use the -following options (making sure you run with the sgen garbage collector): - -`mono --gc=sgen --profile=log:heapshot program.exe` - -To perform a sampling profiler run, use the *sample* option: - -`mono --profile=log:sample program.exe` - -## Profiler option documentation - -By default the *log* profiler will gather all the events provided by the Mono runtime -and write them to a file named *output.mlpd*. When no option is specified, it -is equivalent to using: - -`--profile=log:calls,alloc,output=output.mlpd,maxframes=8,calldepth=100` - -The following options can be used to modify this default behaviour. Each option -is separated from the next by a `,` character, with no spaces and all the options -are included after the *log:* profile module specifier. - -* *help*: display concise help info about each available option - -* *[no]alloc*: *noalloc* disables collecting object allocation info, *alloc* enables -it if it was disabled by another option like *heapshot*. - -* *[no]calls*: *nocalls* disables collecting method enter and leave events. When this -option is used at each object allocation and at some other events (like lock contentions -and exception throws) a stack trace is collected by default. See the *maxframes* option to -control this behaviour. *calls* enables method enter/leave events if they were disabled -by another option like *heapshot*. - -* *heapshot[=MODE]*: collect heap shot data at each major collection. The frequency of the -heap shots can be changed with the *MODE* parameter. When this option is used -allocation events and method enter/leave events are not recorded by default: if they -are needed, they need to be enabled explicitly. -The optional parameter *MODE* can modify the default heap shot frequency. -heapshot can be used multiple times with different modes: in that case a heap shot is -taken if either of the conditions are met. -MODE can be one of: - * *NUM*ms: perform a heap shot if at least *NUM* milliseconds passed since - the last one. - * *NUM*gc: perform a heap shot every *NUM* major garbage collections - * *ondemand*: perform a heap shot when such a command is sent to the - control port - -* *sample[=TYPE[/FREQ]]*: collect statistical samples of the program behaviour. The -default is to collect a 1000 times per second the instruction pointer. This is -equivalent to the value "cycles/1000" for *TYPE*. On some systems, like with recent -Linux kernels, it is possible to cause the sampling to happen for other events -provided by the performance counters of the cpu. In this case, *TYPE* can be one of: - * *cycles*: processor cycles - * *instr*: executed instructions - * *cacherefs*: cache references - * *cachemiss*: cache misses - * *branches*: executed branches - * *branchmiss*: mispredicted branches - -* *time=TIMER*: use the TIMER timestamp mode. TIMER can have the following values: - * *fast*: a usually faster but possibly more inaccurate timer - -* *maxframes=NUM*: when a stack trace needs to be performed, collect *NUM* frames -at the most. The default is 8. - -* *calldepth=NUM*: ignore method enter/leave events when the call chain depth is -bigger than NUM. - -* *zip*: automatically compress the output data in gzip format. - -* *output=OUTSPEC*: instead of writing the profiling data to the output.mlpd file, -substitute *%p* in *OUTSPEC* with the current process id and *%t* with the current -date and time, then do according to *OUTSPEC*: - * if *OUTSPEC* begins with a *|* character, execute the rest as a program - and feed the data to its standard input - * if *OUTSPEC* begins with a *-* character, use the rest of OUTSPEC as - the filename, but force overwrite any existing file by that name - * if *OUTSPEC* begins with a *#* character, use the rest of OUTSPEC as a - file descriptor and feed the data to it. - * otherwise write the data the the named file: note that is a file by that - name already exists, a warning is issued and profiling is disabled. - -* *report*: the profiling data is sent to mprof-report, which will print a summary -report. This is equivalent to the option: `output=mprof-report -`. If the *output* -option is specified as well, the report will be written to the output file instead of -the console. - -* *port=PORT*: specify the tcp/ip port to use for the listening command server. -Currently not available for windows. -This server is started for example when heapshot=ondemand is used: it will read -commands line by line. The following commands are available: - * *heapshot*: perform a heapshot as soon as possible - -## Analyzing the profile data - -Currently there is a command line program (*mprof-report*) to analyze the -data produced by the profiler. This is ran automatically when the *report* -profiler option is used. -Simply run: - -`mprof-report output.mlpd` - -to see a summary report of the data included in the file. - -### Trace information for events - -Often it is important for some events, like allocations, lock contention -and exception throws to know where they happened. Or we may want to see -what sequence of calls leads to a particular method invocation. To see this -info invoke mprof-report as follows: - -`mprof-report --traces output.mlpd` - -The maximum number of methods in each stack trace can be specified with the -*--maxframes=NUM* option: - -`mprof-report --traces --maxframes=4 output.mlpd` - -The stack trace info will be available if method enter/leave events have been -recorded or if stack trace collection wasn't explicitly disabled with the -*maxframes=0* profiler option. Note that the profiler will collect up to 8 -frames by default at specific events when the *nocalls* option is used, so -in that case, if more stack frames are required in mprof-report, a bigger -value for maxframes when profiling must be used, too. - -The *--traces* option also controls the reverse reference feature in the heapshot -report: for each class it reports how many references to objects of that class -come from other classes. - -### Sort order for methods and allocations - -When a list of methods is printed the default sort order is based on the total time -spent in the method. This time is wall clock time (that is, it includes the time -spent, for example, in a sleep call, even if actual cpu time would be basically 0). -Also, if the method has been ran on different threads, the time will be a sum -of the time used in each thread. - -To change the sort order, use the option: - -`--method-sort=MODE` - -where *MODE* can be: - -* *self*: amount of time spent in the method itself and not in its callees -* *calls*: the number of method invocations -* *total*: the total time spent in the method. - -Object allocation lists are sorted by default depending on the total amount -of bytes used by each type. - -To change the sort order of object allocations, use the option: - -`--alloc-sort=MODE` - -where *MODE* can be: - -* *count*: the number of allocated objects of the given type -* *bytes*: the total number of bytes used by objects of the given type - -### Selecting what data to report - -The profiler by default collects data about many runtime subsystems and mprof-report -prints a summary of all the subsystems that are found in the data file. It is possible -to tell mprof-report to only show information about some of them with the following -option: - -`--reports=R1[,R2...]` - -where the report names R1, R2 etc. can be: - -* *header*: information about program startup and profiler version -* *jit*: JIT compiler information -* *sample*: statistical sampling information -* *gc*: garbage collection information -* *alloc*: object allocation information -* *call*: method profiling information -* *metadata*: metadata events like image loads -* *exception*: exception throw and handling information -* *monitor*: lock contention information -* *thread*: thread information -* *heapshot*: live heap usage at heap shots - -It is possible to limit some of the data displayed to a timeframe of the -program execution with the option: - -`--time=FROM-TO` - -where *FROM* and *TO* are seconds since application startup (they can be -floating point numbers). - -Another interesting option is to consider only events happening on a particular -thread with the following option: - -`--thread=THREADID` - -where *THREADID* is one of the numbers listed in the thread summary report -(or a thread name when present). - -By default long lists of methods or other information like object allocations -are limited to the most important data. To increase the amount of information -printed you can use the option: - -`--verbose` - -### Track individual objects - -Instead of printing the usual reports from the profiler data, it is possible -to track some interesting information about some specific object addresses. -The objects are selected based on their address with the *--track* option as follows: - -`--track=0xaddr1[,0xaddr2,...]` - -The reported info (if available in the data file), will be class name, size, -creation time, stack trace of creation (with the *--traces* option), etc. -If heapshot data is available it will be possible to also track what other objects -reference one of the listed addresses. - -The object addresses can be gathered either from the profiler report in some -cases (like in the monitor lock report), from the live application or they can -be selected with the *--find=FINDSPEC* option. FINDSPEC can be one of the -following: - -* *S:SIZE*: where the object is selected if it's size is at least *SIZE* -* *T:NAME*: where the object is selected if *NAME* partially matches its class name - -This option can be specified multiple times with one of the different kinds -of FINDSPEC. For example, the following: - -`--find=S:10000 --find=T:Byte[]` - -will find all the byte arrays that are at least 10000 bytes in size. - -Note that with a moving garbage collector the object address can change, so -you may need to track the changed address manually. It can also happen that -multiple objects are allocated at the same address, so the output from this -option can become large. - -### Saving a profiler report - -By default mprof-report will print the summary data to the console. -To print it to a file, instead, use the option: - -`--out=FILENAME` - -## Dealing with profiler slowness - -If the profiler needs to collect lots of data, the execution of the program will -slow down significantly, usually 10 to 20 times slower. There are several -ways to reduce the impact of the profiler on the program execution. - -### Use the statistical sampling mode - -Statistical sampling allows executing a program under the profiler with minimal -performance overhead (usually less than 10%). This mode allows checking where -the program is spending most of it's execution time without significantly -perturbing its behaviour. - -### Collect less data - -Collecting method enter/leave events can be very expensive, especially in programs -that perform many millions of tiny calls. The profiler option *nocalls* can be -used to avoid collecting this data or it can be limited to only a few call levels -with the *calldepth* option. - -Object allocation information is expensive as well, though much less than -method enter/leave events. If it's not needed, it can be skipped with the -*noalloc* profiler option. Note that when method enter/leave events are -discarded, by default stack traces are collected at each allocation and this -can be expensive as well. The impact of stack trace information can be reduced -by setting a low value with the *maxframes* option or by eliminating them -completely, by setting it to 0. - -The other major source of data is the heapshot profiler option: especially -if the managed heap is big, since every object needs to be inspected. The *MODE* -parameter of the *heapshot* option can be used to reduce the frequency of the heap -shots. - -### Reduce the timestamp overhead - -On many operating systems or architectures what actually slows down profiling -is the function provided by the system to get timestamp information. -The *time=fast* profiler option can be usually used to speed up this operation, -but, depending on the system, time accounting may have some level of approximation -(though statistically the data should be still fairly valuable). - -## Dealing with the size of the data files - -When collecting a lot of information about a profiled program, huge data -files can be generated. There are a few ways to minimize the amount of data, -for example by not collecting some of the more space-consuming information -or by compressing the information on the fly or by just generating a summary -report. - -### Reducing the amount of data - -Method enter/leave events can be excluded completely with the *nocalls* option -or they can be limited to just a few levels of calls with the *calldepth* option. -For example, the option: - -`calldepth=10` - -will ignore the method events when there are more than 10 managed stack frames. -This is very useful for programs that have deep recursion or for programs that -perform many millions of tiny calls deep enough in the call stack. The optimal -number for the calldepth option depends on the program and it needs to be balanced -between providing enough profiling information and allowing fast execution speed. - -Note that by default, if method events are not recorded at all, the profiler will -collect stack trace information at events like allocations. To avoid gathering this -data, use the *maxframes=0* profiler option. - -Allocation events can be eliminated with the *noalloc* option. - -Heap shot data can also be huge: by default it is collected at each major collection. -To reduce the frequency, you can specify a heapshot mode: for example to collect -every 5 collections (including major and minor): - -`heapshot=5gc` - -or when at least 5 seconds passed since the last heap shot: - -`heapshot=5000ms` - -### Compressing the data - -To reduce the amout of disk space used by the data, the data can be compressed -either after it has been generated with the gzip command: - -`gzip -9 output.mlpd` - -or it can be compressed automatically by using the *zip* profiler option. Note -that in this case there could be a significant slowdown of the profiled program. - -The mprof-report program will tranparently deal with either compressed or -uncompressed data files. - -### Generating only a summary report - -Often it's enough to look at the profiler summary report to diagnose an issue and in this -case it's possible to avoid saving the profiler data file to disk. This can be -accomplished with the *report* profiler option, which will basically send the data -to the mprof-report program for display. - -To have more control of what summary information is reported (or to use a completely -different program to decode the profiler data), the *output* profiler option can be -used, with `|` as the first character: the rest of the output name will be -executed as a program with the data fed in on the standard input. - -For example, to print only the Monitor summary with stack trace information, you -could use it like this: - -`output=|mprof-report --reports=monitor --traces -` - diff --git a/mono/profiler/mono-cov.c b/mono/profiler/mono-cov.c deleted file mode 100644 index 9860dd8ee1d..00000000000 --- a/mono/profiler/mono-cov.c +++ /dev/null @@ -1,164 +0,0 @@ -/* - * mono-co.c: Coverage profiler - * - - * Copyright 2008-2009 Novell, Inc (http://www.novell.com) - */ -#include -#include -#include -#include -#include -#include -#include - -/* - * Coverage profiler. Compile with: - * gcc -Wall -shared -o mono-profiler-cov.so mono-cov.c `pkg-config --cflags --libs mono` - * Install the binary where the dynamic loader can find it (/usr/local/lib, for example, - * or set the env var LD_LIBRARY_PATH to the directory where the file is). - * Then run mono with: - * mono --profile=cov:yourassembly test_suite.exe - * mono --profile=cov:yourassembly/namespace test_suite.exe - */ - -struct _MonoProfiler { - GHashTable *hash; - char* assembly_name; - char* class_name; - MonoAssembly *assembly; - GList *bb_coverage; -}; - -static void -get_assembly (MonoAssembly* ass, MonoProfiler *prof) -{ - if (strcmp (prof->assembly_name, mono_image_get_name (mono_assembly_get_image (ass))) == 0) - prof->assembly = ass; -} - -static void -coverage_callback (MonoProfiler *prof, const MonoProfileCoverageEntry *entry) -{ - char* cmsg; - - if (entry->counter) - return; - - if (entry->filename) { - cmsg = g_strdup_printf ("offset 0x%04x (%s: line: %d, col: %d)", - entry->iloffset, entry->filename, entry->line, entry->col); - } else { - cmsg = g_strdup_printf ("offset 0x%04x", entry->iloffset); - } - prof->bb_coverage = g_list_append (prof->bb_coverage, cmsg); -} - -static void -check_partial_coverage (MonoProfiler *prof, MonoMethod *method) -{ - GList *tmp; - - mono_profiler_coverage_get (prof, method, coverage_callback); - if (prof->bb_coverage) { - char *name = mono_method_full_name (method, TRUE); - g_print ("Partial coverage: %s\n", name); - g_free (name); - for (tmp = prof->bb_coverage; tmp; tmp = tmp->next) { - g_print ("\t%s\n", (char*)tmp->data); - g_free (tmp->data); - } - g_list_free (prof->bb_coverage); - prof->bb_coverage = NULL; - } -} - -/* called at the end of the program */ -static void -cov_shutdown (MonoProfiler *prof) -{ - MonoImage *image; - MonoMethod *method; - int i; - char *name; - - mono_assembly_foreach ((GFunc)get_assembly, prof); - if (!prof->assembly) { - g_print ("Assembly '%s' was not loaded\n", prof->assembly_name); - return; - } - image = mono_assembly_get_image (prof->assembly); - for (i = 1; i <= mono_image_get_table_rows (image, MONO_TABLE_METHOD); ++i) { - MonoClass *klass; - method = mono_get_method (image, i | MONO_TOKEN_METHOD_DEF, NULL); - if (!method) - continue; - if ((mono_method_get_flags (method, NULL) & METHOD_ATTRIBUTE_ABSTRACT)) - continue; - /* FIXME: handle icalls, runtime calls and synchronized methods */ - if (prof->class_name && *prof->class_name) { - klass = mono_method_get_class (method); - if (!strstr (mono_class_get_name (klass), prof->class_name) && !strstr (mono_class_get_namespace (klass), prof->class_name)) - continue; - } - /*g_print ("check %s::%s, %p\n", method->klass->name, method->name, method);*/ - if (g_hash_table_lookup (prof->hash, method)) { - /* the method was executed: check it was fully covered */ - check_partial_coverage (prof, method); - continue; - } - name = mono_method_full_name (method, TRUE); - g_print ("Not covered: %s\n", name); - g_free (name); - } -} - -static void -cov_method_enter (MonoProfiler *prof, MonoMethod *method) -{ - /*g_print ("enter %s::%s, %p\n", method->klass->name, method->name, method);*/ - g_hash_table_insert (prof->hash, method, GINT_TO_POINTER (1)); -} - -static void -cov_method_leave (MonoProfiler *prof, MonoMethod *method) -{ -} - -static gboolean -cov_coverage_filter(MonoProfiler *prof, MonoMethod *method) -{ - return TRUE; -} - -void -mono_profiler_startup (const char *desc); - -/* the entry point */ -void -mono_profiler_startup (const char *desc) -{ - MonoProfiler *prof; - - prof = g_new0 (MonoProfiler, 1); - prof->hash = g_hash_table_new (NULL, NULL); - if (strncmp ("cov:", desc, 4) == 0 && desc [4]) { - char *cname; - prof->assembly_name = g_strdup (desc + 4); - cname = strchr (prof->assembly_name, '/'); - if (cname) { - *cname = 0; - prof->class_name = cname + 1; - } - } else { - prof->assembly_name = g_strdup ("mscorlib"); - } - - mono_profiler_install (prof, cov_shutdown); - - mono_profiler_install_enter_leave (cov_method_enter, cov_method_leave); - mono_profiler_install_coverage_filter (cov_coverage_filter); - mono_profiler_set_events (MONO_PROFILE_ENTER_LEAVE | MONO_PROFILE_COVERAGE); -} - - diff --git a/mono/profiler/mono-profiler-logging.c b/mono/profiler/mono-profiler-logging.c deleted file mode 100644 index 194bc9368d8..00000000000 --- a/mono/profiler/mono-profiler-logging.c +++ /dev/null @@ -1,5883 +0,0 @@ -/* - * mono-profiler-logging.c: Logging profiler for Mono. - * - * Author: - * Massimiliano Mantione (massi@ximian.com) - * - * Copyright 2008-2009 Novell, Inc (http://www.novell.com) - */ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include -#include -#include - -#define HAS_OPROFILE 0 - -#if (HAS_OPROFILE) -#include -#endif - -// Needed for heap analysis -extern gboolean mono_object_is_alive (MonoObject* obj); - -typedef enum { - MONO_PROFILER_FILE_BLOCK_KIND_INTRO = 1, - MONO_PROFILER_FILE_BLOCK_KIND_END = 2, - MONO_PROFILER_FILE_BLOCK_KIND_MAPPING = 3, - MONO_PROFILER_FILE_BLOCK_KIND_LOADED = 4, - MONO_PROFILER_FILE_BLOCK_KIND_UNLOADED = 5, - MONO_PROFILER_FILE_BLOCK_KIND_EVENTS = 6, - MONO_PROFILER_FILE_BLOCK_KIND_STATISTICAL = 7, - MONO_PROFILER_FILE_BLOCK_KIND_HEAP_DATA = 8, - MONO_PROFILER_FILE_BLOCK_KIND_HEAP_SUMMARY = 9, - MONO_PROFILER_FILE_BLOCK_KIND_DIRECTIVES = 10 -} MonoProfilerFileBlockKind; - -typedef enum { - MONO_PROFILER_DIRECTIVE_END = 0, - MONO_PROFILER_DIRECTIVE_ALLOCATIONS_CARRY_CALLER = 1, - MONO_PROFILER_DIRECTIVE_ALLOCATIONS_HAVE_STACK = 2, - MONO_PROFILER_DIRECTIVE_ALLOCATIONS_CARRY_ID = 3, - MONO_PROFILER_DIRECTIVE_LOADED_ELEMENTS_CARRY_ID = 4, - MONO_PROFILER_DIRECTIVE_CLASSES_CARRY_ASSEMBLY_ID = 5, - MONO_PROFILER_DIRECTIVE_METHODS_CARRY_WRAPPER_FLAG = 6, - MONO_PROFILER_DIRECTIVE_LAST -} MonoProfilerDirectives; - - -#define MONO_PROFILER_LOADED_EVENT_MODULE 1 -#define MONO_PROFILER_LOADED_EVENT_ASSEMBLY 2 -#define MONO_PROFILER_LOADED_EVENT_APPDOMAIN 4 -#define MONO_PROFILER_LOADED_EVENT_SUCCESS 8 -#define MONO_PROFILER_LOADED_EVENT_FAILURE 16 - -typedef enum { - MONO_PROFILER_EVENT_DATA_TYPE_OTHER = 0, - MONO_PROFILER_EVENT_DATA_TYPE_METHOD = 1, - MONO_PROFILER_EVENT_DATA_TYPE_CLASS = 2 -} MonoProfilerEventDataType; - -typedef struct _ProfilerEventData { - union { - gpointer address; - gsize number; - } data; - unsigned int data_type:2; - unsigned int code:4; - unsigned int kind:1; - unsigned int value:25; -} ProfilerEventData; - -#define EVENT_VALUE_BITS (25) -#define MAX_EVENT_VALUE ((1<>4) -#define ELF_ST_TYPE(i) ((i)&0xf) - - -typedef enum { - EI_MAG0 = 0, - EI_MAG1 = 1, - EI_MAG2 = 2, - EI_MAG3 = 3, - EI_CLASS = 4, - EI_DATA = 5 -} ElfIdentFields; - -typedef enum { - ELF_FILE_TYPE_NONE = 0, - ELF_FILE_TYPE_REL = 1, - ELF_FILE_TYPE_EXEC = 2, - ELF_FILE_TYPE_DYN = 3, - ELF_FILE_TYPE_CORE = 4 -} ElfFileType; - -typedef enum { - ELF_CLASS_NONE = 0, - ELF_CLASS_32 = 1, - ELF_CLASS_64 = 2 -} ElfIdentClass; - -typedef enum { - ELF_DATA_NONE = 0, - ELF_DATA_LSB = 1, - ELF_DATA_MSB = 2 -} ElfIdentData; - -typedef enum { - ELF_SHT_NULL = 0, - ELF_SHT_PROGBITS = 1, - ELF_SHT_SYMTAB = 2, - ELF_SHT_STRTAB = 3, - ELF_SHT_RELA = 4, - ELF_SHT_HASH = 5, - ELF_SHT_DYNAMIC = 6, - ELF_SHT_NOTE = 7, - ELF_SHT_NOBITS = 8, - ELF_SHT_REL = 9, - ELF_SHT_SHLIB = 10, - ELF_SHT_DYNSYM = 11 -} ElfSectionType; - -typedef enum { - ELF_STT_NOTYPE = 0, - ELF_STT_OBJECT = 1, - ELF_STT_FUNC = 2, - ELF_STT_SECTION = 3, - ELF_STT_FILE = 4 -} ElfSymbolType; - -typedef enum { - ELF_SHF_WRITE = 1, - ELF_SHF_ALLOC = 2, - ELF_SHF_EXECINSTR = 4, -} ElfSectionFlags; - -#define ELF_SHN_UNDEF 0 -#define ELF_SHN_LORESERVE 0xff00 -#define ELF_SHN_LOPROC 0xff00 -#define ELF_SHN_HIPROC 0xff1f -#define ELF_SHN_ABS 0xfff1 -#define ELF_SHN_COMMON 0xfff2 -#define ELF_SHN_HIRESERVE 0xffff -/* End of ELF definitions */ - -typedef struct _ProfilerExecutableFileSectionRegion { - ProfilerExecutableMemoryRegionData *region; - guint8 *section_address; - gsize section_offset; -} ProfilerExecutableFileSectionRegion; - -typedef struct _ProfilerExecutableFile { - guint32 reference_count; - - /* Used for mmap and munmap */ - int fd; - guint8 *data; - size_t length; - - /* File data */ - ElfHeader *header; - guint8 *symbols_start; - guint32 symbols_count; - guint32 symbol_size; - const char *symbols_string_table; - const char *main_string_table; - - ProfilerExecutableFileSectionRegion *section_regions; - - struct _ProfilerExecutableFile *next_new_file; -} ProfilerExecutableFile; - -typedef struct _ProfilerExecutableFiles { - GHashTable *table; - ProfilerExecutableFile *new_files; -} ProfilerExecutableFiles; - - -#define CLEANUP_WRITER_THREAD() do {profiler->writer_thread_terminated = TRUE;} while (0) -#define CHECK_WRITER_THREAD() (! profiler->writer_thread_terminated) - -#ifndef HOST_WIN32 -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -#define MUTEX_TYPE pthread_mutex_t -#define INITIALIZE_PROFILER_MUTEX() pthread_mutex_init (&(profiler->mutex), NULL) -#define DELETE_PROFILER_MUTEX() pthread_mutex_destroy (&(profiler->mutex)) -#define LOCK_PROFILER() do {/*LOG_WRITER_THREAD ("LOCK_PROFILER");*/ pthread_mutex_lock (&(profiler->mutex));} while (0) -#define UNLOCK_PROFILER() do {/*LOG_WRITER_THREAD ("UNLOCK_PROFILER");*/ pthread_mutex_unlock (&(profiler->mutex));} while (0) - -#define THREAD_TYPE pthread_t -#define CREATE_WRITER_THREAD(f) pthread_create (&(profiler->data_writer_thread), NULL, ((void*(*)(void*))f), NULL) -#define CREATE_USER_THREAD(f) pthread_create (&(profiler->user_thread), NULL, ((void*(*)(void*))f), NULL) -#define EXIT_THREAD() pthread_exit (NULL); -#define WAIT_WRITER_THREAD() do {\ - if (CHECK_WRITER_THREAD ()) {\ - pthread_join (profiler->data_writer_thread, NULL);\ - }\ -} while (0) -#define CURRENT_THREAD_ID() (gsize) pthread_self () - -#ifndef HAVE_KW_THREAD -static pthread_key_t pthread_profiler_key; -static pthread_once_t profiler_pthread_once = PTHREAD_ONCE_INIT; -static void -make_pthread_profiler_key (void) { - (void) pthread_key_create (&pthread_profiler_key, NULL); -} -#define LOOKUP_PROFILER_THREAD_DATA() ((ProfilerPerThreadData*) pthread_getspecific (pthread_profiler_key)) -#define SET_PROFILER_THREAD_DATA(x) (void) pthread_setspecific (pthread_profiler_key, (x)) -#define ALLOCATE_PROFILER_THREAD_DATA() (void) pthread_once (&profiler_pthread_once, make_pthread_profiler_key) -#define FREE_PROFILER_THREAD_DATA() (void) pthread_key_delete (pthread_profiler_key) -#endif - -#define EVENT_TYPE sem_t -#define WRITER_EVENT_INIT() do {\ - sem_init (&(profiler->enable_data_writer_event), 0, 0);\ - sem_init (&(profiler->wake_data_writer_event), 0, 0);\ - sem_init (&(profiler->done_data_writer_event), 0, 0);\ -} while (0) -#define WRITER_EVENT_DESTROY() do {\ - sem_destroy (&(profiler->enable_data_writer_event));\ - sem_destroy (&(profiler->wake_data_writer_event));\ - sem_destroy (&(profiler->done_data_writer_event));\ -} while (0) -#define WRITER_EVENT_WAIT() (void) sem_wait (&(profiler->wake_data_writer_event)) -#define WRITER_EVENT_RAISE() (void) sem_post (&(profiler->wake_data_writer_event)) -#define WRITER_EVENT_ENABLE_WAIT() (void) sem_wait (&(profiler->enable_data_writer_event)) -#define WRITER_EVENT_ENABLE_RAISE() (void) sem_post (&(profiler->enable_data_writer_event)) -#define WRITER_EVENT_DONE_WAIT() do {\ - if (CHECK_WRITER_THREAD ()) {\ - (void) sem_wait (&(profiler->done_data_writer_event));\ - }\ -} while (0) -#define WRITER_EVENT_DONE_RAISE() (void) sem_post (&(profiler->done_data_writer_event)) - -#if 0 -#define FILE_HANDLE_TYPE FILE* -#define OPEN_FILE() profiler->file = fopen (profiler->file_name, "wb"); -#define WRITE_BUFFER(b,s) fwrite ((b), 1, (s), profiler->file) -#define FLUSH_FILE() fflush (profiler->file) -#define CLOSE_FILE() fclose (profiler->file) -#else -#define FILE_HANDLE_TYPE int -#define OPEN_FILE() profiler->file = open (profiler->file_name, O_WRONLY|O_CREAT|O_TRUNC, 0664); -#define WRITE_BUFFER(b,s) write (profiler->file, (b), (s)) -#define FLUSH_FILE() fsync (profiler->file) -#define CLOSE_FILE() close (profiler->file) -#endif - -#else - -#include - -#define MUTEX_TYPE CRITICAL_SECTION -#define INITIALIZE_PROFILER_MUTEX() InitializeCriticalSection (&(profiler->mutex)) -#define DELETE_PROFILER_MUTEX() DeleteCriticalSection (&(profiler->mutex)) -#define LOCK_PROFILER() EnterCriticalSection (&(profiler->mutex)) -#define UNLOCK_PROFILER() LeaveCriticalSection (&(profiler->mutex)) - -#define THREAD_TYPE HANDLE -#define CREATE_WRITER_THREAD(f) CreateThread (NULL, (1*1024*1024), (f), NULL, 0, NULL); -#define EXIT_THREAD() ExitThread (0); -#define WAIT_WRITER_THREAD() do {\ - if (CHECK_WRITER_THREAD ()) {\ - WaitForSingleObject (profiler->data_writer_thread, INFINITE);\ - }\ -} while (0) -#define CURRENT_THREAD_ID() (gsize) GetCurrentThreadId () - -#ifndef HAVE_KW_THREAD -static MonoNativeTlsKey profiler_thread_id; -#define LOOKUP_PROFILER_THREAD_DATA() ((ProfilerPerThreadData*)mono_native_tls_get_value (profiler_thread_id)) -#define SET_PROFILER_THREAD_DATA(x) mono_native_tls_set_value (profiler_thread_id, (x)); -#define ALLOCATE_PROFILER_THREAD_DATA() mono_native_tls_alloc (profiler_thread_id, NULL) -#define FREE_PROFILER_THREAD_DATA() mono_native_tls_free (profiler_thread_id) -#endif - -#define EVENT_TYPE HANDLE -#define WRITER_EVENT_INIT() (void) do {\ - profiler->enable_data_writer_event = CreateEvent (NULL, FALSE, FALSE, NULL);\ - profiler->wake_data_writer_event = CreateEvent (NULL, FALSE, FALSE, NULL);\ - profiler->done_data_writer_event = CreateEvent (NULL, FALSE, FALSE, NULL);\ -} while (0) -#define WRITER_EVENT_DESTROY() CloseHandle (profiler->statistical_data_writer_event) -#define WRITER_EVENT_INIT() (void) do {\ - CloseHandle (profiler->enable_data_writer_event);\ - CloseHandle (profiler->wake_data_writer_event);\ - CloseHandle (profiler->done_data_writer_event);\ -} while (0) -#define WRITER_EVENT_WAIT() WaitForSingleObject (profiler->wake_data_writer_event, INFINITE) -#define WRITER_EVENT_RAISE() SetEvent (profiler->wake_data_writer_event) -#define WRITER_EVENT_ENABLE_WAIT() WaitForSingleObject (profiler->enable_data_writer_event, INFINITE) -#define WRITER_EVENT_ENABLE_RAISE() SetEvent (profiler->enable_data_writer_event) -#define WRITER_EVENT_DONE_WAIT() do {\ - if (CHECK_WRITER_THREAD ()) {\ - WaitForSingleObject (profiler->done_data_writer_event, INFINITE);\ - }\ -} while (0) -#define WRITER_EVENT_DONE_RAISE() SetEvent (profiler->done_data_writer_event) - -#define FILE_HANDLE_TYPE FILE* -#define OPEN_FILE() profiler->file = fopen (profiler->file_name, "wb"); -#define WRITE_BUFFER(b,s) fwrite ((b), 1, (s), profiler->file) -#define FLUSH_FILE() fflush (profiler->file) -#define CLOSE_FILE() fclose (profiler->file); - -#endif - -#ifdef HAVE_KW_THREAD -static __thread ProfilerPerThreadData * tls_profiler_per_thread_data; -#define LOOKUP_PROFILER_THREAD_DATA() ((ProfilerPerThreadData*) tls_profiler_per_thread_data) -#define SET_PROFILER_THREAD_DATA(x) tls_profiler_per_thread_data = (x) -#define ALLOCATE_PROFILER_THREAD_DATA() /* nop */ -#define FREE_PROFILER_THREAD_DATA() /* nop */ -#endif - -#define GET_PROFILER_THREAD_DATA(data) do {\ - ProfilerPerThreadData *_result = LOOKUP_PROFILER_THREAD_DATA ();\ - if (!_result) {\ - _result = profiler_per_thread_data_new (profiler->per_thread_buffer_size);\ - LOCK_PROFILER ();\ - _result->next = profiler->per_thread_data;\ - profiler->per_thread_data = _result;\ - UNLOCK_PROFILER ();\ - SET_PROFILER_THREAD_DATA (_result);\ - }\ - (data) = _result;\ -} while (0) - -#define PROFILER_FILE_WRITE_BUFFER_SIZE (profiler->write_buffer_size) -typedef struct _ProfilerFileWriteBuffer { - struct _ProfilerFileWriteBuffer *next; - guint8 buffer [MONO_ZERO_LEN_ARRAY]; -} ProfilerFileWriteBuffer; - -#define CHECK_PROFILER_ENABLED() do {\ - if (! profiler->profiler_enabled)\ - return;\ -} while (0) -struct _MonoProfiler { - MUTEX_TYPE mutex; - - MonoProfileFlags flags; - gboolean profiler_enabled; - char *file_name; - char *file_name_suffix; - FILE_HANDLE_TYPE file; - - guint64 start_time; - guint64 start_counter; - guint64 end_time; - guint64 end_counter; - - guint64 last_header_counter; - - MethodIdMapping *methods; - ClassIdMapping *classes; - - guint32 loaded_element_next_free_id; - GHashTable *loaded_assemblies; - GHashTable *loaded_modules; - GHashTable *loaded_appdomains; - - guint32 per_thread_buffer_size; - guint32 statistical_buffer_size; - ProfilerPerThreadData* per_thread_data; - ProfilerStatisticalData *statistical_data; - ProfilerStatisticalData *statistical_data_ready; - ProfilerStatisticalData *statistical_data_second_buffer; - int statistical_call_chain_depth; - MonoProfilerCallChainStrategy statistical_call_chain_strategy; - - ProfilerCodeChunks code_chunks; - - THREAD_TYPE data_writer_thread; - THREAD_TYPE user_thread; - EVENT_TYPE enable_data_writer_event; - EVENT_TYPE wake_data_writer_event; - EVENT_TYPE done_data_writer_event; - gboolean terminate_writer_thread; - gboolean writer_thread_terminated; - - ProfilerFileWriteBuffer *write_buffers; - ProfilerFileWriteBuffer *current_write_buffer; - int write_buffer_size; - int current_write_position; - int full_write_buffers; - - ProfilerHeapShotWriteJob *heap_shot_write_jobs; - ProfilerHeapShotHeapBuffers heap; - - int command_port; - - int dump_next_heap_snapshots; - gboolean heap_shot_was_requested; - guint32 garbage_collection_counter; - - ProfilerExecutableMemoryRegions *executable_regions; - ProfilerExecutableFiles executable_files; - - struct { -#if (HAS_OPROFILE) - gboolean oprofile; -#endif - gboolean jit_time; - gboolean unreachable_objects; - gboolean collection_summary; - gboolean report_gc_events; - gboolean heap_shot; - gboolean track_stack; - gboolean track_calls; - gboolean save_allocation_caller; - gboolean save_allocation_stack; - gboolean allocations_carry_id; - } action_flags; -}; -static MonoProfiler *profiler; - -static void -enable_profiler (void) { - profiler->profiler_enabled = TRUE; -} - -static void flush_everything (void); - -static void -disable_profiler (void) { - profiler->profiler_enabled = FALSE; - flush_everything (); -} - -static void -request_heap_snapshot (void) { - profiler->heap_shot_was_requested = TRUE; - mono_gc_collect (mono_gc_max_generation ()); -} - -#define DEBUG_LOAD_EVENTS 0 -#define DEBUG_MAPPING_EVENTS 0 -#define DEBUG_LOGGING_PROFILER 0 -#define DEBUG_HEAP_PROFILER 0 -#define DEBUG_CLASS_BITMAPS 0 -#define DEBUG_STATISTICAL_PROFILER 0 -#define DEBUG_WRITER_THREAD 0 -#define DEBUG_USER_THREAD 0 -#define DEBUG_FILE_WRITES 0 -#if (DEBUG_LOGGING_PROFILER || DEBUG_STATISTICAL_PROFILER || DEBUG_HEAP_PROFILER || DEBUG_WRITER_THREAD || DEBUG_FILE_WRITES) -#define LOG_WRITER_THREAD(m) printf ("WRITER-THREAD-LOG %s\n", m) -#else -#define LOG_WRITER_THREAD(m) -#endif -#if (DEBUG_LOGGING_PROFILER || DEBUG_STATISTICAL_PROFILER || DEBUG_HEAP_PROFILER || DEBUG_USER_THREAD || DEBUG_FILE_WRITES) -#define LOG_USER_THREAD(m) printf ("USER-THREAD-LOG %s\n", m) -#else -#define LOG_USER_THREAD(m) -#endif - -#if DEBUG_LOGGING_PROFILER -static int event_counter = 0; -#define EVENT_MARK() printf ("[EVENT:%d]", ++ event_counter) -#endif - -static void -thread_stack_initialize_empty (ProfilerThreadStack *stack) { - stack->capacity = 0; - stack->top = 0; - stack->last_saved_top = 0; - stack->last_written_frame = 0; - stack->stack = NULL; - stack->method_is_jitted = NULL; - stack->written_frames = NULL; -} - -static void -thread_stack_free (ProfilerThreadStack *stack) { - stack->capacity = 0; - stack->top = 0; - stack->last_saved_top = 0; - stack->last_written_frame = 0; - if (stack->stack != NULL) { - g_free (stack->stack); - stack->stack = NULL; - } - if (stack->method_is_jitted != NULL) { - g_free (stack->method_is_jitted); - stack->method_is_jitted = NULL; - } - if (stack->written_frames != NULL) { - g_free (stack->written_frames); - stack->written_frames = NULL; - } -} - -static void -thread_stack_initialize (ProfilerThreadStack *stack, guint32 capacity) { - stack->capacity = capacity; - stack->top = 0; - stack->last_saved_top = 0; - stack->last_written_frame = 0; - stack->stack = g_new0 (MonoMethod*, capacity); - stack->method_is_jitted = g_new0 (guint8, capacity); - stack->written_frames = g_new0 (guint32, capacity); -} - -static void -thread_stack_push_jitted (ProfilerThreadStack *stack, MonoMethod* method, gboolean method_is_jitted) { - if (stack->top >= stack->capacity) { - MonoMethod **old_stack = stack->stack; - guint8 *old_method_is_jitted = stack->method_is_jitted; - guint32 *old_written_frames = stack->written_frames; - guint32 top = stack->top; - guint32 last_saved_top = stack->last_saved_top; - guint32 last_written_frame = stack->last_written_frame; - thread_stack_initialize (stack, stack->capacity * 2); - memcpy (stack->stack, old_stack, top * sizeof (MonoMethod*)); - memcpy (stack->method_is_jitted, old_method_is_jitted, top * sizeof (guint8)); - memcpy (stack->written_frames, old_written_frames, top * sizeof (guint32)); - g_free (old_stack); - g_free (old_method_is_jitted); - g_free (old_written_frames); - stack->top = top; - stack->last_saved_top = last_saved_top; - stack->last_written_frame = last_written_frame; - } - stack->stack [stack->top] = method; - stack->method_is_jitted [stack->top] = method_is_jitted; - stack->top ++; -} - -static inline void -thread_stack_push (ProfilerThreadStack *stack, MonoMethod* method) { - thread_stack_push_jitted (stack, method, FALSE); -} - -static MonoMethod* -thread_stack_pop (ProfilerThreadStack *stack) { - if (stack->top > 0) { - stack->top --; - if (stack->last_saved_top > stack->top) { - stack->last_saved_top = stack->top; - } - return stack->stack [stack->top]; - } else { - return NULL; - } -} - -static MonoMethod* -thread_stack_top (ProfilerThreadStack *stack) { - if (stack->top > 0) { - return stack->stack [stack->top - 1]; - } else { - return NULL; - } -} - -static gboolean -thread_stack_top_is_jitted (ProfilerThreadStack *stack) { - if (stack->top > 0) { - return stack->method_is_jitted [stack->top - 1]; - } else { - return FALSE; - } -} - -static MonoMethod* -thread_stack_index_from_top (ProfilerThreadStack *stack, int index) { - if (stack->top > index) { - return stack->stack [stack->top - (index + 1)]; - } else { - return NULL; - } -} - -static gboolean -thread_stack_index_from_top_is_jitted (ProfilerThreadStack *stack, int index) { - if (stack->top > index) { - return stack->method_is_jitted [stack->top - (index + 1)]; - } else { - return FALSE; - } -} - -static inline void -thread_stack_push_safely (ProfilerThreadStack *stack, MonoMethod* method) { - if (stack->stack != NULL) { - thread_stack_push (stack, method); - } -} - -static inline void -thread_stack_push_jitted_safely (ProfilerThreadStack *stack, MonoMethod* method, gboolean method_is_jitted) { - if (stack->stack != NULL) { - thread_stack_push_jitted (stack, method, method_is_jitted); - } -} - -static inline int -thread_stack_count_unsaved_frames (ProfilerThreadStack *stack) { - int result = stack->top - stack->last_saved_top; - return (result > 0) ? result : 0; -} - -static inline int -thread_stack_get_last_written_frame (ProfilerThreadStack *stack) { - return stack->last_written_frame; -} - -static inline void -thread_stack_set_last_written_frame (ProfilerThreadStack *stack, int last_written_frame) { - stack->last_written_frame = last_written_frame; -} - -static inline guint32 -thread_stack_written_frame_at_index (ProfilerThreadStack *stack, int index) { - return stack->written_frames [index]; -} - -static inline void -thread_stack_write_frame_at_index (ProfilerThreadStack *stack, int index, guint32 method_id_and_is_jitted) { - stack->written_frames [index] = method_id_and_is_jitted; -} - -static ClassIdMappingElement* -class_id_mapping_element_get (MonoClass *klass) { - return g_hash_table_lookup (profiler->classes->table, (gconstpointer) klass); -} - -static MethodIdMappingElement* -method_id_mapping_element_get (MonoMethod *method) { - return g_hash_table_lookup (profiler->methods->table, (gconstpointer) method); -} - -#define BITS_TO_BYTES(v) do {\ - (v) += 7;\ - (v) &= ~7;\ - (v) >>= 3;\ -} while (0) - -static ClassIdMappingElement* -class_id_mapping_element_new (MonoClass *klass) { - ClassIdMappingElement *result = g_new (ClassIdMappingElement, 1); - - result->name = mono_type_full_name (mono_class_get_type (klass)); - result->klass = klass; - result->next_unwritten = profiler->classes->unwritten; - profiler->classes->unwritten = result; - result->id = profiler->classes->next_id; - profiler->classes->next_id ++; - - result->data.bitmap.compact = 0; - result->data.layout.slots = CLASS_LAYOUT_NOT_INITIALIZED; - result->data.layout.references = CLASS_LAYOUT_NOT_INITIALIZED; - - g_hash_table_insert (profiler->classes->table, klass, result); - -#if (DEBUG_MAPPING_EVENTS) - printf ("Created new CLASS mapping element \"%s\" (%p)[%d]\n", result->name, klass, result->id); -#endif - return result; -} - -static void -class_id_mapping_element_build_layout_bitmap (MonoClass *klass, ClassIdMappingElement *klass_id) { - MonoClass *parent_class = mono_class_get_parent (klass); - int number_of_reference_fields = 0; - int max_offset_of_reference_fields = 0; - ClassIdMappingElement *parent_id; - gpointer iter; - MonoClassField *field; - -#if (DEBUG_CLASS_BITMAPS) - printf ("class_id_mapping_element_build_layout_bitmap: building layout for class %s.%s: ", mono_class_get_namespace (klass), mono_class_get_name (klass)); -#endif - - if (parent_class != NULL) { - parent_id = class_id_mapping_element_get (parent_class); - g_assert (parent_id != NULL); - - if (parent_id->data.layout.slots == CLASS_LAYOUT_NOT_INITIALIZED) { -#if (DEBUG_CLASS_BITMAPS) - printf ("[recursively building bitmap for father class]\n"); -#endif - class_id_mapping_element_build_layout_bitmap (parent_class, parent_id); - } - } else { - parent_id = NULL; - } - - iter = NULL; - while ((field = mono_class_get_fields (klass, &iter)) != NULL) { - MonoType* field_type = mono_field_get_type (field); - // For now, skip static fields - if (mono_field_get_flags (field) & 0x0010 /*FIELD_ATTRIBUTE_STATIC*/) - continue; - - if (MONO_TYPE_IS_REFERENCE (field_type)) { - int field_offset = mono_field_get_offset (field) - sizeof (MonoObject); - if (field_offset > max_offset_of_reference_fields) { - max_offset_of_reference_fields = field_offset; - } - number_of_reference_fields ++; - } else { - MonoClass *field_class = mono_class_from_mono_type (field_type); - if (field_class && mono_class_is_valuetype (field_class)) { - ClassIdMappingElement *field_id = class_id_mapping_element_get (field_class); - g_assert (field_id != NULL); - - if (field_id->data.layout.slots == CLASS_LAYOUT_NOT_INITIALIZED) { - if (field_id != klass_id) { -#if (DEBUG_CLASS_BITMAPS) - printf ("[recursively building bitmap for field %s]\n", mono_field_get_name (field)); -#endif - class_id_mapping_element_build_layout_bitmap (field_class, field_id); - } else { -#if (DEBUG_CLASS_BITMAPS) - printf ("[breaking recursive bitmap build for field %s]", mono_field_get_name (field)); - -#endif - klass_id->data.bitmap.compact = 0; - klass_id->data.layout.slots = 0; - klass_id->data.layout.references = 0; - } - } - - if (field_id->data.layout.references > 0) { - int field_offset = mono_field_get_offset (field) - sizeof (MonoObject); - int max_offset_reference_in_field = (field_id->data.layout.slots - 1) * sizeof (gpointer); - - if ((field_offset + max_offset_reference_in_field) > max_offset_of_reference_fields) { - max_offset_of_reference_fields = field_offset + max_offset_reference_in_field; - } - - number_of_reference_fields += field_id->data.layout.references; - } - } - } - } - -#if (DEBUG_CLASS_BITMAPS) - printf ("[allocating bitmap for class %s.%s (references %d, max offset %d, slots %d)]", mono_class_get_namespace (klass), mono_class_get_name (klass), number_of_reference_fields, max_offset_of_reference_fields, (int)(max_offset_of_reference_fields / sizeof (gpointer)) + 1); -#endif - if ((number_of_reference_fields == 0) && ((parent_id == NULL) || (parent_id->data.layout.references == 0))) { -#if (DEBUG_CLASS_BITMAPS) - printf ("[no references at all]"); -#endif - klass_id->data.bitmap.compact = 0; - klass_id->data.layout.slots = 0; - klass_id->data.layout.references = 0; - } else { - if ((parent_id != NULL) && (parent_id->data.layout.references > 0)) { -#if (DEBUG_CLASS_BITMAPS) - printf ("[parent %s.%s has %d references in %d slots]", mono_class_get_namespace (parent_class), mono_class_get_name (parent_class), parent_id->data.layout.references, parent_id->data.layout.slots); -#endif - klass_id->data.layout.slots = parent_id->data.layout.slots; - klass_id->data.layout.references = parent_id->data.layout.references; - } else { -#if (DEBUG_CLASS_BITMAPS) - printf ("[no references from parent]"); -#endif - klass_id->data.layout.slots = 0; - klass_id->data.layout.references = 0; - } - - if (number_of_reference_fields > 0) { - klass_id->data.layout.slots += ((max_offset_of_reference_fields / sizeof (gpointer)) + 1); - klass_id->data.layout.references += number_of_reference_fields; -#if (DEBUG_CLASS_BITMAPS) - printf ("[adding data, going to %d references in %d slots]", klass_id->data.layout.references, klass_id->data.layout.slots); -#endif - } - - if (klass_id->data.layout.slots <= CLASS_LAYOUT_PACKED_BITMAP_SIZE) { -#if (DEBUG_CLASS_BITMAPS) - printf ("[zeroing bitmap]"); -#endif - klass_id->data.bitmap.compact = 0; - if ((parent_id != NULL) && (parent_id->data.layout.references > 0)) { -#if (DEBUG_CLASS_BITMAPS) - printf ("[copying compact father bitmap]"); -#endif - klass_id->data.bitmap.compact = parent_id->data.bitmap.compact; - } - } else { - int size_of_bitmap = klass_id->data.layout.slots; - BITS_TO_BYTES (size_of_bitmap); -#if (DEBUG_CLASS_BITMAPS) - printf ("[allocating %d bytes for bitmap]", size_of_bitmap); -#endif - klass_id->data.bitmap.extended = g_malloc0 (size_of_bitmap); - if ((parent_id != NULL) && (parent_id->data.layout.references > 0)) { - int size_of_father_bitmap = parent_id->data.layout.slots; - if (size_of_father_bitmap <= CLASS_LAYOUT_PACKED_BITMAP_SIZE) { - int father_slot; -#if (DEBUG_CLASS_BITMAPS) - printf ("[copying %d bits from father bitmap]", size_of_father_bitmap); -#endif - for (father_slot = 0; father_slot < size_of_father_bitmap; father_slot ++) { - if (parent_id->data.bitmap.compact & (((guint64)1) << father_slot)) { - klass_id->data.bitmap.extended [father_slot >> 3] |= (1 << (father_slot & 7)); - } - } - } else { - BITS_TO_BYTES (size_of_father_bitmap); -#if (DEBUG_CLASS_BITMAPS) - printf ("[copying %d bytes from father bitmap]", size_of_father_bitmap); -#endif - memcpy (klass_id->data.bitmap.extended, parent_id->data.bitmap.extended, size_of_father_bitmap); - } - } - } - } - -#if (DEBUG_CLASS_BITMAPS) - printf ("[starting filling iteration]\n"); -#endif - iter = NULL; - while ((field = mono_class_get_fields (klass, &iter)) != NULL) { - MonoType* field_type = mono_field_get_type (field); - // For now, skip static fields - if (mono_field_get_flags (field) & 0x0010 /*FIELD_ATTRIBUTE_STATIC*/) - continue; - -#if (DEBUG_CLASS_BITMAPS) - printf ("[Working on field %s]", mono_field_get_name (field)); -#endif - if (MONO_TYPE_IS_REFERENCE (field_type)) { - int field_offset = mono_field_get_offset (field) - sizeof (MonoObject); - int field_slot; - g_assert ((field_offset % sizeof (gpointer)) == 0); - field_slot = field_offset / sizeof (gpointer); - if (klass_id->data.layout.slots <= CLASS_LAYOUT_PACKED_BITMAP_SIZE) { - klass_id->data.bitmap.compact |= (((guint64)1) << field_slot); - } else { - klass_id->data.bitmap.extended [field_slot >> 3] |= (1 << (field_slot & 7)); - } -#if (DEBUG_CLASS_BITMAPS) - printf ("[reference at offset %d, slot %d]", field_offset, field_slot); -#endif - } else { - MonoClass *field_class = mono_class_from_mono_type (field_type); - if (field_class && mono_class_is_valuetype (field_class)) { - ClassIdMappingElement *field_id = class_id_mapping_element_get (field_class); - int field_offset; - int field_slot; - - g_assert (field_id != NULL); - field_offset = mono_field_get_offset (field) - sizeof (MonoObject); - g_assert ((field_id->data.layout.references == 0) || ((field_offset % sizeof (gpointer)) == 0)); - field_slot = field_offset / sizeof (gpointer); -#if (DEBUG_CLASS_BITMAPS) - printf ("[value type at offset %d, slot %d, with %d references in %d slots]", field_offset, field_slot, field_id->data.layout.references, field_id->data.layout.slots); -#endif - - if (field_id->data.layout.references > 0) { - int sub_field_slot; - if (field_id->data.layout.slots <= CLASS_LAYOUT_PACKED_BITMAP_SIZE) { - for (sub_field_slot = 0; sub_field_slot < field_id->data.layout.slots; sub_field_slot ++) { - if (field_id->data.bitmap.compact & (((guint64)1) << sub_field_slot)) { - int actual_slot = field_slot + sub_field_slot; - if (klass_id->data.layout.slots <= CLASS_LAYOUT_PACKED_BITMAP_SIZE) { - klass_id->data.bitmap.compact |= (((guint64)1) << actual_slot); - } else { - klass_id->data.bitmap.extended [actual_slot >> 3] |= (1 << (actual_slot & 7)); - } - } - } - } else { - for (sub_field_slot = 0; sub_field_slot < field_id->data.layout.slots; sub_field_slot ++) { - if (field_id->data.bitmap.extended [sub_field_slot >> 3] & (1 << (sub_field_slot & 7))) { - int actual_slot = field_slot + sub_field_slot; - if (klass_id->data.layout.slots <= CLASS_LAYOUT_PACKED_BITMAP_SIZE) { - klass_id->data.bitmap.compact |= (((guint64)1) << actual_slot); - } else { - klass_id->data.bitmap.extended [actual_slot >> 3] |= (1 << (actual_slot & 7)); - } - } - } - } - } - } - } - } -#if (DEBUG_CLASS_BITMAPS) - do { - int slot; - printf ("\nLayot of class \"%s.%s\": references %d, slots %d, bitmap {", mono_class_get_namespace (klass), mono_class_get_name (klass), klass_id->data.layout.references, klass_id->data.layout.slots); - for (slot = 0; slot < klass_id->data.layout.slots; slot ++) { - if (klass_id->data.layout.slots <= CLASS_LAYOUT_PACKED_BITMAP_SIZE) { - if (klass_id->data.bitmap.compact & (((guint64)1) << slot)) { - printf (" 1"); - } else { - printf (" 0"); - } - } else { - if (klass_id->data.bitmap.extended [slot >> 3] & (1 << (slot & 7))) { - printf (" 1"); - } else { - printf (" 0"); - } -; } - - } - printf (" }\n"); - - } while (0); -#endif -} - -static MethodIdMappingElement* -method_id_mapping_element_new (MonoMethod *method) { - MethodIdMappingElement *result = g_new (MethodIdMappingElement, 1); - char *signature = mono_signature_get_desc (mono_method_signature (method), TRUE); - - result->name = g_strdup_printf ("%s (%s)", mono_method_get_name (method), signature); - g_free (signature); - result->method = method; - result->next_unwritten = profiler->methods->unwritten; - profiler->methods->unwritten = result; - result->id = profiler->methods->next_id; - profiler->methods->next_id ++; - g_hash_table_insert (profiler->methods->table, method, result); - - result->data.code_start = NULL; - result->data.code_size = 0; - -#if (DEBUG_MAPPING_EVENTS) - printf ("Created new METHOD mapping element \"%s\" (%p)[%d]\n", result->name, method, result->id); -#endif - return result; -} - - -static void -method_id_mapping_element_destroy (gpointer element) { - MethodIdMappingElement *e = (MethodIdMappingElement*) element; - if (e->name) - g_free (e->name); - g_free (element); -} - -static void -class_id_mapping_element_destroy (gpointer element) { - ClassIdMappingElement *e = (ClassIdMappingElement*) element; - if (e->name) - g_free (e->name); - if ((e->data.layout.slots != CLASS_LAYOUT_NOT_INITIALIZED) && (e->data.layout.slots > CLASS_LAYOUT_PACKED_BITMAP_SIZE)) - g_free (e->data.bitmap.extended); - g_free (element); -} - -static MethodIdMapping* -method_id_mapping_new (void) { - MethodIdMapping *result = g_new (MethodIdMapping, 1); - //result->table = g_hash_table_new_full (mono_aligned_addr_hash, NULL, NULL, method_id_mapping_element_destroy); - result->table = g_hash_table_new_full (g_direct_hash, NULL, NULL, method_id_mapping_element_destroy); - result->unwritten = NULL; - result->next_id = 1; - return result; -} - -static ClassIdMapping* -class_id_mapping_new (void) { - ClassIdMapping *result = g_new (ClassIdMapping, 1); - //result->table = g_hash_table_new_full (mono_aligned_addr_hash, NULL, NULL, class_id_mapping_element_destroy); - result->table = g_hash_table_new_full (g_direct_hash, NULL, NULL, class_id_mapping_element_destroy); - result->unwritten = NULL; - result->next_id = 1; - return result; -} - -static void -method_id_mapping_destroy (MethodIdMapping *map) { - g_hash_table_destroy (map->table); - g_free (map); -} - -static void -class_id_mapping_destroy (ClassIdMapping *map) { - g_hash_table_destroy (map->table); - g_free (map); -} - -#if (DEBUG_LOAD_EVENTS) -static void -print_load_event (const char *event_name, GHashTable *table, gpointer item, LoadedElement *element); -#endif - -static LoadedElement* -loaded_element_load_start (GHashTable *table, gpointer item) { - LoadedElement *element = g_new0 (LoadedElement, 1); - element->id = profiler->loaded_element_next_free_id; - profiler->loaded_element_next_free_id ++; -#if (DEBUG_LOAD_EVENTS) - print_load_event ("LOAD START", table, item, element); -#endif - MONO_PROFILER_GET_CURRENT_COUNTER (element->load_start_counter); - g_hash_table_insert (table, item, element); - return element; -} - -static LoadedElement* -loaded_element_load_end (GHashTable *table, gpointer item, char *name) { - LoadedElement *element = g_hash_table_lookup (table, item); -#if (DEBUG_LOAD_EVENTS) - print_load_event ("LOAD END", table, item, element); -#endif - g_assert (element != NULL); - MONO_PROFILER_GET_CURRENT_COUNTER (element->load_end_counter); - element->name = name; - element->loaded = TRUE; - return element; -} - -static LoadedElement* -loaded_element_unload_start (GHashTable *table, gpointer item) { - LoadedElement *element = g_hash_table_lookup (table, item); -#if (DEBUG_LOAD_EVENTS) - print_load_event ("UNLOAD START", table, item, element); -#endif - g_assert (element != NULL); - MONO_PROFILER_GET_CURRENT_COUNTER (element->unload_start_counter); - return element; -} - -static LoadedElement* -loaded_element_unload_end (GHashTable *table, gpointer item) { - LoadedElement *element = g_hash_table_lookup (table, item); -#if (DEBUG_LOAD_EVENTS) - print_load_event ("UNLOAD END", table, item, element); -#endif - g_assert (element != NULL); - MONO_PROFILER_GET_CURRENT_COUNTER (element->unload_end_counter); - element->unloaded = TRUE; - return element; -} - -static LoadedElement* -loaded_element_find (GHashTable *table, gpointer item) { - LoadedElement *element = g_hash_table_lookup (table, item); - return element; -} - -static guint32 -loaded_element_get_id (GHashTable *table, gpointer item) { - LoadedElement *element = loaded_element_find (table, item); - if (element != NULL) { - return element->id; - } else { - return 0; - } -} - -static void -loaded_element_destroy (gpointer element) { - if (((LoadedElement*)element)->name) - g_free (((LoadedElement*)element)->name); - g_free (element); -} - -#if (DEBUG_LOAD_EVENTS) -static void -print_load_event (const char *event_name, GHashTable *table, gpointer item, LoadedElement *element) { - const char* item_name; - char* item_info; - - if (table == profiler->loaded_assemblies) { - //item_info = g_strdup_printf("ASSEMBLY %p (dynamic %d)", item, mono_image_is_dynamic (mono_assembly_get_image((MonoAssembly*)item))); - item_info = g_strdup_printf("ASSEMBLY %p", item); - } else if (table == profiler->loaded_modules) { - //item_info = g_strdup_printf("MODULE %p (dynamic %d)", item, mono_image_is_dynamic ((MonoImage*)item)); - item_info = g_strdup_printf("MODULE %p", item); - } else if (table == profiler->loaded_appdomains) { - item_info = g_strdup_printf("APPDOMAIN %p (id %d)", item, mono_domain_get_id ((MonoDomain*)item)); - } else { - item_info = NULL; - g_assert_not_reached (); - } - - if (element != NULL) { - item_name = element->name; - } else { - item_name = ""; - } - - printf ("%s EVENT for %s (%s [id %d])\n", event_name, item_info, item_name, element->id); - g_free (item_info); -} -#endif - -static void -profiler_heap_shot_object_buffers_destroy (ProfilerHeapShotObjectBuffer *buffer) { - while (buffer != NULL) { - ProfilerHeapShotObjectBuffer *next = buffer->next; -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_object_buffers_destroy: destroyed buffer %p (%p-%p)\n", buffer, & (buffer->buffer [0]), buffer->end); -#endif - g_free (buffer); - buffer = next; - } -} - -static ProfilerHeapShotObjectBuffer* -profiler_heap_shot_object_buffer_new (ProfilerPerThreadData *data) { - ProfilerHeapShotObjectBuffer *buffer; - ProfilerHeapShotObjectBuffer *result = g_new (ProfilerHeapShotObjectBuffer, 1); - result->next_free_slot = & (result->buffer [0]); - result->end = & (result->buffer [PROFILER_HEAP_SHOT_OBJECT_BUFFER_SIZE]); - result->first_unprocessed_slot = & (result->buffer [0]); - result->next = data->heap_shot_object_buffers; - data->heap_shot_object_buffers = result; -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_object_buffer_new: created buffer %p (%p-%p)\n", result, result->next_free_slot, result->end); -#endif - for (buffer = result; buffer != NULL; buffer = buffer->next) { - ProfilerHeapShotObjectBuffer *last = buffer->next; - if ((last != NULL) && (last->first_unprocessed_slot == last->end)) { - buffer->next = NULL; - profiler_heap_shot_object_buffers_destroy (last); - } - } - - return result; -} - -static ProfilerHeapShotWriteJob* -profiler_heap_shot_write_job_new (gboolean heap_shot_was_requested, gboolean dump_heap_data, guint32 collection) { - ProfilerHeapShotWriteJob *job = g_new (ProfilerHeapShotWriteJob, 1); - job->next = NULL; - job->next_unwritten = NULL; - - if (profiler->action_flags.unreachable_objects || dump_heap_data) { - job->buffers = g_new (ProfilerHeapShotWriteBuffer, 1); - job->buffers->next = NULL; - job->last_next = & (job->buffers->next); - job->start = & (job->buffers->buffer [0]); - job->cursor = job->start; - job->end = & (job->buffers->buffer [PROFILER_HEAP_SHOT_WRITE_BUFFER_SIZE]); - } else { - job->buffers = NULL; - job->last_next = NULL; - job->start = NULL; - job->cursor = NULL; - job->end = NULL; - } - job->full_buffers = 0; - - if (profiler->action_flags.collection_summary) { - job->summary.capacity = profiler->classes->next_id; - job->summary.per_class_data = g_new0 (ProfilerHeapShotClassSummary, job->summary.capacity); - } else { - job->summary.capacity = 0; - job->summary.per_class_data = NULL; - } - - job->heap_shot_was_requested = heap_shot_was_requested; - job->collection = collection; - job->dump_heap_data = dump_heap_data; -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_job_new: created job %p with buffer %p(%p-%p) (collection %d, dump %d)\n", job, job->buffers, job->start, job->end, collection, dump_heap_data); -#endif - return job; -} - -static gboolean -profiler_heap_shot_write_job_has_data (ProfilerHeapShotWriteJob *job) { - return ((job->buffers != NULL) || (job->summary.capacity > 0)); -} - -static void -profiler_heap_shot_write_job_add_buffer (ProfilerHeapShotWriteJob *job, gpointer value) { - ProfilerHeapShotWriteBuffer *buffer = g_new (ProfilerHeapShotWriteBuffer, 1); - buffer->next = NULL; - *(job->last_next) = buffer; - job->last_next = & (buffer->next); - job->full_buffers ++; - buffer->buffer [0] = value; - job->start = & (buffer->buffer [0]); - job->cursor = & (buffer->buffer [1]); - job->end = & (buffer->buffer [PROFILER_HEAP_SHOT_WRITE_BUFFER_SIZE]); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_job_add_buffer: in job %p, added buffer %p(%p-%p) with value %p at address %p (cursor now %p)\n", job, buffer, job->start, job->end, value, &(buffer->buffer [0]), job->cursor); - do { - ProfilerHeapShotWriteBuffer *current_buffer; - for (current_buffer = job->buffers; current_buffer != NULL; current_buffer = current_buffer->next) { - printf ("profiler_heap_shot_write_job_add_buffer: now job %p has buffer %p\n", job, current_buffer); - } - } while (0); -#endif -} - -static void -profiler_heap_shot_write_job_free_buffers (ProfilerHeapShotWriteJob *job) { - ProfilerHeapShotWriteBuffer *buffer = job->buffers; - - while (buffer != NULL) { - ProfilerHeapShotWriteBuffer *next = buffer->next; -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_job_free_buffers: in job %p, freeing buffer %p\n", job, buffer); -#endif - g_free (buffer); - buffer = next; - } - - job->buffers = NULL; - - if (job->summary.per_class_data != NULL) { - g_free (job->summary.per_class_data); - job->summary.per_class_data = NULL; - } - job->summary.capacity = 0; -} - -static void -profiler_heap_shot_write_block (ProfilerHeapShotWriteJob *job); - -static void -profiler_process_heap_shot_write_jobs (void) { - gboolean done = FALSE; - - while (!done) { - ProfilerHeapShotWriteJob *current_job = profiler->heap_shot_write_jobs; - ProfilerHeapShotWriteJob *previous_job = NULL; - ProfilerHeapShotWriteJob *next_job; - - done = TRUE; - while (current_job != NULL) { - next_job = current_job->next_unwritten; - - if (next_job != NULL) { - if (profiler_heap_shot_write_job_has_data (current_job)) { - done = FALSE; - } - if (! profiler_heap_shot_write_job_has_data (next_job)) { - current_job->next_unwritten = NULL; - next_job = NULL; - } - } else { - if (profiler_heap_shot_write_job_has_data (current_job)) { - LOG_WRITER_THREAD ("profiler_process_heap_shot_write_jobs: writing..."); - profiler_heap_shot_write_block (current_job); - LOG_WRITER_THREAD ("profiler_process_heap_shot_write_jobs: done"); - if (previous_job != NULL) { - previous_job->next_unwritten = NULL; - } - } - } - - previous_job = current_job; - current_job = next_job; - } - } -} - -static void -profiler_free_heap_shot_write_jobs (void) { - ProfilerHeapShotWriteJob *current_job = profiler->heap_shot_write_jobs; - ProfilerHeapShotWriteJob *next_job; - - if (current_job != NULL) { - while (current_job->next_unwritten != NULL) { -#if DEBUG_HEAP_PROFILER - printf ("profiler_free_heap_shot_write_jobs: job %p must not be freed\n", current_job); -#endif - current_job = current_job->next_unwritten; - } - - next_job = current_job->next; - current_job->next = NULL; - current_job = next_job; - - while (current_job != NULL) { -#if DEBUG_HEAP_PROFILER - printf ("profiler_free_heap_shot_write_jobs: job %p will be freed\n", current_job); -#endif - next_job = current_job->next; - profiler_heap_shot_write_job_free_buffers (current_job); - g_free (current_job); - current_job = next_job; - } - } -} - -static void -profiler_destroy_heap_shot_write_jobs (void) { - ProfilerHeapShotWriteJob *current_job = profiler->heap_shot_write_jobs; - ProfilerHeapShotWriteJob *next_job; - - while (current_job != NULL) { - next_job = current_job->next; - profiler_heap_shot_write_job_free_buffers (current_job); - g_free (current_job); - current_job = next_job; - } -} - -static void -profiler_add_heap_shot_write_job (ProfilerHeapShotWriteJob *job) { - job->next = profiler->heap_shot_write_jobs; - job->next_unwritten = job->next; - profiler->heap_shot_write_jobs = job; -#if DEBUG_HEAP_PROFILER - printf ("profiler_add_heap_shot_write_job: added job %p\n", job); -#endif -} - -#if DEBUG_HEAP_PROFILER -#define STORE_ALLOCATED_OBJECT_MESSAGE1(d,o) printf ("STORE_ALLOCATED_OBJECT[TID %ld]: storing object %p at address %p\n", (d)->thread_id, (o), (d)->heap_shot_object_buffers->next_free_slot) -#define STORE_ALLOCATED_OBJECT_MESSAGE2(d,o) printf ("STORE_ALLOCATED_OBJECT[TID %ld]: storing object %p at address %p in new buffer %p\n", (d)->thread_id, (o), buffer->next_free_slot, buffer) -#else -#define STORE_ALLOCATED_OBJECT_MESSAGE1(d,o) -#define STORE_ALLOCATED_OBJECT_MESSAGE2(d,o) -#endif -#define STORE_ALLOCATED_OBJECT(d,o) do {\ - if ((d)->heap_shot_object_buffers->next_free_slot < (d)->heap_shot_object_buffers->end) {\ - STORE_ALLOCATED_OBJECT_MESSAGE1 ((d), (o));\ - *((d)->heap_shot_object_buffers->next_free_slot) = (o);\ - (d)->heap_shot_object_buffers->next_free_slot ++;\ - } else {\ - ProfilerHeapShotObjectBuffer *buffer = profiler_heap_shot_object_buffer_new (d);\ - STORE_ALLOCATED_OBJECT_MESSAGE2 ((d), (o));\ - *((buffer)->next_free_slot) = (o);\ - (buffer)->next_free_slot ++;\ - }\ -} while (0) - -static ProfilerPerThreadData* -profiler_per_thread_data_new (guint32 buffer_size) -{ - ProfilerPerThreadData *data = g_new (ProfilerPerThreadData, 1); - - data->events = g_new0 (ProfilerEventData, buffer_size); - data->next_free_event = data->events; - data->next_unreserved_event = data->events; - data->end_event = data->events + (buffer_size - 1); - data->first_unwritten_event = data->events; - data->first_unmapped_event = data->events; - MONO_PROFILER_GET_CURRENT_COUNTER (data->start_event_counter); - data->last_event_counter = data->start_event_counter; - data->thread_id = CURRENT_THREAD_ID (); - data->heap_shot_object_buffers = NULL; - if ((profiler->action_flags.unreachable_objects == TRUE) || - (profiler->action_flags.heap_shot == TRUE) || - (profiler->action_flags.collection_summary == TRUE)) { - profiler_heap_shot_object_buffer_new (data); - } - if (profiler->action_flags.track_stack) { - thread_stack_initialize (&(data->stack), 64); - } else { - thread_stack_initialize_empty (&(data->stack)); - } - return data; -} - -static void -profiler_per_thread_data_destroy (ProfilerPerThreadData *data) { - g_free (data->events); - profiler_heap_shot_object_buffers_destroy (data->heap_shot_object_buffers); - thread_stack_free (&(data->stack)); - g_free (data); -} - -static ProfilerStatisticalData* -profiler_statistical_data_new (MonoProfiler *profiler) { - int buffer_size = profiler->statistical_buffer_size * (profiler->statistical_call_chain_depth + 1); - ProfilerStatisticalData *data = g_new (ProfilerStatisticalData, 1); - - data->hits = g_new0 (ProfilerStatisticalHit, buffer_size); - data->next_free_index = 0; - data->end_index = profiler->statistical_buffer_size; - data->first_unwritten_index = 0; - - return data; -} - -static void -profiler_statistical_data_destroy (ProfilerStatisticalData *data) { - g_free (data->hits); - g_free (data); -} - -static ProfilerCodeBufferArray* -profiler_code_buffer_array_new (ProfilerCodeBufferArray *child) { - ProfilerCodeBufferArray *result = g_new0 (ProfilerCodeBufferArray, 1); - if (child == NULL) { - result->level = 0; - } else { - result->level = child->level + 1; - result->number_of_buffers = 1; - result->buffers [0].info.data.sub_buffers = child; - result->buffers [0].start = child->buffers [0].start; - result->buffers [0].end = child->buffers [child->number_of_buffers - 1].end; - } - return result; -} - -static void -profiler_code_buffer_array_destroy (ProfilerCodeBufferArray *buffers) { - if (buffers->level > 0) { - int i; - for (i = 0; i < buffers->number_of_buffers; i++) { - ProfilerCodeBufferArray *sub_buffers = buffers->buffers [i].info.data.sub_buffers; - profiler_code_buffer_array_destroy (sub_buffers); - } - } - g_free (buffers); -} - -static gboolean -profiler_code_buffer_array_is_full (ProfilerCodeBufferArray *buffers) { - while (buffers->level > 0) { - ProfilerCodeBufferArray *next; - if (buffers->number_of_buffers < PROFILER_CODE_BUFFER_ARRAY_SIZE) { - return FALSE; - } - next = buffers->buffers [PROFILER_CODE_BUFFER_ARRAY_SIZE - 1].info.data.sub_buffers; - if (next->level < (buffers->level - 1)) { - return FALSE; - } - buffers = next; - } - return (buffers->number_of_buffers == PROFILER_CODE_BUFFER_ARRAY_SIZE); -} - -static ProfilerCodeBufferArray* -profiler_code_buffer_add (ProfilerCodeBufferArray *buffers, gpointer *buffer, int size, MonoProfilerCodeBufferType type, void *data) { - if (buffers == NULL) { - buffers = profiler_code_buffer_array_new (NULL); - } - - if (profiler_code_buffer_array_is_full (buffers)) { - ProfilerCodeBufferArray *new_slot = profiler_code_buffer_add (NULL, buffer, size, type, data); - buffers = profiler_code_buffer_array_new (buffers); - buffers->buffers [buffers->number_of_buffers].info.data.sub_buffers = new_slot; - buffers->buffers [buffers->number_of_buffers].start = new_slot->buffers [0].start; - buffers->buffers [buffers->number_of_buffers].end = new_slot->buffers [new_slot->number_of_buffers - 1].end; - buffers->number_of_buffers ++; - } else if (buffers->level > 0) { - ProfilerCodeBufferArray *new_slot = profiler_code_buffer_add (buffers->buffers [buffers->number_of_buffers - 1].info.data.sub_buffers, buffer, size, type, data); - buffers->buffers [buffers->number_of_buffers - 1].info.data.sub_buffers = new_slot; - buffers->buffers [buffers->number_of_buffers - 1].start = new_slot->buffers [0].start; - buffers->buffers [buffers->number_of_buffers - 1].end = new_slot->buffers [new_slot->number_of_buffers - 1].end; - } else { - buffers->buffers [buffers->number_of_buffers].start = buffer; - buffers->buffers [buffers->number_of_buffers].end = (((guint8*) buffer) + size); - buffers->buffers [buffers->number_of_buffers].info.type = type; - switch (type) { - case MONO_PROFILER_CODE_BUFFER_UNKNOWN: - buffers->buffers [buffers->number_of_buffers].info.data.data = NULL; - break; - case MONO_PROFILER_CODE_BUFFER_METHOD: - buffers->buffers [buffers->number_of_buffers].info.data.method = data; - break; - default: - buffers->buffers [buffers->number_of_buffers].info.type = MONO_PROFILER_CODE_BUFFER_UNKNOWN; - buffers->buffers [buffers->number_of_buffers].info.data.data = NULL; - } - buffers->number_of_buffers ++; - } - return buffers; -} - -static ProfilerCodeBuffer* -profiler_code_buffer_find (ProfilerCodeBufferArray *buffers, gpointer *address) { - if (buffers != NULL) { - ProfilerCodeBuffer *result = NULL; - do { - int low = 0; - int high = buffers->number_of_buffers - 1; - - while (high != low) { - int middle = low + ((high - low) >> 1); - - if ((guint8*) address < (guint8*) buffers->buffers [low].start) { - return NULL; - } - if ((guint8*) address >= (guint8*) buffers->buffers [high].end) { - return NULL; - } - - if ((guint8*) address < (guint8*) buffers->buffers [middle].start) { - high = middle - 1; - if (high < low) { - high = low; - } - } else if ((guint8*) address >= (guint8*) buffers->buffers [middle].end) { - low = middle + 1; - if (low > high) { - low = high; - } - } else { - high = middle; - low = middle; - } - } - - if (((guint8*) address >= (guint8*) buffers->buffers [low].start) && ((guint8*) address < (guint8*) buffers->buffers [low].end)) { - if (buffers->level == 0) { - result = & (buffers->buffers [low]); - } else { - buffers = buffers->buffers [low].info.data.sub_buffers; - } - } else { - return NULL; - } - } while (result == NULL); - return result; - } else { - return NULL; - } -} - -static void -profiler_code_chunk_initialize (ProfilerCodeChunk *chunk, gpointer memory, gsize size) { - chunk->buffers = profiler_code_buffer_array_new (NULL); - chunk->destroyed = FALSE; - chunk->start = memory; - chunk->end = ((guint8*)memory) + size; -} - -static void -profiler_code_chunk_cleanup (ProfilerCodeChunk *chunk) { - if (chunk->buffers != NULL) { - profiler_code_buffer_array_destroy (chunk->buffers); - chunk->buffers = NULL; - } - chunk->start = NULL; - chunk->end = NULL; -} - -static void -profiler_code_chunks_initialize (ProfilerCodeChunks *chunks) { - chunks->capacity = 32; - chunks->chunks = g_new0 (ProfilerCodeChunk, 32); - chunks->number_of_chunks = 0; -} - -static void -profiler_code_chunks_cleanup (ProfilerCodeChunks *chunks) { - int i; - for (i = 0; i < chunks->number_of_chunks; i++) { - profiler_code_chunk_cleanup (& (chunks->chunks [i])); - } - chunks->capacity = 0; - chunks->number_of_chunks = 0; - g_free (chunks->chunks); - chunks->chunks = NULL; -} - -static int -compare_code_chunks (const void* c1, const void* c2) { - ProfilerCodeChunk *chunk1 = (ProfilerCodeChunk*) c1; - ProfilerCodeChunk *chunk2 = (ProfilerCodeChunk*) c2; - return ((guint8*) chunk1->end < (guint8*) chunk2->start) ? -1 : (((guint8*) chunk1->start >= (guint8*) chunk2->end) ? 1 : 0); -} - -static int -compare_address_and_code_chunk (const void* a, const void* c) { - gpointer address = (gpointer) a; - ProfilerCodeChunk *chunk = (ProfilerCodeChunk*) c; - return ((guint8*) address < (guint8*) chunk->start) ? -1 : (((guint8*) address >= (guint8*) chunk->end) ? 1 : 0); -} - -static void -profiler_code_chunks_sort (ProfilerCodeChunks *chunks) { - qsort (chunks->chunks, chunks->number_of_chunks, sizeof (ProfilerCodeChunk), compare_code_chunks); -} - -static ProfilerCodeChunk* -profiler_code_chunk_find (ProfilerCodeChunks *chunks, gpointer address) { - return bsearch (address, chunks->chunks, chunks->number_of_chunks, sizeof (ProfilerCodeChunk), compare_address_and_code_chunk); -} - -static ProfilerCodeChunk* -profiler_code_chunk_new (ProfilerCodeChunks *chunks, gpointer memory, gsize size) { - ProfilerCodeChunk *result; - - if (chunks->number_of_chunks == chunks->capacity) { - ProfilerCodeChunk *new_chunks = g_new0 (ProfilerCodeChunk, chunks->capacity * 2); - memcpy (new_chunks, chunks->chunks, chunks->capacity * sizeof (ProfilerCodeChunk)); - chunks->capacity *= 2; - g_free (chunks->chunks); - chunks->chunks = new_chunks; - } - - result = & (chunks->chunks [chunks->number_of_chunks]); - chunks->number_of_chunks ++; - profiler_code_chunk_initialize (result, memory, size); - profiler_code_chunks_sort (chunks); - return result; -} - -static int -profiler_code_chunk_to_index (ProfilerCodeChunks *chunks, ProfilerCodeChunk *chunk) { - return (int) (chunk - chunks->chunks); -} - -static void -profiler_code_chunk_remove (ProfilerCodeChunks *chunks, ProfilerCodeChunk *chunk) { - int index = profiler_code_chunk_to_index (chunks, chunk); - - profiler_code_chunk_cleanup (chunk); - if ((index >= 0) && (index < chunks->number_of_chunks)) { - memmove (chunk, chunk + 1, (chunks->number_of_chunks - index) * sizeof (ProfilerCodeChunk)); - } -} - -/* This assumes the profiler lock is held */ -static ProfilerCodeBuffer* -profiler_code_buffer_from_address (MonoProfiler *prof, gpointer address) { - ProfilerCodeChunks *chunks = & (prof->code_chunks); - - ProfilerCodeChunk *chunk = profiler_code_chunk_find (chunks, address); - if (chunk != NULL) { - return profiler_code_buffer_find (chunk->buffers, address); - } else { - return NULL; - } -} - -static void -profiler_code_chunk_new_callback (MonoProfiler *prof, gpointer address, int size) { - ProfilerCodeChunks *chunks = & (prof->code_chunks); - - if (prof->code_chunks.chunks != NULL) { - LOCK_PROFILER (); - profiler_code_chunk_new (chunks, address, size); - UNLOCK_PROFILER (); - } -} - -static void -profiler_code_chunk_destroy_callback (MonoProfiler *prof, gpointer address) { - ProfilerCodeChunks *chunks = & (prof->code_chunks); - ProfilerCodeChunk *chunk; - - if (prof->code_chunks.chunks != NULL) { - LOCK_PROFILER (); - chunk = profiler_code_chunk_find (chunks, address); - if (chunk != NULL) { - profiler_code_chunk_remove (chunks, chunk); - } - UNLOCK_PROFILER (); - } -} - -static void -profiler_code_buffer_new_callback (MonoProfiler *prof, gpointer address, int size, MonoProfilerCodeBufferType type, void *data) { - ProfilerCodeChunks *chunks = & (prof->code_chunks); - ProfilerCodeChunk *chunk; - - if (prof->code_chunks.chunks != NULL) { - LOCK_PROFILER (); - chunk = profiler_code_chunk_find (chunks, address); - if (chunk != NULL) { - chunk->buffers = profiler_code_buffer_add (chunk->buffers, address, size, type, data); - } - UNLOCK_PROFILER (); - } -} - -static void -profiler_add_write_buffer (void) { - if (profiler->current_write_buffer->next == NULL) { - profiler->current_write_buffer->next = g_malloc (sizeof (ProfilerFileWriteBuffer) + PROFILER_FILE_WRITE_BUFFER_SIZE); - profiler->current_write_buffer->next->next = NULL; - - //printf ("Added next buffer %p, to buffer %p\n", profiler->current_write_buffer->next, profiler->current_write_buffer); - - } - profiler->current_write_buffer = profiler->current_write_buffer->next; - profiler->current_write_position = 0; - profiler->full_write_buffers ++; -} - -static void -profiler_free_write_buffers (void) { - ProfilerFileWriteBuffer *current_buffer = profiler->write_buffers; - while (current_buffer != NULL) { - ProfilerFileWriteBuffer *next_buffer = current_buffer->next; - - //printf ("Freeing write buffer %p, next is %p\n", current_buffer, next_buffer); - - g_free (current_buffer); - current_buffer = next_buffer; - } -} - -#define WRITE_BYTE(b) do {\ - if (profiler->current_write_position >= PROFILER_FILE_WRITE_BUFFER_SIZE) {\ - profiler_add_write_buffer ();\ - }\ - profiler->current_write_buffer->buffer [profiler->current_write_position] = (b);\ - profiler->current_write_position ++;\ -} while (0) - -#if (DEBUG_FILE_WRITES) -static int bytes_written = 0; -#endif - -static void -write_current_block (guint16 code) { - guint32 size = (profiler->full_write_buffers * PROFILER_FILE_WRITE_BUFFER_SIZE) + profiler->current_write_position; - ProfilerFileWriteBuffer *current_buffer = profiler->write_buffers; - guint64 current_counter; - guint32 counter_delta; - guint8 header [10]; - - MONO_PROFILER_GET_CURRENT_COUNTER (current_counter); - if (profiler->last_header_counter != 0) { - counter_delta = current_counter - profiler->last_header_counter; - } else { - counter_delta = 0; - } - profiler->last_header_counter = current_counter; - - header [0] = code & 0xff; - header [1] = (code >> 8) & 0xff; - header [2] = size & 0xff; - header [3] = (size >> 8) & 0xff; - header [4] = (size >> 16) & 0xff; - header [5] = (size >> 24) & 0xff; - header [6] = counter_delta & 0xff; - header [7] = (counter_delta >> 8) & 0xff; - header [8] = (counter_delta >> 16) & 0xff; - header [9] = (counter_delta >> 24) & 0xff; - -#if (DEBUG_FILE_WRITES) - printf ("write_current_block: writing header (code %d) at offset %d\n", code, bytes_written); - bytes_written += 10; -#endif - WRITE_BUFFER (& (header [0]), 10); - - while ((current_buffer != NULL) && (profiler->full_write_buffers > 0)) { -#if (DEBUG_FILE_WRITES) - printf ("write_current_block: writing buffer (size %d)\n", PROFILER_FILE_WRITE_BUFFER_SIZE); - bytes_written += PROFILER_FILE_WRITE_BUFFER_SIZE; -#endif - WRITE_BUFFER (& (current_buffer->buffer [0]), PROFILER_FILE_WRITE_BUFFER_SIZE); - profiler->full_write_buffers --; - current_buffer = current_buffer->next; - } - if (profiler->current_write_position > 0) { -#if (DEBUG_FILE_WRITES) - printf ("write_current_block: writing last buffer (size %d)\n", profiler->current_write_position); - bytes_written += profiler->current_write_position; -#endif - WRITE_BUFFER (& (current_buffer->buffer [0]), profiler->current_write_position); - } - FLUSH_FILE (); -#if (DEBUG_FILE_WRITES) - printf ("write_current_block: buffers flushed (file size %d)\n", bytes_written); -#endif - - profiler->current_write_buffer = profiler->write_buffers; - profiler->current_write_position = 0; - profiler->full_write_buffers = 0; -} - - -#define SEVEN_BITS_MASK (0x7f) -#define EIGHT_BIT_MASK (0x80) - -static void -write_uint32 (guint32 value) { - while (value > SEVEN_BITS_MASK) { - WRITE_BYTE (value & SEVEN_BITS_MASK); - value >>= 7; - } - WRITE_BYTE (value | EIGHT_BIT_MASK); -} -static void -write_uint64 (guint64 value) { - while (value > SEVEN_BITS_MASK) { - WRITE_BYTE (value & SEVEN_BITS_MASK); - value >>= 7; - } - WRITE_BYTE (value | EIGHT_BIT_MASK); -} -static void -write_string (const char *string) { - while (*string != 0) { - WRITE_BYTE (*string); - string ++; - } - WRITE_BYTE (0); -} - -static void write_clock_data (void); -static void -write_directives_block (gboolean start) { - write_clock_data (); - - if (start) { - if (profiler->action_flags.save_allocation_caller) { - write_uint32 (MONO_PROFILER_DIRECTIVE_ALLOCATIONS_CARRY_CALLER); - } - if (profiler->action_flags.save_allocation_stack || profiler->action_flags.track_calls) { - write_uint32 (MONO_PROFILER_DIRECTIVE_ALLOCATIONS_HAVE_STACK); - } - if (profiler->action_flags.allocations_carry_id) { - write_uint32 (MONO_PROFILER_DIRECTIVE_ALLOCATIONS_CARRY_ID); - } - write_uint32 (MONO_PROFILER_DIRECTIVE_LOADED_ELEMENTS_CARRY_ID); - write_uint32 (MONO_PROFILER_DIRECTIVE_CLASSES_CARRY_ASSEMBLY_ID); - write_uint32 (MONO_PROFILER_DIRECTIVE_METHODS_CARRY_WRAPPER_FLAG); - } - write_uint32 (MONO_PROFILER_DIRECTIVE_END); - - write_clock_data (); - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_DIRECTIVES); -} - -#if DEBUG_HEAP_PROFILER -#define WRITE_HEAP_SHOT_JOB_VALUE_MESSAGE(v,c) printf ("WRITE_HEAP_SHOT_JOB_VALUE: writing value %p at cursor %p\n", (v), (c)) -#else -#define WRITE_HEAP_SHOT_JOB_VALUE_MESSAGE(v,c) -#endif -#define WRITE_HEAP_SHOT_JOB_VALUE(j,v) do {\ - if ((j)->cursor < (j)->end) {\ - WRITE_HEAP_SHOT_JOB_VALUE_MESSAGE ((v), ((j)->cursor));\ - *((j)->cursor) = (v);\ - (j)->cursor ++;\ - } else {\ - profiler_heap_shot_write_job_add_buffer (j, v);\ - }\ -} while (0) - - -#undef GUINT_TO_POINTER -#undef GPOINTER_TO_UINT -#if (SIZEOF_VOID_P == 4) -#define GUINT_TO_POINTER(u) ((void*)(guint32)(u)) -#define GPOINTER_TO_UINT(p) ((guint32)(void*)(p)) -#elif (SIZEOF_VOID_P == 8) -#define GUINT_TO_POINTER(u) ((void*)(guint64)(u)) -#define GPOINTER_TO_UINT(p) ((guint64)(void*)(p)) -#else -#error Bad size of void pointer -#endif - -#define WRITE_HEAP_SHOT_JOB_VALUE_WITH_CODE(j,v,c) WRITE_HEAP_SHOT_JOB_VALUE (j, GUINT_TO_POINTER (GPOINTER_TO_UINT (v)|(c))) - -#if DEBUG_HEAP_PROFILER -#define UPDATE_JOB_BUFFER_CURSOR_MESSAGE() printf ("profiler_heap_shot_write_block[UPDATE_JOB_BUFFER_CURSOR]: in job %p, moving to buffer %p and cursor %p\n", job, buffer, cursor) -#else -#define UPDATE_JOB_BUFFER_CURSOR_MESSAGE() -#endif -#define UPDATE_JOB_BUFFER_CURSOR() do {\ - cursor++;\ - if (cursor >= end) {\ - buffer = buffer->next;\ - if (buffer != NULL) {\ - cursor = & (buffer->buffer [0]);\ - if (buffer->next != NULL) {\ - end = & (buffer->buffer [PROFILER_HEAP_SHOT_WRITE_BUFFER_SIZE]);\ - } else {\ - end = job->cursor;\ - }\ - } else {\ - cursor = NULL;\ - }\ - }\ - UPDATE_JOB_BUFFER_CURSOR_MESSAGE ();\ -} while (0) - -static void -profiler_heap_shot_write_data_block (ProfilerHeapShotWriteJob *job) { - ProfilerHeapShotWriteBuffer *buffer; - gpointer* cursor; - gpointer* end; - guint64 start_counter; - guint64 start_time; - guint64 end_counter; - guint64 end_time; - - write_uint64 (job->start_counter); - write_uint64 (job->start_time); - write_uint64 (job->end_counter); - write_uint64 (job->end_time); - write_uint32 (job->collection); - MONO_PROFILER_GET_CURRENT_COUNTER (start_counter); - MONO_PROFILER_GET_CURRENT_TIME (start_time); - write_uint64 (start_counter); - write_uint64 (start_time); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_data_block: start writing job %p (start %p, end %p)...\n", job, & (job->buffers->buffer [0]), job->cursor); -#endif - buffer = job->buffers; - cursor = & (buffer->buffer [0]); - if (buffer->next != NULL) { - end = & (buffer->buffer [PROFILER_HEAP_SHOT_WRITE_BUFFER_SIZE]); - } else { - end = job->cursor; - } - if (cursor >= end) { - cursor = NULL; - } -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_data_block: in job %p, starting at buffer %p and cursor %p\n", job, buffer, cursor); -#endif - while (cursor != NULL) { - gpointer value = *cursor; - HeapProfilerJobValueCode code = GPOINTER_TO_UINT (value) & HEAP_CODE_MASK; -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_data_block: got value %p and code %d\n", value, code); -#endif - - UPDATE_JOB_BUFFER_CURSOR (); - if (code == HEAP_CODE_FREE_OBJECT_CLASS) { - MonoClass *klass = GUINT_TO_POINTER (GPOINTER_TO_UINT (value) & (~ (guint64) HEAP_CODE_MASK)); - //MonoClass *klass = GUINT_TO_POINTER (GPOINTER_TO_UINT (value) % 4); - ClassIdMappingElement *class_id; - guint32 size; - - class_id = class_id_mapping_element_get (klass); - if (class_id == NULL) { - printf ("profiler_heap_shot_write_data_block: unknown class %p", klass); - } - g_assert (class_id != NULL); - write_uint32 ((class_id->id << 2) | HEAP_CODE_FREE_OBJECT_CLASS); - - size = GPOINTER_TO_UINT (*cursor); - UPDATE_JOB_BUFFER_CURSOR (); - write_uint32 (size); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_data_block: wrote unreachable object of class %p (id %d, size %d)\n", klass, class_id->id, size); -#endif - } else if (code == HEAP_CODE_OBJECT) { - MonoObject *object = GUINT_TO_POINTER (GPOINTER_TO_UINT (value) & (~ (guint64) HEAP_CODE_MASK)); - MonoClass *klass = mono_object_get_class (object); - ClassIdMappingElement *class_id = class_id_mapping_element_get (klass); - guint32 size = mono_object_get_size (object); - guint32 references = GPOINTER_TO_UINT (*cursor); - UPDATE_JOB_BUFFER_CURSOR (); - - if (class_id == NULL) { - printf ("profiler_heap_shot_write_data_block: unknown class %p", klass); - } - g_assert (class_id != NULL); - - write_uint64 (GPOINTER_TO_UINT (value)); - write_uint32 (class_id->id); - write_uint32 (size); - write_uint32 (references); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_data_block: writing object %p (references %d)\n", value, references); -#endif - - while (references > 0) { - gpointer reference = *cursor; - write_uint64 (GPOINTER_TO_UINT (reference)); - UPDATE_JOB_BUFFER_CURSOR (); - references --; -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_data_block: inside object %p, wrote reference %p)\n", value, reference); -#endif - } - } else { -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_data_block: unknown code %d in value %p\n", code, value); -#endif - g_assert_not_reached (); - } - } - write_uint32 (0); - - MONO_PROFILER_GET_CURRENT_COUNTER (end_counter); - MONO_PROFILER_GET_CURRENT_TIME (end_time); - write_uint64 (end_counter); - write_uint64 (end_time); - - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_HEAP_DATA); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_data_block: writing job %p done.\n", job); -#endif -} -static void -profiler_heap_shot_write_summary_block (ProfilerHeapShotWriteJob *job) { - guint64 start_counter; - guint64 start_time; - guint64 end_counter; - guint64 end_time; - int id; - -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_summary_block: start writing job %p...\n", job); -#endif - MONO_PROFILER_GET_CURRENT_COUNTER (start_counter); - MONO_PROFILER_GET_CURRENT_TIME (start_time); - write_uint64 (start_counter); - write_uint64 (start_time); - - write_uint32 (job->collection); - - for (id = 0; id < job->summary.capacity; id ++) { - if ((job->summary.per_class_data [id].reachable.instances > 0) || (job->summary.per_class_data [id].unreachable.instances > 0)) { - write_uint32 (id); - write_uint32 (job->summary.per_class_data [id].reachable.instances); - write_uint32 (job->summary.per_class_data [id].reachable.bytes); - write_uint32 (job->summary.per_class_data [id].unreachable.instances); - write_uint32 (job->summary.per_class_data [id].unreachable.bytes); - } - } - write_uint32 (0); - - MONO_PROFILER_GET_CURRENT_COUNTER (end_counter); - MONO_PROFILER_GET_CURRENT_TIME (end_time); - write_uint64 (end_counter); - write_uint64 (end_time); - - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_HEAP_SUMMARY); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_summary_block: writing job %p done.\n", job); -#endif -} - -static void -profiler_heap_shot_write_block (ProfilerHeapShotWriteJob *job) { -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_block: working on job %p...\n", job); -#endif - - if (profiler->action_flags.collection_summary == TRUE) { - profiler_heap_shot_write_summary_block (job); - } - - if ((profiler->action_flags.unreachable_objects == TRUE) || (profiler->action_flags.heap_shot == TRUE)) { - profiler_heap_shot_write_data_block (job); - } - - profiler_heap_shot_write_job_free_buffers (job); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_shot_write_block: work on job %p done.\n", job); -#endif -} - -static void -write_element_load_block (LoadedElement *element, guint8 kind, gsize thread_id, gpointer item) { - WRITE_BYTE (kind); - write_uint64 (element->load_start_counter); - write_uint64 (element->load_end_counter); - write_uint64 (thread_id); - write_uint32 (element->id); - write_string (element->name); - if (kind & MONO_PROFILER_LOADED_EVENT_ASSEMBLY) { - MonoImage *image = mono_assembly_get_image ((MonoAssembly*) item); - MonoAssemblyName aname; - if (mono_assembly_fill_assembly_name (image, &aname)) { - write_string (aname.name); - write_uint32 (aname.major); - write_uint32 (aname.minor); - write_uint32 (aname.build); - write_uint32 (aname.revision); - write_string (aname.culture && *aname.culture? aname.culture: "neutral"); - write_string (aname.public_key_token [0] ? (char *)aname.public_key_token : "null"); - /* Retargetable flag */ - write_uint32 ((aname.flags & 0x00000100) ? 1 : 0); - } else { - write_string ("UNKNOWN"); - write_uint32 (0); - write_uint32 (0); - write_uint32 (0); - write_uint32 (0); - write_string ("neutral"); - write_string ("null"); - write_uint32 (0); - } - } - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_LOADED); - element->load_written = TRUE; -} - -static void -write_element_unload_block (LoadedElement *element, guint8 kind, gsize thread_id) { - WRITE_BYTE (kind); - write_uint64 (element->unload_start_counter); - write_uint64 (element->unload_end_counter); - write_uint64 (thread_id); - write_uint32 (element->id); - write_string (element->name); - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_UNLOADED); - element->unload_written = TRUE; -} - -static void -write_clock_data (void) { - guint64 counter; - guint64 time; - - MONO_PROFILER_GET_CURRENT_COUNTER (counter); - MONO_PROFILER_GET_CURRENT_TIME (time); - - write_uint64 (counter); - write_uint64 (time); -} - -static void -write_mapping_block (gsize thread_id) { - ClassIdMappingElement *current_class; - MethodIdMappingElement *current_method; - - if ((profiler->classes->unwritten == NULL) && (profiler->methods->unwritten == NULL)) - return; - -#if (DEBUG_MAPPING_EVENTS || DEBUG_FILE_WRITES) - printf ("[write_mapping_block][TID %ld] START\n", thread_id); -#endif - - write_clock_data (); - write_uint64 (thread_id); - - for (current_class = profiler->classes->unwritten; current_class != NULL; current_class = current_class->next_unwritten) { - MonoImage *image = mono_class_get_image (current_class->klass); - MonoAssembly *assembly = mono_image_get_assembly (image); - guint32 assembly_id = loaded_element_get_id (profiler->loaded_assemblies, assembly); - write_uint32 (current_class->id); - write_uint32 (assembly_id); - write_string (current_class->name); -#if (DEBUG_MAPPING_EVENTS) - printf ("mapping CLASS (%d => %s)\n", current_class->id, current_class->name); -#endif - g_free (current_class->name); - current_class->name = NULL; - } - write_uint32 (0); - profiler->classes->unwritten = NULL; - - for (current_method = profiler->methods->unwritten; current_method != NULL; current_method = current_method->next_unwritten) { - MonoMethod *method = current_method->method; - MonoClass *klass = mono_method_get_class (method); - ClassIdMappingElement *class_element = class_id_mapping_element_get (klass); - g_assert (class_element != NULL); - write_uint32 (current_method->id); - write_uint32 (class_element->id); - if (method->wrapper_type != 0) { - write_uint32 (1); - } else { - write_uint32 (0); - } - write_string (current_method->name); -#if (DEBUG_MAPPING_EVENTS) - printf ("mapping METHOD ([%d]%d => %s)\n", class_element?class_element->id:1, current_method->id, current_method->name); -#endif - g_free (current_method->name); - current_method->name = NULL; - } - write_uint32 (0); - profiler->methods->unwritten = NULL; - - write_clock_data (); - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_MAPPING); - -#if (DEBUG_MAPPING_EVENTS || DEBUG_FILE_WRITES) - printf ("[write_mapping_block][TID %ld] END\n", thread_id); -#endif -} - -typedef enum { - MONO_PROFILER_PACKED_EVENT_CODE_METHOD_ENTER = 1, - MONO_PROFILER_PACKED_EVENT_CODE_METHOD_EXIT_IMPLICIT = 2, - MONO_PROFILER_PACKED_EVENT_CODE_METHOD_EXIT_EXPLICIT = 3, - MONO_PROFILER_PACKED_EVENT_CODE_CLASS_ALLOCATION = 4, - MONO_PROFILER_PACKED_EVENT_CODE_METHOD_EVENT = 5, - MONO_PROFILER_PACKED_EVENT_CODE_CLASS_EVENT = 6, - MONO_PROFILER_PACKED_EVENT_CODE_OTHER_EVENT = 7 -} MonoProfilerPackedEventCode; -#define MONO_PROFILER_PACKED_EVENT_CODE_BITS 3 -#define MONO_PROFILER_PACKED_EVENT_DATA_BITS (8-MONO_PROFILER_PACKED_EVENT_CODE_BITS) -#define MONO_PROFILER_PACKED_EVENT_DATA_MASK ((1<>= MONO_PROFILER_PACKED_EVENT_DATA_BITS;\ -} while (0) -#define MONO_PROFILER_EVENT_MAKE_FULL_CODE(result,code,kind,base) do {\ - result = ((base)|((((kind)<<4) | (code)) << MONO_PROFILER_PACKED_EVENT_CODE_BITS));\ -} while (0) - -static void -rewrite_last_written_stack (ProfilerThreadStack *stack) { - guint8 event_code; - int i = thread_stack_get_last_written_frame (stack); - - MONO_PROFILER_EVENT_MAKE_FULL_CODE (event_code, MONO_PROFILER_EVENT_STACK_SECTION, 0, MONO_PROFILER_PACKED_EVENT_CODE_OTHER_EVENT); - WRITE_BYTE (event_code); - write_uint32 (0); - write_uint32 (i); - - while (i > 0) { - i--; - write_uint32 (thread_stack_written_frame_at_index (stack, i)); - } -} - - -static ProfilerEventData* -write_stack_section_event (ProfilerEventData *events, ProfilerPerThreadData *data) { - int last_saved_frame = events->data.number; - int saved_frames = events->value; - guint8 event_code; - int i; - - MONO_PROFILER_EVENT_MAKE_FULL_CODE (event_code, MONO_PROFILER_EVENT_STACK_SECTION, 0, MONO_PROFILER_PACKED_EVENT_CODE_OTHER_EVENT); - WRITE_BYTE (event_code); - write_uint32 (last_saved_frame); - write_uint32 (saved_frames); - thread_stack_set_last_written_frame (&(data->stack), last_saved_frame + saved_frames); - events++; - - for (i = 0; i < saved_frames; i++) { - guint8 code = events->code; - guint32 jit_flag; - MethodIdMappingElement *method; - guint32 frame_value; - - if (code == MONO_PROFILER_EVENT_METHOD_ALLOCATION_CALLER) { - jit_flag = 0; - } else if (code == MONO_PROFILER_EVENT_METHOD_ALLOCATION_JIT_TIME_CALLER) { - jit_flag = 1; - } else { - g_assert_not_reached (); - jit_flag = 0; - } - - method = method_id_mapping_element_get (events->data.address); - g_assert (method != NULL); - frame_value = (method->id << 1) | jit_flag; - write_uint32 (frame_value); - thread_stack_write_frame_at_index (&(data->stack), last_saved_frame + saved_frames - (1 + i), frame_value); - events ++; - } - - return events; -} - -static ProfilerEventData* -write_event (ProfilerEventData *event, ProfilerPerThreadData *data) { - ProfilerEventData *next = event + 1; - gboolean write_event_value = TRUE; - guint8 event_code; - guint64 event_data; - guint64 event_value; - gboolean write_event_value_extension_1 = FALSE; - guint64 event_value_extension_1 = 0; - gboolean write_event_value_extension_2 = FALSE; - guint64 event_value_extension_2 = 0; - - event_value = event->value; - if (event_value == MAX_EVENT_VALUE) { - event_value = *((guint64*)next); - next ++; - } - - if (event->data_type == MONO_PROFILER_EVENT_DATA_TYPE_METHOD) { - MethodIdMappingElement *element = method_id_mapping_element_get (event->data.address); - g_assert (element != NULL); - event_data = element->id; - - if (event->code == MONO_PROFILER_EVENT_METHOD_CALL) { - if (event->kind == MONO_PROFILER_EVENT_KIND_START) { - MONO_PROFILER_EVENT_MAKE_PACKED_CODE (event_code, event_data, MONO_PROFILER_PACKED_EVENT_CODE_METHOD_ENTER); - } else { - MONO_PROFILER_EVENT_MAKE_PACKED_CODE (event_code, event_data, MONO_PROFILER_PACKED_EVENT_CODE_METHOD_EXIT_EXPLICIT); - } - } else { - MONO_PROFILER_EVENT_MAKE_FULL_CODE (event_code, event->code, event->kind, MONO_PROFILER_PACKED_EVENT_CODE_METHOD_EVENT); - } - } else if (event->data_type == MONO_PROFILER_EVENT_DATA_TYPE_CLASS) { - ClassIdMappingElement *element = class_id_mapping_element_get (event->data.address); - g_assert (element != NULL); - event_data = element->id; - - if (event->code == MONO_PROFILER_EVENT_CLASS_ALLOCATION) { - if ((! profiler->action_flags.save_allocation_caller) || (! (next->code == MONO_PROFILER_EVENT_METHOD_ALLOCATION_JIT_TIME_CALLER))) { - MONO_PROFILER_EVENT_MAKE_PACKED_CODE (event_code, event_data, MONO_PROFILER_PACKED_EVENT_CODE_CLASS_ALLOCATION); - } else { - MONO_PROFILER_EVENT_MAKE_FULL_CODE (event_code, MONO_PROFILER_EVENT_JIT_TIME_ALLOCATION, event->kind, MONO_PROFILER_PACKED_EVENT_CODE_OTHER_EVENT); - } - - if (profiler->action_flags.save_allocation_caller) { - MonoMethod *caller_method = next->data.address; - - if ((next->code != MONO_PROFILER_EVENT_METHOD_ALLOCATION_CALLER) && (next->code != MONO_PROFILER_EVENT_METHOD_ALLOCATION_JIT_TIME_CALLER)) { - g_assert_not_reached (); - } - - if (caller_method != NULL) { - MethodIdMappingElement *caller = method_id_mapping_element_get (caller_method); - g_assert (caller != NULL); - event_value_extension_1 = caller->id; - } - - write_event_value_extension_1 = TRUE; - next ++; - } - - if (profiler->action_flags.allocations_carry_id) { - event_value_extension_2 = GPOINTER_TO_UINT (next->data.address); - - if (next->code != MONO_PROFILER_EVENT_ALLOCATION_OBJECT_ID) { - g_assert_not_reached (); - } - - write_event_value_extension_2 = TRUE; - next ++; - } - } else if (event->code == MONO_PROFILER_EVENT_CLASS_MONITOR) { - g_assert (next->code == MONO_PROFILER_EVENT_OBJECT_MONITOR); - - MONO_PROFILER_EVENT_MAKE_FULL_CODE (event_code, event->code, event->kind, MONO_PROFILER_PACKED_EVENT_CODE_CLASS_EVENT); - event_value_extension_1 = next->value; - write_event_value_extension_1 = TRUE; - event_value_extension_2 = GPOINTER_TO_UINT (next->data.address); - write_event_value_extension_2 = TRUE; - next ++; - } else { - MONO_PROFILER_EVENT_MAKE_FULL_CODE (event_code, event->code, event->kind, MONO_PROFILER_PACKED_EVENT_CODE_CLASS_EVENT); - } - } else { - if (event->code == MONO_PROFILER_EVENT_STACK_SECTION) { - return write_stack_section_event (event, data); - } else { - event_data = event->data.number; - MONO_PROFILER_EVENT_MAKE_FULL_CODE (event_code, event->code, event->kind, MONO_PROFILER_PACKED_EVENT_CODE_OTHER_EVENT); - } - } - - /* Skip writing JIT events if the user did not ask for them */ - if ((event->code == MONO_PROFILER_EVENT_METHOD_JIT) && ! profiler->action_flags.jit_time) { - return next; - } - -#if (DEBUG_LOGGING_PROFILER) - EVENT_MARK (); - printf ("writing EVENT[%p] data_type:%d, kind:%d, code:%d (%d:%ld:%ld)\n", event, - event->data_type, event->kind, event->code, - event_code, event_data, event_value); -#endif - - WRITE_BYTE (event_code); - write_uint64 (event_data); - if (write_event_value) { - write_uint64 (event_value); - if (write_event_value_extension_1) { - write_uint64 (event_value_extension_1); - } - if (write_event_value_extension_2) { - write_uint64 (event_value_extension_2); - } - } - - return next; -} - -static void -write_thread_data_block (ProfilerPerThreadData *data) { - ProfilerEventData *start = data->first_unwritten_event; - ProfilerEventData *end = data->first_unmapped_event; - - if (start == end) - return; -#if (DEBUG_FILE_WRITES) - printf ("write_thread_data_block: preparing buffer for thread %ld\n", (guint64) data->thread_id); -#endif - write_clock_data (); - write_uint64 (data->thread_id); - - write_uint64 (data->start_event_counter); - - /* If we are tracking the stack, make sure that stack sections */ - /* can be fully reconstructed even reading only one block */ - if (profiler->action_flags.track_stack) { - rewrite_last_written_stack (&(data->stack)); - } - - while (start < end) { - start = write_event (start, data); - } - WRITE_BYTE (0); - data->first_unwritten_event = end; - - write_clock_data (); - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_EVENTS); -#if (DEBUG_FILE_WRITES) - printf ("write_thread_data_block: buffer for thread %ld written\n", (guint64) data->thread_id); -#endif -} - -static ProfilerExecutableMemoryRegionData* -profiler_executable_memory_region_new (gpointer *start, gpointer *end, guint32 file_offset, char *file_name, guint32 id) { - ProfilerExecutableMemoryRegionData *result = g_new (ProfilerExecutableMemoryRegionData, 1); - result->start = start; - result->end = end; - result->file_offset = file_offset; - result->file_name = g_strdup (file_name); - result->id = id; - result->is_new = TRUE; - - result->file = NULL; - result->file_region_reference = NULL; - result->symbols_capacity = id; - result->symbols_count = id; - result->symbols = NULL; - - return result; -} - -static void -executable_file_close (ProfilerExecutableMemoryRegionData *region); - -static void -profiler_executable_memory_region_destroy (ProfilerExecutableMemoryRegionData *data) { - if (data->file != NULL) { - executable_file_close (data); - data->file = NULL; - } - if (data->symbols != NULL) { - g_free (data->symbols); - data->symbols = NULL; - } - if (data->file_name != NULL) { - g_free (data->file_name); - data->file_name = NULL; - } - g_free (data); -} - -static ProfilerExecutableMemoryRegions* -profiler_executable_memory_regions_new (int next_id, int next_unmanaged_function_id) { - ProfilerExecutableMemoryRegions *result = g_new (ProfilerExecutableMemoryRegions, 1); - result->regions = g_new0 (ProfilerExecutableMemoryRegionData*, 32); - result->regions_capacity = 32; - result->regions_count = 0; - result->next_id = next_id; - result->next_unmanaged_function_id = next_unmanaged_function_id; - return result; -} - -static void -profiler_executable_memory_regions_destroy (ProfilerExecutableMemoryRegions *regions) { - int i; - - for (i = 0; i < regions->regions_count; i++) { - profiler_executable_memory_region_destroy (regions->regions [i]); - } - g_free (regions->regions); - g_free (regions); -} - -static ProfilerExecutableMemoryRegionData* -find_address_region (ProfilerExecutableMemoryRegions *regions, gpointer address) { - int low_index = 0; - int high_index = regions->regions_count; - int middle_index = 0; - ProfilerExecutableMemoryRegionData *middle_region = regions->regions [0]; - - if ((regions->regions_count == 0) || (regions->regions [low_index]->start > address) || (regions->regions [high_index - 1]->end < address)) { - return NULL; - } - - //printf ("find_address_region: Looking for address %p in %d regions (from %p to %p)\n", address, regions->regions_count, regions->regions [low_index]->start, regions->regions [high_index - 1]->end); - - while (low_index != high_index) { - middle_index = low_index + ((high_index - low_index) / 2); - middle_region = regions->regions [middle_index]; - - //printf ("find_address_region: Looking for address %p, considering index %d[%p-%p] (%d-%d)\n", address, middle_index, middle_region->start, middle_region->end, low_index, high_index); - - if (middle_region->start > address) { - if (middle_index > 0) { - high_index = middle_index; - } else { - return NULL; - } - } else if (middle_region->end < address) { - if (middle_index < regions->regions_count - 1) { - low_index = middle_index + 1; - } else { - return NULL; - } - } else { - return middle_region; - } - } - - if ((middle_region == NULL) || (middle_region->start > address) || (middle_region->end < address)) { - return NULL; - } else { - return middle_region; - } -} - -static void -append_region (ProfilerExecutableMemoryRegions *regions, gpointer *start, gpointer *end, guint32 file_offset, char *file_name) { - if (regions->regions_count >= regions->regions_capacity) { - ProfilerExecutableMemoryRegionData **new_regions = g_new0 (ProfilerExecutableMemoryRegionData*, regions->regions_capacity * 2); - memcpy (new_regions, regions->regions, regions->regions_capacity * sizeof (ProfilerExecutableMemoryRegionData*)); - g_free (regions->regions); - regions->regions = new_regions; - regions->regions_capacity = regions->regions_capacity * 2; - } - regions->regions [regions->regions_count] = profiler_executable_memory_region_new (start, end, file_offset, file_name, regions->next_id); - regions->regions_count ++; - regions->next_id ++; -} - -static gboolean -regions_are_equivalent (ProfilerExecutableMemoryRegionData *region1, ProfilerExecutableMemoryRegionData *region2) { - if ((region1->start == region2->start) && - (region1->end == region2->end) && - (region1->file_offset == region2->file_offset) && - ! strcmp (region1->file_name, region2->file_name)) { - return TRUE; - } else { - return FALSE; - } -} - -static int -compare_regions (const void *a1, const void *a2) { - ProfilerExecutableMemoryRegionData *r1 = * (ProfilerExecutableMemoryRegionData**) a1; - ProfilerExecutableMemoryRegionData *r2 = * (ProfilerExecutableMemoryRegionData**) a2; - return (r1->start < r2->start)? -1 : ((r1->start > r2->start)? 1 : 0); -} - -static void -restore_old_regions (ProfilerExecutableMemoryRegions *old_regions, ProfilerExecutableMemoryRegions *new_regions) { - int old_i; - int new_i; - - for (new_i = 0; new_i < new_regions->regions_count; new_i++) { - ProfilerExecutableMemoryRegionData *new_region = new_regions->regions [new_i]; - for (old_i = 0; old_i < old_regions->regions_count; old_i++) { - ProfilerExecutableMemoryRegionData *old_region = old_regions->regions [old_i]; - if ( regions_are_equivalent (old_region, new_region)) { - new_regions->regions [new_i] = old_region; - old_regions->regions [old_i] = new_region; - - // FIXME (sanity check) - g_assert (new_region->is_new && ! old_region->is_new); - } - } - } -} - -static void -sort_regions (ProfilerExecutableMemoryRegions *regions) { - if (regions->regions_count > 1) { - int i; - - qsort (regions->regions, regions->regions_count, sizeof (ProfilerExecutableMemoryRegionData *), compare_regions); - - i = 1; - while (i < regions->regions_count) { - ProfilerExecutableMemoryRegionData *current_region = regions->regions [i]; - ProfilerExecutableMemoryRegionData *previous_region = regions->regions [i - 1]; - - if (regions_are_equivalent (previous_region, current_region)) { - int j; - - if (! current_region->is_new) { - profiler_executable_memory_region_destroy (previous_region); - regions->regions [i - 1] = current_region; - } else { - profiler_executable_memory_region_destroy (current_region); - } - - for (j = i + 1; j < regions->regions_count; j++) { - regions->regions [j - 1] = regions->regions [j]; - } - - regions->regions_count --; - } else { - i++; - } - } - } -} - -static void -fix_region_references (ProfilerExecutableMemoryRegions *regions) { - int i; - for (i = 0; i < regions->regions_count; i++) { - ProfilerExecutableMemoryRegionData *region = regions->regions [i]; - if (region->file_region_reference != NULL) { - region->file_region_reference->region = region; - } - } -} - -static void -executable_file_add_region_reference (ProfilerExecutableFile *file, ProfilerExecutableMemoryRegionData *region) { - guint8 *section_headers = file->data + file->header->e_shoff; - int section_index; - - for (section_index = 1; section_index < file->header->e_shnum; section_index ++) { - ElfSection *section_header = (ElfSection*) (section_headers + (file->header->e_shentsize * section_index)); - - if ((section_header->sh_addr != 0) && (section_header->sh_flags & ELF_SHF_EXECINSTR) && - (region->file_offset <= section_header->sh_offset) && (region->file_offset + (((guint8*)region->end)-((guint8*)region->start)) >= (section_header->sh_offset + section_header->sh_size))) { - ProfilerExecutableFileSectionRegion *section_region = & (file->section_regions [section_index]); - section_region->region = region; - section_region->section_address = (gpointer) section_header->sh_addr; - section_region->section_offset = section_header->sh_offset; - region->file_region_reference = section_region; - } - } -} - -static gboolean check_elf_header (ElfHeader* header) { - guint16 test = 0x0102; - - if ((header->e_ident [EI_MAG0] != 0x7f) || (header->e_ident [EI_MAG1] != 'E') || - (header->e_ident [EI_MAG2] != 'L') || (header->e_ident [EI_MAG3] != 'F')) { - return FALSE; - } - - if (sizeof (gsize) == 4) { - if (header->e_ident [EI_CLASS] != ELF_CLASS_32) { - g_warning ("Class is not ELF_CLASS_32 with gsize size %d", (int) sizeof (gsize)); - return FALSE; - } - } else if (sizeof (gsize) == 8) { - if (header->e_ident [EI_CLASS] != ELF_CLASS_64) { - g_warning ("Class is not ELF_CLASS_64 with gsize size %d", (int) sizeof (gsize)); - return FALSE; - } - } else { - g_warning ("Absurd gsize size %d", (int) sizeof (gsize)); - return FALSE; - } - - if ((*(guint8*)(&test)) == 0x01) { - if (header->e_ident [EI_DATA] != ELF_DATA_MSB) { - g_warning ("Data is not ELF_DATA_MSB with first test byte 0x01"); - return FALSE; - } - } else if ((*(guint8*)(&test)) == 0x02) { - if (header->e_ident [EI_DATA] != ELF_DATA_LSB) { - g_warning ("Data is not ELF_DATA_LSB with first test byte 0x02"); - return FALSE; - } - } else { - g_warning ("Absurd test byte value"); - return FALSE; - } - - return TRUE; -} - -static gboolean check_elf_file (int fd) { - void *header = malloc (sizeof (ElfHeader)); - ssize_t read_result = read (fd, header, sizeof (ElfHeader)); - gboolean result; - - if (read_result != sizeof (ElfHeader)) { - result = FALSE; - } else { - result = check_elf_header ((ElfHeader*) header); - } - - free (header); - return result; -} - -static ProfilerExecutableFile* -executable_file_open (ProfilerExecutableMemoryRegionData *region) { - ProfilerExecutableFiles *files = & (profiler->executable_files); - ProfilerExecutableFile *file = region->file; - - if (file == NULL) { - file = (ProfilerExecutableFile*) g_hash_table_lookup (files->table, region->file_name); - - if (file == NULL) { - struct stat stat_buffer; - int symtab_index = 0; - int strtab_index = 0; - int dynsym_index = 0; - int dynstr_index = 0; - ElfHeader *header; - guint8 *section_headers; - int section_index; - int strings_index; - - file = g_new0 (ProfilerExecutableFile, 1); - region->file = file; - g_hash_table_insert (files->table, region->file_name, file); - file->reference_count ++; - file->next_new_file = files->new_files; - files->new_files = file; - - file->fd = open (region->file_name, O_RDONLY); - if (file->fd == -1) { - //g_warning ("Cannot open file '%s': '%s'", region->file_name, strerror (errno)); - return file; - } else { - if (fstat (file->fd, &stat_buffer) != 0) { - //g_warning ("Cannot stat file '%s': '%s'", region->file_name, strerror (errno)); - return file; - } else if (! check_elf_file (file->fd)) { - return file; - } else { - size_t region_length = ((guint8*)region->end) - ((guint8*)region->start); - file->length = stat_buffer.st_size; - - if (file->length == region_length) { - file->data = region->start; - close (file->fd); - file->fd = -1; - } else { - file->data = mmap (NULL, file->length, PROT_READ, MAP_PRIVATE, file->fd, 0); - - if (file->data == MAP_FAILED) { - close (file->fd); - //g_warning ("Cannot map file '%s': '%s'", region->file_name, strerror (errno)); - file->data = NULL; - return file; - } - } - } - } - - /* OK, this is a usable elf file, and we mmapped it... */ - header = (ElfHeader*) file->data; - file->header = header; - section_headers = file->data + file->header->e_shoff; - file->main_string_table = ((const char*) file->data) + (((ElfSection*) (section_headers + (header->e_shentsize * header->e_shstrndx)))->sh_offset); - - for (section_index = 0; section_index < header->e_shnum; section_index ++) { - ElfSection *section_header = (ElfSection*) (section_headers + (header->e_shentsize * section_index)); - - if (section_header->sh_type == ELF_SHT_SYMTAB) { - symtab_index = section_index; - } else if (section_header->sh_type == ELF_SHT_DYNSYM) { - dynsym_index = section_index; - } else if (section_header->sh_type == ELF_SHT_STRTAB) { - if (! strcmp (file->main_string_table + section_header->sh_name, ".strtab")) { - strtab_index = section_index; - } else if (! strcmp (file->main_string_table + section_header->sh_name, ".dynstr")) { - dynstr_index = section_index; - } - } - } - - if ((symtab_index != 0) && (strtab_index != 0)) { - section_index = symtab_index; - strings_index = strtab_index; - } else if ((dynsym_index != 0) && (dynstr_index != 0)) { - section_index = dynsym_index; - strings_index = dynstr_index; - } else { - section_index = 0; - strings_index = 0; - } - - if (section_index != 0) { - ElfSection *section_header = (ElfSection*) (section_headers + (header->e_shentsize * section_index)); - file->symbol_size = section_header->sh_entsize; - file->symbols_count = (guint32) (section_header->sh_size / section_header->sh_entsize); - file->symbols_start = file->data + section_header->sh_offset; - file->symbols_string_table = ((const char*) file->data) + (((ElfSection*) (section_headers + (header->e_shentsize * strings_index)))->sh_offset); - } - - file->section_regions = g_new0 (ProfilerExecutableFileSectionRegion, file->header->e_shnum); - } else { - region->file = file; - file->reference_count ++; - } - } - - if (file->header != NULL) { - executable_file_add_region_reference (file, region); - } - - return file; -} - -static void -executable_file_free (ProfilerExecutableFile* file) { - if (file->fd != -1) { - if (close (file->fd) != 0) { - g_warning ("Cannot close file: '%s'", strerror (errno)); - } - if (file->data != NULL) { - if (munmap (file->data, file->length) != 0) { - g_warning ("Cannot unmap file: '%s'", strerror (errno)); - } - } - } - if (file->section_regions != NULL) { - g_free (file->section_regions); - file->section_regions = NULL; - } - g_free (file); -} - -static void -executable_file_close (ProfilerExecutableMemoryRegionData *region) { - region->file->reference_count --; - - if ((region->file_region_reference != NULL) && (region->file_region_reference->region == region)) { - region->file_region_reference->region = NULL; - region->file_region_reference->section_address = 0; - region->file_region_reference->section_offset = 0; - } - - if (region->file->reference_count <= 0) { - ProfilerExecutableFiles *files = & (profiler->executable_files); - g_hash_table_remove (files->table, region->file_name); - executable_file_free (region->file); - region->file = NULL; - } -} - -static void -executable_file_count_symbols (ProfilerExecutableFile *file) { - int symbol_index; - - for (symbol_index = 0; symbol_index < file->symbols_count; symbol_index ++) { - ElfSymbol *symbol = (ElfSymbol*) (file->symbols_start + (symbol_index * file->symbol_size)); - - if ((ELF_ST_TYPE (symbol->st_info) == ELF_STT_FUNC) && - (symbol->st_shndx > 0) && - (symbol->st_shndx < file->header->e_shnum)) { - int symbol_section_index = symbol->st_shndx; - ProfilerExecutableMemoryRegionData *region = file->section_regions [symbol_section_index].region; - if ((region != NULL) && (region->symbols == NULL)) { - region->symbols_count ++; - } - } - } -} - -static void -executable_memory_regions_prepare_symbol_tables (ProfilerExecutableMemoryRegions *regions) { - int i; - for (i = 0; i < regions->regions_count; i++) { - ProfilerExecutableMemoryRegionData *region = regions->regions [i]; - if ((region->symbols_count > 0) && (region->symbols == NULL)) { - region->symbols = g_new (ProfilerUnmanagedSymbol, region->symbols_count); - region->symbols_capacity = region->symbols_count; - region->symbols_count = 0; - } - } -} - -static const char* -executable_region_symbol_get_name (ProfilerExecutableMemoryRegionData *region, ProfilerUnmanagedSymbol *symbol) { - ElfSymbol *elf_symbol = (ElfSymbol*) (region->file->symbols_start + (symbol->index * region->file->symbol_size)); - return region->file->symbols_string_table + elf_symbol->st_name; -} - -static void -executable_file_build_symbol_tables (ProfilerExecutableFile *file) { - int symbol_index; - - for (symbol_index = 0; symbol_index < file->symbols_count; symbol_index ++) { - ElfSymbol *symbol = (ElfSymbol*) (file->symbols_start + (symbol_index * file->symbol_size)); - - if ((ELF_ST_TYPE (symbol->st_info) == ELF_STT_FUNC) && - (symbol->st_shndx > 0) && - (symbol->st_shndx < file->header->e_shnum)) { - int symbol_section_index = symbol->st_shndx; - ProfilerExecutableFileSectionRegion *section_region = & (file->section_regions [symbol_section_index]); - ProfilerExecutableMemoryRegionData *region = section_region->region; - - if (region != NULL) { - ProfilerUnmanagedSymbol *new_symbol = & (region->symbols [region->symbols_count]); - region->symbols_count ++; - - new_symbol->id = 0; - new_symbol->index = symbol_index; - new_symbol->size = symbol->st_size; - new_symbol->offset = (((guint8*) symbol->st_value) - section_region->section_address) - (region->file_offset - section_region->section_offset); - } - } - } -} - -static int -compare_region_symbols (const void *p1, const void *p2) { - const ProfilerUnmanagedSymbol *s1 = p1; - const ProfilerUnmanagedSymbol *s2 = p2; - return (s1->offset < s2->offset)? -1 : ((s1->offset > s2->offset)? 1 : 0); -} - -static void -executable_memory_regions_sort_symbol_tables (ProfilerExecutableMemoryRegions *regions) { - int i; - for (i = 0; i < regions->regions_count; i++) { - ProfilerExecutableMemoryRegionData *region = regions->regions [i]; - if ((region->is_new) && (region->symbols != NULL)) { - qsort (region->symbols, region->symbols_count, sizeof (ProfilerUnmanagedSymbol), compare_region_symbols); - } - } -} - -static void -build_symbol_tables (ProfilerExecutableMemoryRegions *regions, ProfilerExecutableFiles *files) { - int i; - ProfilerExecutableFile *file; - - for (i = 0; i < regions->regions_count; i++) { - ProfilerExecutableMemoryRegionData *region = regions->regions [i]; - if ((region->is_new) && (region->file == NULL)) { - executable_file_open (region); - } - } - - for (file = files->new_files; file != NULL; file = file->next_new_file) { - executable_file_count_symbols (file); - } - - executable_memory_regions_prepare_symbol_tables (regions); - - for (file = files->new_files; file != NULL; file = file->next_new_file) { - executable_file_build_symbol_tables (file); - } - - executable_memory_regions_sort_symbol_tables (regions); - - file = files->new_files; - while (file != NULL) { - ProfilerExecutableFile *next_file = file->next_new_file; - file->next_new_file = NULL; - file = next_file; - } - files->new_files = NULL; -} - -static ProfilerUnmanagedSymbol* -executable_memory_region_find_symbol (ProfilerExecutableMemoryRegionData *region, guint32 offset) { - if (region->symbols_count > 0) { - ProfilerUnmanagedSymbol *low = region->symbols; - ProfilerUnmanagedSymbol *high = region->symbols + (region->symbols_count - 1); - int step = region->symbols_count >> 1; - ProfilerUnmanagedSymbol *current = region->symbols + step; - - do { - step = (high - low) >> 1; - - if (offset < current->offset) { - high = current; - current = high - step; - } else if (offset >= current->offset) { - if (offset >= (current->offset + current->size)) { - low = current; - current = low + step; - } else { - return current; - } - } - } while (step > 0); - - if ((offset >= current->offset) && (offset < (current->offset + current->size))) { - return current; - } else { - return NULL; - } - } else { - return NULL; - } -} - -//FIXME: make also Win32 and BSD variants -#define MAPS_BUFFER_SIZE 4096 -#define MAPS_FILENAME_SIZE 2048 - -static gboolean -update_regions_buffer (int fd, char *buffer) { - ssize_t result = read (fd, buffer, MAPS_BUFFER_SIZE); - - if (result == MAPS_BUFFER_SIZE) { - return TRUE; - } else if (result >= 0) { - *(buffer + result) = 0; - return FALSE; - } else { - *buffer = 0; - return FALSE; - } -} - -#define GOTO_NEXT_CHAR(c,b,fd) do {\ - (c)++;\ - if (((c) - (b) >= MAPS_BUFFER_SIZE) || ((*(c) == 0) && ((c) != (b)))) {\ - update_regions_buffer ((fd), (b));\ - (c) = (b);\ - }\ -} while (0); - -static int hex_digit_value (char c) { - if ((c >= '0') && (c <= '9')) { - return c - '0'; - } else if ((c >= 'a') && (c <= 'f')) { - return c - 'a' + 10; - } else if ((c >= 'A') && (c <= 'F')) { - return c - 'A' + 10; - } else { - return 0; - } -} - -/* - * Start address - * - - * End address - * (space) - * Permissions - * Offset - * (space) - * Device - * (space) - * Inode - * (space) - * File - * \n - */ -typedef enum { - MAP_LINE_PARSER_STATE_INVALID, - MAP_LINE_PARSER_STATE_START_ADDRESS, - MAP_LINE_PARSER_STATE_END_ADDRESS, - MAP_LINE_PARSER_STATE_PERMISSIONS, - MAP_LINE_PARSER_STATE_OFFSET, - MAP_LINE_PARSER_STATE_DEVICE, - MAP_LINE_PARSER_STATE_INODE, - MAP_LINE_PARSER_STATE_BLANK_BEFORE_FILENAME, - MAP_LINE_PARSER_STATE_FILENAME, - MAP_LINE_PARSER_STATE_DONE -} MapLineParserState; - -const char *map_line_parser_state [] = { - "INVALID", - "START_ADDRESS", - "END_ADDRESS", - "PERMISSIONS", - "OFFSET", - "DEVICE", - "INODE", - "BLANK_BEFORE_FILENAME", - "FILENAME", - "DONE" -}; - -static char* -parse_map_line (ProfilerExecutableMemoryRegions *regions, int fd, char *buffer, char *filename, char *current) { - MapLineParserState state = MAP_LINE_PARSER_STATE_START_ADDRESS; - gsize start_address = 0; - gsize end_address = 0; - guint32 offset = 0; - int filename_index = 0; - gboolean is_executable = FALSE; - gboolean done = FALSE; - - char c = *current; - - while (1) { - switch (state) { - case MAP_LINE_PARSER_STATE_START_ADDRESS: - if (isxdigit (c)) { - start_address <<= 4; - start_address |= hex_digit_value (c); - } else if (c == '-') { - state = MAP_LINE_PARSER_STATE_END_ADDRESS; - } else { - state = MAP_LINE_PARSER_STATE_INVALID; - } - break; - case MAP_LINE_PARSER_STATE_END_ADDRESS: - if (isxdigit (c)) { - end_address <<= 4; - end_address |= hex_digit_value (c); - } else if (isblank (c)) { - state = MAP_LINE_PARSER_STATE_PERMISSIONS; - } else { - state = MAP_LINE_PARSER_STATE_INVALID; - } - break; - case MAP_LINE_PARSER_STATE_PERMISSIONS: - if (c == 'x') { - is_executable = TRUE; - } else if (isblank (c)) { - state = MAP_LINE_PARSER_STATE_OFFSET; - } else if ((c != '-') && ! isalpha (c)) { - state = MAP_LINE_PARSER_STATE_INVALID; - } - break; - case MAP_LINE_PARSER_STATE_OFFSET: - if (isxdigit (c)) { - offset <<= 4; - offset |= hex_digit_value (c); - } else if (isblank (c)) { - state = MAP_LINE_PARSER_STATE_DEVICE; - } else { - state = MAP_LINE_PARSER_STATE_INVALID; - } - break; - case MAP_LINE_PARSER_STATE_DEVICE: - if (isblank (c)) { - state = MAP_LINE_PARSER_STATE_INODE; - } else if ((c != ':') && ! isxdigit (c)) { - state = MAP_LINE_PARSER_STATE_INVALID; - } - break; - case MAP_LINE_PARSER_STATE_INODE: - if (isblank (c)) { - state = MAP_LINE_PARSER_STATE_BLANK_BEFORE_FILENAME; - } else if (! isdigit (c)) { - state = MAP_LINE_PARSER_STATE_INVALID; - } - break; - case MAP_LINE_PARSER_STATE_BLANK_BEFORE_FILENAME: - if ((c == '/') || (c == '[')) { - state = MAP_LINE_PARSER_STATE_FILENAME; - filename [filename_index] = *current; - filename_index ++; - } else if (! isblank (c)) { - state = MAP_LINE_PARSER_STATE_INVALID; - } - break; - case MAP_LINE_PARSER_STATE_FILENAME: - if (filename_index < MAPS_FILENAME_SIZE) { - if (c == '\n') { - state = MAP_LINE_PARSER_STATE_DONE; - done = TRUE; - filename [filename_index] = 0; - } else { - filename [filename_index] = *current; - filename_index ++; - } - } else { - filename [filename_index] = 0; - g_warning ("ELF filename too long: \"%s\"...\n", filename); - } - break; - case MAP_LINE_PARSER_STATE_DONE: - if (done && is_executable) { - filename [filename_index] = 0; - append_region (regions, (gpointer) start_address, (gpointer) end_address, offset, filename); - } - return current; - case MAP_LINE_PARSER_STATE_INVALID: - if (c == '\n') { - state = MAP_LINE_PARSER_STATE_DONE; - } - break; - } - - if (c == 0) { - return NULL; - } else if (c == '\n') { - state = MAP_LINE_PARSER_STATE_DONE; - } - - GOTO_NEXT_CHAR(current, buffer, fd); - c = *current; - } -} - -static gboolean -scan_process_regions (ProfilerExecutableMemoryRegions *regions) { - char *buffer; - char *filename; - char *current; - int fd; - - fd = open ("/proc/self/maps", O_RDONLY); - if (fd == -1) { - return FALSE; - } - - buffer = malloc (MAPS_BUFFER_SIZE); - filename = malloc (MAPS_FILENAME_SIZE); - update_regions_buffer (fd, buffer); - current = buffer; - while (current != NULL) { - current = parse_map_line (regions, fd, buffer, filename, current); - } - - free (buffer); - free (filename); - - close (fd); - return TRUE; -} -//End of Linux code - -typedef enum { - MONO_PROFILER_STATISTICAL_CODE_END = 0, - MONO_PROFILER_STATISTICAL_CODE_METHOD = 1, - MONO_PROFILER_STATISTICAL_CODE_UNMANAGED_FUNCTION_ID = 2, - MONO_PROFILER_STATISTICAL_CODE_UNMANAGED_FUNCTION_NEW_ID = 3, - MONO_PROFILER_STATISTICAL_CODE_UNMANAGED_FUNCTION_OFFSET_IN_REGION = 4, - MONO_PROFILER_STATISTICAL_CODE_CALL_CHAIN = 5, - MONO_PROFILER_STATISTICAL_CODE_REGIONS = 7 -} MonoProfilerStatisticalCode; - -static void -refresh_memory_regions (void) { - ProfilerExecutableMemoryRegions *old_regions = profiler->executable_regions; - ProfilerExecutableMemoryRegions *new_regions = profiler_executable_memory_regions_new (old_regions->next_id, old_regions->next_unmanaged_function_id); - int i; - - LOG_WRITER_THREAD ("Refreshing memory regions..."); - scan_process_regions (new_regions); - sort_regions (new_regions); - restore_old_regions (old_regions, new_regions); - fix_region_references (new_regions); - LOG_WRITER_THREAD ("Refreshed memory regions."); - - LOG_WRITER_THREAD ("Building symbol tables..."); - build_symbol_tables (new_regions, & (profiler->executable_files)); -#if 0 - printf ("Symbol tables done!\n"); - printf ("Region summary...\n"); - for (i = 0; i < new_regions->regions_count; i++) { - ProfilerExecutableMemoryRegionData *region = new_regions->regions [i]; - printf ("Region %d[%d][NEW:%d] (%p-%p) at %d in file %s\n", i, region->id, region->is_new, - region->start, region->end, region->file_offset, region->file_name); - } - printf ("New symbol tables dump...\n"); - for (i = 0; i < new_regions->regions_count; i++) { - ProfilerExecutableMemoryRegionData *region = new_regions->regions [i]; - - if (region->is_new) { - int symbol_index; - - printf ("Region %d[%d][NEW:%d] (%p-%p) at %d in file %s\n", i, region->id, region->is_new, - region->start, region->end, region->file_offset, region->file_name); - for (symbol_index = 0; symbol_index < region->symbols_count; symbol_index ++) { - ProfilerUnmanagedSymbol *symbol = & (region->symbols [symbol_index]); - printf (" [%d] Symbol %s (offset %d, size %d)\n", symbol_index, - executable_region_symbol_get_name (region, symbol), - symbol->offset, symbol->size); - } - } - } -#endif - LOG_WRITER_THREAD ("Built symbol tables."); - - // This marks the region "sub-block" - write_uint32 (MONO_PROFILER_STATISTICAL_CODE_REGIONS); - - // First write the "removed" regions - for (i = 0; i < old_regions->regions_count; i++) { - ProfilerExecutableMemoryRegionData *region = old_regions->regions [i]; - if (! region->is_new) { -#if DEBUG_STATISTICAL_PROFILER - printf ("[refresh_memory_regions] Invalidated region %d\n", region->id); -#endif - write_uint32 (region->id); - } - } - write_uint32 (0); - - // Then write the new ones - for (i = 0; i < new_regions->regions_count; i++) { - ProfilerExecutableMemoryRegionData *region = new_regions->regions [i]; - if (region->is_new) { - region->is_new = FALSE; - -#if DEBUG_STATISTICAL_PROFILER - printf ("[refresh_memory_regions] Wrote region %d (%p-%p[%d] '%s')\n", region->id, region->start, region->end, region->file_offset, region->file_name); -#endif - write_uint32 (region->id); - write_uint64 (GPOINTER_TO_UINT (region->start)); - write_uint32 (GPOINTER_TO_UINT (region->end) - GPOINTER_TO_UINT (region->start)); - write_uint32 (region->file_offset); - write_string (region->file_name); - } - } - write_uint32 (0); - - // Finally, free the old ones, and replace them - profiler_executable_memory_regions_destroy (old_regions); - profiler->executable_regions = new_regions; -} - -static gboolean -write_statistical_hit (gpointer address, gboolean regions_refreshed) { - ProfilerCodeBuffer *code_buffer = profiler_code_buffer_from_address (profiler, address); - - if ((code_buffer != NULL) && (code_buffer->info.type == MONO_PROFILER_CODE_BUFFER_METHOD)) { - MonoMethod *method = code_buffer->info.data.method; - MethodIdMappingElement *element = method_id_mapping_element_get (method); - - if (element != NULL) { -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_hit] Wrote method %d\n", element->id); -#endif - write_uint32 ((element->id << 3) | MONO_PROFILER_STATISTICAL_CODE_METHOD); - } else { -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_hit] Wrote unknown method %p\n", method); -#endif - write_uint32 (MONO_PROFILER_STATISTICAL_CODE_METHOD); - } - } else { - ProfilerExecutableMemoryRegionData *region = find_address_region (profiler->executable_regions, address); - - if (region == NULL && ! regions_refreshed) { -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_hit] Cannot find region for address %p, refreshing...\n", address); -#endif - refresh_memory_regions (); - regions_refreshed = TRUE; - region = find_address_region (profiler->executable_regions, address); - } - - if (region != NULL) { - guint32 offset = ((guint8*)address) - ((guint8*)region->start); - ProfilerUnmanagedSymbol *symbol = executable_memory_region_find_symbol (region, offset); - - if (symbol != NULL) { - if (symbol->id > 0) { -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_hit] Wrote unmanaged symbol %d\n", symbol->id); -#endif - write_uint32 ((symbol->id << 3) | MONO_PROFILER_STATISTICAL_CODE_UNMANAGED_FUNCTION_ID); - } else { - ProfilerExecutableMemoryRegions *regions = profiler->executable_regions; - const char *symbol_name = executable_region_symbol_get_name (region, symbol); - symbol->id = regions->next_unmanaged_function_id; - regions->next_unmanaged_function_id ++; -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_hit] Wrote new unmanaged symbol in region %d[%d]\n", region->id, offset); -#endif - write_uint32 ((region->id << 3) | MONO_PROFILER_STATISTICAL_CODE_UNMANAGED_FUNCTION_NEW_ID); - write_uint32 (symbol->id); - write_string (symbol_name); - } - } else { -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_hit] Wrote unknown unmanaged hit in region %d[%d] (address %p)\n", region->id, offset, address); -#endif - write_uint32 ((region->id << 3) | MONO_PROFILER_STATISTICAL_CODE_UNMANAGED_FUNCTION_OFFSET_IN_REGION); - write_uint32 (offset); - } - } else { -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_hit] Wrote unknown unmanaged hit %p\n", address); -#endif - write_uint32 (MONO_PROFILER_STATISTICAL_CODE_UNMANAGED_FUNCTION_OFFSET_IN_REGION); - write_uint64 (GPOINTER_TO_UINT (address)); - } - } - - return regions_refreshed; -} - -static void -flush_all_mappings (void); - -static void -write_statistical_data_block (ProfilerStatisticalData *data) { - int start_index = data->first_unwritten_index; - int end_index = data->next_free_index; - gboolean regions_refreshed = FALSE; - int call_chain_depth = profiler->statistical_call_chain_depth; - int index; - - if (end_index > data->end_index) - end_index = data->end_index; - - if (start_index == end_index) - return; - - data->first_unwritten_index = end_index; - - write_clock_data (); - -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_data_block] Starting loop at index %d\n", start_index); -#endif - - for (index = start_index; index < end_index; index ++) { - int base_index = index * (call_chain_depth + 1); - ProfilerStatisticalHit hit = data->hits [base_index]; - int callers_count; - - regions_refreshed = write_statistical_hit (hit.address, regions_refreshed); - base_index ++; - - for (callers_count = 0; callers_count < call_chain_depth; callers_count ++) { - hit = data->hits [base_index + callers_count]; - if (hit.address == NULL) { - break; - } - } - - if (callers_count > 0) { - write_uint32 ((callers_count << 3) | MONO_PROFILER_STATISTICAL_CODE_CALL_CHAIN); - - for (callers_count = 0; callers_count < call_chain_depth; callers_count ++) { - hit = data->hits [base_index + callers_count]; - if (hit.address != NULL) { - regions_refreshed = write_statistical_hit (hit.address, regions_refreshed); - } else { - break; - } - } - } - } - write_uint32 (MONO_PROFILER_STATISTICAL_CODE_END); - -#if DEBUG_STATISTICAL_PROFILER - printf ("[write_statistical_data_block] Ending loop at index %d\n", end_index); -#endif - write_clock_data (); - - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_STATISTICAL); -} - -static void -write_intro_block (void) { - write_uint32 (1); - write_string ("mono"); - write_uint32 (profiler->flags); - write_uint64 (profiler->start_counter); - write_uint64 (profiler->start_time); - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_INTRO); -} - -static void -write_end_block (void) { - write_uint32 (1); - write_uint64 (profiler->end_counter); - write_uint64 (profiler->end_time); - write_current_block (MONO_PROFILER_FILE_BLOCK_KIND_END); -} - -static void -update_mapping (ProfilerPerThreadData *data) { - ProfilerEventData *start = data->first_unmapped_event; - ProfilerEventData *end = data->next_free_event; - data->first_unmapped_event = end; - -#if (DEBUG_LOGGING_PROFILER) - printf ("[update_mapping][TID %ld] START\n", data->thread_id); -#endif - while (start < end) { -#if DEBUG_LOGGING_PROFILER - printf ("Examining event %p[TID %ld] looking for a new mapping...\n", start, data->thread_id); -#endif - if (start->data_type == MONO_PROFILER_EVENT_DATA_TYPE_CLASS) { - ClassIdMappingElement *element = class_id_mapping_element_get (start->data.address); - if (element == NULL) { - MonoClass *klass = start->data.address; - class_id_mapping_element_new (klass); - } - } else if (start->data_type == MONO_PROFILER_EVENT_DATA_TYPE_METHOD) { - MethodIdMappingElement *element = method_id_mapping_element_get (start->data.address); - if (element == NULL) { - MonoMethod *method = start->data.address; - if (method != NULL) { - method_id_mapping_element_new (method); - } - } - } - - if (start->value == MAX_EVENT_VALUE) { - start ++; - } - start ++; - } -#if (DEBUG_LOGGING_PROFILER) - printf ("[update_mapping][TID %ld] END\n", data->thread_id); -#endif -} - -static void -flush_all_mappings (void) { - ProfilerPerThreadData *data; - - for (data = profiler->per_thread_data; data != NULL; data = data->next) { - update_mapping (data); - } - for (data = profiler->per_thread_data; data != NULL; data = data->next) { - write_mapping_block (data->thread_id); - } -} - -static void -flush_full_event_data_buffer (ProfilerPerThreadData *data) { - LOCK_PROFILER (); - - // We flush all mappings because some id definitions could come - // from other threads - flush_all_mappings (); - g_assert (data->first_unmapped_event >= data->next_free_event); - - write_thread_data_block (data); - - data->next_free_event = data->events; - data->next_unreserved_event = data->events; - data->first_unwritten_event = data->events; - data->first_unmapped_event = data->events; - MONO_PROFILER_GET_CURRENT_COUNTER (data->start_event_counter); - data->last_event_counter = data->start_event_counter; - - UNLOCK_PROFILER (); -} - -/* The ">=" operator is intentional, to leave one spare slot for "extended values" */ -#define RESERVE_EVENTS(d,e,count) do {\ - if ((d)->next_unreserved_event >= ((d)->end_event - (count))) {\ - flush_full_event_data_buffer (d);\ - }\ - (e) = (d)->next_unreserved_event;\ - (d)->next_unreserved_event += (count);\ -} while (0) -#define GET_NEXT_FREE_EVENT(d,e) RESERVE_EVENTS ((d),(e),1) -#define COMMIT_RESERVED_EVENTS(d) do {\ - data->next_free_event = data->next_unreserved_event;\ -} while (0) - -static void -flush_everything (void) { - ProfilerPerThreadData *data; - - flush_all_mappings (); - for (data = profiler->per_thread_data; data != NULL; data = data->next) { - write_thread_data_block (data); - } - write_statistical_data_block (profiler->statistical_data); -} - -#define RESULT_TO_LOAD_CODE(r) (((r)==MONO_PROFILE_OK)?MONO_PROFILER_LOADED_EVENT_SUCCESS:MONO_PROFILER_LOADED_EVENT_FAILURE) -static void -appdomain_start_load (MonoProfiler *profiler, MonoDomain *domain) { - LOCK_PROFILER (); - loaded_element_load_start (profiler->loaded_appdomains, domain); - UNLOCK_PROFILER (); -} - -static void -appdomain_end_load (MonoProfiler *profiler, MonoDomain *domain, int result) { - char *name; - LoadedElement *element; - - name = g_strdup_printf ("%d", mono_domain_get_id (domain)); - LOCK_PROFILER (); - element = loaded_element_load_end (profiler->loaded_appdomains, domain, name); - write_element_load_block (element, MONO_PROFILER_LOADED_EVENT_APPDOMAIN | RESULT_TO_LOAD_CODE (result), CURRENT_THREAD_ID (), domain); - UNLOCK_PROFILER (); -} - -static void -appdomain_start_unload (MonoProfiler *profiler, MonoDomain *domain) { - LOCK_PROFILER (); - loaded_element_unload_start (profiler->loaded_appdomains, domain); - flush_everything (); - UNLOCK_PROFILER (); -} - -static void -appdomain_end_unload (MonoProfiler *profiler, MonoDomain *domain) { - LoadedElement *element; - - LOCK_PROFILER (); - element = loaded_element_unload_end (profiler->loaded_appdomains, domain); - write_element_unload_block (element, MONO_PROFILER_LOADED_EVENT_APPDOMAIN, CURRENT_THREAD_ID ()); - UNLOCK_PROFILER (); -} - -static void -module_start_load (MonoProfiler *profiler, MonoImage *module) { - LOCK_PROFILER (); - loaded_element_load_start (profiler->loaded_modules, module); - UNLOCK_PROFILER (); -} - -static void -module_end_load (MonoProfiler *profiler, MonoImage *module, int result) { - char *name; - MonoAssemblyName aname; - LoadedElement *element; - - if (mono_assembly_fill_assembly_name (module, &aname)) { - name = mono_stringify_assembly_name (&aname); - } else { - name = g_strdup_printf ("Dynamic module \"%p\"", module); - } - LOCK_PROFILER (); - element = loaded_element_load_end (profiler->loaded_modules, module, name); - write_element_load_block (element, MONO_PROFILER_LOADED_EVENT_MODULE | RESULT_TO_LOAD_CODE (result), CURRENT_THREAD_ID (), module); - UNLOCK_PROFILER (); -} - -static void -module_start_unload (MonoProfiler *profiler, MonoImage *module) { - LOCK_PROFILER (); - loaded_element_unload_start (profiler->loaded_modules, module); - flush_everything (); - UNLOCK_PROFILER (); -} - -static void -module_end_unload (MonoProfiler *profiler, MonoImage *module) { - LoadedElement *element; - - LOCK_PROFILER (); - element = loaded_element_unload_end (profiler->loaded_modules, module); - write_element_unload_block (element, MONO_PROFILER_LOADED_EVENT_MODULE, CURRENT_THREAD_ID ()); - UNLOCK_PROFILER (); -} - -static void -assembly_start_load (MonoProfiler *profiler, MonoAssembly *assembly) { - LOCK_PROFILER (); - loaded_element_load_start (profiler->loaded_assemblies, assembly); - UNLOCK_PROFILER (); -} - -static void -assembly_end_load (MonoProfiler *profiler, MonoAssembly *assembly, int result) { - char *name; - MonoAssemblyName aname; - LoadedElement *element; - - if (mono_assembly_fill_assembly_name (mono_assembly_get_image (assembly), &aname)) { - name = mono_stringify_assembly_name (&aname); - } else { - name = g_strdup_printf ("Dynamic assembly \"%p\"", assembly); - } - LOCK_PROFILER (); - element = loaded_element_load_end (profiler->loaded_assemblies, assembly, name); - write_element_load_block (element, MONO_PROFILER_LOADED_EVENT_ASSEMBLY | RESULT_TO_LOAD_CODE (result), CURRENT_THREAD_ID (), assembly); - UNLOCK_PROFILER (); -} - -static void -assembly_start_unload (MonoProfiler *profiler, MonoAssembly *assembly) { - LOCK_PROFILER (); - loaded_element_unload_start (profiler->loaded_assemblies, assembly); - flush_everything (); - UNLOCK_PROFILER (); -} -static void -assembly_end_unload (MonoProfiler *profiler, MonoAssembly *assembly) { - LoadedElement *element; - - LOCK_PROFILER (); - element = loaded_element_unload_end (profiler->loaded_assemblies, assembly); - write_element_unload_block (element, MONO_PROFILER_LOADED_EVENT_ASSEMBLY, CURRENT_THREAD_ID ()); - UNLOCK_PROFILER (); -} - -#if (DEBUG_LOGGING_PROFILER) -static const char* -class_event_code_to_string (MonoProfilerClassEvents code) { - switch (code) { - case MONO_PROFILER_EVENT_CLASS_LOAD: return "LOAD"; - case MONO_PROFILER_EVENT_CLASS_UNLOAD: return "UNLOAD"; - case MONO_PROFILER_EVENT_CLASS_ALLOCATION: return "ALLOCATION"; - case MONO_PROFILER_EVENT_CLASS_EXCEPTION: return "EXCEPTION"; - default: g_assert_not_reached (); return ""; - } -} -static const char* -method_event_code_to_string (MonoProfilerMethodEvents code) { - switch (code) { - case MONO_PROFILER_EVENT_METHOD_CALL: return "CALL"; - case MONO_PROFILER_EVENT_METHOD_JIT: return "JIT"; - case MONO_PROFILER_EVENT_METHOD_FREED: return "FREED"; - case MONO_PROFILER_EVENT_METHOD_ALLOCATION_CALLER: return "ALLOCATION_CALLER"; - case MONO_PROFILER_EVENT_METHOD_ALLOCATION_JIT_TIME_CALLER: return "ALLOCATION_JIT_TIME_CALLER"; - case MONO_PROFILER_EVENT_ALLOCATION_OBJECT_ID: return "ALLOCATION_OBJECT_ID"; - default: g_assert_not_reached (); return ""; - } -} -static const char* -number_event_code_to_string (MonoProfilerEvents code) { - switch (code) { - case MONO_PROFILER_EVENT_THREAD: return "THREAD"; - case MONO_PROFILER_EVENT_GC_COLLECTION: return "GC_COLLECTION"; - case MONO_PROFILER_EVENT_GC_MARK: return "GC_MARK"; - case MONO_PROFILER_EVENT_GC_SWEEP: return "GC_SWEEP"; - case MONO_PROFILER_EVENT_GC_RESIZE: return "GC_RESIZE"; - case MONO_PROFILER_EVENT_GC_STOP_WORLD: return "GC_STOP_WORLD"; - case MONO_PROFILER_EVENT_GC_START_WORLD: return "GC_START_WORLD"; - case MONO_PROFILER_EVENT_JIT_TIME_ALLOCATION: return "JIT_TIME_ALLOCATION"; - case MONO_PROFILER_EVENT_STACK_SECTION: return "STACK_SECTION"; - case MONO_PROFILER_EVENT_ALLOCATION_OBJECT_ID: return "ALLOCATION_OBJECT_ID"; - default: g_assert_not_reached (); return ""; - } -} -static const char* -event_result_to_string (MonoProfilerEventResult code) { - switch (code) { - case MONO_PROFILER_EVENT_RESULT_SUCCESS: return "SUCCESS"; - case MONO_PROFILER_EVENT_RESULT_FAILURE: return "FAILURE"; - default: g_assert_not_reached (); return ""; - } -} -static const char* -event_kind_to_string (MonoProfilerEventKind code) { - switch (code) { - case MONO_PROFILER_EVENT_KIND_START: return "START"; - case MONO_PROFILER_EVENT_KIND_END: return "END"; - default: g_assert_not_reached (); return ""; - } -} -static void -print_event_data (ProfilerPerThreadData *data, ProfilerEventData *event, guint64 value) { - if (event->data_type == MONO_PROFILER_EVENT_DATA_TYPE_CLASS) { - printf ("STORE EVENT [TID %ld][EVENT %ld] CLASS[%p] %s:%s:%s[%d-%d-%d] %ld (%s.%s)\n", - data->thread_id, - event - data->events, - event->data.address, - class_event_code_to_string (event->code & ~MONO_PROFILER_EVENT_RESULT_MASK), - event_result_to_string (event->code & MONO_PROFILER_EVENT_RESULT_MASK), - event_kind_to_string (event->kind), - event->data_type, - event->kind, - event->code, - value, - mono_class_get_namespace ((MonoClass*) event->data.address), - mono_class_get_name ((MonoClass*) event->data.address)); - } else if (event->data_type == MONO_PROFILER_EVENT_DATA_TYPE_METHOD) { - printf ("STORE EVENT [TID %ld][EVENT %ld] METHOD[%p] %s:%s:%s[%d-%d-%d] %ld (%s.%s:%s (?))\n", - data->thread_id, - event - data->events, - event->data.address, - method_event_code_to_string (event->code & ~MONO_PROFILER_EVENT_RESULT_MASK), - event_result_to_string (event->code & MONO_PROFILER_EVENT_RESULT_MASK), - event_kind_to_string (event->kind), - event->data_type, - event->kind, - event->code, - value, - (event->data.address != NULL) ? mono_class_get_namespace (mono_method_get_class ((MonoMethod*) event->data.address)) : "", - (event->data.address != NULL) ? mono_class_get_name (mono_method_get_class ((MonoMethod*) event->data.address)) : "", - (event->data.address != NULL) ? mono_method_get_name ((MonoMethod*) event->data.address) : ""); - } else { - printf ("STORE EVENT [TID %ld][EVENT %ld] NUMBER[%ld] %s:%s[%d-%d-%d] %ld\n", - data->thread_id, - event - data->events, - (guint64) event->data.number, - number_event_code_to_string (event->code), - event_kind_to_string (event->kind), - event->data_type, - event->kind, - event->code, - value); - } -} -#define LOG_EVENT(data,ev,val) print_event_data ((data),(ev),(val)) -#else -#define LOG_EVENT(data,ev,val) -#endif - -#define RESULT_TO_EVENT_CODE(r) (((r)==MONO_PROFILE_OK)?MONO_PROFILER_EVENT_RESULT_SUCCESS:MONO_PROFILER_EVENT_RESULT_FAILURE) - -#define STORE_EVENT_ITEM_COUNTER(event,p,i,dt,c,k) do {\ - guint64 counter;\ - guint64 delta;\ - MONO_PROFILER_GET_CURRENT_COUNTER (counter);\ - (event)->data.address = (i);\ - (event)->data_type = (dt);\ - (event)->code = (c);\ - (event)->kind = (k);\ - delta = counter - data->last_event_counter;\ - if (delta < MAX_EVENT_VALUE) {\ - (event)->value = delta;\ - } else {\ - ProfilerEventData *extension = data->next_unreserved_event;\ - data->next_unreserved_event ++;\ - (event)->value = MAX_EVENT_VALUE;\ - *(guint64*)extension = delta;\ - }\ - data->last_event_counter = counter;\ - LOG_EVENT (data, (event), delta);\ -} while (0); -#define STORE_EVENT_ITEM_VALUE(event,p,i,dt,c,k,v) do {\ - (event)->data.address = (i);\ - (event)->data_type = (dt);\ - (event)->code = (c);\ - (event)->kind = (k);\ - if ((v) < MAX_EVENT_VALUE) {\ - (event)->value = (v);\ - } else {\ - ProfilerEventData *extension = data->next_unreserved_event;\ - data->next_unreserved_event ++;\ - (event)->value = MAX_EVENT_VALUE;\ - *(guint64*)extension = (v);\ - }\ - LOG_EVENT (data, (event), (v));\ -}while (0); -#define STORE_EVENT_NUMBER_COUNTER(event,p,n,dt,c,k) do {\ - guint64 counter;\ - guint64 delta;\ - MONO_PROFILER_GET_CURRENT_COUNTER (counter);\ - (event)->data.number = (n);\ - (event)->data_type = (dt);\ - (event)->code = (c);\ - (event)->kind = (k);\ - delta = counter - data->last_event_counter;\ - if (delta < MAX_EVENT_VALUE) {\ - (event)->value = delta;\ - } else {\ - ProfilerEventData *extension = data->next_unreserved_event;\ - data->next_unreserved_event ++;\ - (event)->value = MAX_EVENT_VALUE;\ - *(guint64*)extension = delta;\ - }\ - data->last_event_counter = counter;\ - LOG_EVENT (data, (event), delta);\ -}while (0); -#define STORE_EVENT_NUMBER_VALUE(event,p,n,dt,c,k,v) do {\ - (event)->data.number = (n);\ - (event)->data_type = (dt);\ - (event)->code = (c);\ - (event)->kind = (k);\ - if ((v) < MAX_EVENT_VALUE) {\ - (event)->value = (v);\ - } else {\ - ProfilerEventData *extension = data->next_unreserved_event;\ - data->next_unreserved_event ++;\ - (event)->value = MAX_EVENT_VALUE;\ - *(guint64*)extension = (v);\ - }\ - LOG_EVENT (data, (event), (v));\ -}while (0); -#define INCREMENT_EVENT(event) do {\ - if ((event)->value != MAX_EVENT_VALUE) {\ - (event) ++;\ - } else {\ - (event) += 2;\ - }\ -}while (0); - -static void -class_start_load (MonoProfiler *profiler, MonoClass *klass) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_ITEM_COUNTER (event, profiler, klass, MONO_PROFILER_EVENT_DATA_TYPE_CLASS, MONO_PROFILER_EVENT_CLASS_LOAD, MONO_PROFILER_EVENT_KIND_START); - COMMIT_RESERVED_EVENTS (data); -} -static void -class_end_load (MonoProfiler *profiler, MonoClass *klass, int result) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_ITEM_COUNTER (event, profiler, klass, MONO_PROFILER_EVENT_DATA_TYPE_CLASS, MONO_PROFILER_EVENT_CLASS_LOAD | RESULT_TO_EVENT_CODE (result), MONO_PROFILER_EVENT_KIND_END); - COMMIT_RESERVED_EVENTS (data); -} -static void -class_start_unload (MonoProfiler *profiler, MonoClass *klass) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_ITEM_COUNTER (event, profiler, klass, MONO_PROFILER_EVENT_DATA_TYPE_CLASS, MONO_PROFILER_EVENT_CLASS_UNLOAD, MONO_PROFILER_EVENT_KIND_START); - COMMIT_RESERVED_EVENTS (data); -} -static void -class_end_unload (MonoProfiler *profiler, MonoClass *klass) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_ITEM_COUNTER (event, profiler, klass, MONO_PROFILER_EVENT_DATA_TYPE_CLASS, MONO_PROFILER_EVENT_CLASS_UNLOAD, MONO_PROFILER_EVENT_KIND_END); - COMMIT_RESERVED_EVENTS (data); -} - -static void -method_start_jit (MonoProfiler *profiler, MonoMethod *method) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - thread_stack_push_jitted_safely (&(data->stack), method, TRUE); - STORE_EVENT_ITEM_COUNTER (event, profiler, method, MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_JIT, MONO_PROFILER_EVENT_KIND_START); - COMMIT_RESERVED_EVENTS (data); -} -static void -method_end_jit (MonoProfiler *profiler, MonoMethod *method, int result) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_ITEM_COUNTER (event, profiler, method, MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_JIT | RESULT_TO_EVENT_CODE (result), MONO_PROFILER_EVENT_KIND_END); - thread_stack_pop (&(data->stack)); - COMMIT_RESERVED_EVENTS (data); -} - -#if (HAS_OPROFILE) -static void -method_jit_result (MonoProfiler *prof, MonoMethod *method, MonoJitInfo* jinfo, int result) { - if (profiler->action_flags.oprofile && (result == MONO_PROFILE_OK)) { - MonoClass *klass = mono_method_get_class (method); - char *signature = mono_signature_get_desc (mono_method_signature (method), TRUE); - char *name = g_strdup_printf ("%s.%s:%s (%s)", mono_class_get_namespace (klass), mono_class_get_name (klass), mono_method_get_name (method), signature); - gpointer code_start = mono_jit_info_get_code_start (jinfo); - int code_size = mono_jit_info_get_code_size (jinfo); - - if (op_write_native_code (name, code_start, code_size)) { - g_warning ("Problem calling op_write_native_code\n"); - } - - g_free (signature); - g_free (name); - } -} -#endif - - -static void -method_enter (MonoProfiler *profiler, MonoMethod *method) { - ProfilerPerThreadData *data; - - CHECK_PROFILER_ENABLED (); - GET_PROFILER_THREAD_DATA (data); - if (profiler->action_flags.track_calls) { - ProfilerEventData *event; - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_ITEM_COUNTER (event, profiler, method, MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_CALL, MONO_PROFILER_EVENT_KIND_START); - COMMIT_RESERVED_EVENTS (data); - } - if (profiler->action_flags.track_stack) { - thread_stack_push_safely (&(data->stack), method); - } -} -static void -method_leave (MonoProfiler *profiler, MonoMethod *method) { - ProfilerPerThreadData *data; - - CHECK_PROFILER_ENABLED (); - GET_PROFILER_THREAD_DATA (data); - if (profiler->action_flags.track_calls) { - ProfilerEventData *event; - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_ITEM_COUNTER (event, profiler, method, MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_CALL, MONO_PROFILER_EVENT_KIND_END); - COMMIT_RESERVED_EVENTS (data); - } - if (profiler->action_flags.track_stack) { - thread_stack_pop (&(data->stack)); - } -} - -static void -method_free (MonoProfiler *profiler, MonoMethod *method) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_ITEM_COUNTER (event, profiler, method, MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_FREED, 0); - COMMIT_RESERVED_EVENTS (data); -} - -static void -thread_start (MonoProfiler *profiler, uintptr_t tid) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_NUMBER_COUNTER (event, profiler, tid, MONO_PROFILER_EVENT_DATA_TYPE_OTHER, MONO_PROFILER_EVENT_THREAD, MONO_PROFILER_EVENT_KIND_START); - COMMIT_RESERVED_EVENTS (data); -} -static void -thread_end (MonoProfiler *profiler, uintptr_t tid) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_NUMBER_COUNTER (event, profiler, tid, MONO_PROFILER_EVENT_DATA_TYPE_OTHER, MONO_PROFILER_EVENT_THREAD, MONO_PROFILER_EVENT_KIND_END); - COMMIT_RESERVED_EVENTS (data); -} - -static ProfilerEventData* -save_stack_delta (MonoProfiler *profiler, ProfilerPerThreadData *data, ProfilerEventData *events, int unsaved_frames) { - int i; - - /* In this loop it is safe to simply increment "events" because MAX_EVENT_VALUE cannot be reached. */ - STORE_EVENT_NUMBER_VALUE (events, profiler, data->stack.last_saved_top, MONO_PROFILER_EVENT_DATA_TYPE_OTHER, MONO_PROFILER_EVENT_STACK_SECTION, 0, unsaved_frames); - events++; - for (i = 0; i < unsaved_frames; i++) { - if (! thread_stack_index_from_top_is_jitted (&(data->stack), i)) { - STORE_EVENT_ITEM_VALUE (events, profiler, thread_stack_index_from_top (&(data->stack), i), MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_ALLOCATION_CALLER, 0, 0); - } else { - STORE_EVENT_ITEM_VALUE (events, profiler, thread_stack_index_from_top (&(data->stack), i), MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_ALLOCATION_JIT_TIME_CALLER, 0, 0); - } - events ++; - } - - data->stack.last_saved_top = data->stack.top; - - return events; -} - -static void -object_allocated (MonoProfiler *profiler, MonoObject *obj, MonoClass *klass) { - ProfilerPerThreadData *data; - ProfilerEventData *events; - int unsaved_frames; - int event_slot_count; - - GET_PROFILER_THREAD_DATA (data); - event_slot_count = 1; - if (profiler->action_flags.save_allocation_caller) { - event_slot_count ++; - } - if (profiler->action_flags.allocations_carry_id) { - event_slot_count ++; - } - if (profiler->action_flags.save_allocation_stack) { - unsaved_frames = thread_stack_count_unsaved_frames (&(data->stack)); - event_slot_count += (unsaved_frames + 1); - } else { - unsaved_frames = 0; - } - RESERVE_EVENTS (data, events, event_slot_count); - - if (profiler->action_flags.save_allocation_stack) { - events = save_stack_delta (profiler, data, events, unsaved_frames); - } - - STORE_EVENT_ITEM_VALUE (events, profiler, klass, MONO_PROFILER_EVENT_DATA_TYPE_CLASS, MONO_PROFILER_EVENT_CLASS_ALLOCATION, 0, (guint64) mono_object_get_size (obj)); - if (profiler->action_flags.unreachable_objects || profiler->action_flags.heap_shot || profiler->action_flags.collection_summary) { - STORE_ALLOCATED_OBJECT (data, obj); - } - - if (profiler->action_flags.save_allocation_caller) { - MonoMethod *caller = thread_stack_top (&(data->stack)); - gboolean caller_is_jitted = thread_stack_top_is_jitted (&(data->stack)); - int index = 1; - /* In this loop it is safe to simply increment "events" because MAX_EVENT_VALUE cannot be reached. */ - events ++; - - while ((caller != NULL) && (caller->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE)) { - caller = thread_stack_index_from_top (&(data->stack), index); - caller_is_jitted = thread_stack_index_from_top_is_jitted (&(data->stack), index); - index ++; - } - if (! caller_is_jitted) { - STORE_EVENT_ITEM_VALUE (events, profiler, caller, MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_ALLOCATION_CALLER, 0, 0); - } else { - STORE_EVENT_ITEM_VALUE (events, profiler, caller, MONO_PROFILER_EVENT_DATA_TYPE_METHOD, MONO_PROFILER_EVENT_METHOD_ALLOCATION_JIT_TIME_CALLER, 0, 0); - } - } - if (profiler->action_flags.allocations_carry_id) { - events ++; - STORE_EVENT_ITEM_VALUE (events, profiler, obj, MONO_PROFILER_EVENT_DATA_TYPE_OTHER, MONO_PROFILER_EVENT_ALLOCATION_OBJECT_ID, 0, 0); - } - - COMMIT_RESERVED_EVENTS (data); -} - -static void -monitor_event (MonoProfiler *profiler, MonoObject *obj, MonoProfilerMonitorEvent event) { - ProfilerPerThreadData *data; - ProfilerEventData *events; - MonoClass *klass; - int unsaved_frames; - int event_slot_count; - - CHECK_PROFILER_ENABLED (); - - GET_PROFILER_THREAD_DATA (data); - klass = mono_object_get_class (obj); - - unsaved_frames = thread_stack_count_unsaved_frames (&(data->stack)); - if (unsaved_frames > 0) { - event_slot_count = unsaved_frames + 3; - } else { - event_slot_count = 2; - } - - RESERVE_EVENTS (data, events, event_slot_count); - if (unsaved_frames > 0) { - events = save_stack_delta (profiler, data, events, unsaved_frames); - } - STORE_EVENT_ITEM_COUNTER (events, profiler, klass, MONO_PROFILER_EVENT_DATA_TYPE_CLASS, MONO_PROFILER_EVENT_CLASS_MONITOR, MONO_PROFILER_EVENT_KIND_START); - INCREMENT_EVENT (events); - STORE_EVENT_ITEM_VALUE (events, profiler, obj, MONO_PROFILER_EVENT_DATA_TYPE_OTHER, MONO_PROFILER_EVENT_OBJECT_MONITOR, 0, event); - COMMIT_RESERVED_EVENTS (data); -} - -static void -statistical_call_chain (MonoProfiler *profiler, int call_chain_depth, guchar **ips, void *context) { - MonoDomain *domain = mono_domain_get (); - ProfilerStatisticalData *data; - unsigned int index; - - CHECK_PROFILER_ENABLED (); - do { - data = profiler->statistical_data; - index = InterlockedIncrement ((int*) &data->next_free_index); - - if (index <= data->end_index) { - unsigned int base_index = (index - 1) * (profiler->statistical_call_chain_depth + 1); - unsigned int call_chain_index = 0; - - //printf ("[statistical_call_chain] (%d)\n", call_chain_depth); - while (call_chain_index < call_chain_depth) { - ProfilerStatisticalHit *hit = & (data->hits [base_index + call_chain_index]); - //printf ("[statistical_call_chain] [%d] = %p\n", base_index + call_chain_index, ips [call_chain_index]); - hit->address = (gpointer) ips [call_chain_index]; - hit->domain = domain; - call_chain_index ++; - } - while (call_chain_index <= profiler->statistical_call_chain_depth) { - ProfilerStatisticalHit *hit = & (data->hits [base_index + call_chain_index]); - //printf ("[statistical_call_chain] [%d] = NULL\n", base_index + call_chain_index); - hit->address = NULL; - hit->domain = NULL; - call_chain_index ++; - } - } else { - /* Check if we are the one that must swap the buffers */ - if (index == data->end_index + 1) { - ProfilerStatisticalData *new_data; - - /* In the *impossible* case that the writer thread has not finished yet, */ - /* loop waiting for it and meanwhile lose all statistical events... */ - do { - /* First, wait that it consumed the ready buffer */ - while (profiler->statistical_data_ready != NULL); - /* Then, wait that it produced the free buffer */ - new_data = profiler->statistical_data_second_buffer; - } while (new_data == NULL); - - profiler->statistical_data_ready = data; - profiler->statistical_data = new_data; - profiler->statistical_data_second_buffer = NULL; - WRITER_EVENT_RAISE (); - /* Otherwise exit from the handler and drop the event... */ - } else { - break; - } - - /* Loop again, hoping to acquire a free slot this time (otherwise the event will be dropped) */ - data = NULL; - } - } while (data == NULL); -} - -static void -statistical_hit (MonoProfiler *profiler, guchar *ip, void *context) { - MonoDomain *domain = mono_domain_get (); - ProfilerStatisticalData *data; - unsigned int index; - - CHECK_PROFILER_ENABLED (); - do { - data = profiler->statistical_data; - index = InterlockedIncrement ((int*) &data->next_free_index); - - if (index <= data->end_index) { - ProfilerStatisticalHit *hit = & (data->hits [index - 1]); - hit->address = (gpointer) ip; - hit->domain = domain; - } else { - /* Check if we are the one that must swap the buffers */ - if (index == data->end_index + 1) { - ProfilerStatisticalData *new_data; - - /* In the *impossible* case that the writer thread has not finished yet, */ - /* loop waiting for it and meanwhile lose all statistical events... */ - do { - /* First, wait that it consumed the ready buffer */ - while (profiler->statistical_data_ready != NULL); - /* Then, wait that it produced the free buffer */ - new_data = profiler->statistical_data_second_buffer; - } while (new_data == NULL); - - profiler->statistical_data_ready = data; - profiler->statistical_data = new_data; - profiler->statistical_data_second_buffer = NULL; - WRITER_EVENT_RAISE (); - } - - /* Loop again, hoping to acquire a free slot this time */ - data = NULL; - } - } while (data == NULL); -} - -static MonoProfilerEvents -gc_event_code_from_profiler_event (MonoGCEvent event) { - switch (event) { - case MONO_GC_EVENT_START: - case MONO_GC_EVENT_END: - return MONO_PROFILER_EVENT_GC_COLLECTION; - case MONO_GC_EVENT_MARK_START: - case MONO_GC_EVENT_MARK_END: - return MONO_PROFILER_EVENT_GC_MARK; - case MONO_GC_EVENT_RECLAIM_START: - case MONO_GC_EVENT_RECLAIM_END: - return MONO_PROFILER_EVENT_GC_SWEEP; - case MONO_GC_EVENT_PRE_STOP_WORLD: - case MONO_GC_EVENT_POST_STOP_WORLD: - return MONO_PROFILER_EVENT_GC_STOP_WORLD; - case MONO_GC_EVENT_PRE_START_WORLD: - case MONO_GC_EVENT_POST_START_WORLD: - return MONO_PROFILER_EVENT_GC_START_WORLD; - default: - g_assert_not_reached (); - return 0; - } -} - -static MonoProfilerEventKind -gc_event_kind_from_profiler_event (MonoGCEvent event) { - switch (event) { - case MONO_GC_EVENT_START: - case MONO_GC_EVENT_MARK_START: - case MONO_GC_EVENT_RECLAIM_START: - case MONO_GC_EVENT_PRE_STOP_WORLD: - case MONO_GC_EVENT_PRE_START_WORLD: - return MONO_PROFILER_EVENT_KIND_START; - case MONO_GC_EVENT_END: - case MONO_GC_EVENT_MARK_END: - case MONO_GC_EVENT_RECLAIM_END: - case MONO_GC_EVENT_POST_START_WORLD: - case MONO_GC_EVENT_POST_STOP_WORLD: - return MONO_PROFILER_EVENT_KIND_END; - default: - g_assert_not_reached (); - return 0; - } -} - -static gboolean -dump_current_heap_snapshot (void) { - gboolean result; - - if (profiler->heap_shot_was_requested) { - result = TRUE; - } else { - if (profiler->dump_next_heap_snapshots > 0) { - profiler->dump_next_heap_snapshots--; - result = TRUE; - } else if (profiler->dump_next_heap_snapshots < 0) { - result = TRUE; - } else { - result = FALSE; - } - } - - return result; -} - -static void -profiler_heap_buffers_setup (ProfilerHeapShotHeapBuffers *heap) { - heap->buffers = g_new (ProfilerHeapShotHeapBuffer, 1); - heap->buffers->previous = NULL; - heap->buffers->next = NULL; - heap->buffers->start_slot = &(heap->buffers->buffer [0]); - heap->buffers->end_slot = &(heap->buffers->buffer [PROFILER_HEAP_SHOT_HEAP_BUFFER_SIZE]); - heap->last = heap->buffers; - heap->current = heap->buffers; - heap->first_free_slot = & (heap->buffers->buffer [0]); -} -static void -profiler_heap_buffers_clear (ProfilerHeapShotHeapBuffers *heap) { - heap->buffers = NULL; - heap->last = NULL; - heap->current = NULL; - heap->first_free_slot = NULL; -} -static void -profiler_heap_buffers_free (ProfilerHeapShotHeapBuffers *heap) { - ProfilerHeapShotHeapBuffer *current = heap->buffers; - while (current != NULL) { - ProfilerHeapShotHeapBuffer *next = current->next; - g_free (current); - current = next; - } - profiler_heap_buffers_clear (heap); -} - -static int -report_object_references (gpointer *start, ClassIdMappingElement *layout, ProfilerHeapShotWriteJob *job) { - int reported_references = 0; - int slot; - - for (slot = 0; slot < layout->data.layout.slots; slot ++) { - gboolean slot_has_reference; - if (layout->data.layout.slots <= CLASS_LAYOUT_PACKED_BITMAP_SIZE) { - if (layout->data.bitmap.compact & (((guint64)1) << slot)) { - slot_has_reference = TRUE; - } else { - slot_has_reference = FALSE; - } - } else { - if (layout->data.bitmap.extended [slot >> 3] & (1 << (slot & 7))) { - slot_has_reference = TRUE; - } else { - slot_has_reference = FALSE; - } - } - - if (slot_has_reference) { - gpointer field = start [slot]; - - if ((field != NULL) && mono_object_is_alive (field)) { - reported_references ++; - WRITE_HEAP_SHOT_JOB_VALUE (job, field); - } - } - } - - return reported_references; -} - -static void -profiler_heap_report_object_reachable (ProfilerHeapShotWriteJob *job, MonoObject *obj) { - if (job != NULL) { - MonoClass *klass = mono_object_get_class (obj); - ClassIdMappingElement *class_id = class_id_mapping_element_get (klass); - if (class_id == NULL) { - printf ("profiler_heap_report_object_reachable: class %p (%s.%s) has no id\n", klass, mono_class_get_namespace (klass), mono_class_get_name (klass)); - } - g_assert (class_id != NULL); - - if (job->summary.capacity > 0) { - guint32 id = class_id->id; - g_assert (id < job->summary.capacity); - - job->summary.per_class_data [id].reachable.instances ++; - job->summary.per_class_data [id].reachable.bytes += mono_object_get_size (obj); - } - if (profiler->action_flags.heap_shot && job->dump_heap_data) { - int reference_counter = 0; - gpointer *reference_counter_location; - - WRITE_HEAP_SHOT_JOB_VALUE_WITH_CODE (job, obj, HEAP_CODE_OBJECT); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_report_object_reachable: reported object %p at cursor %p\n", obj, (job->cursor - 1)); -#endif - WRITE_HEAP_SHOT_JOB_VALUE (job, NULL); - reference_counter_location = job->cursor - 1; - - if (mono_class_get_rank (klass)) { - MonoArray *array = (MonoArray *) obj; - MonoClass *element_class = mono_class_get_element_class (klass); - ClassIdMappingElement *element_id = class_id_mapping_element_get (element_class); - - g_assert (element_id != NULL); - if (element_id->data.layout.slots == CLASS_LAYOUT_NOT_INITIALIZED) { - class_id_mapping_element_build_layout_bitmap (element_class, element_id); - } - if (! mono_class_is_valuetype (element_class)) { - int length = mono_array_length (array); - int i; - for (i = 0; i < length; i++) { - MonoObject *array_element = mono_array_get (array, MonoObject*, i); - if ((array_element != NULL) && mono_object_is_alive (array_element)) { - reference_counter ++; - WRITE_HEAP_SHOT_JOB_VALUE (job, array_element); - } - } - } else if (element_id->data.layout.references > 0) { - int length = mono_array_length (array); - int array_element_size = mono_array_element_size (klass); - int i; - for (i = 0; i < length; i++) { - gpointer array_element_address = mono_array_addr_with_size (array, array_element_size, i); - reference_counter += report_object_references (array_element_address, element_id, job); - } - } - } else { - if (class_id->data.layout.slots == CLASS_LAYOUT_NOT_INITIALIZED) { - class_id_mapping_element_build_layout_bitmap (klass, class_id); - } - if (class_id->data.layout.references > 0) { - reference_counter += report_object_references ((gpointer)(((char*)obj) + sizeof (MonoObject)), class_id, job); - } - } - - *reference_counter_location = GINT_TO_POINTER (reference_counter); -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_report_object_reachable: updated reference_counter_location %p with value %d\n", reference_counter_location, reference_counter); -#endif - } - } -} -static void -profiler_heap_report_object_unreachable (ProfilerHeapShotWriteJob *job, MonoObject *obj) { - if (job != NULL) { - MonoClass *klass = mono_object_get_class (obj); - guint32 size = mono_object_get_size (obj); - - if (job->summary.capacity > 0) { - ClassIdMappingElement *class_id = class_id_mapping_element_get (klass); - guint32 id; - - if (class_id == NULL) { - printf ("profiler_heap_report_object_reachable: class %p (%s.%s) has no id\n", klass, mono_class_get_namespace (klass), mono_class_get_name (klass)); - } - g_assert (class_id != NULL); - id = class_id->id; - g_assert (id < job->summary.capacity); - - job->summary.per_class_data [id].unreachable.instances ++; - job->summary.per_class_data [id].unreachable.bytes += size; - } - if (profiler->action_flags.unreachable_objects && job->dump_heap_data) { -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_report_object_unreachable: at job %p writing klass %p\n", job, klass); -#endif - WRITE_HEAP_SHOT_JOB_VALUE_WITH_CODE (job, klass, HEAP_CODE_FREE_OBJECT_CLASS); - -#if DEBUG_HEAP_PROFILER - printf ("profiler_heap_report_object_unreachable: at job %p writing size %p\n", job, GUINT_TO_POINTER (size)); -#endif - WRITE_HEAP_SHOT_JOB_VALUE (job, GUINT_TO_POINTER (size)); - } - } -} - -static void -profiler_heap_add_object (ProfilerHeapShotHeapBuffers *heap, ProfilerHeapShotWriteJob *job, MonoObject *obj) { - if (heap->first_free_slot >= heap->current->end_slot) { - if (heap->current->next != NULL) { - heap->current = heap->current->next; - } else { - ProfilerHeapShotHeapBuffer *buffer = g_new (ProfilerHeapShotHeapBuffer, 1); - buffer->previous = heap->last; - buffer->next = NULL; - buffer->start_slot = &(buffer->buffer [0]); - buffer->end_slot = &(buffer->buffer [PROFILER_HEAP_SHOT_HEAP_BUFFER_SIZE]); - heap->current = buffer; - heap->last->next = buffer; - heap->last = buffer; - } - heap->first_free_slot = &(heap->current->buffer [0]); - } - - *(heap->first_free_slot) = obj; - heap->first_free_slot ++; - profiler_heap_report_object_reachable (job, obj); -} - -static MonoObject* -profiler_heap_pop_object_from_end (ProfilerHeapShotHeapBuffers *heap, ProfilerHeapShotWriteJob *job, MonoObject** current_slot) { - while (heap->first_free_slot != current_slot) { - MonoObject* obj; - - if (heap->first_free_slot > heap->current->start_slot) { - heap->first_free_slot --; - } else { - heap->current = heap->current->previous; - g_assert (heap->current != NULL); - heap->first_free_slot = heap->current->end_slot - 1; - } - - obj = *(heap->first_free_slot); - - if (mono_object_is_alive (obj)) { - profiler_heap_report_object_reachable (job, obj); - return obj; - } else { - profiler_heap_report_object_unreachable (job, obj); - } - } - return NULL; -} - -static void -profiler_heap_scan (ProfilerHeapShotHeapBuffers *heap, ProfilerHeapShotWriteJob *job) { - ProfilerHeapShotHeapBuffer *current_buffer = heap->buffers; - MonoObject** current_slot = current_buffer->start_slot; - - while (current_slot != heap->first_free_slot) { - MonoObject *obj = *current_slot; - if (mono_object_is_alive (obj)) { - profiler_heap_report_object_reachable (job, obj); - } else { - profiler_heap_report_object_unreachable (job, obj); - *current_slot = profiler_heap_pop_object_from_end (heap, job, current_slot); - } - - if (*current_slot != NULL) { - current_slot ++; - - if (current_slot == current_buffer->end_slot) { - current_buffer = current_buffer->next; - g_assert (current_buffer != NULL); - current_slot = current_buffer->start_slot; - } - } - } -} - -static inline gboolean -heap_shot_write_job_should_be_created (gboolean dump_heap_data) { - return dump_heap_data || profiler->action_flags.unreachable_objects || profiler->action_flags.collection_summary; -} - -static void -process_gc_event (MonoProfiler *profiler, gboolean do_heap_profiling, MonoGCEvent ev) { - static gboolean dump_heap_data; - - switch (ev) { - case MONO_GC_EVENT_PRE_STOP_WORLD: - // Get the lock, so we are sure nobody is flushing events during the collection, - // and we can update all mappings (building the class descriptors). - // This is necessary also during lock profiling (even if do_heap_profiling is FALSE). - LOCK_PROFILER (); - break; - case MONO_GC_EVENT_POST_STOP_WORLD: - if (do_heap_profiling) { - dump_heap_data = dump_current_heap_snapshot (); - if (heap_shot_write_job_should_be_created (dump_heap_data)) { - ProfilerPerThreadData *data; - // Update all mappings, so that we have built all the class descriptors. - flush_all_mappings (); - // Also write all event buffers, so that allocations are recorded. - for (data = profiler->per_thread_data; data != NULL; data = data->next) { - write_thread_data_block (data); - } - } - } else { - dump_heap_data = FALSE; - } - // Release lock... - UNLOCK_PROFILER (); - break; - case MONO_GC_EVENT_MARK_END: { - if (do_heap_profiling) { - ProfilerHeapShotWriteJob *job; - ProfilerPerThreadData *data; - - if (heap_shot_write_job_should_be_created (dump_heap_data)) { - job = profiler_heap_shot_write_job_new (profiler->heap_shot_was_requested, dump_heap_data, profiler->garbage_collection_counter); - profiler->heap_shot_was_requested = FALSE; - MONO_PROFILER_GET_CURRENT_COUNTER (job->start_counter); - MONO_PROFILER_GET_CURRENT_TIME (job->start_time); - } else { - job = NULL; - } - - profiler_heap_scan (&(profiler->heap), job); - - for (data = profiler->per_thread_data; data != NULL; data = data->next) { - ProfilerHeapShotObjectBuffer *buffer; - for (buffer = data->heap_shot_object_buffers; buffer != NULL; buffer = buffer->next) { - MonoObject **cursor; - for (cursor = buffer->first_unprocessed_slot; cursor < buffer->next_free_slot; cursor ++) { - MonoObject *obj = *cursor; -#if DEBUG_HEAP_PROFILER - printf ("gc_event: in object buffer %p(%p-%p) cursor at %p has object %p ", buffer, &(buffer->buffer [0]), buffer->end, cursor, obj); -#endif - if (mono_object_is_alive (obj)) { -#if DEBUG_HEAP_PROFILER - printf ("(object is alive, adding to heap)\n"); -#endif - profiler_heap_add_object (&(profiler->heap), job, obj); - } else { -#if DEBUG_HEAP_PROFILER - printf ("(object is unreachable, reporting in job)\n"); -#endif - profiler_heap_report_object_unreachable (job, obj); - } - } - buffer->first_unprocessed_slot = cursor; - } - } - - if (job != NULL) { - MONO_PROFILER_GET_CURRENT_COUNTER (job->end_counter); - MONO_PROFILER_GET_CURRENT_TIME (job->end_time); - - profiler_add_heap_shot_write_job (job); - profiler_free_heap_shot_write_jobs (); - WRITER_EVENT_RAISE (); - } - } - break; - } - default: - break; - } -} - -static void -gc_event (MonoProfiler *profiler, MonoGCEvent ev, int generation) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - gboolean do_heap_profiling = profiler->action_flags.unreachable_objects || profiler->action_flags.heap_shot || profiler->action_flags.collection_summary; - guint32 event_value; - - if (ev == MONO_GC_EVENT_START) { - profiler->garbage_collection_counter ++; - } - - event_value = (profiler->garbage_collection_counter << 8) | generation; - - if (ev == MONO_GC_EVENT_POST_STOP_WORLD) { - process_gc_event (profiler, do_heap_profiling, ev); - } - - /* Check if the gc event should be recorded. */ - if (profiler->action_flags.report_gc_events || do_heap_profiling) { - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - STORE_EVENT_NUMBER_COUNTER (event, profiler, event_value, MONO_PROFILER_EVENT_DATA_TYPE_OTHER, gc_event_code_from_profiler_event (ev), gc_event_kind_from_profiler_event (ev)); - COMMIT_RESERVED_EVENTS (data); - } - - if (ev != MONO_GC_EVENT_POST_STOP_WORLD) { - process_gc_event (profiler, do_heap_profiling, ev); - } -} - -static void -gc_resize (MonoProfiler *profiler, gint64 new_size) { - ProfilerPerThreadData *data; - ProfilerEventData *event; - GET_PROFILER_THREAD_DATA (data); - GET_NEXT_FREE_EVENT (data, event); - profiler->garbage_collection_counter ++; - STORE_EVENT_NUMBER_VALUE (event, profiler, new_size, MONO_PROFILER_EVENT_DATA_TYPE_OTHER, MONO_PROFILER_EVENT_GC_RESIZE, 0, profiler->garbage_collection_counter); - COMMIT_RESERVED_EVENTS (data); -} - -static void -runtime_initialized (MonoProfiler *profiler) { - LOG_WRITER_THREAD ("runtime_initialized: initializing internal calls.\n"); - mono_add_internal_call ("Mono.Profiler.RuntimeControls::EnableProfiler", enable_profiler); - mono_add_internal_call ("Mono.Profiler.RuntimeControls::DisableProfiler", disable_profiler); - mono_add_internal_call ("Mono.Profiler.RuntimeControls::TakeHeapSnapshot", request_heap_snapshot); - LOG_WRITER_THREAD ("runtime_initialized: initialized internal calls.\n"); -} - - -#define MAX_COMMAND_LENGTH (1024) -static int server_socket; -static int command_socket; - -static void -write_user_response (const char *response) { - LOG_USER_THREAD ("write_user_response: writing response:"); - LOG_USER_THREAD (response); - send (command_socket, response, strlen (response), 0); -} - -static void -execute_user_command (char *command) { - char *line_feed; - - LOG_USER_THREAD ("execute_user_command: executing command:"); - LOG_USER_THREAD (command); - - /* Ignore leading and trailing '\r' */ - line_feed = strchr (command, '\r'); - if (line_feed == command) { - command ++; - line_feed = strchr (command, '\r'); - } - if ((line_feed != NULL) && (* (line_feed + 1) == 0)) { - *line_feed = 0; - } - - if (strcmp (command, "enable") == 0) { - LOG_USER_THREAD ("execute_user_command: enabling profiler"); - enable_profiler (); - write_user_response ("DONE\n"); - } else if (strcmp (command, "disable") == 0) { - LOG_USER_THREAD ("execute_user_command: disabling profiler"); - disable_profiler (); - write_user_response ("DONE\n"); - } else if (strcmp (command, "heap-snapshot") == 0) { - LOG_USER_THREAD ("execute_user_command: taking heap snapshot"); - profiler->heap_shot_was_requested = TRUE; - WRITER_EVENT_RAISE (); - write_user_response ("DONE\n"); - } else if (strstr (command, "heap-snapshot-counter") == 0) { - char *equals; - LOG_USER_THREAD ("execute_user_command: changing heap counter"); - equals = strstr (command, "="); - if (equals != NULL) { - equals ++; - if (strcmp (equals, "all") == 0) { - LOG_USER_THREAD ("execute_user_command: heap counter is \"all\""); - profiler->garbage_collection_counter = -1; - } else if (strcmp (equals, "none") == 0) { - LOG_USER_THREAD ("execute_user_command: heap counter is \"none\""); - profiler->garbage_collection_counter = 0; - } else { - profiler->garbage_collection_counter = atoi (equals); - } - write_user_response ("DONE\n"); - } else { - write_user_response ("ERROR\n"); - } - profiler->heap_shot_was_requested = TRUE; - } else { - LOG_USER_THREAD ("execute_user_command: command not recognized"); - write_user_response ("ERROR\n"); - } -} - -static gboolean -process_user_commands (void) { - char *command_buffer = malloc (MAX_COMMAND_LENGTH); - int command_buffer_current_index = 0; - gboolean loop = TRUE; - gboolean result = TRUE; - - while (loop) { - int unprocessed_characters; - - LOG_USER_THREAD ("process_user_commands: reading from socket..."); - unprocessed_characters = recv (command_socket, command_buffer + command_buffer_current_index, MAX_COMMAND_LENGTH - command_buffer_current_index, 0); - - if (unprocessed_characters > 0) { - char *command_end = NULL; - - LOG_USER_THREAD ("process_user_commands: received characters."); - - do { - if (command_end != NULL) { - *command_end = 0; - execute_user_command (command_buffer); - unprocessed_characters -= (((command_end - command_buffer) - command_buffer_current_index) + 1); - - if (unprocessed_characters > 0) { - memmove (command_buffer, command_end + 1, unprocessed_characters); - } - command_buffer_current_index = 0; - } - - command_end = memchr (command_buffer, '\n', command_buffer_current_index + unprocessed_characters); - } while (command_end != NULL); - - command_buffer_current_index += unprocessed_characters; - - } else if (unprocessed_characters == 0) { - LOG_USER_THREAD ("process_user_commands: received no character."); - result = TRUE; - loop = FALSE; - } else { - LOG_USER_THREAD ("process_user_commands: received error."); - result = FALSE; - loop = FALSE; - } - } - - free (command_buffer); - return result; -} - -static guint32 -user_thread (gpointer nothing) { - struct sockaddr_in server_address; - - server_socket = -1; - command_socket = -1; - - LOG_USER_THREAD ("user_thread: starting up..."); - - server_socket = socket (AF_INET, SOCK_STREAM, 0); - if (server_socket < 0) { - LOG_USER_THREAD ("user_thread: error creating socket."); - return 0; - } - memset (& server_address, 0, sizeof (server_address)); - - server_address.sin_family = AF_INET; - server_address.sin_addr.s_addr = INADDR_ANY; - if ((profiler->command_port < 1023) || (profiler->command_port > 65535)) { - LOG_USER_THREAD ("user_thread: invalid port number."); - return 0; - } - server_address.sin_port = htons (profiler->command_port); - - if (bind (server_socket, (struct sockaddr *) &server_address, sizeof(server_address)) < 0) { - LOG_USER_THREAD ("user_thread: error binding socket."); - close (server_socket); - return 0; - } - - LOG_USER_THREAD ("user_thread: listening...\n"); - listen (server_socket, 1); - command_socket = accept (server_socket, NULL, NULL); - if (command_socket < 0) { - LOG_USER_THREAD ("user_thread: error accepting socket."); - close (server_socket); - return 0; - } - - LOG_USER_THREAD ("user_thread: processing user commands..."); - process_user_commands (); - - LOG_USER_THREAD ("user_thread: exiting cleanly."); - close (server_socket); - close (command_socket); - return 0; -} - - -/* called at the end of the program */ -static void -profiler_shutdown (MonoProfiler *prof) -{ - ProfilerPerThreadData* current_thread_data; - ProfilerPerThreadData* next_thread_data; - - LOG_WRITER_THREAD ("profiler_shutdown: zeroing relevant flags"); - mono_profiler_set_events (0); - /* During shutdown searching for MonoJitInfo is not possible... */ - if (profiler->statistical_call_chain_strategy == MONO_PROFILER_CALL_CHAIN_MANAGED) { - mono_profiler_install_statistical_call_chain (NULL, 0, MONO_PROFILER_CALL_CHAIN_NONE); - } - //profiler->flags = 0; - //profiler->action_flags.unreachable_objects = FALSE; - //profiler->action_flags.heap_shot = FALSE; - - LOG_WRITER_THREAD ("profiler_shutdown: asking stats thread to exit"); - profiler->terminate_writer_thread = TRUE; - WRITER_EVENT_RAISE (); - LOG_WRITER_THREAD ("profiler_shutdown: waiting for stats thread to exit"); - WAIT_WRITER_THREAD (); - LOG_WRITER_THREAD ("profiler_shutdown: stats thread should be dead now"); - WRITER_EVENT_DESTROY (); - - LOCK_PROFILER (); - flush_everything (); - MONO_PROFILER_GET_CURRENT_TIME (profiler->end_time); - MONO_PROFILER_GET_CURRENT_COUNTER (profiler->end_counter); - write_end_block (); - FLUSH_FILE (); - CLOSE_FILE(); - mono_profiler_install_code_chunk_new (NULL); - mono_profiler_install_code_chunk_destroy (NULL); - mono_profiler_install_code_buffer_new (NULL); - profiler_code_chunks_cleanup (& (profiler->code_chunks)); - UNLOCK_PROFILER (); - - g_free (profiler->file_name); - if (profiler->file_name_suffix != NULL) { - g_free (profiler->file_name_suffix); - } - - method_id_mapping_destroy (profiler->methods); - class_id_mapping_destroy (profiler->classes); - g_hash_table_destroy (profiler->loaded_assemblies); - g_hash_table_destroy (profiler->loaded_modules); - g_hash_table_destroy (profiler->loaded_appdomains); - - FREE_PROFILER_THREAD_DATA (); - - for (current_thread_data = profiler->per_thread_data; current_thread_data != NULL; current_thread_data = next_thread_data) { - next_thread_data = current_thread_data->next; - profiler_per_thread_data_destroy (current_thread_data); - } - if (profiler->statistical_data != NULL) { - profiler_statistical_data_destroy (profiler->statistical_data); - } - if (profiler->statistical_data_ready != NULL) { - profiler_statistical_data_destroy (profiler->statistical_data_ready); - } - if (profiler->statistical_data_second_buffer != NULL) { - profiler_statistical_data_destroy (profiler->statistical_data_second_buffer); - } - if (profiler->executable_regions != NULL) { - profiler_executable_memory_regions_destroy (profiler->executable_regions); - } - - profiler_heap_buffers_free (&(profiler->heap)); - - profiler_free_write_buffers (); - profiler_destroy_heap_shot_write_jobs (); - - DELETE_PROFILER_MUTEX (); - -#if (HAS_OPROFILE) - if (profiler->action_flags.oprofile) { - op_close_agent (); - } -#endif - - g_free (profiler); - profiler = NULL; -} - -#define FAIL_ARGUMENT_CHECK(message) do {\ - failure_message = (message);\ - goto failure_handling;\ -} while (0) -#define FAIL_PARSING_VALUED_ARGUMENT FAIL_ARGUMENT_CHECK("cannot parse valued argument %s") -#define FAIL_PARSING_FLAG_ARGUMENT FAIL_ARGUMENT_CHECK("cannot parse flag argument %s") -#define CHECK_CONDITION(condition,message) do {\ - gboolean result = (condition);\ - if (result) {\ - FAIL_ARGUMENT_CHECK (message);\ - }\ -} while (0) -#define FAIL_IF_HAS_MINUS CHECK_CONDITION(has_minus,"minus ('-') modifier not allowed for argument %s") -#define TRUE_IF_NOT_MINUS ((!has_minus)?TRUE:FALSE) - -#define DEFAULT_ARGUMENTS "s" -static void -setup_user_options (const char *arguments) { - gchar **arguments_array, **current_argument; - detect_fast_timer (); - - profiler->file_name = NULL; - profiler->file_name_suffix = NULL; - profiler->per_thread_buffer_size = 10000; - profiler->statistical_buffer_size = 10000; - profiler->statistical_call_chain_depth = 0; - profiler->statistical_call_chain_strategy = MONO_PROFILER_CALL_CHAIN_NATIVE; - profiler->write_buffer_size = 1024; - profiler->dump_next_heap_snapshots = 0; - profiler->heap_shot_was_requested = FALSE; - profiler->flags = MONO_PROFILE_APPDOMAIN_EVENTS| - MONO_PROFILE_ASSEMBLY_EVENTS| - MONO_PROFILE_MODULE_EVENTS| - MONO_PROFILE_CLASS_EVENTS| - MONO_PROFILE_METHOD_EVENTS| - MONO_PROFILE_JIT_COMPILATION; - profiler->profiler_enabled = TRUE; - - if (arguments == NULL) { - arguments = DEFAULT_ARGUMENTS; - } else if (strstr (arguments, ":")) { - arguments = strstr (arguments, ":") + 1; - if (arguments [0] == 0) { - arguments = DEFAULT_ARGUMENTS; - } - } - - arguments_array = g_strsplit (arguments, ",", -1); - - for (current_argument = arguments_array; ((current_argument != NULL) && (current_argument [0] != 0)); current_argument ++) { - char *argument = *current_argument; - char *equals = strstr (argument, "="); - const char *failure_message = NULL; - gboolean has_plus; - gboolean has_minus; - - if (*argument == '+') { - has_plus = TRUE; - has_minus = FALSE; - argument ++; - } else if (*argument == '-') { - has_plus = FALSE; - has_minus = TRUE; - argument ++; - } else { - has_plus = FALSE; - has_minus = FALSE; - } - - if (equals != NULL) { - int equals_position = equals - argument; - - if (! (strncmp (argument, "per-thread-buffer-size", equals_position) && strncmp (argument, "tbs", equals_position))) { - int value = atoi (equals + 1); - FAIL_IF_HAS_MINUS; - if (value > 0) { - profiler->per_thread_buffer_size = value; - } - } else if (! (strncmp (argument, "statistical", equals_position) && strncmp (argument, "stat", equals_position) && strncmp (argument, "s", equals_position))) { - int value = atoi (equals + 1); - FAIL_IF_HAS_MINUS; - if (value > 0) { - if (value > MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH) { - value = MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH; - } - profiler->statistical_call_chain_depth = value; - profiler->flags |= MONO_PROFILE_STATISTICAL; - } - } else if (! (strncmp (argument, "call-chain-strategy", equals_position) && strncmp (argument, "ccs", equals_position))) { - char *parameter = equals + 1; - FAIL_IF_HAS_MINUS; - if (! strcmp (parameter, "native")) { - profiler->statistical_call_chain_strategy = MONO_PROFILER_CALL_CHAIN_NATIVE; - } else if (! strcmp (parameter, "glibc")) { - profiler->statistical_call_chain_strategy = MONO_PROFILER_CALL_CHAIN_GLIBC; - } else if (! strcmp (parameter, "managed")) { - profiler->statistical_call_chain_strategy = MONO_PROFILER_CALL_CHAIN_MANAGED; - } else { - failure_message = "invalid call chain strategy in argument %s"; - goto failure_handling; - } - } else if (! (strncmp (argument, "statistical-thread-buffer-size", equals_position) && strncmp (argument, "sbs", equals_position))) { - int value = atoi (equals + 1); - FAIL_IF_HAS_MINUS; - if (value > 0) { - profiler->statistical_buffer_size = value; - } - } else if (! (strncmp (argument, "write-buffer-size", equals_position) && strncmp (argument, "wbs", equals_position))) { - int value = atoi (equals + 1); - FAIL_IF_HAS_MINUS; - if (value > 0) { - profiler->write_buffer_size = value; - } - } else if (! (strncmp (argument, "output", equals_position) && strncmp (argument, "out", equals_position) && strncmp (argument, "o", equals_position) && strncmp (argument, "O", equals_position))) { - FAIL_IF_HAS_MINUS; - if (strlen (equals + 1) > 0) { - profiler->file_name = g_strdup (equals + 1); - } - } else if (! (strncmp (argument, "output-suffix", equals_position) && strncmp (argument, "suffix", equals_position) && strncmp (argument, "os", equals_position) && strncmp (argument, "OS", equals_position))) { - FAIL_IF_HAS_MINUS; - if (strlen (equals + 1) > 0) { - profiler->file_name_suffix = g_strdup (equals + 1); - } - } else if (! (strncmp (argument, "heap-shot", equals_position) && strncmp (argument, "heap", equals_position) && strncmp (argument, "h", equals_position))) { - char *parameter = equals + 1; - if (! strcmp (parameter, "all")) { - profiler->dump_next_heap_snapshots = -1; - } else { - profiler->dump_next_heap_snapshots = atoi (parameter); - } - FAIL_IF_HAS_MINUS; - if (! has_plus) { - profiler->action_flags.save_allocation_caller = TRUE; - profiler->action_flags.save_allocation_stack = TRUE; - profiler->action_flags.allocations_carry_id = TRUE_IF_NOT_MINUS; - } - profiler->action_flags.heap_shot = TRUE_IF_NOT_MINUS; - } else if (! (strncmp (argument, "gc-dumps", equals_position) && strncmp (argument, "gc-d", equals_position) && strncmp (argument, "gcd", equals_position))) { - FAIL_IF_HAS_MINUS; - if (strlen (equals + 1) > 0) { - profiler->dump_next_heap_snapshots = atoi (equals + 1); - } - } else if (! (strncmp (argument, "command-port", equals_position) && strncmp (argument, "cp", equals_position))) { - FAIL_IF_HAS_MINUS; - if (strlen (equals + 1) > 0) { - profiler->command_port = atoi (equals + 1); - } - } else { - FAIL_PARSING_VALUED_ARGUMENT; - } - } else { - if (! (strcmp (argument, "jit") && strcmp (argument, "j"))) { - profiler->action_flags.jit_time = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "allocations") && strcmp (argument, "alloc") && strcmp (argument, "a"))) { - FAIL_IF_HAS_MINUS; - if (! has_plus) { - profiler->action_flags.save_allocation_caller = TRUE; - profiler->action_flags.save_allocation_stack = TRUE; - } - if (! has_minus) { - profiler->flags |= MONO_PROFILE_ALLOCATIONS; - } else { - profiler->flags &= ~MONO_PROFILE_ALLOCATIONS; - } - } else if (! (strcmp (argument, "monitor") && strcmp (argument, "locks") && strcmp (argument, "lock"))) { - FAIL_IF_HAS_MINUS; - profiler->action_flags.track_stack = TRUE; - profiler->flags |= MONO_PROFILE_MONITOR_EVENTS; - profiler->flags |= MONO_PROFILE_GC; - } else if (! (strcmp (argument, "gc") && strcmp (argument, "g"))) { - FAIL_IF_HAS_MINUS; - profiler->action_flags.report_gc_events = TRUE; - profiler->flags |= MONO_PROFILE_GC; - } else if (! (strcmp (argument, "allocations-summary") && strcmp (argument, "as"))) { - profiler->action_flags.collection_summary = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "heap-shot") && strcmp (argument, "heap") && strcmp (argument, "h"))) { - FAIL_IF_HAS_MINUS; - if (! has_plus) { - profiler->action_flags.save_allocation_caller = TRUE; - profiler->action_flags.save_allocation_stack = TRUE; - profiler->action_flags.allocations_carry_id = TRUE_IF_NOT_MINUS; - } - profiler->action_flags.heap_shot = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "unreachable") && strcmp (argument, "free") && strcmp (argument, "f"))) { - profiler->action_flags.unreachable_objects = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "threads") && strcmp (argument, "t"))) { - if (! has_minus) { - profiler->flags |= MONO_PROFILE_THREADS; - } else { - profiler->flags &= ~MONO_PROFILE_THREADS; - } - } else if (! (strcmp (argument, "enter-leave") && strcmp (argument, "calls") && strcmp (argument, "c"))) { - profiler->action_flags.track_calls = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "statistical") && strcmp (argument, "stat") && strcmp (argument, "s"))) { - if (! has_minus) { - profiler->flags |= MONO_PROFILE_STATISTICAL; - } else { - profiler->flags &= ~MONO_PROFILE_STATISTICAL; - } - } else if (! (strcmp (argument, "save-allocation-caller") && strcmp (argument, "sac"))) { - profiler->action_flags.save_allocation_caller = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "save-allocation-stack") && strcmp (argument, "sas"))) { - profiler->action_flags.save_allocation_stack = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "allocations-carry-id") && strcmp (argument, "aci"))) { - profiler->action_flags.allocations_carry_id = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "start-enabled") && strcmp (argument, "se"))) { - profiler->profiler_enabled = TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "start-disabled") && strcmp (argument, "sd"))) { - profiler->profiler_enabled = ! TRUE_IF_NOT_MINUS; - } else if (! (strcmp (argument, "force-accurate-timer") && strcmp (argument, "fac"))) { - use_fast_timer = TRUE_IF_NOT_MINUS; -#if (HAS_OPROFILE) - } else if (! (strcmp (argument, "oprofile") && strcmp (argument, "oprof"))) { - profiler->flags |= MONO_PROFILE_JIT_COMPILATION; - profiler->action_flags.oprofile = TRUE; - if (op_open_agent ()) { - FAIL_ARGUMENT_CHECK ("problem calling op_open_agent"); - } -#endif - } else if (strcmp (argument, "logging")) { - FAIL_PARSING_FLAG_ARGUMENT; - } - } - -failure_handling: - if (failure_message != NULL) { - g_warning (failure_message, argument); - failure_message = NULL; - } - } - - g_free (arguments_array); - - /* Ensure that the profiler flags needed to support required action flags are active */ - if (profiler->action_flags.jit_time) { - profiler->flags |= MONO_PROFILE_JIT_COMPILATION; - } - if (profiler->action_flags.save_allocation_caller || profiler->action_flags.save_allocation_stack || profiler->action_flags.allocations_carry_id) { - profiler->flags |= MONO_PROFILE_ALLOCATIONS; - } - if (profiler->action_flags.collection_summary || profiler->action_flags.heap_shot || profiler->action_flags.unreachable_objects) { - profiler->flags |= MONO_PROFILE_ALLOCATIONS; - profiler->action_flags.report_gc_events = TRUE; - } - if (profiler->action_flags.track_calls) { - profiler->flags |= MONO_PROFILE_ENTER_LEAVE; - profiler->action_flags.jit_time = TRUE; - } - if (profiler->action_flags.save_allocation_caller || profiler->action_flags.save_allocation_stack) { - profiler->action_flags.track_stack = TRUE; - profiler->flags |= MONO_PROFILE_ENTER_LEAVE; - } - if (profiler->action_flags.track_stack) { - profiler->flags |= MONO_PROFILE_ENTER_LEAVE; - } - - /* Tracking call stacks is useless if we already emit all enter-exit events... */ - if (profiler->action_flags.track_calls) { - profiler->action_flags.track_stack = FALSE; - profiler->action_flags.save_allocation_caller = FALSE; - profiler->action_flags.save_allocation_stack = FALSE; - } - - /* Without JIT events the stat profiler will not find method IDs... */ - if (profiler->flags | MONO_PROFILE_STATISTICAL) { - profiler->flags |= MONO_PROFILE_JIT_COMPILATION; - } - /* Profiling allocations without knowing which gc we are doing is not nice... */ - if (profiler->flags | MONO_PROFILE_ALLOCATIONS) { - profiler->flags |= MONO_PROFILE_GC; - profiler->action_flags.report_gc_events = TRUE; - } - - - if (profiler->file_name == NULL) { - char *program_name = g_get_prgname (); - - if (program_name != NULL) { - char *name_buffer = g_strdup (program_name); - char *name_start = name_buffer; - char *cursor; - - /* Jump over the last '/' */ - cursor = strrchr (name_buffer, '/'); - if (cursor == NULL) { - cursor = name_buffer; - } else { - cursor ++; - } - name_start = cursor; - - /* Then jump over the last '\\' */ - cursor = strrchr (name_start, '\\'); - if (cursor == NULL) { - cursor = name_start; - } else { - cursor ++; - } - name_start = cursor; - - /* Finally, find the last '.' */ - cursor = strrchr (name_start, '.'); - if (cursor != NULL) { - *cursor = 0; - } - - if (profiler->file_name_suffix == NULL) { - profiler->file_name = g_strdup_printf ("%s.mprof", name_start); - } else { - profiler->file_name = g_strdup_printf ("%s-%s.mprof", name_start, profiler->file_name_suffix); - } - g_free (name_buffer); - } else { - profiler->file_name = g_strdup_printf ("%s.mprof", "profiler-log"); - } - } -} - -static guint32 -data_writer_thread (gpointer nothing) { - for (;;) { - ProfilerStatisticalData *statistical_data; - gboolean done; - - LOG_WRITER_THREAD ("data_writer_thread: going to sleep"); - WRITER_EVENT_WAIT (); - LOG_WRITER_THREAD ("data_writer_thread: just woke up"); - - if (profiler->heap_shot_was_requested) { - MonoDomain * root_domain = mono_get_root_domain (); - - if (root_domain != NULL) { - MonoThread *this_thread; - LOG_WRITER_THREAD ("data_writer_thread: attaching thread"); - this_thread = mono_thread_attach (root_domain); - LOG_WRITER_THREAD ("data_writer_thread: starting requested collection"); - mono_gc_collect (mono_gc_max_generation ()); - LOG_WRITER_THREAD ("data_writer_thread: requested collection done"); - LOG_WRITER_THREAD ("data_writer_thread: detaching thread"); - mono_thread_detach (this_thread); - this_thread = NULL; - LOG_WRITER_THREAD ("data_writer_thread: collection sequence completed"); - } else { - LOG_WRITER_THREAD ("data_writer_thread: cannot get root domain, collection sequence skipped"); - } - - } - - statistical_data = profiler->statistical_data_ready; - done = (statistical_data == NULL) && (profiler->heap_shot_write_jobs == NULL); - - if (!done) { - LOG_WRITER_THREAD ("data_writer_thread: acquiring lock and writing data"); - LOCK_PROFILER (); - - // This makes sure that all method ids are in place - LOG_WRITER_THREAD ("data_writer_thread: writing mapping..."); - flush_all_mappings (); - LOG_WRITER_THREAD ("data_writer_thread: wrote mapping"); - - if (statistical_data != NULL) { - LOG_WRITER_THREAD ("data_writer_thread: writing statistical data..."); - profiler->statistical_data_ready = NULL; - write_statistical_data_block (statistical_data); - statistical_data->next_free_index = 0; - statistical_data->first_unwritten_index = 0; - profiler->statistical_data_second_buffer = statistical_data; - LOG_WRITER_THREAD ("data_writer_thread: wrote statistical data"); - } - - profiler_process_heap_shot_write_jobs (); - - UNLOCK_PROFILER (); - LOG_WRITER_THREAD ("data_writer_thread: wrote data and released lock"); - } else { - LOG_WRITER_THREAD ("data_writer_thread: acquiring lock and flushing buffers"); - LOCK_PROFILER (); - LOG_WRITER_THREAD ("data_writer_thread: lock acquired, flushing buffers"); - flush_everything (); - UNLOCK_PROFILER (); - LOG_WRITER_THREAD ("data_writer_thread: flushed buffers and released lock"); - } - - if (profiler->terminate_writer_thread) { - LOG_WRITER_THREAD ("data_writer_thread: exiting thread"); - CLEANUP_WRITER_THREAD (); - EXIT_THREAD (); - } - } - return 0; -} - -void -mono_profiler_startup (const char *desc); - -/* the entry point (mono_profiler_load?) */ -void -mono_profiler_startup (const char *desc) -{ - profiler = g_new0 (MonoProfiler, 1); - - setup_user_options ((desc != NULL) ? desc : DEFAULT_ARGUMENTS); - - INITIALIZE_PROFILER_MUTEX (); - MONO_PROFILER_GET_CURRENT_TIME (profiler->start_time); - MONO_PROFILER_GET_CURRENT_COUNTER (profiler->start_counter); - profiler->last_header_counter = 0; - - profiler->methods = method_id_mapping_new (); - profiler->classes = class_id_mapping_new (); - profiler->loaded_element_next_free_id = 1; - profiler->loaded_assemblies = g_hash_table_new_full (g_direct_hash, NULL, NULL, loaded_element_destroy); - profiler->loaded_modules = g_hash_table_new_full (g_direct_hash, NULL, NULL, loaded_element_destroy); - profiler->loaded_appdomains = g_hash_table_new_full (g_direct_hash, NULL, NULL, loaded_element_destroy); - - profiler->statistical_data = profiler_statistical_data_new (profiler); - profiler->statistical_data_second_buffer = profiler_statistical_data_new (profiler); - - profiler->write_buffers = g_malloc (sizeof (ProfilerFileWriteBuffer) + PROFILER_FILE_WRITE_BUFFER_SIZE); - profiler->write_buffers->next = NULL; - profiler->current_write_buffer = profiler->write_buffers; - profiler->current_write_position = 0; - profiler->full_write_buffers = 0; - profiler_code_chunks_initialize (& (profiler->code_chunks)); - - profiler->executable_regions = profiler_executable_memory_regions_new (1, 1); - - profiler->executable_files.table = g_hash_table_new (g_str_hash, g_str_equal); - profiler->executable_files.new_files = NULL; - - profiler->heap_shot_write_jobs = NULL; - if (profiler->action_flags.unreachable_objects || profiler->action_flags.heap_shot || profiler->action_flags.collection_summary) { - profiler_heap_buffers_setup (&(profiler->heap)); - } else { - profiler_heap_buffers_clear (&(profiler->heap)); - } - profiler->garbage_collection_counter = 0; - - WRITER_EVENT_INIT (); - LOG_WRITER_THREAD ("mono_profiler_startup: creating writer thread"); - CREATE_WRITER_THREAD (data_writer_thread); - LOG_WRITER_THREAD ("mono_profiler_startup: created writer thread"); - if ((profiler->command_port >= 1024) && (profiler->command_port <= 65535)) { - LOG_USER_THREAD ("mono_profiler_startup: creating user thread"); - CREATE_USER_THREAD (user_thread); - LOG_USER_THREAD ("mono_profiler_startup: created user thread"); - } else { - LOG_USER_THREAD ("mono_profiler_startup: skipping user thread creation"); - } - - ALLOCATE_PROFILER_THREAD_DATA (); - - OPEN_FILE (); - - write_intro_block (); - write_directives_block (TRUE); - - mono_profiler_install (profiler, profiler_shutdown); - - mono_profiler_install_appdomain (appdomain_start_load, appdomain_end_load, - appdomain_start_unload, appdomain_end_unload); - mono_profiler_install_assembly (assembly_start_load, assembly_end_load, - assembly_start_unload, assembly_end_unload); - mono_profiler_install_module (module_start_load, module_end_load, - module_start_unload, module_end_unload); - mono_profiler_install_class (class_start_load, class_end_load, - class_start_unload, class_end_unload); - mono_profiler_install_jit_compile (method_start_jit, method_end_jit); - mono_profiler_install_enter_leave (method_enter, method_leave); - mono_profiler_install_method_free (method_free); - mono_profiler_install_thread (thread_start, thread_end); - mono_profiler_install_allocation (object_allocated); - mono_profiler_install_monitor (monitor_event); - mono_profiler_install_statistical (statistical_hit); - mono_profiler_install_statistical_call_chain (statistical_call_chain, profiler->statistical_call_chain_depth, profiler->statistical_call_chain_strategy); - mono_profiler_install_gc (gc_event, gc_resize); - mono_profiler_install_runtime_initialized (runtime_initialized); -#if (HAS_OPROFILE) - mono_profiler_install_jit_end (method_jit_result); -#endif - if (profiler->flags | MONO_PROFILE_STATISTICAL) { - mono_profiler_install_code_chunk_new (profiler_code_chunk_new_callback); - mono_profiler_install_code_chunk_destroy (profiler_code_chunk_destroy_callback); - mono_profiler_install_code_buffer_new (profiler_code_buffer_new_callback); - } - - mono_profiler_set_events (profiler->flags); -} - diff --git a/mono/profiler/proflog.c b/mono/profiler/proflog.c index c2108f23252..d10c82a574d 100644 --- a/mono/profiler/proflog.c +++ b/mono/profiler/proflog.c @@ -427,6 +427,10 @@ struct _MethodInfo { MonoJitInfo *ji; }; +#ifdef TLS_INIT +#undef TLS_INIT +#endif + #ifdef HOST_WIN32 #define TLS_SET(x,y) (TlsSetValue (x, y)) #define TLS_GET(t,x) ((t *) TlsGetValue (x)) diff --git a/mono/profiler/proflog.h b/mono/profiler/proflog.h index 3ea6a8d2382..ea3b267dab3 100644 --- a/mono/profiler/proflog.h +++ b/mono/profiler/proflog.h @@ -5,7 +5,7 @@ #define LOG_HEADER_ID 0x4D505A01 #define LOG_VERSION_MAJOR 0 #define LOG_VERSION_MINOR 4 -#define LOG_DATA_VERSION 8 +#define LOG_DATA_VERSION 9 /* * Changes in data versions: * version 2: added offsets in heap walk @@ -14,6 +14,7 @@ * version 5: added counters sampling * version 6: added optional backtrace in sampling info * version 8: added TYPE_RUNTIME and JIT helpers/trampolines + * version 9: added MONO_PROFILER_CODE_BUFFER_EXCEPTION_HANDLING */ enum { diff --git a/mono/tests/Makefile.am b/mono/tests/Makefile.am index 4cb8ee8adfd..0492bad7b53 100644 --- a/mono/tests/Makefile.am +++ b/mono/tests/Makefile.am @@ -307,6 +307,7 @@ BASE_TEST_CS_SRC= \ generic-typedef.2.cs \ generic-marshalbyref.2.cs \ generic-xdomain.2.cs \ + dynamic-generic-size.cs \ bug-431413.2.cs \ bug-459285.2.cs \ generic-virtual-invoke.2.cs \ @@ -668,7 +669,7 @@ TESTSI_IL=$(TEST_IL_SRC:.il=.exe) TESTBS=$(BENCHSRC:.cs=.exe) STRESS_TESTS=$(STRESS_TESTS_SRC:.cs=.exe) -EXTRA_DIST=test-driver $(TEST_CS_SRC_DIST) $(TEST_IL_SRC) \ +EXTRA_DIST=test-driver test-runner.cs $(TEST_CS_SRC_DIST) $(TEST_IL_SRC) \ $(BENCHSRC) $(STRESS_TESTS_SRC) stress-runner.pl $(PREREQ_IL_SRC) $(PREREQ_CS_SRC) %.exe: %.il diff --git a/mono/tests/dynamic-generic-size.cs b/mono/tests/dynamic-generic-size.cs new file mode 100644 index 00000000000..3a26f728d10 --- /dev/null +++ b/mono/tests/dynamic-generic-size.cs @@ -0,0 +1,61 @@ +using System; +using System.Threading; +using System.Reflection; +using System.Reflection.Emit; +using System.Collections.Generic; + +namespace GenericSize +{ + class GenericSize + { + static int Iterations = 10000; + static AssemblyBuilder assembly; + static ModuleBuilder module; + static string ASSEMBLY_NAME = "MonoTests.System.Reflection.Emit.TypeBuilderTest"; + + static void SetUp () + { + AssemblyName assemblyName = new AssemblyName (); + assemblyName.Name = ASSEMBLY_NAME; + + assembly = + Thread.GetDomain ().DefineDynamicAssembly (assemblyName, AssemblyBuilderAccess.Run); + + module = assembly.DefineDynamicModule ("module1"); + } + + static int Main() + { + SetUp (); + + TypeBuilder tb = module.DefineType ("Test", TypeAttributes.Public); + tb.DefineGenericParameters ("T"); + var tb_ctor = tb.DefineDefaultConstructor (MethodAttributes.Public); + + var tb2 = module.DefineType ("Test2", TypeAttributes.Public); + var g0 = tb2.DefineGenericParameters ("T"); + + var mb = tb2.DefineMethod ("Foo", MethodAttributes.Public | MethodAttributes.Static, typeof (object), new Type [0]); + + var il = mb.GetILGenerator(); + il.Emit(OpCodes.Newobj, TypeBuilder.GetConstructor (tb.MakeGenericType (g0), tb_ctor)); + il.Emit(OpCodes.Ret); + + var t1 = tb.CreateType (); + var t2 = tb2.CreateType (); + + var ginst = t2.MakeGenericType (typeof (string)); + var method = ginst.GetMethod ("Foo", BindingFlags.Public | BindingFlags.Static); + + var lst = new List(); + + for (int i = 0; i < GenericSize.Iterations; i++) { + lst.Add (method.Invoke (null, null)); + if (i % 15 == 0) + GC.Collect(); + } + + return 0; + } + } +} diff --git a/mono/utils/mono-codeman.c b/mono/utils/mono-codeman.c index 5c2a83b1189..f027e0f447f 100644 --- a/mono/utils/mono-codeman.c +++ b/mono/utils/mono-codeman.c @@ -529,15 +529,21 @@ new_codechunk (CodeChunk *last, int dynamic, int size) } } #ifdef BIND_ROOM - bsize = chunk_size / BIND_ROOM; + if (dynamic) + /* Reserve more space since there are no other chunks we might use if this one gets full */ + bsize = (chunk_size * 2) / BIND_ROOM; + else + bsize = chunk_size / BIND_ROOM; if (bsize < MIN_BSIZE) bsize = MIN_BSIZE; bsize += MIN_ALIGN -1; bsize &= ~ (MIN_ALIGN - 1); if (chunk_size - size < bsize) { chunk_size = size + bsize; - chunk_size += pagesize - 1; - chunk_size &= ~ (pagesize - 1); + if (!dynamic) { + chunk_size += pagesize - 1; + chunk_size &= ~ (pagesize - 1); + } } #endif diff --git a/mono/utils/mono-filemap.c b/mono/utils/mono-filemap.c index 36c7fd6df93..895e7e7355d 100644 --- a/mono/utils/mono-filemap.c +++ b/mono/utils/mono-filemap.c @@ -35,7 +35,10 @@ mono_file_map_open (const char* name) g_free (wname); return result; #else - return (MonoFileMap *)fopen (name, "rb"); + int fd = open (name, O_RDONLY); + if (fd < 0) + return NULL; + return (MonoFileMap *)(size_t)fd; #endif } @@ -43,7 +46,7 @@ guint64 mono_file_map_size (MonoFileMap *fmap) { struct stat stat_buf; - if (fstat (fileno ((FILE*)fmap), &stat_buf) < 0) + if (fstat (mono_file_map_fd (fmap), &stat_buf) < 0) return 0; return stat_buf.st_size; } @@ -51,13 +54,21 @@ mono_file_map_size (MonoFileMap *fmap) int mono_file_map_fd (MonoFileMap *fmap) { +#ifdef WIN32 return fileno ((FILE*)fmap); +#else + return (int)(size_t)fmap; +#endif } int mono_file_map_close (MonoFileMap *fmap) { +#ifdef WIN32 return fclose ((FILE*)fmap); +#else + close (mono_file_map_fd (fmap)); +#endif } #if !defined (HOST_WIN32) diff --git a/mono/utils/mono-proclib.c b/mono/utils/mono-proclib.c index 38dea0d5111..de6dd666c48 100644 --- a/mono/utils/mono-proclib.c +++ b/mono/utils/mono-proclib.c @@ -207,57 +207,67 @@ get_pid_status_item_buf (int pid, const char *item, char *rbuf, int blen, MonoPr return NULL; } -/** - * mono_process_get_name: - * @pid: pid of the process - * @buf: byte buffer where to store the name of the prcoess - * @len: size of the buffer @buf - * - * Return the name of the process identified by @pid, storing it - * inside @buf for a maximum of len bytes (including the terminating 0). - */ -char* -mono_process_get_name (gpointer pid, char *buf, int len) -{ #if USE_SYSCTL - int res; + #ifdef KERN_PROC2 - int mib [6]; - size_t data_len = sizeof (struct kinfo_proc2); - struct kinfo_proc2 processi; +#define KINFO_PROC struct kinfo_proc2 #else - int mib [4]; - size_t data_len = sizeof (struct kinfo_proc); - struct kinfo_proc processi; -#endif /* KERN_PROC2 */ +#define KINFO_PROC struct kinfo_proc +#endif - memset (buf, 0, len); +static gboolean +sysctl_kinfo_proc (gpointer pid, KINFO_PROC* processi) +{ + int res; + size_t data_len = sizeof (KINFO_PROC); #ifdef KERN_PROC2 + int mib [6]; mib [0] = CTL_KERN; mib [1] = KERN_PROC2; mib [2] = KERN_PROC_PID; mib [3] = GPOINTER_TO_UINT (pid); - mib [4] = sizeof(struct kinfo_proc2); + mib [4] = sizeof(KINFO_PROC); mib [5] = 400; /* XXX */ - res = sysctl (mib, 6, &processi, &data_len, NULL, 0); - - if (res < 0 || data_len != sizeof (struct kinfo_proc2)) { - return buf; - } + res = sysctl (mib, 6, processi, &data_len, NULL, 0); #else + int mib [4]; mib [0] = CTL_KERN; mib [1] = KERN_PROC; mib [2] = KERN_PROC_PID; mib [3] = GPOINTER_TO_UINT (pid); - - res = sysctl (mib, 4, &processi, &data_len, NULL, 0); - if (res < 0 || data_len != sizeof (struct kinfo_proc)) { - return buf; - } + + res = sysctl (mib, 4, processi, &data_len, NULL, 0); #endif /* KERN_PROC2 */ - strncpy (buf, processi.kinfo_name_member, len - 1); + + if (res < 0 || data_len != sizeof (KINFO_PROC)) + return FALSE; + + return TRUE; +} +#endif /* USE_SYSCTL */ + +/** + * mono_process_get_name: + * @pid: pid of the process + * @buf: byte buffer where to store the name of the prcoess + * @len: size of the buffer @buf + * + * Return the name of the process identified by @pid, storing it + * inside @buf for a maximum of len bytes (including the terminating 0). + */ +char* +mono_process_get_name (gpointer pid, char *buf, int len) +{ +#if USE_SYSCTL + KINFO_PROC processi; + + memset (buf, 0, len); + + if (sysctl_kinfo_proc (pid, &processi)) + strncpy (buf, processi.kinfo_name_member, len - 1); + return buf; #else char fname [128]; @@ -282,11 +292,42 @@ mono_process_get_name (gpointer pid, char *buf, int len) #endif } +void +mono_process_get_times (gpointer pid, gint64 *start_time, gint64 *user_time, gint64 *kernel_time) +{ + if (user_time) + *user_time = mono_process_get_data (pid, MONO_PROCESS_USER_TIME); + + if (kernel_time) + *kernel_time = mono_process_get_data (pid, MONO_PROCESS_SYSTEM_TIME); + + if (start_time) { + *start_time = 0; + +#if USE_SYSCTL + { + KINFO_PROC processi; + + if (sysctl_kinfo_proc (pid, &processi)) + *start_time = mono_100ns_datetime_from_timeval (processi.kp_proc.p_starttime); + } +#endif + + if (*start_time == 0) { + static guint64 boot_time = 0; + if (!boot_time) + boot_time = mono_100ns_datetime () - ((guint64)mono_msec_ticks ()) * 10000; + + *start_time = boot_time + mono_process_get_data (pid, MONO_PROCESS_ELAPSED); + } + } +} + /* * /proc/pid/stat format: * pid (cmdname) S * [0] ppid pgid sid tty_nr tty_pgrp flags min_flt cmin_flt maj_flt cmaj_flt - * [10] utime stime cutime cstime prio nice threads 0 start_time vsize rss + * [10] utime stime cutime cstime prio nice threads 0 start_time vsize * [20] rss rsslim start_code end_code start_stack esp eip pending blocked sigign * [30] sigcatch wchan 0 0 exit_signal cpu rt_prio policy */ @@ -521,7 +562,7 @@ mono_process_get_data_with_error (gpointer pid, MonoProcessData data, MonoProces case MONO_PROCESS_FAULTS: return get_process_stat_item (rpid, 6, TRUE, error); case MONO_PROCESS_ELAPSED: - return get_process_stat_item (rpid, 18, FALSE, error) / get_user_hz (); + return get_process_stat_time (rpid, 18, FALSE, error); case MONO_PROCESS_PPID: return get_process_stat_time (rpid, 0, FALSE, error); case MONO_PROCESS_PAGED_BYTES: @@ -581,8 +622,8 @@ mono_cpu_count (void) if (count > 0) return count + 1; #endif -#ifdef _SC_NPROCESSORS_ONLN - count = sysconf (_SC_NPROCESSORS_ONLN); +#ifdef _SC_NPROCESSORS_CONF + count = sysconf (_SC_NPROCESSORS_CONF); if (count > 0) return count; #endif diff --git a/mono/utils/mono-proclib.h b/mono/utils/mono-proclib.h index 48144a00613..67db3f3f317 100644 --- a/mono/utils/mono-proclib.h +++ b/mono/utils/mono-proclib.h @@ -58,6 +58,8 @@ struct _MonoCpuUsageState { gpointer* mono_process_list (int *size); +void mono_process_get_times (gpointer pid, gint64 *start_time, gint64 *user_time, gint64 *kernel_time); + char* mono_process_get_name (gpointer pid, char *buf, int len); gint64 mono_process_get_data (gpointer pid, MonoProcessData data); diff --git a/mono/utils/mono-time.c b/mono/utils/mono-time.c index cd347546c20..3c940e73ddf 100644 --- a/mono/utils/mono-time.c +++ b/mono/utils/mono-time.c @@ -4,10 +4,17 @@ * Copyright (C) 2008 Novell, Inc. */ -#include +#include #include #include +#ifdef HAVE_SYS_TIME_H +#include +#endif + +#include + + #define MTICKS_PER_SEC 10000000 #ifdef HOST_WIN32 @@ -56,9 +63,6 @@ mono_100ns_datetime (void) #else -#ifdef HAVE_SYS_TIME_H -#include -#endif #if defined (HAVE_SYS_PARAM_H) #include @@ -168,9 +172,15 @@ mono_100ns_datetime (void) { struct timeval tv; if (gettimeofday (&tv, NULL) == 0) - return (((gint64)tv.tv_sec + EPOCH_ADJUST) * 1000000 + tv.tv_usec) * 10; + return mono_100ns_datetime_from_timeval (tv); return 0; } +gint64 +mono_100ns_datetime_from_timeval (struct timeval tv) +{ + return (((gint64)tv.tv_sec + EPOCH_ADJUST) * 1000000 + tv.tv_usec) * 10; +} + #endif diff --git a/mono/utils/mono-time.h b/mono/utils/mono-time.h index 6961306c290..95bda8e5309 100644 --- a/mono/utils/mono-time.h +++ b/mono/utils/mono-time.h @@ -4,15 +4,23 @@ #include #include +#ifdef HAVE_SYS_TIME_H +#include +#endif + /* Returns the number of milliseconds from boot time: this should be monotonic */ guint32 mono_msec_ticks (void); /* Returns the number of 100ns ticks from unspecified time: this should be monotonic */ gint64 mono_100ns_ticks (void); -/* Returns the number of 100ns ticks since 1/1/1, UTC timezone */ +/* Returns the number of 100ns ticks since 1/1/1601, UTC timezone */ gint64 mono_100ns_datetime (void); +#ifndef HOST_WIN32 +gint64 mono_100ns_datetime_from_timeval (struct timeval tv); +#endif + /* Stopwatch class for internal runtime use */ typedef struct { gint64 start, stop; diff --git a/notes/cil b/notes/cil deleted file mode 100644 index 458aca543ba..00000000000 --- a/notes/cil +++ /dev/null @@ -1,13 +0,0 @@ -Random collection of notes - - * What is the point of having the InlineVar argument to - opcodes be a signed integer instead of unsigned? - - -Storage - - The CIL metadata is a very compressed file format, even the - sizes of blobs and strings are recorded in a compressed form. - Still, all strings are encoded using 16-bit chars, instead of the - more efficient UTF-8. - diff --git a/runtime/Makefile.am b/runtime/Makefile.am index b021efeec4d..415c21b1cb3 100644 --- a/runtime/Makefile.am +++ b/runtime/Makefile.am @@ -34,7 +34,7 @@ else build_profiles = if INSTALL_4_5 -build_profiles += net_4_0 net_4_5 xbuild_12 xbuild_14 +build_profiles += binary_reference_assemblies net_4_5 xbuild_12 xbuild_14 al_profile = net_4_5 endif @@ -108,11 +108,11 @@ endif # Compile all assemblies with the verifier turned on. Code must be valid but not verifiable. # TODO it would be nice to split assemblies without unsafe code to use the verifier with verifiable mode. -# Skip net 4.0 assemblies because they contain metadata only +# Skip binary_reference_assemblies because they contain metadata only mcs-compileall: mono-wrapper etc/mono/config save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \ for profile in $(test_profiles); do \ - if [ "net_4_0" = "$$profile" ]; then \ + if [ "binary_reference_assemblies" = "$$profile" ]; then \ continue; \ fi; \ if [ "xbuild_12" = "$$profile" ]; then \ diff --git a/samples/profiler/sample.c b/samples/profiler/sample.c index 49af781a55a..45c46da07d9 100644 --- a/samples/profiler/sample.c +++ b/samples/profiler/sample.c @@ -2,10 +2,15 @@ /* * Bare bones profiler. Compile with: - * gcc -shared -o mono-profiler-sample.so sample.c `pkg-config --cflags --libs mono` - * Install the binary where the dynamic loader can find it. + * + * linux : gcc -shared -o mono-profiler-sample.so sample.c `pkg-config --cflags --libs mono` + * mac : gcc sample.c -o mono-profiler-sample.dylib -Dmono_free=free -lz `pkg-config --cflags mono-2` -undefined suppress -flat_namespace + * + * Install the binary where the dynamic loader can find it. eg /usr/lib etc * Then run mono with: * mono --profile=sample your_application.exe + * + * Note if you name a profiler with more than 8 characters (eg sample6789) appears to not work */ struct _MonoProfiler { diff --git a/scripts/mono-find-provides.in b/scripts/mono-find-provides.in index c9210060c26..155690d75ad 100644 --- a/scripts/mono-find-provides.in +++ b/scripts/mono-find-provides.in @@ -33,7 +33,7 @@ fi # set LD_LIBRARY_PATH to ensure that libmono is found export LD_LIBRARY_PATH=$libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} # and set MONO_PATH to ensure that mscorlib.dll can be found -export MONO_PATH=$prefix/lib/mono/2.0 +export MONO_PATH=$prefix/lib/mono/4.5 for i in "${monolist[@]}"; do ($bindir/monodis --assembly $i | awk ' diff --git a/scripts/mono-find-requires.in b/scripts/mono-find-requires.in index f0ad60bb8a2..d7b6a325bc3 100644 --- a/scripts/mono-find-requires.in +++ b/scripts/mono-find-requires.in @@ -50,7 +50,7 @@ esac # set LD_LIBRARY_PATH to ensure that libmono is found export LD_LIBRARY_PATH=$libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} # and set MONO_PATH to ensure that mscorlib.dll can be found -export MONO_PATH=$prefix/lib/mono/2.0 +export MONO_PATH=$prefix/lib/mono/4.5 REQUIRES=$( for i in "${monolist[@]}"; do diff --git a/support/zlib-helper.c b/support/zlib-helper.c index 83455413b36..38696260a09 100644 --- a/support/zlib-helper.c +++ b/support/zlib-helper.c @@ -90,6 +90,8 @@ CreateZStream (gint compress, guchar gzip, read_write_func func, void *gchandle) result->gchandle = gchandle; result->compress = compress; result->buffer = g_new (guchar, BUFFER_SIZE); + result->stream->next_out = result->buffer; + result->stream->avail_out = BUFFER_SIZE; return result; } @@ -148,7 +150,7 @@ flush_internal (ZStream *stream, gboolean is_final) if (!stream->compress) return 0; - if (!is_final) { + if (!is_final && stream->stream->avail_in != 0) { status = deflate (stream->stream, Z_PARTIAL_FLUSH); if (status != Z_OK && status != Z_STREAM_END) return status;