diff options
| author | Martin Storsjo <martin@martin.st> | 2019-10-15 08:31:52 +0000 |
|---|---|---|
| committer | Martin Storsjo <martin@martin.st> | 2019-10-15 08:31:52 +0000 |
| commit | b1f6ba2a2ecdf253c1ee2f2a04156eba78cfe3fa (patch) | |
| tree | 12c30dbf9168c5c60af7e895ff542d1d4273b22b /lldb/test/Shell/Register/aarch64-gp-read.test | |
| parent | da92ed8365aa5506c4991b9075f57aeeb7f6f70a (diff) | |
| download | bcm5719-llvm-b1f6ba2a2ecdf253c1ee2f2a04156eba78cfe3fa.tar.gz bcm5719-llvm-b1f6ba2a2ecdf253c1ee2f2a04156eba78cfe3fa.zip | |
[LLDB] [Windows] Initial support for ARM64 register contexts
Differential Revision: https://reviews.llvm.org/D67954
llvm-svn: 374866
Diffstat (limited to 'lldb/test/Shell/Register/aarch64-gp-read.test')
| -rw-r--r-- | lldb/test/Shell/Register/aarch64-gp-read.test | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lldb/test/Shell/Register/aarch64-gp-read.test b/lldb/test/Shell/Register/aarch64-gp-read.test new file mode 100644 index 00000000000..c400bc3a51a --- /dev/null +++ b/lldb/test/Shell/Register/aarch64-gp-read.test @@ -0,0 +1,24 @@ +# REQUIRES: native && target-aarch64 +# RUN: %clangxx -fomit-frame-pointer %p/Inputs/aarch64-gp-read.cpp -o %t +# RUN: %lldb -b -s %s %t | FileCheck %s +process launch + +register read --all +# CHECK-DAG: x0 = 0x0001020304050607 +# CHECK-DAG: x1 = 0x1011121314151617 +# CHECK-DAG: x2 = 0x2021222324252627 +# CHECK-DAG: x3 = 0x3031323334353637 +# CHECK-DAG: x4 = 0x4041424344454647 +# CHECK-DAG: x5 = 0x5051525354555657 +# CHECK-DAG: x6 = 0x6061626364656667 +# CHECK-DAG: x7 = 0x7071727374757677 +# CHECK-DAG: w0 = 0x04050607 + +# CHECK-DAG: v0 = {0x08 0x09 0x0a 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17} +# CHECK-DAG: v1 = {0x09 0x0a 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18} +# CHECK-DAG: v2 = {0x0a 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19} +# CHECK-DAG: v3 = {0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a} +# CHECK-DAG: v4 = {0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b} +# CHECK-DAG: v5 = {0x0d 0x0e 0x0f 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c} +# CHECK-DAG: v6 = {0x0e 0x0f 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c 0x1d} +# CHECK-DAG: v7 = {0x0f 0x10 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x1e} |

