comparison src/share/vm/compiler/compileLog.hpp @ 2181:d25d4ca69222

Merge.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Wed, 16 Feb 2011 13:47:20 +0100
parents 3582bf76420e
children 1d1603768966
comparison
equal deleted inserted replaced
2108:50b45e2d9725 2181:d25d4ca69222
61 intx thread_id() { return _thread_id; } 61 intx thread_id() { return _thread_id; }
62 const char* file() { return _file; } 62 const char* file() { return _file; }
63 stringStream* context() { return &_context; } 63 stringStream* context() { return &_context; }
64 64
65 void name(ciSymbol* s); // name='s' 65 void name(ciSymbol* s); // name='s'
66 void name(symbolHandle s) { xmlStream::name(s); } 66 void name(Symbol* s) { xmlStream::name(s); }
67 67
68 // Output an object description, return obj->ident(). 68 // Output an object description, return obj->ident().
69 int identify(ciObject* obj); 69 int identify(ciObject* obj);
70 void clear_identities(); 70 void clear_identities();
71 71