Searched refs:ResourceObj (Results 1 - 25 of 120) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/ci/
H A DciConstantPoolCache.hpp36 class ciConstantPoolCache : public ResourceObj {
H A DciExceptionHandler.hpp34 class ciExceptionHandler : public ResourceObj {
H A DciSignature.hpp36 class ciSignature : public ResourceObj {
H A DciMethodBlocks.hpp37 class ciMethodBlocks : public ResourceObj {
65 class ciBlock : public ResourceObj {
H A DciObjectFactory.hpp38 class ciObjectFactory : public ResourceObj {
58 struct NonPermObject : public ResourceObj {
H A DciSymbol.hpp37 class ciSymbol : public ResourceObj {
/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.hpp98 // A ResourceObj version of MemRegionClosure
102 void* operator new(size_t size, ResourceObj::allocation_type type, MEMFLAGS flags) {
103 return ResourceObj::operator new(size, type, flags);
106 return ResourceObj::operator new(size, arena);
109 return ResourceObj::operator new(size);
H A DgenMarkSweep.cpp214 _root_refs_stack = new (ResourceObj::C_HEAP, mtGC) GrowableArray<void*>(100, true);
215 _other_refs_stack = new (ResourceObj::C_HEAP, mtGC) GrowableArray<void*>(100, true);
216 _adjusted_pointers = new (ResourceObj::C_HEAP, mtGC) GrowableArray<void*>(100, true);
217 _live_oops = new (ResourceObj::C_HEAP, mtGC) GrowableArray<oop>(100, true);
218 _live_oops_moved_to = new (ResourceObj::C_HEAP, mtGC) GrowableArray<oop>(100, true);
219 _live_oops_size = new (ResourceObj::C_HEAP, mtGC) GrowableArray<size_t>(100, true);
223 _cur_gc_live_oops = new(ResourceObj::C_HEAP, mtGC) GrowableArray<HeapWord*>(100, true);
224 _cur_gc_live_oops_moved_to = new(ResourceObj::C_HEAP, mtGC) GrowableArray<HeapWord*>(100, true);
225 _cur_gc_live_oops_size = new(ResourceObj::C_HEAP, mtGC) GrowableArray<size_t>(100, true);
226 _last_gc_live_oops = new(ResourceObj
[all...]
H A Dallocation.cpp54 void* ResourceObj::operator new(size_t size, allocation_type type, MEMFLAGS flags) {
71 void ResourceObj::operator delete(void* p) {
72 assert(((ResourceObj *)p)->allocated_on_C_heap(),
74 DEBUG_ONLY(((ResourceObj *)p)->_allocation_t[0] = (uintptr_t)badHeapOopVal;)
79 void ResourceObj::set_allocation_type(address res, allocation_type type) {
84 ResourceObj* resobj = (ResourceObj *)res;
93 ResourceObj::allocation_type ResourceObj::get_allocation_type() const {
98 bool ResourceObj
104 ResourceObj::ResourceObj() { // default constructor function in class:ResourceObj
128 ResourceObj::ResourceObj(const ResourceObj& r) { // default copy constructor function in class:ResourceObj
[all...]
H A Dallocation.hpp65 // - ResourceObj
455 // new(ResourceObj::C_HEAP) Foo(...) or in an Arena with new (&arena)
456 // ResourceObj's can be allocated within other objects, but don't use
459 class ResourceObj ALLOCATION_SUPER_CLASS_SPEC {
477 ResourceObj(); // default construtor
478 ResourceObj(const ResourceObj& r); // default copy construtor
479 ResourceObj& operator=(const ResourceObj& r); // default copy assignment
480 ~ResourceObj();
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkConstant.hpp34 class SharkConstant : public ResourceObj {
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp32 class StackValueCollection : public ResourceObj {
H A DreflectionUtils.cpp62 new (ResourceObj::C_HEAP, mtInternal) GrowableArray<FilteredField*>(3,true);
/openjdk7/hotspot/src/share/vm/code/
H A DoopRecorder.hpp35 class OopRecorder : public ResourceObj {
89 class IndexCache: public ResourceObj {
H A DdebugInfo.hpp43 class ScopeValue: public ResourceObj {
224 class MonitorValue: public ResourceObj {
/openjdk7/hotspot/src/share/vm/libadt/
H A Dset.hpp117 class Set : public ResourceObj {
230 class SetI_ : public ResourceObj {
H A Ddict.hpp45 class Dict : public ResourceObj { // Dictionary structure
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.hpp52 class MethodLiveness : public ResourceObj {
56 class BasicBlock : public ResourceObj {
/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.cpp42 DEBUG_ONLY(set_allocation_type(res, ResourceObj::C_HEAP);)
49 DEBUG_ONLY(set_allocation_type(res, ResourceObj::ARENA);)
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhistogram.cpp72 _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<HistogramElement*>(estimatedCount,true);
H A DintHisto.cpp30 _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<int>(est, true);
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp89 class DCmdArgIter : public ResourceObj {
114 class DCmdInfo : public ResourceObj {
145 class DCmdArgumentInfo : public ResourceObj {
228 class DCmd : public ResourceObj {
381 return new (ResourceObj::C_HEAP, mtInternal) DCmdClass(output, true);
H A DdiagnosticArgument.hpp39 _array = new(ResourceObj::C_HEAP, mtInternal)GrowableArray<char *>(32, true);
77 class GenDCmdArgument : public ResourceObj {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DcollectionSetChooser.cpp82 _regions((ResourceObj::set_allocation_type((address) &_regions,
83 ResourceObj::C_HEAP),
/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.hpp38 class CallGenerator : public ResourceObj {
181 class WarmCallInfo : public ResourceObj {

Completed in 54 milliseconds

12345