comparison src/os/windows/vm/decoder_windows.hpp @ 6275:957c266d8bc5

Merge with http://hg.openjdk.java.net/hsx/hsx24/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Tue, 21 Aug 2012 10:39:19 +0200
parents 3b01d0321dfa
children b9a9ed0f8eeb
comparison
equal deleted inserted replaced
5891:fd8832ae511d 6275:957c266d8bc5
43 ~WindowsDecoder() { uninitialize(); }; 43 ~WindowsDecoder() { uninitialize(); };
44 44
45 bool can_decode_C_frame_in_vm() const; 45 bool can_decode_C_frame_in_vm() const;
46 bool demangle(const char* symbol, char *buf, int buflen); 46 bool demangle(const char* symbol, char *buf, int buflen);
47 bool decode(address addr, char *buf, int buflen, int* offset, const char* modulepath = NULL); 47 bool decode(address addr, char *buf, int buflen, int* offset, const char* modulepath = NULL);
48 bool decode(address addr, char *buf, int buflen, int* offset, const void* base) {
49 ShouldNotReachHere();
50 return false;
51 }
48 52
49 private: 53 private:
50 void initialize(); 54 void initialize();
51 void uninitialize(); 55 void uninitialize();
52 56