This patch adds a test case to test dynamic register sets. This tests for the availability of certain register sets and query their registers accordingly.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
36 | Can you explain the logic for the values here? | |
40 | You don't need the brackets around i for % (i). | |
50 | Is it slightly more strict if we have one loop that reads then writes? for i in range(32): write read Since we write the same value, if you write them all then read them all you aren't totally sure that each one is lined up right. Then again I'm sure you've tested sve register writes elsewhere. Anyway, a single loop for each would be a bit neater. | |
112 | If you move all this code from after the for, into the for loop, you could skip having the bools per register set. | |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/main.c | ||
15 | (I'm not familiar with SVE assembly but anyway..) Is the .b/.h/.s etc. pattern specific or does it not matter? | |
32–33 | Same here, is the p0/p5/p10/p15 pattern affecting values used in the test or just for fun? (which isn't a bad thing) | |
69 | This appears to be defined but not set. | |
74 | Should there be a #ifndef HWCAP_SVE above too? | |
83 | Would be neat to do these vars like: unsigned int mte_is_enabled = hwcap2 & HWCAP2_MTE; |
We are using SVE read/write in this test to make sure we do not overlap register offsets while calculating offsets for the dynamic registers. Further dynamic register sets should also be readable.
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
36 | P reg sets predicate lanes. P0 will have all lanes set while P5 will have no lanes set. These are just random values testing read/write. | |
40 | Ack. | |
50 | I think you are right. If we do a read after write in a single loop we ll be doing 64 ptrace calls on lldb-server side. More the better. | |
112 | I was actually trying to see whether what cpuinfo reports and what is reported by prctl is same or not. | |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/main.c | ||
15 | Replied in comment below. | |
32–33 | I copied this from SVE test case that I wrote last year. P is a predicate register and ptrue/pfalse instruction is used to set a predicate lane with a pattern. pattern is decide based on size specifier, b, h, s and d. if size specified is b all lanes will be set to 1. which is needed to set al bytes in a Z registers to the specified value. We are setting p0, p5, p10 and p15 to enable all lanes other p registers are not enabling all lanes thats why they were not used as predicate for setting Z registers in following lines which set a constant value to Z register byte size elements. | |
69 | Ack. I ll adjust these as per your suggestion below. | |
74 | Most distros have now backported ptrace.h to include HWCAP_SVE but other two are still in the process. | |
83 | Cool! |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
36 | I would put that in a comment to save some time for those unfamiliar with SVE. | |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/main.c | ||
32–33 | I'd put that in a comment. Enough for someone triaging a failure to know what's arbitrary numbers and what's very specific. |
Some python nits otherwise the test looks good.
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
17 | These messages are printed on assert failure. So this one would be "Expected a register named...". | |
33 | For this and the other instances of this pattern you an make it one string like: self.expect("register read z%i" % i, ... | |
46 | Do we need an ffr read if we have a read/write below? | |
95 | These if not could be self.assertFalse. |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
17 | Agreed. | |
33 | I am kinda old school so choose to write + will fix :) | |
46 | Yes. | |
95 | Yes self.assertTrue I guess. Will fix. |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
46 | Ok but then should the second r/w be of a different value? program writes A - we read A, so the read works |
Minor fix to write unique value to all z/p registers when writing them using register write command.
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
46 | Second read/write was different value but a fixed value was being used for testing all z/p registers. I have updated this rev to add unique values which are still different from what is written by the main.c |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
97 | Move the closing ) onto the first line. Also I'd indent the line below like: self.assertTrue(self.isAArch64SVE(), 'LLDB enabled AArch64 SVE register set when it was disabled by target.') self..... (applies to the next two as well) | |
107 | Should be isAArch64PAuth | |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/main.c | ||
82–83 | These are unused since we get it from the cpuinfo, then you can inline the sve check in the if below. |
LGTM with that one thing fixed.
lldb/test/API/commands/register/register/aarch64_dynamic_regset/main.c | ||
---|---|---|
5–11 | These can go too. |
lldb/test/API/commands/register/register/aarch64_dynamic_regset/TestArm64DynamicRegsets.py | ||
---|---|---|
60–61 | I find this combination of %-formatting and string concatenation unsettling. Just use % for the whole string? |
These messages are printed on assert failure. So this one would be "Expected a register named...".