diff options
author | Vladimir Marko <vmarko@google.com> | 2014-09-22 14:50:02 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2014-09-23 14:42:17 +0100 |
commit | e39c54ea575ec710d5e84277fcdcc049f8acb3c9 (patch) | |
tree | 407209e732961074488043f6ccba8f1d692298a6 /compiler/utils/arena_allocator.cc | |
parent | b36bba6d35e88687852b108c8d4b73b3ec2a9397 (diff) | |
download | art-e39c54ea575ec710d5e84277fcdcc049f8acb3c9.tar.gz art-e39c54ea575ec710d5e84277fcdcc049f8acb3c9.tar.bz2 art-e39c54ea575ec710d5e84277fcdcc049f8acb3c9.zip |
Deprecate GrowableArray, use ArenaVector instead.
Purge GrowableArray from Quick and Portable.
Remove GrowableArray<T>::Iterator.
Change-Id: I92157d3a6ea5975f295662809585b2dc15caa1c6
Diffstat (limited to 'compiler/utils/arena_allocator.cc')
-rw-r--r-- | compiler/utils/arena_allocator.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/compiler/utils/arena_allocator.cc b/compiler/utils/arena_allocator.cc index da49524ee2..516ac2b388 100644 --- a/compiler/utils/arena_allocator.cc +++ b/compiler/utils/arena_allocator.cc @@ -35,12 +35,23 @@ template <bool kCount> const char* const ArenaAllocatorStatsImpl<kCount>::kAllocNames[] = { "Misc ", "BasicBlock ", + "BBList " + "BBPreds ", + "DfsPreOrd ", + "DfsPostOrd ", + "DomPostOrd ", + "TopoOrd ", + "Lowering ", "LIR ", "LIR masks ", + "SwitchTbl ", + "FillArray ", + "SlowPaths ", "MIR ", "DataFlow ", "GrowList ", "GrowBitMap ", + "SSA2Dalvik ", "Dalvik2SSA ", "DebugInfo ", "Successor ", |