From fec152b6495e0282bca732184c428150ef0629c2 Mon Sep 17 00:00:00 2001
From: Reid Spencer
Date: Wed, 31 Jan 2007 00:38:46 +0000
Subject: [PATCH] Correct the instruction op codes to meet current head
changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33686 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/BytecodeFormat.html | 84 ++++++++++++++++------------------------
1 file changed, 33 insertions(+), 51 deletions(-)
diff --git a/docs/BytecodeFormat.html b/docs/BytecodeFormat.html
index d6b555242d7..5a9b2873a07 100644
--- a/docs/BytecodeFormat.html
+++ b/docs/BytecodeFormat.html
@@ -1529,34 +1529,41 @@ possible.
And | 16 | 1 | 1.0 |
Or | 17 | 1 | 1.0 |
Xor | 18 | 1 | 1.0 |
- Binary Comparison Operators |
- SetEQ | 19 | 1 | 1.0 |
- SetNE | 20 | 1 | 1.0 |
- SetLE | 21 | 1 | 1.0 |
- SetGE | 22 | 1 | 1.0 |
- SetLT | 23 | 1 | 1.0 |
- SetGT | 24 | 1 | 1.0 |
Memory Operators |
- Malloc | 25 | 1 | 1.0 |
- Free | 26 | 1 | 1.0 |
- Alloca | 27 | 1 | 1.0 |
- Load | 28 | 1 | 1.0 |
- Store | 29 | 1 | 1.0 |
- GetElementPtr | 30 | 1 | 1.0 |
+ Malloc | 19 | 1 | 1.0 |
+ Free | 20 | 1 | 1.0 |
+ Alloca | 21 | 1 | 1.0 |
+ Load | 22 | 1 | 1.0 |
+ Store | 23 | 1 | 1.0 |
+ GetElementPtr | 24 | 1 | 1.0 |
+ Cast Operators |
+ Trunc | 25 | 1 | 2.0 |
+ ZExt | 26 | 1 | 2.0 |
+ SExt | 27 | 1 | 2.0 |
+ FPToUI | 28 | 1 | 2.0 |
+ FPToSI | 29 | 1 | 2.0 |
+ UIToFP | 30 | 1 | 2.0 |
+ SIToFP | 31 | 1 | 2.0 |
+ FPTrunc | 32 | 1 | 2.0 |
+ FPExt | 33 | 1 | 2.0 |
+ PtrToInt | 34 | 1 | 2.0 |
+ IntToPtr | 35 | 1 | 2.0 |
+ BitCast | 36 | 1 | 2.0 |
Other Operators |
- PHI | 31 | 1 | 1.0 |
- Cast | 32 | 1 | 1.0 |
- Call | 33 | 1 | 1.0 |
- Shl | 34 | 1 | 1.0 |
- LShr | 35 | 6 | 2.0 |
- AShr | 36 | 6 | 2.0 |
- Select | 37 | 2 | 1.2 |
- UserOp1 | 38 | 1 | 1.0 |
- UserOp2 | 39 | 1 | 1.0 |
- VAArg | 40 | 5 | 1.5 |
- ExtractElement | 41 | 5 | 1.5 |
- InsertElement | 42 | 5 | 1.5 |
- ShuffleElement | 43 | 5 | 1.5 |
+ ICmp | 37 | 1 | 1.0 |
+ FCmp | 38 | 1 | 1.0 |
+ PHI | 39 | 1 | 1.0 |
+ Call | 40 | 1 | 1.0 |
+ Shl | 41 | 1 | 1.0 |
+ LShr | 42 | 6 | 2.0 |
+ AShr | 43 | 6 | 2.0 |
+ Select | 44 | 2 | 1.2 |
+ UserOp1 | 45 | 1 | 1.0 |
+ UserOp2 | 46 | 1 | 1.0 |
+ VAArg | 47 | 5 | 1.5 |
+ ExtractElement | 48 | 5 | 1.5 |
+ InsertElement | 49 | 5 | 1.5 |
+ ShuffleElement | 50 | 5 | 1.5 |
Pseudo Instructions*
|
@@ -1970,31 +1977,6 @@ describes the differences between that version and the one that follows.
Fields.
-