Giter Club home page Giter Club logo

Comments (3)

pvdrz avatar pvdrz commented on September 25, 2024

hmmm... Well this is a hard one, clang is convinced that _Bool is the boolean type. If you pass this header to bindgen

_Bool example();

The AST produced by clang will be

(
 kind = FunctionDecl
 spelling = "example"
 location = input.h:1:7
 is-definition? false
 is-declaration? true
 is-inlined-function? false
 usr = "c:@F@example"
 number-of-args = 0
 ret-type = Bool

 semantic-parent.kind = TranslationUnit
 semantic-parent.spelling = "input.h"
 semantic-parent.location = builtin definitions
 semantic-parent.is-definition? false
 semantic-parent.is-declaration? false
 semantic-parent.is-inlined-function? false

 type.kind = FunctionNoProto
 type.cconv = 1
 type.spelling = "_Bool ()"
 type.is-variadic? true

 type.return.kind = Bool
 type.return.cconv = 100
 type.return.spelling = "_Bool"
 type.return.is-variadic? false
)

Where type.return.kind is Bool.

from rust-bindgen.

porglezomp avatar porglezomp commented on September 25, 2024

_Bool is the canonical boolean type in C, bool is a typedef from <stdbool.h>.

I guess the question is does type.return.spelling show for

#include <stdbool.h>
static inline bool example() { return 1; }

because I'm seeing the same in clang -Xclang -ast-dump -fsyntax-only so maybe the sugared type isn't properly manifested :(

from rust-bindgen.

pvdrz avatar pvdrz commented on September 25, 2024

I'm seeing the same kind here using your example:

(
 kind = FunctionDecl
 spelling = "example"
 location = hello3.c:2:20
 is-definition? true
 is-declaration? true
 is-inlined-function? true
 usr = "c:hello3.c@F@example"
 number-of-args = 0
 ret-type = Bool

 semantic-parent.kind = TranslationUnit
 semantic-parent.spelling = "hello3.c"
 semantic-parent.location = builtin definitions
 semantic-parent.is-definition? false
 semantic-parent.is-declaration? false
 semantic-parent.is-inlined-function? false

 type.kind = FunctionNoProto
 type.cconv = 1
 type.spelling = "_Bool ()"
 type.is-variadic? true

 type.return.kind = Bool
 type.return.cconv = 100
 type.return.spelling = "_Bool"
 type.return.is-variadic? false
 ...

from rust-bindgen.

Related Issues (20)

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.