// Cppcheck - A tool for static C/C++ code analysis
// Copyright (C) 2007-2019 Cppcheck team.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
#include "clangastdump.h"
#include "settings.h"
#include "tokenize.h"
#include "testsuite.h"
class TestClangAstDump: public TestFixture {
public:
TestClangAstDump()
:TestFixture("TestClangAstDump") {
}
private:
void run() OVERRIDE {
TEST_CASE(breakStmt);
TEST_CASE(continueStmt);
TEST_CASE(forStmt);
TEST_CASE(funcdecl1);
TEST_CASE(funcdecl2);
TEST_CASE(ifelse);
TEST_CASE(memberExpr);
TEST_CASE(recordDecl);
TEST_CASE(typedefDecl1);
TEST_CASE(typedefDecl2);
TEST_CASE(typedefDecl3);
TEST_CASE(vardecl1);
TEST_CASE(vardecl2);
TEST_CASE(vardecl3);
TEST_CASE(whileStmt);
}
std::string parse(const char clang[]) {
Settings settings;
Tokenizer tokenizer(&settings, this);
std::istringstream istr(clang);
clangastdump::parseClangAstDump(&tokenizer, istr);
return tokenizer.tokens()->stringifyList(true, false, false, true, false);
}
void breakStmt() {
const char clang[] = "`-FunctionDecl 0x2c31b18 <1.c:1:1, col:34> col:6 foo 'void ()'\n"
" `-CompoundStmt 0x2c31c40 \n"
" `-WhileStmt 0x2c31c20 \n"
" |-<<>>\n"
" |-IntegerLiteral 0x2c31bf8 'int' 0\n"
" `-BreakStmt 0x3687c18 ";
ASSERT_EQUALS("void foo ( ) { while ( 0 ) { break ; } ; }", parse(clang));
}
void continueStmt() {
const char clang[] = "`-FunctionDecl 0x2c31b18 <1.c:1:1, col:34> col:6 foo 'void ()'\n"
" `-CompoundStmt 0x2c31c40 \n"
" `-WhileStmt 0x2c31c20 \n"
" |-<<>>\n"
" |-IntegerLiteral 0x2c31bf8 'int' 0\n"
" `-ContinueStmt 0x2c31c18 ";
ASSERT_EQUALS("void foo ( ) { while ( 0 ) { continue ; } ; }", parse(clang));
}
void forStmt() {
const char clang[] = "`-FunctionDecl 0x2f93ae0 <1.c:1:1, col:56> col:5 main 'int ()'\n"
" `-CompoundStmt 0x2f93dc0 \n"
" |-ForStmt 0x2f93d50 \n"
" | |-DeclStmt 0x2f93c58 \n"
" | | `-VarDecl 0x2f93bd8 col:23 used i 'int' cinit\n"
" | | `-IntegerLiteral 0x2f93c38 'int' 0\n"
" | |-<<>>\n"
" | |-BinaryOperator 0x2f93cd0 'int' '<'\n"
" | | |-ImplicitCastExpr 0x2f93cb8 'int' \n"
" | | | `-DeclRefExpr 0x2f93c70 'int' lvalue Var 0x2f93bd8 'i' 'int'\n"
" | | `-IntegerLiteral 0x2f93c98 'int' 10\n"
" | |-UnaryOperator 0x2f93d20 'int' postfix '++'\n"
" | | `-DeclRefExpr 0x2f93cf8 'int' lvalue Var 0x2f93bd8 'i' 'int'\n"
" | `-CompoundStmt 0x2f93d40 \n"
" `-ReturnStmt 0x2f93da8 \n"
" `-IntegerLiteral 0x2f93d88 'int' 0";
ASSERT_EQUALS("int main ( ) { for ( int i@1 = 0 ; i@1 < 10 ; ++ i@1 ) { } ; return 0 ; }", parse(clang));
}
void funcdecl1() {
const char clang[] = "`-FunctionDecl 0x3122c30 <1.c:1:1, col:22> col:6 foo 'void (int, int)'\n"
" |-ParmVarDecl 0x3122ae0 col:14 x 'int'\n"
" `-ParmVarDecl 0x3122b58 col:21 y 'int'";
ASSERT_EQUALS("void foo ( int x@1 , int y@2 ) ;", parse(clang));
}
void funcdecl2() {
const char clang[] = "`-FunctionDecl 0x24b2c38 <1.c:1:1, line:4:1> line:1:5 foo 'int (int, int)'\n"
" |-ParmVarDecl 0x24b2ae0 col:13 used x 'int'\n"
" |-ParmVarDecl 0x24b2b58 col:20 used y 'int'\n"
" `-CompoundStmt 0x24b2de8 \n"
" `-ReturnStmt 0x24b2dd0 \n"
" `-BinaryOperator 0x24b2da8 'int' '/'\n"
" |-ImplicitCastExpr 0x24b2d78 'int' \n"
" | `-DeclRefExpr 0x24b2d28 'int' lvalue ParmVar 0x24b2ae0 'x' 'int'\n"
" `-ImplicitCastExpr 0x24b2d90 'int' \n"
" `-DeclRefExpr 0x24b2d50 'int' lvalue ParmVar 0x24b2b58 'y' 'int'";
ASSERT_EQUALS("int foo ( int x@1 , int y@2 ) {\n\n"
"return x@1 / y@2 ; }", parse(clang));
}
void ifelse() {
const char clang[] = "`-FunctionDecl 0x2637ba8 <1.c:1:1, line:4:1> line:1:5 foo 'int (int)'\n"
" |-ParmVarDecl 0x2637ae0 col:13 used x 'int'\n"
" `-CompoundStmt 0x2637d70 \n"
" `-IfStmt 0x2637d38 \n"
" |-<<>>\n"
" |-<<>>\n"
" |-BinaryOperator 0x2637cf0 'int' '>'\n"
" | |-ImplicitCastExpr 0x2637cd8 'int' \n"
" | | `-DeclRefExpr 0x2637c90 'int' lvalue ParmVar 0x2637ae0 'x' 'int'\n"
" | `-IntegerLiteral 0x2637cb8 'int' 10\n"
" |-CompoundStmt 0x2637d18 \n"
" `-CompoundStmt 0x2637d28 ";
ASSERT_EQUALS("int foo ( int x@1 ) {\n"
"if ( x@1 > 10 ) { }\n"
"else { } ; }", parse(clang));
}
void memberExpr() {
// C code:
// struct S { int x };
// int foo(struct S s) { return s.x; }
const char clang[] = "|-RecordDecl 0x2441a88 <1.c:1:1, col:18> col:8 struct S definition\n"
"| `-FieldDecl 0x2441b48 col:16 referenced x 'int'\n"
"`-FunctionDecl 0x2441cf8 col:5 foo 'int (struct S)'\n"
" |-ParmVarDecl 0x2441be8 col:18 used s 'struct S':'struct S'\n"
" `-CompoundStmt 0x2441e70 \n"
" `-ReturnStmt 0x2441e58 \n"
" `-ImplicitCastExpr 0x2441e40 'int' \n"
" `-MemberExpr 0x2441e08 'int' lvalue .x 0x2441b48\n"
" `-DeclRefExpr 0x2441de0 'struct S':'struct S' lvalue ParmVar 0x2441be8 's' 'struct S':'struct S'";
ASSERT_EQUALS("struct S { int x@1 ; } ;\n"
"int foo ( struct S s@2 ) { return s@2 . x@1 ; }",
parse(clang));
}
void recordDecl() {
const char clang[] = "`-RecordDecl 0x354eac8 <1.c:1:1, line:4:1> line:1:8 struct S definition\n"
" |-FieldDecl 0x354eb88 col:7 x 'int'\n"
" `-FieldDecl 0x354ebe8 col:7 y 'int'";
ASSERT_EQUALS("struct S\n"
"{ int x@1 ;\n"
"int y@2 ; } ;",
parse(clang));
}
void typedefDecl1() {
const char clang[] = "|-TypedefDecl 0x2d60180 <> implicit __int128_t '__int128'\n"
"| `-BuiltinType 0x2d5fe80 '__int128'";
ASSERT_EQUALS("typedef __int128 __int128_t ;", parse(clang));
}
void typedefDecl2() {
const char clang[] = "|-TypedefDecl 0x2d604a8 <> implicit __NSConstantString 'struct __NSConstantString_tag'\n"
"| `-RecordType 0x2d602c0 'struct __NSConstantString_tag'\n"
"| `-Record 0x2d60238 '__NSConstantString_tag'";
ASSERT_EQUALS("typedef struct __NSConstantString_tag __NSConstantString ;", parse(clang));
}
void typedefDecl3() {
const char clang[] = "|-TypedefDecl 0x2d60540 <> implicit __builtin_ms_va_list 'char *'\n"
"| `-PointerType 0x2d60500 'char *'\n"
"| `-BuiltinType 0x2d5f980 'char'";
ASSERT_EQUALS("typedef char * __builtin_ms_va_list ;", parse(clang));
}
void vardecl1() {
const char clang[] = "|-VarDecl 0x32b8aa0 <1.c:1:1, col:9> col:5 used a 'int' cinit\n"
"| `-IntegerLiteral 0x32b8b40 'int' 1\n"
"`-VarDecl 0x32b8b78 col:5 b 'int' cinit\n"
" `-ImplicitCastExpr 0x32b8c00 'int' \n"
" `-DeclRefExpr 0x32b8bd8 'int' lvalue Var 0x32b8aa0 'a' 'int'";
ASSERT_EQUALS("int a@1 = 1 ;\n"
"int b@2 = a@1 ;",
parse(clang));
}
void vardecl2() {
const char clang[] = "|-VarDecl 0x3873b50 <1.c:1:1, col:9> col:5 used a 'int [10]'\n"
"`-FunctionDecl 0x3873c38 line:3:6 foo 'void ()'\n"
" `-CompoundStmt 0x3873dd0 \n"
" `-BinaryOperator 0x3873da8 'int' '='\n"
" |-ArraySubscriptExpr 0x3873d60 'int' lvalue\n"
" | |-ImplicitCastExpr 0x3873d48 'int *' \n"
" | | `-DeclRefExpr 0x3873cd8 'int [10]' lvalue Var 0x3873b50 'a' 'int [10]'\n"
" | `-IntegerLiteral 0x3873d00 'int' 0\n"
" `-IntegerLiteral 0x3873d88 'int' 0\n";
ASSERT_EQUALS("int [10] a@1 ;\n" // <- TODO
"\n"
"void foo ( ) {\n"
"\n"
"a@1 [ 0 ] = 0 ; }",
parse(clang));
}
void vardecl3() {
const char clang[] = "`-VarDecl 0x25a8aa0 <1.c:1:1, col:12> col:12 p 'const int *'";
ASSERT_EQUALS("const int * p@1 ;", parse(clang));
}
void whileStmt() {
const char clang[] = "`-FunctionDecl 0x3d45b18 <1.c:1:1, line:3:1> line:1:6 foo 'void ()'\n"
" `-CompoundStmt 0x3d45c48 \n"
" `-WhileStmt 0x3d45c28 \n"
" |-<<>>\n"
" |-IntegerLiteral 0x3d45bf8 'int' 0\n"
" `-NullStmt 0x3d45c18 ";
ASSERT_EQUALS("void foo ( ) {\n"
"while ( 0 ) { ; } ; }",
parse(clang));
}
};
REGISTER_TEST(TestClangAstDump)