From: Vineet Gupta <Vineet.Gupta1@synopsys.com>
To: strace-devel@lists.strace.io
Cc: Vineet Gupta <Vineet.Gupta1@synopsys.com>,
linux-snps-arc@lists.infradead.org
Subject: [PATCH] ARC: Enable automatic support for newer ARC ISA variants (ARCv3)
Date: Mon, 22 Feb 2021 18:37:54 -0800 [thread overview]
Message-ID: <20210223023754.3123898-1-vgupta@synopsys.com> (raw)
The syscall TRAP instruction used to be 4 bytes on legacy ARCompact
based ARC700 cores. Since then ARCv2 (circa 2014) and the upcoming ARCv3
use the same 2-byte TRAP_S instruction.
To ease porting of software to new ISA, special case ARC700.
This is the only change needed to get strace working on 64-bit ARCv3
cores (kudos to strace for making porting so easy)
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
---
src/linux/arc/raw_syscall.h | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/linux/arc/raw_syscall.h b/src/linux/arc/raw_syscall.h
index 6e60a6112b31..f54fe06f33df 100644
--- a/src/linux/arc/raw_syscall.h
+++ b/src/linux/arc/raw_syscall.h
@@ -21,10 +21,8 @@ raw_syscall_0(const kernel_ulong_t nr, kernel_ulong_t *err)
# ifdef __A7__
# define ARC_TRAP_INSN "trap0"
-# elif defined __HS__
-# define ARC_TRAP_INSN "trap_s 0 "
# else
-# error unrecognized arc
+# define ARC_TRAP_INSN "trap_s 0 "
# endif
__asm__ __volatile__(ARC_TRAP_INSN
--
2.25.1
_______________________________________________
linux-snps-arc mailing list
linux-snps-arc@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-snps-arc
next reply other threads:[~2021-02-23 2:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-23 2:37 Vineet Gupta [this message]
2021-02-23 20:14 ` [PATCH] ARC: Enable automatic support for newer ARC ISA variants (ARCv3) Dmitry V. Levin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210223023754.3123898-1-vgupta@synopsys.com \
--to=vineet.gupta1@synopsys.com \
--cc=linux-snps-arc@lists.infradead.org \
--cc=strace-devel@lists.strace.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox