summaryrefslogtreecommitdiffstats
path: root/runtime/monitor_pool.cc
Commit message (Collapse)AuthorAgeFilesLines
* Fix issues with clang and BUILD_HOST_64bit.Ian Rogers2014-03-061-0/+1
| | | | Change-Id: Id954d0c1144de6eaf89a4d27d205e3bf6ccb655f
* Lock ranking fix for monitor IDs.Ian Rogers2014-03-051-1/+2
| | | | | | | Free-ing objects holds a lock and so the monitor ID lock needs to be of a lower rank. Change-Id: I594ac04c1f76c5d6fd2e752886040565001d4eaf
* Object model changes to support 64bit.Ian Rogers2014-02-061-0/+56
Modify mirror objects so that references between them use an ObjectReference value type rather than an Object* so that functionality to compress larger references can be captured in the ObjectRefererence implementation. ObjectReferences are 32bit and all other aspects of object layout remain as they are currently. Expand fields in objects holding pointers so they can hold 64bit pointers. Its expected the size of these will come down by improving where we hold compiler meta-data. Stub out x86_64 architecture specific runtime implementation. Modify OutputStream so that reads and writes are of unsigned quantities. Make the use of portable or quick code more explicit. Templatize AtomicInteger to support more than just int32_t as a type. Add missing, and fix issues relating to, missing annotalysis information on the mutator lock. Refactor and share implementations for array copy between System and uses elsewhere in the runtime. Fix numerous 64bit build issues. Change-Id: I1a5694c251a42c9eff71084dfdd4b51fff716822