diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-08 06:08:29 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-08 06:08:29 +0000 |
commit | 91bf7cb79b68e39b7d42eb23015fd0a26f105dc0 (patch) | |
tree | 677ce2c723d82ede9c6b85c91bf4b291cbd228ce /llvm/lib | |
parent | 7a66e5fff9ec1e1cb1a40f9f02470a09de8da5c5 (diff) | |
download | bcm5719-llvm-91bf7cb79b68e39b7d42eb23015fd0a26f105dc0.tar.gz bcm5719-llvm-91bf7cb79b68e39b7d42eb23015fd0a26f105dc0.zip |
Add a bunch more branches
llvm-svn: 13422
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/SparcV8/SparcV8InstrInfo.td | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/llvm/lib/Target/SparcV8/SparcV8InstrInfo.td b/llvm/lib/Target/SparcV8/SparcV8InstrInfo.td index 35323b96954..bf11b35d3e2 100644 --- a/llvm/lib/Target/SparcV8/SparcV8InstrInfo.td +++ b/llvm/lib/Target/SparcV8/SparcV8InstrInfo.td @@ -126,10 +126,18 @@ def RESTORErr : F3_1<2, 0b111101, "restore">; // restore r, r, r def RESTOREri : F3_2<2, 0b111101, "restore">; // restore r, i, r // Section B.21 - Branch on Integer Condition Codes Instructions, p. 119 -def BA : F2_2<0b1000, 0b010, "ba">; -def BN : F2_2<0b0000, 0b010, "bn">; -def BNE : F2_2<0b1001, 0b010, "bne">; -def BE : F2_2<0b0001, 0b010, "be">; +def BA : F2_2<0b1000, 0b010, "ba">; +def BN : F2_2<0b0000, 0b010, "bn">; +def BNE : F2_2<0b1001, 0b010, "bne">; +def BE : F2_2<0b0001, 0b010, "be">; +def BG : F2_2<0b1010, 0b010, "bg">; +def BLE : F2_2<0b0010, 0b010, "ble">; +def BGE : F2_2<0b1011, 0b010, "bge">; +def BL : F2_2<0b0011, 0b010, "bl">; +def BGU : F2_2<0b1100, 0b010, "bgu">; +def BLEU : F2_2<0b0100, 0b010, "bleu">; +def BCC : F2_2<0b1101, 0b010, "bcc">; +def BCS : F2_2<0b0101, 0b010, "bcs">; // Section B.24 - Call and Link Instruction, p. 125 // This is the only Format 1 instruction |