src/share/vm/oops/symbolOop.cpp

Wed, 17 Mar 2010 11:01:05 +0100

author
fparain
date
Wed, 17 Mar 2010 11:01:05 +0100
changeset 1759
e392695de029
parent 1573
dd57230ba8fe
child 1907
c18cbe5936b8
permissions
-rw-r--r--

6935224: Adding new DTrace probes to work with Palantir
Summary: Adding probes related to thread scheduling and class initialization
Reviewed-by: kamg, never

     1 /*
     2  * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
    21  * have any questions.
    22  *
    23  */
    25 # include "incls/_precompiled.incl"
    26 # include "incls/_symbolOop.cpp.incl"
    29 // ------------------------------------------------------------------
    30 // symbolOopDesc::equals
    31 //
    32 // Compares the symbol with a string of the given length.
    33 bool symbolOopDesc::equals(const char* str, int len) const {
    34   int l = utf8_length();
    35   if (l != len) return false;
    36   while (l-- > 0) {
    37     if (str[l] != (char) byte_at(l))
    38       return false;
    39   }
    40   assert(l == -1, "we should be at the beginning");
    41   return true;
    42 }
    45 // ------------------------------------------------------------------
    46 // symbolOopDesc::starts_with
    47 //
    48 // Tests if the symbol starts with the specified prefix of the given
    49 // length.
    50 bool symbolOopDesc::starts_with(const char* prefix, int len) const {
    51   if (len > utf8_length()) return false;
    52   while (len-- > 0) {
    53     if (prefix[len] != (char) byte_at(len))
    54       return false;
    55   }
    56   assert(len == -1, "we should be at the beginning");
    57   return true;
    58 }
    61 // ------------------------------------------------------------------
    62 // symbolOopDesc::index_of
    63 //
    64 // Finds if the given string is a substring of this symbol's utf8 bytes.
    65 // Return -1 on failure.  Otherwise return the first index where str occurs.
    66 int symbolOopDesc::index_of_at(int i, const char* str, int len) const {
    67   assert(i >= 0 && i <= utf8_length(), "oob");
    68   if (len <= 0)  return 0;
    69   char first_char = str[0];
    70   address bytes = (address) ((symbolOopDesc*)this)->base();
    71   address limit = bytes + utf8_length() - len;  // inclusive limit
    72   address scan = bytes + i;
    73   if (scan > limit)
    74     return -1;
    75   for (;;) {
    76     scan = (address) memchr(scan, first_char, (limit + 1 - scan));
    77     if (scan == NULL)
    78       return -1;  // not found
    79     assert(scan >= bytes+i && scan <= limit, "scan oob");
    80     if (memcmp(scan, str, len) == 0)
    81       return (int)(scan - bytes);
    82   }
    83 }
    86 char* symbolOopDesc::as_C_string(char* buf, int size) const {
    87   if (size > 0) {
    88     int len = MIN2(size - 1, utf8_length());
    89     for (int i = 0; i < len; i++) {
    90       buf[i] = byte_at(i);
    91     }
    92     buf[len] = '\0';
    93   }
    94   return buf;
    95 }
    97 char* symbolOopDesc::as_C_string() const {
    98   int len = utf8_length();
    99   char* str = NEW_RESOURCE_ARRAY(char, len + 1);
   100   return as_C_string(str, len + 1);
   101 }
   103 char* symbolOopDesc::as_C_string_flexible_buffer(Thread* t,
   104                                                  char* buf, int size) const {
   105   char* str;
   106   int len = utf8_length();
   107   int buf_len = len + 1;
   108   if (size < buf_len) {
   109     str = NEW_RESOURCE_ARRAY(char, buf_len);
   110   } else {
   111     str = buf;
   112   }
   113   return as_C_string(str, buf_len);
   114 }
   116 void symbolOopDesc::print_symbol_on(outputStream* st) {
   117   st = st ? st : tty;
   118   int length = UTF8::unicode_length((const char*)bytes(), utf8_length());
   119   const char *ptr = (const char *)bytes();
   120   jchar value;
   121   for (int index = 0; index < length; index++) {
   122     ptr = UTF8::next(ptr, &value);
   123     if (value >= 32 && value < 127 || value == '\'' || value == '\\') {
   124       st->put(value);
   125     } else {
   126       st->print("\\u%04x", value);
   127     }
   128   }
   129 }
   131 jchar* symbolOopDesc::as_unicode(int& length) const {
   132   symbolOopDesc* this_ptr = (symbolOopDesc*)this;
   133   length = UTF8::unicode_length((char*)this_ptr->bytes(), utf8_length());
   134   jchar* result = NEW_RESOURCE_ARRAY(jchar, length);
   135   if (length > 0) {
   136     UTF8::convert_to_unicode((char*)this_ptr->bytes(), result, length);
   137   }
   138   return result;
   139 }
   141 const char* symbolOopDesc::as_klass_external_name(char* buf, int size) const {
   142   if (size > 0) {
   143     char* str    = as_C_string(buf, size);
   144     int   length = (int)strlen(str);
   145     // Turn all '/'s into '.'s (also for array klasses)
   146     for (int index = 0; index < length; index++) {
   147       if (str[index] == '/') {
   148         str[index] = '.';
   149       }
   150     }
   151     return str;
   152   } else {
   153     return buf;
   154   }
   155 }
   157 const char* symbolOopDesc::as_klass_external_name() const {
   158   char* str    = as_C_string();
   159   int   length = (int)strlen(str);
   160   // Turn all '/'s into '.'s (also for array klasses)
   161   for (int index = 0; index < length; index++) {
   162     if (str[index] == '/') {
   163       str[index] = '.';
   164     }
   165   }
   166   return str;
   167 }

mercurial