summaryrefslogtreecommitdiffstats
path: root/runtime/stack.h
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2015-04-24 14:58:19 +0100
committerNicolas Geoffray <ngeoffray@google.com>2015-04-24 14:58:19 +0100
commit7cc56a1fe81475d5126785c45606dd491dec2d8c (patch)
tree13ad863b2a693f68da23b36c24703ca990da5475 /runtime/stack.h
parent9e85d55c085504b88a9ac68c3f9605629dc06853 (diff)
downloadart-7cc56a1fe81475d5126785c45606dd491dec2d8c.zip
art-7cc56a1fe81475d5126785c45606dd491dec2d8c.tar.gz
art-7cc56a1fe81475d5126785c45606dd491dec2d8c.tar.bz2
Debugger: Remove support for setting values in optimizing.
bug:19944235 Change-Id: I3bcd56c7844847a7f0367f8ce6a72bddcd09d441
Diffstat (limited to 'runtime/stack.h')
-rw-r--r--runtime/stack.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/stack.h b/runtime/stack.h
index ed9e458..e2af5ee 100644
--- a/runtime/stack.h
+++ b/runtime/stack.h
@@ -668,18 +668,12 @@ class StackVisitor {
bool SetVRegFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
VRegKind kind)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
- bool SetVRegFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint32_t new_value,
- VRegKind kind)
- SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool SetRegisterIfAccessible(uint32_t reg, uint32_t new_value, VRegKind kind)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool SetVRegPairFromQuickCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
VRegKind kind_lo, VRegKind kind_hi)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
- bool SetVRegPairFromOptimizedCode(mirror::ArtMethod* m, uint16_t vreg, uint64_t new_value,
- VRegKind kind_lo, VRegKind kind_hi)
- SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
bool SetRegisterPairIfAccessible(uint32_t reg_lo, uint32_t reg_hi, uint64_t new_value,
bool is_float)
SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);