Searched refs:mtCompiler (Results 1 - 23 of 23) sorted by relevance

/openjdk7/hotspot/src/share/vm/compiler/
H A DabstractCompiler.hpp32 class AbstractCompiler : public CHeapObj<mtCompiler> {
H A DcompileLog.cpp40 initialize(new(ResourceObj::C_HEAP, mtCompiler) fileStream(fp));
47 _identities = NEW_C_HEAP_ARRAY(char, _identities_capacity, mtCompiler);
59 FREE_C_HEAP_ARRAY(char, _identities, mtCompiler);
112 _identities = REALLOC_C_HEAP_ARRAY(char, _identities, new_cap, mtCompiler);
H A DcompileBroker.hpp39 class CompileTask : public CHeapObj<mtCompiler> {
134 class CompilerCounters : public CHeapObj<mtCompiler> {
178 class CompileQueue : public CHeapObj<mtCompiler> {
H A DoopMap.cpp602 class DerivedPointerEntry : public CHeapObj<mtCompiler> {
624 _list = new (ResourceObj::C_HEAP, mtCompiler) GrowableArray<DerivedPointerEntry*>(10, true); // Allocated on C heap
H A DcompileBroker.cpp968 new (ResourceObj::C_HEAP, mtCompiler) GrowableArray<CompilerThread*>(compiler_count, true);
1646 file = NEW_C_HEAP_ARRAY(char, strlen(fileBuf)+1, mtCompiler);
1656 CompileLog* log = new(ResourceObj::C_HEAP, mtCompiler) CompileLog(file, fp, thread_id);
H A DcompilerOracle.cpp37 class MethodMatcher : public CHeapObj<mtCompiler> {
/openjdk7/hotspot/src/share/vm/libadt/
H A Dset.cpp74 char *buf = NEW_C_HEAP_ARRAY(char,len, mtCompiler);// Some initial string space
89 buf = REALLOC_C_HEAP_ARRAY(char,buf,len, mtCompiler); // Reallocate doubled size
104 buf = (char*)ReallocateHeap(buf,len, mtCompiler); // Reallocate doubled size
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.hpp92 class jvmtiDeferredLocalVariableSet : public CHeapObj<mtCompiler> {
122 class jvmtiDeferredLocalVariable : public CHeapObj<mtCompiler> {
H A DcompilationPolicy.hpp40 class CompilationPolicy : public CHeapObj<mtCompiler> {
H A DvframeArray.hpp113 class vframeArray: public CHeapObj<mtCompiler> {
H A Dvframe_hp.cpp157 deferred = new(ResourceObj::C_HEAP, mtCompiler) GrowableArray<jvmtiDeferredLocalVariableSet*> (1, true);
326 _locals = new(ResourceObj::C_HEAP, mtCompiler) GrowableArray<jvmtiDeferredLocalVariable*> (1, true);
H A Ddeoptimization.hpp132 class UnrollBlock : public CHeapObj<mtCompiler> {
H A Ddeoptimization.cpp104 _register_block = NEW_C_HEAP_ARRAY(intptr_t, RegisterMap::reg_count * 2, mtCompiler);
117 FREE_C_HEAP_ARRAY(intptr_t, _frame_sizes, mtCompiler);
118 FREE_C_HEAP_ARRAY(intptr_t, _frame_pcs, mtCompiler);
119 FREE_C_HEAP_ARRAY(intptr_t, _register_block, mtCompiler);
362 intptr_t* frame_sizes = NEW_C_HEAP_ARRAY(intptr_t, number_of_frames, mtCompiler);
364 address* frame_pcs = NEW_C_HEAP_ARRAY(address, number_of_frames + 1, mtCompiler);
H A DvframeArray.cpp451 mtCompiler);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compiler.cpp58 Arena* arena = new (mtCompiler) Arena();
H A Dc1_CFGPrinter.cpp36 class CFGPrinterOutput : public CHeapObj<mtCompiler> {
109 : _output(new(ResourceObj::C_HEAP, mtCompiler) fileStream("output.cfg"))
H A Dc1_LinearScan.cpp2470 ConstantOopWriteValue* LinearScan::_oop_null_scope_value = new (ResourceObj::C_HEAP, mtCompiler) ConstantOopWriteValue(NULL);
2471 ConstantIntValue* LinearScan::_int_m1_scope_value = new (ResourceObj::C_HEAP, mtCompiler) ConstantIntValue(-1);
2472 ConstantIntValue* LinearScan::_int_0_scope_value = new (ResourceObj::C_HEAP, mtCompiler) ConstantIntValue(0);
2473 ConstantIntValue* LinearScan::_int_1_scope_value = new (ResourceObj::C_HEAP, mtCompiler) ConstantIntValue(1);
2474 ConstantIntValue* LinearScan::_int_2_scope_value = new (ResourceObj::C_HEAP, mtCompiler) ConstantIntValue(2);
2475 LocationValue* _illegal_value = new (ResourceObj::C_HEAP, mtCompiler) LocationValue(Location());
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.cpp133 fileStream *stream = new (ResourceObj::C_HEAP, mtCompiler) fileStream(st.as_string());
136 fileStream *stream = new (ResourceObj::C_HEAP, mtCompiler) fileStream(PrintIdealGraphFile);
141 _stream = new (ResourceObj::C_HEAP, mtCompiler) networkStream();
163 _xml = new (ResourceObj::C_HEAP, mtCompiler) xmlStream(_output);
H A Druntime.hpp58 class NamedCounter : public CHeapObj<mtCompiler> {
H A Dtype.cpp215 Arena* shared_type_arena = new (mtCompiler)Arena();
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.hpp134 mtCompiler = 0x0600, // memory for compiler enumerator in enum:MemoryType
/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.cpp39 {mtCompiler, "Compiler"},
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.cpp116 Arena* arena = new (mtCompiler) Arena();

Completed in 115 milliseconds