comparison src/share/vm/code/debugInfo.hpp @ 8159:c5ff08c22458

Fix regression in client compiler debug recording.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 08 Mar 2013 00:39:48 +0100
parents b8f261ba79c6
children 6b0fd0964b87
comparison
equal deleted inserted replaced
8158:53bc01380011 8159:c5ff08c22458
59 } 59 }
60 60
61 // Serialization of debugging information 61 // Serialization of debugging information
62 virtual void write_on(DebugInfoWriteStream* stream) = 0; 62 virtual void write_on(DebugInfoWriteStream* stream) = 0;
63 static ScopeValue* read_from(DebugInfoReadStream* stream); 63 static ScopeValue* read_from(DebugInfoReadStream* stream);
64
65 #ifdef GRAAL
66 // Printing
67 virtual void print_on(outputStream* st) const = 0;
68 #endif // GRAAL
69 }; 64 };
70 65
71 66
72 // A Location value describes a value in a given location; i.e. the corresponding 67 // A Location value describes a value in a given location; i.e. the corresponding
73 // logical entity (e.g., a method temporary) lives in this location. 68 // logical entity (e.g., a method temporary) lives in this location.