Git Product home page Git Product logo

clexer's Introduction

Parsing C Kernel Source Files with Deterministic Grammar

This repository contains a demonstration of the limitations of parsing C kernel source files using a deterministic grammar. While it is possible to parse C and C++ languages separately with a deterministic grammar, the combination of C and C preprocessor (cpp) can make parsing together very difficult.

The main reason for this is not the complexity of the languages, but the use of the C preprocessor, especially ifdefs and macros. When C and cpp are combined, they create a union of two languages that are easy to parse separately but very hard to parse together.

The resulting grammar could be very large, contain many ambiguities, and be very different from the original C grammar.

While tools like Coccinelle semantic patch use a lot of heuristics to overcome these problems, the effort of implementing the same compared with the benefits discourages this practice.

This repository serves as a proof of concept for the limitations of parsing C kernel source files with a deterministic grammar. It demonstrates the challenges that arise when attempting to parse a language that includes both C and cpp, and highlights the need for alternative approaches to parsing C kernel source files.

The demonstrator is able to parse not simple preprocessed c files but it is unable to cope with complex macros.

clexer's People

Contributors

alessandrocarminati avatar

Watchers

 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.