comparison src/share/vm/code/scopeDesc.hpp @ 7932:d4e6c82cd6a1

Remove deferred write logic.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 05 Mar 2013 17:16:41 +0100
parents b6a8f2d23057
children 85bd81dba8fc
comparison
equal deleted inserted replaced
7931:57726bff1d9f 7932:d4e6c82cd6a1
76 76
77 GrowableArray<ScopeValue*>* locals(); 77 GrowableArray<ScopeValue*>* locals();
78 GrowableArray<ScopeValue*>* expressions(); 78 GrowableArray<ScopeValue*>* expressions();
79 GrowableArray<MonitorValue*>* monitors(); 79 GrowableArray<MonitorValue*>* monitors();
80 GrowableArray<ScopeValue*>* objects(); 80 GrowableArray<ScopeValue*>* objects();
81 #ifdef GRAAL
82 GrowableArray<DeferredWriteValue*>* deferred_writes();
83 #endif // GRAAL
84 81
85 // Stack walking, returns NULL if this is the outer most scope. 82 // Stack walking, returns NULL if this is the outer most scope.
86 ScopeDesc* sender() const; 83 ScopeDesc* sender() const;
87 84
88 // Returns where the scope was decoded 85 // Returns where the scope was decoded