Coder Social home page Coder Social logo

ptumati / coarct Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lanl/coarct

0.0 2.0 0.0 231 KB

Code Analysis and Refactoring with Clang Tools

License: BSD 3-Clause "New" or "Revised" License

Makefile 1.85% CMake 1.27% C++ 81.97% Dockerfile 0.47% Shell 0.08% Haskell 14.36%

coarct's Introduction

CoARCT

Build Status

Code Analysis and Refactoring with Clang Tools

CoARCT (pronounced like the word "corked") is a small set of tools built on Clang's LibTooling. CoARCT demonstrates some more sustained examples of refactoring and analyzing code with AST Matchers and the clang Refactoring Tool. The goal is not to supply tools, but rather to show how one can create one's own tools.

It includes library code and command line drivers that go beyond some of the (excellent! but short) tutorials that are available. The CoARCT examples are drawn from refactoring legacy codes:

  • Reporting which functions use which global variables;
  • Replacing global variables with local variables, including threading variables through a call chain;
  • Detecting which functions use which fields of a struct: this data can be used to analyze how to break up large structs;
  • Finding code associated with a classic C-style linked list;
  • Identifying struct fields defined with typedefs, reporting underlying types (apps/TypedefFinder.cc);
  • Identifying typedef;
  • Identify uses of a class template, such as std::vector.

Explanatory blog posts can be found at Various Burglarious: https://variousburglarious.com/2017/01/18/getting-started-with-clang-refactoring-tools/

It also demonstrates a few useful things that were not immediately clear from the tutorials and examples I learned from, such as unit testing matchers and callbacks, and building out of the Clang/LLVM tree.

Our hope is that CoARCT will help demystify the Clang AST tools to developers. If the CoARCT tools are directly useful in your work, let us know!

Prerequisites:

  1. CMake version 3+ (https://cmake.org/download/)
  2. Clang and LLVM 6.0 libraries and headers (http://releases.llvm.org/download.html)
  3. libtinfo
  4. Boost (currently using 1.61, just needs boost/type_index in one spot)
  5. Google test (currently using 1.7.0 https://github.com/google/googletest)

Default branch is Clang 6.0 (older branches: 5.0, 4.0, 3.9, 3.8).

Build

  1. Make sure clang++ is in your path

  2. Define these environment variables

    CXX: Your clang++ version 6.0.x
    GTEST_DIR: Top level directory of google test installation
    BOOST_DIR: Top level of Boost (#include "boost/type_index.hpp" needs to work)
    TINFO_LIB_DIR: points to where libtinfo.a is installed.
    
  3. Clone the repository

  4. Create a build directory

    /home/CoARCT $ mkdir build-clang-6.0.0
    /home/CoARCT $ cd build-clang-6.0.0
    
  5. Run cmake, make

    /home/CoARCT/build-clang-6.0.0 $ cmake ..
    /home/CoARCT/build-clang-6.0.0 $ make
    
  6. Run the unit tests

    /home/CoARCT/build-clang-6.0.0 $ ./test/corct-unittests
    ...
    [==========] 63 tests from 16 test cases ran. (553 ms total)
    [  PASSED  ] 63 tests.
    

Changes for Clang 6.0

Added logic to match desugared types in template variable matcher. This doesn't affect anything in Clang 5, and it keeps the Clang 6 behavior the same as before (i.e. it still "sees through" type aliases).

Changes for Clang 5.0

Minor tweaks. Hopefully CMake configuration is improved. Also added ability to configure compiler instances in unit tests; this should permit more complex test inputs.

Known issues

futimens on OSX

Building CoARCT failed on OSX with pre-built binaries from llvm.org: the function futimens was undefined. Workaround: build Clang and LLVM from source as described at http://clang.llvm.org/get_started.html.

No std::is_final

Building CoARCT on Linux failed with errors about no member is_final in namespace std. Diagnosis: That installation of Clang seems to be finding headers with an older GCC (4.8.5). Workarounds

  1. set (or append) --gcc-toolchain=/path/to/newer/gcc to the CXXFLAGS environment variable when running CMake.

  2. The above solution did not work on one system. In that case, overriding cxx-isystem was necessary. Pass:

    -cxx-isystem /path/to/newer/gcc/include/c++/version -cxx-isystem /path/to/newer/gcc/include/c++/<version>/x86_64-pc-linux-gnu
    

Building on Ubuntu

Prajjwald reported some solutions to problems with building on Ubuntu. Please see issue #1.

These issues may be mitigated in the clang-5.0 branch.

Copyright

Los Alamos National Security, LLC (LANS) owns the copyright to CoARCT, which it identifies internally as LA-CC-17-039. See the LICENSE file for license information.

coarct's People

Contributors

timmah avatar

Watchers

James Cloos avatar Pavan Tumati avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.