/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciConstantPoolCache.hpp | 36 class ciConstantPoolCache : public ResourceObj {
|
H A D | ciExceptionHandler.hpp | 34 class ciExceptionHandler : public ResourceObj {
|
H A D | ciSignature.hpp | 36 class ciSignature : public ResourceObj {
|
H A D | ciMethodBlocks.hpp | 37 class ciMethodBlocks : public ResourceObj { 65 class ciBlock : public ResourceObj {
|
H A D | ciObjectFactory.hpp | 38 class ciObjectFactory : public ResourceObj { 58 struct NonPermObject : public ResourceObj {
|
H A D | ciSymbol.hpp | 37 class ciSymbol : public ResourceObj {
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | memRegion.hpp | 98 // 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 D | genMarkSweep.cpp | 214 _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 D | allocation.cpp | 54 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 D | allocation.hpp | 65 // - 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 D | sharkConstant.hpp | 34 class SharkConstant : public ResourceObj {
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | stackValueCollection.hpp | 32 class StackValueCollection : public ResourceObj {
|
H A D | reflectionUtils.cpp | 62 new (ResourceObj::C_HEAP, mtInternal) GrowableArray<FilteredField*>(3,true);
|
/openjdk7/hotspot/src/share/vm/code/ |
H A D | oopRecorder.hpp | 35 class OopRecorder : public ResourceObj { 89 class IndexCache: public ResourceObj {
|
H A D | debugInfo.hpp | 43 class ScopeValue: public ResourceObj { 224 class MonitorValue: public ResourceObj {
|
/openjdk7/hotspot/src/share/vm/libadt/ |
H A D | set.hpp | 117 class Set : public ResourceObj { 230 class SetI_ : public ResourceObj {
|
H A D | dict.hpp | 45 class Dict : public ResourceObj { // Dictionary structure
|
/openjdk7/hotspot/src/share/vm/compiler/ |
H A D | methodLiveness.hpp | 52 class MethodLiveness : public ResourceObj { 56 class BasicBlock : public ResourceObj {
|
/openjdk7/hotspot/src/share/vm/oops/ |
H A D | symbol.cpp | 42 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 D | histogram.cpp | 72 _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<HistogramElement*>(estimatedCount,true);
|
H A D | intHisto.cpp | 30 _elements = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<int>(est, true);
|
/openjdk7/hotspot/src/share/vm/services/ |
H A D | diagnosticFramework.hpp | 89 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 D | diagnosticArgument.hpp | 39 _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 D | collectionSetChooser.cpp | 82 _regions((ResourceObj::set_allocation_type((address) &_regions, 83 ResourceObj::C_HEAP),
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | callGenerator.hpp | 38 class CallGenerator : public ResourceObj { 181 class WarmCallInfo : public ResourceObj {
|