Searched defs:RegisterMap (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DregisterMap.hpp49 // RegisterMap
51 // A companion structure used for stack traversal. The RegisterMap contains
54 // frame::sender(RegisterMap*).
66 // RegisterMap object is used for the entire stack walk. Normally,
70 // 3) The RegisterMap keeps track of the values of callee-saved registers
74 // Updating of the RegisterMap can be turned off by instantiating the
75 // register map as: RegisterMap map(thread, false);
77 class RegisterMap : public StackObj { class in inherits:StackObj
100 debug_only(intptr_t* _update_for_id;) // Assert that RegisterMap is not updated twice for same frame
101 RegisterMap(JavaThrea
[all...]
H A Dframe.cpp63 RegisterMap::RegisterMap(JavaThread *thread, bool update_map) { function in class:RegisterMap
73 RegisterMap::RegisterMap(const RegisterMap* map) { function in class:RegisterMap
75 assert(map != NULL, "RegisterMap must be present");
99 void RegisterMap::clear() {
113 void RegisterMap::print_on(outputStream* st) const {
132 void RegisterMap::print() const {
215 RegisterMap ma
1258 zap_dead_entry_locals(JavaThread*, const RegisterMap*) argument
1263 zap_dead_deoptimized_locals(JavaThread*, const RegisterMap*) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DRegisterMap.java37 RegisterMap contains misc. information needed in order to do
39 passed in as an argument to Frame.sender(RegisterMap). </P>
43 RegisterMap is created either for a particular thread or cloned
44 from another RegisterMap. In these APIs, a JavaThread is the
49 public abstract class RegisterMap implements Cloneable { class in inherits:Cloneable
81 protected RegisterMap(JavaThread thread, boolean updateMap) { method in class:RegisterMap
90 protected RegisterMap(RegisterMap map) { method in class:RegisterMap
92 Assert.that(map != null, "RegisterMap must be present");
122 public RegisterMap cop
[all...]

Completed in 1605 milliseconds