forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Hexagon] Adding any8, all8, and/or/xor/andn/orn/not predicate regist…
…er forms, mask, and vitpack instructions and patterns. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223710 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Colin LeMahieu
committed
Dec 8, 2014
1 parent
ac6e0c8
commit 73ed2dc
Showing
3 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# RUN: llvm-mc --triple hexagon -disassemble < %s | FileCheck %s | ||
|
||
0x01 0xc0 0x82 0x6b | ||
# CHECK: p1 = any8(p2) | ||
0x01 0xc0 0xa2 0x6b | ||
# CHECK: p1 = all8(p2) | ||
0x01 0xc3 0x02 0x6b | ||
# CHECK: p1 = and(p3, p2) | ||
0x01 0xc3 0x62 0x6b | ||
# CHECK: p1 = and(p3, !p2) | ||
0x01 0xc3 0x22 0x6b | ||
# CHECK: p1 = or(p3, p2) | ||
0x01 0xc3 0xe2 0x6b | ||
# CHECK: p1 = or(p3, !p2) | ||
0x01 0xc0 0xc2 0x6b | ||
# CHECK: p1 = not(p2) | ||
0x01 0xc2 0x43 0x6b | ||
# CHECK: p1 = xor(p3, p2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters