* BaseHttpServlet.cs: fixed service, should not update context in AppDomain on every...
[mono.git] / mono / dis / dis-cil.c
index a250356a0d7927369e3cfe888c8797fc754fd4ef..dbd3b417405cd5f4c9bd820f940380df49faefdf 100644 (file)
@@ -9,36 +9,42 @@
 #include <config.h>
 #include <glib.h>
 #include <stdio.h>
+#include <math.h>
+#ifdef HAVE_WCHAR_H
 #include <wchar.h>
+#endif
 #include "meta.h"
 #include "get.h"
 #include "dump.h"
 #include "dis-cil.h"
 #include "mono/metadata/opcodes.h"
+#include "mono/metadata/class-internals.h"
+#include "mono/utils/mono-compiler.h"
 
-/*
- * Strings on the US heap are encoded using UTF-16.  Poor man's
- * UTF-16 to UTF-8.  I know its broken, use libunicode later.
- */
-static char *
-get_encoded_user_string (const char *ptr)
+#ifndef HAVE_ISINF
+
+#ifdef HAVE_IEEEFP_H
+#include <ieeefp.h>
+int isinf (double);
+int
+isinf (double num)
 {
-       char *res;
-       int len, i, j;
+       fpclass_t klass;
 
-       len = mono_metadata_decode_blob_size (ptr, &ptr);
-       res = g_malloc (len + 1);
+       klass = fpclass (num);
+       if (klass == FP_NINF)
+               return -1;
 
-       /*
-        * I should really use some kind of libunicode here
-        */
-       for (i = 0, j = 0; i < len; j++, i += 2)
-               res [j] = ptr [i];
+       if (klass == FP_PINF)
+               return 1;
 
-       res [j] = 0;
-               
-       return res;
+       return 0;
 }
+#else
+#error "Don't know how to implement isinf for this platform."
+#endif
+
+#endif
 
 #define CODE_INDENT g_assert (indent_level < 512); \
        indent[indent_level*2] = ' ';   \
@@ -50,7 +56,7 @@ get_encoded_user_string (const char *ptr)
        indent[indent_level*2] = 0;
 
 void
-dissasemble_cil (MonoImage *m, MonoMethodHeader *mh) 
+disassemble_cil (MonoImage *m, MonoMethodHeader *mh, MonoGenericContainer *container)
 {
        const unsigned char *start = mh->code;
        int size = mh->code_size;
@@ -58,31 +64,66 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
        const unsigned char *ptr = start;
        const MonoOpcode *entry;
        char indent[1024];
-       int i, indent_level = 0;
-       const char *clause_names[] = {"catch", "filter", "finally", "fault"};
-
+       int i, j, indent_level = 0;
+       gboolean in_fault = 0;
+       const char *clause_names[] = {"catch", "filter", "finally", "", "fault"};
+       gboolean *trys = NULL;
        indent [0] = 0;
 
 #ifdef DEBUG
        for (i = 0; i < mh->num_clauses; ++i) {
 #define clause mh->clauses [i]
-               g_print ("out clause %d: from %d len=%d, handler at %d, %d\n", 
+              g_print ("/* out clause %d: from %d len=%d, handler at %d, %d */\n",
                        clause.flags, clause.try_offset, clause.try_len, clause.handler_offset, clause.handler_len);
 #undef clause
        }
 #endif
+
+       if (mh->num_clauses) {
+              trys = g_malloc0 (sizeof (gboolean) * mh->num_clauses);
+              trys [0] = 1;
+              for (i=1; i < mh->num_clauses; ++i) {
+#define jcl mh->clauses [j]    
+#define cl mh->clauses [i]     
+                      trys [i] = 1;
+                      for (j = 0; j < i; j++) {
+                              if (cl.try_offset == jcl.try_offset && cl.try_len == jcl.try_len) {
+                                      trys [i] = 0;
+                                      break;
+                              }
+                      }
+#undef jcl
+#undef cl
+              }
+       }
+
        while (ptr < end){
                for (i = mh->num_clauses - 1; i >= 0 ; --i) {
-                       if ((mh->clauses[i].flags == 0 || mh->clauses[i].flags == 2) && ptr == start + mh->clauses[i].try_offset) {
+                       if (ptr == start + mh->clauses[i].try_offset && trys [i]) {
                                fprintf (output, "\t%s.try { // %d\n", indent, i);
                                CODE_INDENT;
                        }
+                        
                        if (ptr == start + mh->clauses[i].handler_offset) {
-                               char * klass = mh->clauses[i].flags ? g_strdup ("") : dis_stringify_token (m, mh->clauses[i].token_or_filter);
-                               fprintf (output, "\t%s%s %s { // %d\n", indent, clause_names [mh->clauses[i].flags], klass, i);
+                                if (mh->clauses[i].flags == MONO_EXCEPTION_CLAUSE_FILTER) {
+                                        CODE_UNINDENT;
+                                        fprintf (output, "\t%s} { // %d\n", indent, i);
+                                } else {
+                                        char * klass = mh->clauses[i].flags ? g_strdup ("") :
+                                               dis_stringify_object_with_class (m, mh->clauses[i].data.catch_class,
+                                                                                FALSE, FALSE);
+                                        fprintf (output, "\t%s%s %s { // %d\n", indent,
+                                                        clause_names [mh->clauses[i].flags], klass, i);
+                                        g_free (klass);
+                                }
                                CODE_INDENT;
-                               g_free (klass);
-                       }
+                                if (mh->clauses[i].flags == MONO_EXCEPTION_CLAUSE_FAULT)
+                                        in_fault = 1;
+                       } 
+                        if (mh->clauses[i].flags == MONO_EXCEPTION_CLAUSE_FILTER && ptr == start + mh->clauses[i].data.filter_offset) {
+                                fprintf (output, "\t%s%s {\n", indent, clause_names[1]);
+                                CODE_INDENT;
+                        }
                }
                fprintf (output, "\t%sIL_%04x: ", indent, (int) (ptr - start));
                i = *ptr;
@@ -92,7 +133,10 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                } 
                entry = &mono_opcodes [i];
 
-               fprintf (output, "%s ", mono_opcode_names [i]);
+                if (in_fault && entry->opval == 0xDC)
+                        fprintf (output, " %s", "endfault");
+                else
+                        fprintf (output, " %s ", mono_opcode_name (i));
                ptr++;
                switch (entry->argument){
                case MonoInlineBrTarget: {
@@ -106,7 +150,7 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                        guint32 token = read32 (ptr);
                        char *s;
                        
-                       s = get_field (m, token);
+                       s = get_field (m, token, container);
                        fprintf (output, "%s", s);
                        g_free (s);
                        ptr += 4;
@@ -133,7 +177,7 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                        guint32 token = read32 (ptr);
                        char *s;
 
-                       s = get_method (m, token);
+                       s = get_method (m, token, container);
                        fprintf (output, "%s", s);
                        g_free (s);
                        ptr += 4;
@@ -145,8 +189,20 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                        
                case MonoInlineR: {
                        double r;
+                       int inf;
                        readr8 (ptr, &r);
-                       fprintf (output, "%g", r);
+                       inf = isinf (r);
+                       if (inf == -1) 
+                               fprintf (output, "(00 00 00 00 00 00 f0 ff)"); /* negative infinity */
+                       else if (inf == 1)
+                               fprintf (output, "(00 00 00 00 00 00 f0 7f)"); /* positive infinity */
+                       else if (isnan (r))
+                               fprintf (output, "(00 00 00 00 00 00 f8 ff)"); /* NaN */
+                       else {
+                               char *str = stringify_double (r);
+                               fprintf (output, str);
+                               g_free (str);
+                       }
                        ptr += 8;
                        break;
                }
@@ -160,14 +216,15 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                
                case MonoInlineString: {
                        guint32 token = read32 (ptr);
-                       
-                       char *s = get_encoded_user_string (
-                               mono_metadata_user_string (m, token & 0xffffff));
+                       const char *us_ptr = mono_metadata_user_string (m, token & 0xffffff);
+                       int len = mono_metadata_decode_blob_size (us_ptr, (const char**)&us_ptr);
+
+                       char *s = get_encoded_user_string_or_bytearray ((const guchar*)us_ptr, len);
                        
                        /*
                         * See section 23.1.4 on the encoding of the #US heap
                         */
-                       fprintf (output, "\"%s\"", s);
+                       fprintf (output, "%s", s);
                        g_free (s);
                        ptr += 4;
                        break;
@@ -180,12 +237,12 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                        
                        ptr += 4;
                        endswitch = ptr + sizeof (guint32) * count;
-                       fprintf (output, "(\n");
+                       fprintf (output, count > 0 ? "(\n" : "( )");
                        CODE_INDENT;
                        for (n = 0; n < count; n++){
                                fprintf (output, "\t%sIL_%04x%s", indent, 
-                                       endswitch-start+read32 (ptr), 
-                                       n == count - 1 ? ")" : ",\n");
+                                                (int)(endswitch-start+read32 (ptr)), 
+                                                n == count - 1 ? ")" : ",\n");
                                ptr += 4;
                        }
                        CODE_UNINDENT;
@@ -196,7 +253,7 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                        guint32 token = read32 (ptr);
                        char *s;
                        
-                       s = get_token (m, token);
+                       s = get_token (m, token, container);
                        fprintf (output, "%s", s);
                        g_free (s);
                        
@@ -206,7 +263,7 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                
                case MonoInlineType: {
                        guint32 token = read32 (ptr);
-                       char *s = get_token_type (m, token);
+                       char *s = get_token_type (m, token, container);
                        fprintf (output, "%s", s);
                        g_free (s);
                        ptr += 4;
@@ -224,7 +281,7 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
                case MonoShortInlineBrTarget: {
                        signed char x = *ptr;
                        
-                       fprintf (output, "IL_%04x\n", ptr - start + 1 + x);
+                       fprintf (output, "IL_%04x\n", (int)(ptr - start + 1 + x));
                        ptr++;
                        break;
                }
@@ -239,9 +296,22 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
 
                case MonoShortInlineR: {
                        float f;
+                       int inf;
+                       
                        readr4 (ptr, &f);
 
-                       fprintf (output, "%g", (double) f);
+                       inf = isinf (f);
+                       if (inf == -1) 
+                               fprintf (output, "(00 00 80 ff)"); /* negative infinity */
+                       else if (inf == 1)
+                               fprintf (output, "(00 00 80 7f)"); /* positive infinity */
+                       else if (isnan (f))
+                               fprintf (output, "(00 00 c0 ff)"); /* NaN */
+                       else {
+                               char *str = stringify_double ((double) f);
+                               fprintf (output, str);
+                               g_free (str);
+                       }
                        ptr += 4;
                        break;
                }
@@ -259,14 +329,18 @@ dissasemble_cil (MonoImage *m, MonoMethodHeader *mh)
 
                fprintf (output, "\n");
                for (i = 0; i < mh->num_clauses; ++i) {
-                       if ((mh->clauses[i].flags == 0 || mh->clauses[i].flags == 2)  && ptr == start + mh->clauses[i].try_offset + mh->clauses[i].try_len) {
+                       if (ptr == start + mh->clauses[i].try_offset + mh->clauses[i].try_len && trys [i]) {
                                CODE_UNINDENT;
                                fprintf (output, "\t%s} // end .try %d\n", indent, i);
                        }
                        if (ptr == start + mh->clauses[i].handler_offset + mh->clauses[i].handler_len) {
                                CODE_UNINDENT;
                                fprintf (output, "\t%s} // end handler %d\n", indent, i);
+                                if (mh->clauses[i].flags == MONO_EXCEPTION_CLAUSE_FAULT)
+                                        in_fault = 0;
                        }
                }
        }
+       if (trys)
+               g_free (trys);
 }