summaryrefslogtreecommitdiffstats
path: root/docs/opcodes/opcode-29-goto-16.html
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:14 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:14 -0800
commitf72d5de56a522ac3be03873bdde26f23a5eeeb3c (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /docs/opcodes/opcode-29-goto-16.html
parent31e30105703263782efd450d356cd67ea01af3b7 (diff)
downloadandroid_dalvik-f72d5de56a522ac3be03873bdde26f23a5eeeb3c.tar.gz
android_dalvik-f72d5de56a522ac3be03873bdde26f23a5eeeb3c.tar.bz2
android_dalvik-f72d5de56a522ac3be03873bdde26f23a5eeeb3c.zip
auto import from //depot/cupcake/@135843
Diffstat (limited to 'docs/opcodes/opcode-29-goto-16.html')
-rw-r--r--docs/opcodes/opcode-29-goto-16.html73
1 files changed, 0 insertions, 73 deletions
diff --git a/docs/opcodes/opcode-29-goto-16.html b/docs/opcodes/opcode-29-goto-16.html
deleted file mode 100644
index abe4aece7..000000000
--- a/docs/opcodes/opcode-29-goto-16.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-
-<html>
-
-<head>
-<title>goto/16</title>
-<link rel=stylesheet href="opcode.css">
-</head>
-
-<body>
-
-<h1>goto/16</h1>
-
-<h2>Purpose</h2>
-
-<p>
-Unconditionally jump to the indicated instruction.
-</p>
-<p>
-Note: The branch offset may not be 0. (A spin loop may be legally constructed
-either with goto/32 or by including a nop as a target before the branch.)
-</p>
-
-<h2>Details</h2>
-
-<table class="instruc">
-<thead>
-<tr>
- <th>Op &amp; Format</th>
- <th>Mnemonic / Syntax</th>
- <th>Arguments</th>
-</tr>
-</thead>
-<tbody>
-<tr>
- <td>29 20t</td>
- <td>goto/16 +AAAA</td>
- <td><code>A:</code> signed branch offset (16 bits)<br/></td>
-</tr>
-</tbody>
-</table>
-
-<h2>Constraints</h2>
-
-<ul>
- <li>
- A must point to a valid bytecode instruction inside the current method.
- </li>
- <li>
- A must not be 0.
- </li>
-</ul>
-
-<h2>Behavior</h2>
-
-<ul>
- <li>
- The (otherwise invisible) program counter PC is set to the address of the
- instruction plus the given offset, that is, PC' = PC(goto) + A.
- </li>
- <li>
- Executions resumes at PC'.
- </li>
-</ul>
-
-<h2>Exceptions</h2>
-
-<p>
-None.
-</p>
-
-</body>
-</html>