From: Hengqi Chen <hengqi.chen@gmail.com>
To: Andrii Nakryiko <andrii.nakryiko@gmail.com>
Cc: bpf@vger.kernel.org, andrii@kernel.org, yangtiezhu@loongson.cn
Subject: Re: [PATCH bpf-next] libbpf: Add LoongArch support to bpf_tracing.h
Date: Wed, 14 Dec 2022 10:07:16 +0800 [thread overview]
Message-ID: <d610919b-816d-a9af-d8f4-ce524ae9540b@gmail.com> (raw)
In-Reply-To: <CAEf4BzbX-DCvjvJsHgZC+TbLnru5R-0Oy3GfVkw7rjdtSR8e8g@mail.gmail.com>
On 2022/12/14 06:09, Andrii Nakryiko wrote:
> On Mon, Dec 12, 2022 at 4:17 PM Andrii Nakryiko
> <andrii.nakryiko@gmail.com> wrote:
>>
>> On Mon, Dec 12, 2022 at 1:11 AM Hengqi Chen <hengqi.chen@gmail.com> wrote:
>>>
>>> Add PT_REGS macros for LoongArch64.
>>>
>>> Signed-off-by: Hengqi Chen <hengqi.chen@gmail.com>
>>> ---
>>> tools/lib/bpf/bpf_tracing.h | 21 +++++++++++++++++++++
>>> 1 file changed, 21 insertions(+)
>>>
>>> diff --git a/tools/lib/bpf/bpf_tracing.h b/tools/lib/bpf/bpf_tracing.h
>>> index 2972dc25ff72..2d7da1caa961 100644
>>> --- a/tools/lib/bpf/bpf_tracing.h
>>> +++ b/tools/lib/bpf/bpf_tracing.h
>>> @@ -32,6 +32,9 @@
>>> #elif defined(__TARGET_ARCH_arc)
>>> #define bpf_target_arc
>>> #define bpf_target_defined
>>> +#elif defined(__TARGET_ARCH_loongarch)
>>> + #define bpf_target_loongarch
>>> + #define bpf_target_defined
>>> #else
>>>
>>> /* Fall back to what the compiler says */
>>> @@ -62,6 +65,9 @@
>>> #elif defined(__arc__)
>>> #define bpf_target_arc
>>> #define bpf_target_defined
>>> +#elif defined(__loongarch__) && __loongarch_grlen == 64
>>> + #define bpf_target_loongarch
>>> + #define bpf_target_defined
>>> #endif /* no compiler target */
>>>
>>> #endif
>>> @@ -258,6 +264,21 @@ struct pt_regs___arm64 {
>>> /* arc does not select ARCH_HAS_SYSCALL_WRAPPER. */
>>> #define PT_REGS_SYSCALL_REGS(ctx) ctx
>>>
>>> +#elif defined(bpf_target_loongarch)
>>> +
>>> +#define __PT_PARM1_REG regs[5]
>>> +#define __PT_PARM2_REG regs[6]
>>> +#define __PT_PARM3_REG regs[7]
>>> +#define __PT_PARM4_REG regs[8]
>>> +#define __PT_PARM5_REG regs[9]
>>> +#define __PT_RET_REG regs[1]
>>> +#define __PT_FP_REG regs[22]
>>> +#define __PT_RC_REG regs[4]
>>> +#define __PT_SP_REG regs[3]
>>> +#define __PT_IP_REG csr_era
>>> +/* loongarch does not select ARCH_HAS_SYSCALL_WRAPPER. */
>>> +#define PT_REGS_SYSCALL_REGS(ctx) ctx
>>
>> Is there some online documentation explaining this architecture's
>> calling conventions? It would be useful to include that as a comment
>> to be able to refer back to it. On a related note, are there any
>> syscall specific calling convention differences, similar to
>> PT_REGS_PARM1_SYSCALL for arm64 or PT_REGS_PARM4_SYSCALL for x86-64?
>>
>
> Ok, I think [0] would be a good resource, please add a link to it in
> the comment. But also it seems like PARM1-5 should map to regs[6]
> through regs[10] (not regs[5] - regs[9] that you have here). And BTW,
> seems like architecture supports passing more than five, PARM6 would
> be regs[11]. I've been wanting to add 6th+ argument to libbpf macros'
> for a while (it came up in x86-64 world for uprobes as well), so if
> you have cycles, please consider helping with that as well.
>
I've seen this on GitHub. Let me have a try.
> Also I see orig_a0 in struct pt_regs, which seems suspiciously similar
> to arm64's PT_REGS_PARM1_SYSCALL's use of orig_x0, please check about
> that as well. As I said, syscalls usually have some additional quirks.
>
>
> [0] https://loongson.github.io/LoongArch-Documentation/LoongArch-ELF-ABI-EN.html
>
>
>>> +
>>> #endif
>>>
>>> #if defined(bpf_target_defined)
>>> --
>>> 2.31.1
Thanks, Andrii.
After some investigation, I do find some quirks on syscalls. Will update this patch.
next prev parent reply other threads:[~2022-12-14 2:07 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-12 9:11 [PATCH bpf-next] libbpf: Add LoongArch support to bpf_tracing.h Hengqi Chen
2022-12-13 0:17 ` Andrii Nakryiko
2022-12-13 22:09 ` Andrii Nakryiko
2022-12-14 2:07 ` Hengqi Chen [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-12-31 10:07 Hengqi Chen
2023-01-03 6:53 ` Huacai Chen
2023-01-03 12:28 ` Daniel Borkmann
2023-01-03 12:31 ` Huacai Chen
2023-01-03 15:50 ` patchwork-bot+netdevbpf
2022-12-25 12:01 Hengqi Chen
2022-12-27 0:13 ` WANG Xuerui
2022-12-29 23:11 ` Andrii Nakryiko
2022-12-11 7:16 Hengqi Chen
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=d610919b-816d-a9af-d8f4-ce524ae9540b@gmail.com \
--to=hengqi.chen@gmail.com \
--cc=andrii.nakryiko@gmail.com \
--cc=andrii@kernel.org \
--cc=bpf@vger.kernel.org \
--cc=yangtiezhu@loongson.cn \
/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