mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 05:40:09 +00:00
Add Alpha and LoongArch to the CI tests.
This commit is contained in:
parent
3c619b615d
commit
5943ec6923
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Compare the generated tables of our refactored TableGen to the original ones.
|
||||
archs="AArch64 ARM PPC"
|
||||
archs="AArch64 ARM PPC LoongArch"
|
||||
file_names="GenAsmWriter GenDisassemblerTables GenInstrInfo GenRegisterInfo GenSubtargetInfo GenSystemOperands"
|
||||
release="18"
|
||||
repo_root=$(git rev-parse --show-toplevel)
|
||||
|
@ -3,7 +3,7 @@
|
||||
# Compare the generated tables of our refactored TableGen to the original ones.
|
||||
|
||||
# We skip Alpha because it is no longer supported by upstream LLVM
|
||||
archs="AArch64 ARM PPC"
|
||||
archs="AArch64 ARM PPC LoongArch Alpha"
|
||||
file_names="GenAsmWriter GenDisassemblerTables GenInstrInfo GenRegisterInfo GenSubtargetInfo GenSystemOperands"
|
||||
release="18"
|
||||
repo_root=$(git rev-parse --show-toplevel)
|
||||
@ -48,7 +48,7 @@ gen_all()
|
||||
elif [ $file_name = "GenSubtargetInfo" ]; then
|
||||
$repo_root/build/bin/llvm-tblgen --gen-subtarget "$table_type" -o "$out_file" -I "$arch_include" -I "$repo_root/llvm/include" "$arch_include/$arch.td"
|
||||
elif [ $file_name = "GenSystemOperands" ]; then
|
||||
if [ $arch != "PPC" ] ; then
|
||||
if [ $arch != "PPC" ] && [ $arch != "LoongArch" ] ; then
|
||||
$repo_root/build/bin/llvm-tblgen --gen-searchable-tables "$table_type" -o "$out_file" -I "$arch_include" -I "$repo_root/llvm/include" "$arch_include/$arch.td"
|
||||
fi
|
||||
else
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
archs="AArch64 ARM PPC"
|
||||
archs="AArch64 ARM PPC LoongArch Alpha"
|
||||
file_names="GenAsmWriter GenDisassemblerTables GenInstrInfo GenRegisterInfo GenSubtargetInfo GenSystemOperands"
|
||||
release="18"
|
||||
repo_root=$(git rev-parse --show-toplevel)
|
||||
@ -45,7 +45,7 @@ gen_all()
|
||||
elif [ $file_name = "GenSubtargetInfo" ]; then
|
||||
$repo_root/build/bin/llvm-tblgen --gen-subtarget "$table_type" -o "$out_file" -I "$arch_include" -I "$repo_root/llvm/include" "$arch_include/$arch.td"
|
||||
elif [ $file_name = "GenSystemOperands" ]; then
|
||||
if [ $arch != "PPC" ] ; then
|
||||
if [ $arch != "PPC" ] && [ $arch != "LoongArch" ] ; then
|
||||
$repo_root/build/bin/llvm-tblgen --gen-searchable-tables "$table_type" -o "$out_file" -I "$arch_include" -I "$repo_root/llvm/include" "$arch_include/$arch.td"
|
||||
fi
|
||||
else
|
||||
|
@ -48,9 +48,6 @@ include "AlphaSchedule.td"
|
||||
include "AlphaInstrInfo.td"
|
||||
|
||||
def AlphaInstrInfo : InstrInfo {
|
||||
let noNamedPositionallyEncodedOperands = 1;
|
||||
let useDeprecatedPositionallyEncodedOperands = 1;
|
||||
let decodePositionallyEncodedOperands = 1;
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
Reference in New Issue
Block a user