Re: [PATCH v3] feat: add loongarch page table walker support for debugger memory access

2025-01-14 Thread Miao Hao
. Here page table walker is added for debugger usage. Signed-off-by: Miao Hao Regards Bibo Mao OK, thanks for your review. Regards Miao Hao On 2025/1/14 下午5:54, Miao Hao wrote: Signed-off-by: Miao Hao ---    v1 -> v2: 1. Addressed review comments. 2. Fix the assignment

Re: [PATCH] feat: add loongarch page table walker support for debugger memory access

2025-01-14 Thread Miao Hao
On 2025/1/14 17:00, bibo mao wrote: Miao, What is status about this patch? Will there be updated version? Regards Bibo Mao Sorry, I'm waiting for your reply. I have just updated the patch for version 3. Regards Miao Hao On 2025/1/2 下午2:33, Miao Hao wrote: On 2024/12/31

[PATCH v3] feat: add loongarch page table walker support for debugger memory access

2025-01-14 Thread Miao Hao
Signed-off-by: Miao Hao --- v1 -> v2: 1. Addressed review comments. 2. Fix the assignment of variable shift. v2 -> v3: 1. Remove variable shift. target/loongarch/cpu_helper.c | 94 +-- target/loongarch/internals.h | 4 +- target/loo

Re: [PATCH] feat: add loongarch page table walker support for debugger memory access

2025-01-01 Thread Miao Hao
On 2024/12/31 19:29, bibo mao wrote: On 2024/12/30 下午3:04, Miao Hao wrote: Hi Bibo, Thanks for your review. I apologize for my late respond due to some personal reasons. On 2024/12/19 17:57, bibo mao wrote: Hi Miao, Thanks for doing this. It is useful to debug VM. On 2024/12/19 上午11

Re: [PATCH] feat: add loongarch page table walker support for debugger memory access

2024-12-30 Thread Miao Hao
On 2024/12/31 10:23, bibo mao wrote: On 2024/12/31 上午10:08, Miao Hao wrote: On 2024/12/31 09:18, bibo mao wrote: On 2024/12/31 上午9:09, bibo mao wrote: On 2024/12/30 下午3:04, Miao Hao wrote: Hi Bibo, Thanks for your review. I apologize for my late respond due to some personal

Re: [PATCH] feat: add loongarch page table walker support for debugger memory access

2024-12-30 Thread Miao Hao
On 2024/12/31 09:18, bibo mao wrote: On 2024/12/31 上午9:09, bibo mao wrote: On 2024/12/30 下午3:04, Miao Hao wrote: Hi Bibo, Thanks for your review. I apologize for my late respond due to some personal reasons. On 2024/12/19 17:57, bibo mao wrote: Hi Miao, Thanks for doing this. It is

[PATCH] target/loongarch: Fix index calculation for variable length pte

2024-12-29 Thread Miao Hao
Signed-off-by: Miao Hao --- target/loongarch/tcg/tlb_helper.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/target/loongarch/tcg/tlb_helper.c b/target/loongarch/tcg/tlb_helper.c index 97f38fc391..a57ddfe8ad 100644 --- a/target/loongarch/tcg/tlb_helper.c +++ b

[PATCH v2] feat: add loongarch page table walker support for debugger memory access

2024-12-29 Thread Miao Hao
Signed-off-by: Miao Hao --- v1 -> v2: 1. Addressed review comments. 2. Fix the assignment of variable shift. target/loongarch/cpu_helper.c | 106 -- target/loongarch/internals.h | 4 +- target/loongarch/tcg/tlb_helper.c | 4 +- 3 files chan

Re: [PATCH] feat: add loongarch page table walker support for debugger memory access

2024-12-29 Thread Miao Hao
Hi Bibo, Thanks for your review. I apologize for my late respond due to some personal reasons. On 2024/12/19 17:57, bibo mao wrote: Hi Miao, Thanks for doing this. It is useful to debug VM. On 2024/12/19 上午11:24, Miao Hao wrote: Signed-off-by: Miao Hao ---   target/loongarch/cpu_helper.c

[PATCH] feat: add loongarch page table walker support for debugger memory access

2024-12-18 Thread Miao Hao
Signed-off-by: Miao Hao --- target/loongarch/cpu_helper.c | 104 -- target/loongarch/internals.h | 4 +- target/loongarch/tcg/tlb_helper.c | 4 +- 3 files changed, 104 insertions(+), 8 deletions(-) diff --git a/target/loongarch/cpu_helper.c b/target