diff options
author | Csaba Dabis <dabis.csaba98@gmail.com> | 2019-05-29 15:58:26 +0000 |
---|---|---|
committer | Csaba Dabis <dabis.csaba98@gmail.com> | 2019-05-29 15:58:26 +0000 |
commit | 35e54eb31ef2280e1ac3c122d619d10c51379bc3 (patch) | |
tree | 123d3890880bc42b354b15ef3e1ca783249af113 /clang/test | |
parent | 32981637ce6c025ca0695f768a110c6c98c03e94 (diff) | |
download | bcm5719-llvm-35e54eb31ef2280e1ac3c122d619d10c51379bc3.tar.gz bcm5719-llvm-35e54eb31ef2280e1ac3c122d619d10c51379bc3.zip |
[analyzer] print() JSONify: Constructing objects implementation
Summary: -
Reviewers: NoQ, xazax.hun, ravikandhadai, baloghadamsoftware, Szelethus
Reviewed By: NoQ
Subscribers: szepet, rnkovacs, a.sidorin, mikhail.ramalho, donat.nagy,
dkrupp
Tags: #clang
Differential Revision: https://reviews.llvm.org/D62085
llvm-svn: 361980
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Analysis/dump_egraph.cpp | 8 | ||||
-rw-r--r-- | clang/test/Analysis/expr-inspection.c | 1 |
2 files changed, 6 insertions, 3 deletions
diff --git a/clang/test/Analysis/dump_egraph.cpp b/clang/test/Analysis/dump_egraph.cpp index 10e33a7523f..9b05e4a6ba5 100644 --- a/clang/test/Analysis/dump_egraph.cpp +++ b/clang/test/Analysis/dump_egraph.cpp @@ -16,7 +16,9 @@ void foo() { T t; } -// CHECK: (LC1,S{{[0-9]*}},construct into local variable) T t;\n : &t -// CHECK: (LC2,I{{[0-9]*}},construct into member variable) s : &t-\>s -// CHECK: conj_$5\{int, LC3, no stmt, #1\} +// CHECK: \"constructing_objects\": [\l \{ \"location_context\": \"#0 Call\", \"calling\": \"foo\", \"call_line\": null, \"items\": [\l \{ \"lctx_id\": 1, \"stmt_id\": 1155, \"kind\": \"construct into local variable\", \"argument_index\": null, \"pretty\": \"T t;\" + +// CHECK: \"constructing_objects\": [\l \{ \"location_context\": \"#0 Call\", \"calling\": \"T::T\", \"call_line\": \"16\", \"items\": [\l \{ \"lctx_id\": 2, \"init_id\": 1092, \"kind\": \"construct into member variable\", \"argument_index\": null, \"pretty\": \"s\", \"value\": \"&t-\>s\" + +// CHECK: \"store\": [\l \{ \"cluster\": \"t\", \"items\": [\l \{ \"kind\": \"Default\", \"offset\": 0, \"value\": \"conj_$3\{int, LC3, no stmt, #1\}\" diff --git a/clang/test/Analysis/expr-inspection.c b/clang/test/Analysis/expr-inspection.c index abfef06b997..cf9c9f82d0a 100644 --- a/clang/test/Analysis/expr-inspection.c +++ b/clang/test/Analysis/expr-inspection.c @@ -37,3 +37,4 @@ void foo(int x) { // CHECK-NEXT: { "symbol": "reg_$0<int x>", "range": "{ [-2147483648, 13] }" } // CHECK-NEXT: ], // CHECK-NEXT: "dynamic_types": null, +// CHECK-NEXT: "constructing_objects": null, |