comparison src/share/vm/runtime/vmStructs.cpp @ 12779:f6c511451e4a

made Graal report its compilation info under -XX:+CITime in the same format as c1 and c2
author Doug Simon <doug.simon@oracle.com>
date Tue, 19 Nov 2013 01:31:19 +0100
parents ae412befde21
children 096c224171c4
comparison
equal deleted inserted replaced
12778:c125485642e2 12779:f6c511451e4a
1281 nonstatic_field(FreeChunk, _prev, FreeChunk*) \ 1281 nonstatic_field(FreeChunk, _prev, FreeChunk*) \
1282 nonstatic_field(FreeList<FreeChunk>, _size, size_t) \ 1282 nonstatic_field(FreeList<FreeChunk>, _size, size_t) \
1283 nonstatic_field(FreeList<Metablock>, _size, size_t) \ 1283 nonstatic_field(FreeList<Metablock>, _size, size_t) \
1284 nonstatic_field(FreeList<FreeChunk>, _count, ssize_t) \ 1284 nonstatic_field(FreeList<FreeChunk>, _count, ssize_t) \
1285 nonstatic_field(FreeList<Metablock>, _count, ssize_t) \ 1285 nonstatic_field(FreeList<Metablock>, _count, ssize_t) \
1286 nonstatic_field(MetablockTreeDictionary, _total_size, size_t) 1286 nonstatic_field(MetablockTreeDictionary, _total_size, size_t) \
1287 1287 GRAAL_ONLY(nonstatic_field(CompilerStatistics, _standard, CompilerStatistics::Data)) \
1288 GRAAL_ONLY(nonstatic_field(CompilerStatistics, _osr, CompilerStatistics::Data)) \
1289 GRAAL_ONLY(nonstatic_field(CompilerStatistics, _nmethods_size, int)) \
1290 GRAAL_ONLY(nonstatic_field(CompilerStatistics, _nmethods_code_size, int)) \
1291 GRAAL_ONLY(nonstatic_field(CompilerStatistics::Data, _bytes, int)) \
1292 GRAAL_ONLY(nonstatic_field(CompilerStatistics::Data, _count, int)) \
1293 GRAAL_ONLY(nonstatic_field(CompilerStatistics::Data, _time, elapsedTimer))
1288 1294
1289 //-------------------------------------------------------------------------------- 1295 //--------------------------------------------------------------------------------
1290 // VM_TYPES 1296 // VM_TYPES
1291 // 1297 //
1292 // This list must enumerate at least all of the types in the above 1298 // This list must enumerate at least all of the types in the above
2141 \ 2147 \
2142 /***************/ \ 2148 /***************/ \
2143 /* Miscellaneous types */ \ 2149 /* Miscellaneous types */ \
2144 /***************/ \ 2150 /***************/ \
2145 \ 2151 \
2152 GRAAL_ONLY(declare_toplevel_type(CompilerStatistics)) \
2153 GRAAL_ONLY(declare_toplevel_type(CompilerStatistics::Data)) \
2146 declare_toplevel_type(PtrQueue) \ 2154 declare_toplevel_type(PtrQueue) \
2147 \ 2155 \
2148 /* freelist */ \ 2156 /* freelist */ \
2149 declare_toplevel_type(FreeChunk*) \ 2157 declare_toplevel_type(FreeChunk*) \
2150 declare_toplevel_type(Metablock*) \ 2158 declare_toplevel_type(Metablock*) \