Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Keystone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Third Party Mirrors
Keystone
Commits
2285c69c
Commit
2285c69c
authored
8 years ago
by
Nguyen Anh Quynh
Browse files
Options
Downloads
Patches
Plain Diff
move kstool/test-all.sh to suite/
parent
db2399f6
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
suite/test-all.sh
+101
-0
101 additions, 0 deletions
suite/test-all.sh
with
101 additions
and
0 deletions
suite/test-all.sh
0 → 100755
+
101
−
0
View file @
2285c69c
#!/bin/sh
echo
"::X86-32"
kstool x32
"add eax, ecx"
# encoding: [0x01,0xc8]
echo
echo
"::X86-64"
kstool x64
"add rax, rcx"
#encoding: [0x48,0x01,0xc8]
echo
echo
"::X86-32 ATT"
kstool x32att
"add %ecx, %eax"
# encoding: [0x01,0xc8]
echo
echo
"::X86-64 ATT"
kstool x64att
"add %rcx, %rax"
#encoding: [0x48,0x01,0xc8]
echo
echo
"::Arm"
kstool arm
"sub r1, r2, r5"
#encoding: [0x05,0x10,0x42,0xe0]
echo
echo
"::Arm BE"
kstool armbe
"sub r1, r2, r5"
#encoding: [0x05,0x10,0x42,0xe0]
echo
echo
"::Thumb LE"
kstool thumb
"movs r4, #0xf0"
#encoding: [0xf0,0x24]
echo
echo
"::Thumb BE"
kstool thumbbe
"movs r4, #0xf0"
#encoding: [0x24,0xf0]
echo
echo
"::Arm64 BE"
kstool arm64be
"ldr w1, [sp, #0x8]"
#encoding: [0xe1,0x0b,0x40,0xb9]
echo
echo
"::Sparc BE"
kstool sparcbe
"add %g1, %g2, %g3"
#encoding: [0x86,0x00,0x40,0x02]
echo
echo
"::Sparc LE"
kstool sparc
"add %g1, %g2, %g3"
#encoding: [0x02,0x40,0x00,0x86]
echo
echo
"::Mips BE"
kstool mipsbe
"and
\$
9,
\$
6,
\$
7"
#encoding: [0x00,0xc7,0x48,0x24]
echo
echo
"::Mips LE"
kstool mips
"and
\$
9,
\$
6,
\$
7"
#encoding: [0x24,0x48,0xc7,0x00]
echo
echo
"::Mips64 LE"
kstool mips64
"and
\$
9,
\$
6,
\$
7"
#encoding: [0x24,0x48,0xc7,0x00]
echo
echo
"::Mips64 BE"
kstool mips64be
"and
\$
9,
\$
6,
\$
7"
#encoding: [0x00,0xc7,0x48,0x24]
echo
echo
"::SystemZ"
kstool systemz
"a %r0, 4095(%r15,%r1)"
#encoding: [0x5a,0x0f,0x1f,0xff]
echo
echo
"::Hexagon"
kstool hex
"v23.w=vavg(v11.w,v2.w):rnd"
#encoding: [0xd7,0xcb,0xe2,0x1c]
echo
echo
"::PPC BE"
kstool ppc32be
"add 1, 2, 3"
#encoding: [0x7c,0x22,0x1a,0x14]
echo
echo
"::PPC64 LE"
kstool ppc64
"add 1, 2, 3"
#encoding: [0x14,0x1a,0x22,0x7c]
echo
echo
"::PPC64 BE"
kstool ppc64be
"add 1, 2, 3"
#encoding: [0x7c,0x22,0x1a,0x14]
echo
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment