Register temp handling fix

In general, compiler routines that generate code don't need to worry
about register management - the underlying utilites will take care of
it.  However, when generating an invoke sequence specific registers must
be used to conform to the calling convention.  To prevent the normal
utilities from allocating these fixed registers, oatLockAllTemps() is
called to mark the registers as in use.  However, oatLockAllTemps() did
just that - it locked all of the temps, not just those used for arguments.

This change renames oatLockAllTemps() to oatLockCallTemps() and restricts
the locking to the argument registers.

Change-Id: Id4183ce89e2672bcf2873d31aa60bd80c91c5a72
4 files changed
tree: 16aae1898827bb16a0a1f826797139371ef5b456
  1. build/
  2. src/
  3. test/
  4. tools/
  5. Android.mk