summaryrefslogtreecommitdiffstats
path: root/docs/debugger.html
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2010-02-16 14:08:29 -0800
committerAndy McFadden <fadden@android.com>2010-02-16 14:08:29 -0800
commitaf19f59625262f0cad6484d23bf3376d938930de (patch)
tree302d98e0f6570b2c2cecd4a49b43038ce6cc9190 /docs/debugger.html
parent3efafc8d16027ad79c5ec4008d2cc4fec16c07f3 (diff)
downloadandroid_dalvik-af19f59625262f0cad6484d23bf3376d938930de.tar.gz
android_dalvik-af19f59625262f0cad6484d23bf3376d938930de.tar.bz2
android_dalvik-af19f59625262f0cad6484d23bf3376d938930de.zip
Flan -> Froyo
Diffstat (limited to 'docs/debugger.html')
-rw-r--r--docs/debugger.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/debugger.html b/docs/debugger.html
index 919739d71..1c47c7a3f 100644
--- a/docs/debugger.html
+++ b/docs/debugger.html
@@ -55,9 +55,9 @@ A connection from DDMS alone doesn't result in a change in VM behavior,
but when the VM sees debugger packets it allocates additional data
structures and may switch to a different implementation of the interpreter.
</p><p>
-Pre-Flan implementations of the Dalvik VM used read-only memory mappings
+Pre-Froyo implementations of the Dalvik VM used read-only memory mappings
for all bytecode, which made it necessary to scan for breakpoints by
-comparing the program counter to a set of addresses. In Flan this was
+comparing the program counter to a set of addresses. In Froyo this was
changed to allow insertion of breakpoint opcodes. This allows the VM
to execute code more quickly, and does away with the hardcoded limit
of 20 breakpoints. Even with this change, however, the debug-enabled