Searched refs:DebugInformationRecorder (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DDebugInformationRecorder.java30 public class DebugInformationRecorder { class
H A DScopeDesc.java131 return (senderDecodeOffset == DebugInformationRecorder.SERIALIZED_NULL);
170 if (decodeOffset == DebugInformationRecorder.SERIALIZED_NULL) {
184 if (decodeOffset == DebugInformationRecorder.SERIALIZED_NULL) {
198 if (decodeOffset == DebugInformationRecorder.SERIALIZED_NULL) {
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfoRec.cpp36 friend class DebugInformationRecorder;
41 void* operator new(size_t ignore, DebugInformationRecorder* dir) {
51 DIR_Chunk(int offset, int length, DebugInformationRecorder* dir) {
66 DebugInformationRecorder* dir) {
97 DebugInformationRecorder::DebugInformationRecorder(OopRecorder* oop_recorder) function in class:DebugInformationRecorder
125 void DebugInformationRecorder::add_oopmap(int pc_offset, OopMap* map) {
130 void DebugInformationRecorder::add_safepoint(int pc_offset, OopMap* map) {
143 void DebugInformationRecorder::add_non_safepoint(int pc_offset) {
153 void DebugInformationRecorder
[all...]
H A DscopeDesc.cpp46 _objects = decode_object_values(DebugInformationRecorder::serialized_null);
64 if (decode_offset() == DebugInformationRecorder::serialized_null) {
67 _sender_decode_offset = DebugInformationRecorder::serialized_null;
70 _locals_decode_offset = DebugInformationRecorder::serialized_null;
71 _expressions_decode_offset = DebugInformationRecorder::serialized_null;
72 _monitors_decode_offset = DebugInformationRecorder::serialized_null;
90 if (decode_offset == DebugInformationRecorder::serialized_null) return NULL;
101 if (decode_offset == DebugInformationRecorder::serialized_null) return NULL;
116 if (decode_offset == DebugInformationRecorder::serialized_null) return NULL;
147 return _sender_decode_offset == DebugInformationRecorder
[all...]
H A DpcDesc.cpp48 if (scope_decode_offset() == DebugInformationRecorder::serialized_null) {
H A DdebugInfoRec.hpp38 //** The DebugInformationRecorder collects debugging information
76 class DebugInformationRecorder: public ResourceObj { class in inherits:ResourceObj
79 DebugInformationRecorder(OopRecorder* oop_recorder);
H A DdebugInfo.hpp276 DebugInformationRecorder* _recorder;
277 DebugInformationRecorder* recorder() const { return _recorder; }
279 DebugInfoWriteStream(DebugInformationRecorder* recorder, int initial_size);
H A DdebugInfo.cpp33 DebugInfoWriteStream::DebugInfoWriteStream(DebugInformationRecorder* recorder, int initial_size)
H A Dnmethod.hpp256 DebugInformationRecorder *recorder,
292 DebugInformationRecorder* recorder,
H A Dnmethod.cpp566 DebugInformationRecorder* debug_info,
804 DebugInformationRecorder* debug_info,
2454 if (p->scope_decode_offset() == DebugInformationRecorder::serialized_null)
2805 DebugInformationRecorder::print_statistics();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.hpp375 if (_sender_decode_offset == DebugInformationRecorder::serialized_null) {
387 if (decode_offset == DebugInformationRecorder::serialized_null ||
427 _sender_decode_offset = DebugInformationRecorder::serialized_null;
492 decode_offset = DebugInformationRecorder::serialized_null;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkInvariants.hpp99 DebugInformationRecorder* debug_info() const {
H A DsharkCompiler.cpp169 env->set_debug_info(new DebugInformationRecorder(env->oop_recorder()));
/openjdk7/hotspot/src/share/vm/ci/
H A DciEnv.hpp55 DebugInformationRecorder* _debug_info;
268 DebugInformationRecorder* debug_info() { return _debug_info; }
269 void set_debug_info(DebugInformationRecorder* i) { _debug_info = i; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.hpp35 class DebugInformationRecorder;
166 DebugInformationRecorder* debug_info_recorder() const; // = _env->debug_info();
H A Dc1_IR.hpp232 void record_debug_info(DebugInformationRecorder* recorder, int pc_offset, bool topmost, bool is_method_handle_invoke = false) {
277 void record_debug_info(DebugInformationRecorder* recorder, int pc_offset);
H A Dc1_Compilation.cpp107 DebugInformationRecorder* Compilation::debug_info_recorder() const {
122 _env->set_debug_info(new DebugInformationRecorder(ooprec));
H A Dc1_LIRAssembler.cpp396 DebugInformationRecorder* debug_info = compilation()->debug_info_recorder();
H A Dc1_IR.cpp211 void CodeEmitInfo::record_debug_info(DebugInformationRecorder* recorder, int pc_offset) {
/openjdk7/hotspot/src/share/vm/prims/
H A Dforte.cpp144 pc_desc->scope_decode_offset() != DebugInformationRecorder::serialized_null) {
158 pc_desc->scope_decode_offset() == DebugInformationRecorder::serialized_null) {
H A DjvmtiExport.cpp1703 if(p->scope_decode_offset() == DebugInformationRecorder::serialized_null) continue;
1709 if(p->scope_decode_offset() == DebugInformationRecorder::serialized_null) continue;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DCompiledVFrame.java156 return ((raw == DebugInformationRecorder.SYNCHRONIZATION_ENTRY_BCI) ? 0 : raw);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstMethod.java253 if (bci == DebugInformationRecorder.SYNCHRONIZATION_ENTRY_BCI) bci = 0;
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.hpp902 DebugInformationRecorder* debug_info() { return env()->debug_info(); }
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.hpp856 class DebugInformationRecorder;

Completed in 110 milliseconds

12