Hi all,<div>I'm hacking clang to parse a c-like quantum programming language and am having trouble parsing builtin functions. It seems to me that FunctionDecl::getBuiltinID() [Decl.cpp] is chiefly responsible for determining whether a function identifier is a builtin or not. However the guts of this function: IdentifierInfo::getBuiltinID() [IdentfierTable.h] but it appears to me that this function will only recognize objective c builtins. </div>
<div><br></div><div><div> /// getBuiltinID - Return a value indicating whether this is a builtin</div><div> /// function. 0 is not-built-in. 1 is builtin-for-some-nonprimary-target.</div><div> /// 2+ are specific builtin functions.</div>
<div> unsigned getBuiltinID() const {</div><div> if (ObjCOrBuiltinID >= tok::NUM_OBJC_KEYWORDS)</div><div> return ObjCOrBuiltinID - tok::NUM_OBJC_KEYWORDS;</div><div> else</div><div> return 0;</div><div>
}</div></div><div><br></div><div>Am I missing a step in the builtin lookup process?</div><div><br></div><div>Many thanks,</div><div>Dani</div>