sparc.exp

来自「基于4个mips核的noc设计」· EXP 代码 · 共 38 行

EXP
38
字号
# Some generic SPARC and SPARC64 tests# FIXME: The tests here aren't really bullet proof.  A mistake in the opcode# table can slip through since we use the same table for assembly and# disassembly.  The way to fix this is to include a hex dump of the insns# and test that as well.  Later.# Find out if these binutils are either sparc64*-*-* or# sparc*-*-* with --enable-targets=sparc64-*-*proc gas_64_check { } {    global NM    global NMFLAGS    global srcdir    catch "exec $srcdir/lib/run $NM $NMFLAGS --help" nm_help    return [regexp "elf64\[_-\]sparc" $nm_help];}if [istarget sparc*-*-*] {    run_dump_test "synth"    run_dump_test "unalign"    if [gas_64_check] {	run_dump_test "asi"	run_dump_test "membar"	run_dump_test "prefetch"	run_dump_test "set64"	run_dump_test "synth64"	run_dump_test "rdpr"	run_dump_test "wrpr"	run_dump_test "reloc64"    }}if [istarget sparclet*-*-*] {    run_dump_test "splet"    run_dump_test "splet-2"}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?