]> git.saurik.com Git - cycript.git/blob - Analyze.cpp
Avoid naming functors without symbols as just "1".
[cycript.git] / Analyze.cpp
1 /* Cycript - The Truly Universal Scripting Language
2 * Copyright (C) 2009-2016 Jay Freeman (saurik)
3 */
4
5 /* GNU Affero General Public License, Version 3 {{{ */
6 /*
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/
20 /* }}} */
21
22 #include <cmath>
23 #include <cstring>
24 #include <iostream>
25 #include <map>
26 #include <sstream>
27 #include <string>
28
29 #include <clang-c/Index.h>
30
31 #include "Bridge.hpp"
32 #include "Functor.hpp"
33 #include "Replace.hpp"
34 #include "Syntax.hpp"
35
36 static CXChildVisitResult CYVisit(CXCursor cursor, CXCursor parent, CXClientData arg) {
37 (*reinterpret_cast<const Functor<void (CXCursor)> *>(arg))(cursor);
38 return CXChildVisit_Continue;
39 }
40
41 static unsigned CYForChild(CXCursor cursor, const Functor<void (CXCursor)> &visitor) {
42 return clang_visitChildren(cursor, &CYVisit, const_cast<void *>(static_cast<const void *>(&visitor)));
43 }
44
45 static bool CYOneChild(CXCursor cursor, const Functor<void (CXCursor)> &visitor) {
46 bool visited(false);
47 CYForChild(cursor, fun([&](CXCursor child) {
48 _assert(!visited);
49 visited = true;
50 visitor(child);
51 }));
52 return visited;
53 }
54
55 struct CYCXString {
56 CXString value_;
57
58 CYCXString(CXString value) :
59 value_(value)
60 {
61 }
62
63 CYCXString(CXCursor cursor) :
64 value_(clang_getCursorSpelling(cursor))
65 {
66 }
67
68 CYCXString(CXCursorKind kind) :
69 value_(clang_getCursorKindSpelling(kind))
70 {
71 }
72
73 CYCXString(CXFile file) :
74 value_(clang_getFileName(file))
75 {
76 }
77
78 CYCXString(CXTranslationUnit unit, CXToken token) :
79 value_(clang_getTokenSpelling(unit, token))
80 {
81 }
82
83 ~CYCXString() {
84 clang_disposeString(value_);
85 }
86
87 operator const char *() const {
88 return clang_getCString(value_);
89 }
90
91 const char *Pool(CYPool &pool) const {
92 return pool.strdup(*this);
93 }
94
95 bool operator ==(const char *rhs) const {
96 const char *lhs(*this);
97 return lhs == rhs || strcmp(lhs, rhs) == 0;
98 }
99 };
100
101 template <void (&clang_get_Location)(CXSourceLocation, CXFile *, unsigned *, unsigned *, unsigned *) = clang_getSpellingLocation>
102 struct CYCXPosition {
103 CXFile file_;
104 unsigned line_;
105 unsigned column_;
106 unsigned offset_;
107
108 CYCXPosition(CXSourceLocation location) {
109 clang_get_Location(location, &file_, &line_, &column_, &offset_);
110 }
111
112 CYCXPosition(CXTranslationUnit unit, CXToken token) :
113 CYCXPosition(clang_getTokenLocation(unit, token))
114 {
115 }
116
117 CXSourceLocation Get(CXTranslationUnit unit) const {
118 return clang_getLocation(unit, file_, line_, column_);
119 }
120 };
121
122 template <void (&clang_get_Location)(CXSourceLocation, CXFile *, unsigned *, unsigned *, unsigned *)>
123 std::ostream &operator <<(std::ostream &out, const CYCXPosition<clang_get_Location> &position) {
124 if (position.file_ != NULL)
125 out << "[" << CYCXString(position.file_) << "]:";
126 out << position.line_ << ":" << position.column_ << "@" << position.offset_;
127 return out;
128 }
129
130 struct CYKey {
131 unsigned priority_ = 0;
132
133 std::string code_;
134 unsigned flags_;
135 };
136
137 typedef std::map<std::string, CYKey> CYKeyMap;
138
139 struct CYChildBaton {
140 CXTranslationUnit unit;
141 CYKeyMap &keys;
142
143 CYChildBaton(CXTranslationUnit unit, CYKeyMap &keys) :
144 unit(unit),
145 keys(keys)
146 {
147 }
148 };
149
150 struct CYTokens {
151 private:
152 CXTranslationUnit unit_;
153 CXToken *tokens_;
154 unsigned count_;
155 unsigned valid_;
156
157 public:
158 CYTokens(CXTranslationUnit unit, CXSourceRange range) :
159 unit_(unit)
160 {
161 clang_tokenize(unit_, range, &tokens_, &count_);
162
163
164 // libclang's tokenizer is horribly broken and returns "extra" tokens.
165 // this code goes back through the tokens and filters for good ones :/
166
167 CYCXPosition<> end(clang_getRangeEnd(range));
168 CYCXString file(end.file_);
169
170 for (valid_ = 0; valid_ != count_; ++valid_) {
171 CYCXPosition<> position(unit, tokens_[valid_]);
172 _assert(CYCXString(position.file_) == file);
173 if (position.offset_ >= end.offset_)
174 break;
175 }
176 }
177
178 CYTokens(CXTranslationUnit unit, CXCursor cursor) :
179 CYTokens(unit, clang_getCursorExtent(cursor))
180 {
181 }
182
183 ~CYTokens() {
184 clang_disposeTokens(unit_, tokens_, count_);
185 }
186
187 operator CXToken *() const {
188 return tokens_;
189 }
190
191 size_t size() const {
192 return valid_;
193 }
194 };
195
196 static CYUTF8String CYCXPoolUTF8Range(CYPool &pool, CXSourceRange range) {
197 CYCXPosition<> start(clang_getRangeStart(range));
198 CYCXPosition<> end(clang_getRangeEnd(range));
199 CYCXString file(start.file_);
200 _assert(file == CYCXString(end.file_));
201
202 CYPool temp;
203 size_t size;
204 char *data(static_cast<char *>(CYPoolFile(temp, file, &size)));
205 _assert(start.offset_ <= size && end.offset_ <= size && start.offset_ <= end.offset_);
206
207 CYUTF8String code;
208 code.size = end.offset_ - start.offset_;
209 code.data = pool.strndup(data + start.offset_, code.size);
210 return code;
211 }
212
213 static CYExpression *CYTranslateExpression(CXTranslationUnit unit, CXCursor cursor) {
214 switch (CXCursorKind kind = clang_getCursorKind(cursor)) {
215 case CXCursor_CallExpr: {
216 CYExpression *function(NULL);
217 CYList<CYArgument> arguments;
218 CYForChild(cursor, fun([&](CXCursor child) {
219 CYExpression *expression(CYTranslateExpression(unit, child));
220 if (function == NULL)
221 function = expression;
222 else
223 arguments->*$C_(expression);
224 }));
225 return $C(function, arguments);
226 } break;
227
228 case CXCursor_DeclRefExpr: {
229 return $V(CYCXString(cursor).Pool($pool));
230 } break;
231
232 case CXCursor_IntegerLiteral: {
233 // libclang doesn't provide any reasonable way to do this
234 // note: clang_tokenize doesn't work if this is a macro
235 // the token range starts inside the macro but ends after it
236 // the tokenizer freaks out and either fails with 0 tokens
237 // or returns some massive number of tokens ending here :/
238
239 CYUTF8String token(CYCXPoolUTF8Range($pool, clang_getCursorExtent(cursor)));
240 double value(CYCastDouble(token));
241 if (std::isnan(value))
242 return $V(token.data);
243 return $ CYNumber(value);
244 } break;
245
246 case CXCursor_CStyleCastExpr:
247 // XXX: most of the time, this is a "NoOp" integer cast; but we should check it
248
249 case CXCursor_UnexposedExpr:
250 // there is a very high probability that this is actually an "ImplicitCastExpr"
251 // "Douglas Gregor" <dgregor@apple.com> err'd on the incorrect side of this one
252 // http://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20110926/046998.html
253
254 case CXCursor_ParenExpr: {
255 CYExpression *pass(NULL);
256 CYOneChild(cursor, fun([&](CXCursor child) {
257 pass = CYTranslateExpression(unit, child);
258 }));
259 return pass;
260 } break;
261
262 default:
263 //std::cerr << "E:" << CYCXString(kind) << std::endl;
264 _assert(false);
265 }
266 }
267
268 static CYStatement *CYTranslateStatement(CXTranslationUnit unit, CXCursor cursor) {
269 switch (CXCursorKind kind = clang_getCursorKind(cursor)) {
270 case CXCursor_ReturnStmt: {
271 CYExpression *value(NULL);
272 CYOneChild(cursor, fun([&](CXCursor child) {
273 value = CYTranslateExpression(unit, child);
274 }));
275 return $ CYReturn(value);
276 } break;
277
278 default:
279 //std::cerr << "S:" << CYCXString(kind) << std::endl;
280 _assert(false);
281 }
282 }
283
284 static CYStatement *CYTranslateBlock(CXTranslationUnit unit, CXCursor cursor) {
285 CYList<CYStatement> statements;
286 CYForChild(cursor, fun([&](CXCursor child) {
287 statements->*CYTranslateStatement(unit, child);
288 }));
289 return $ CYBlock(statements);
290 }
291
292 static CYType *CYDecodeType(CXType type);
293 static void CYParseType(CXType type, CYType *typed);
294
295 static void CYParseEnumeration(CXCursor cursor, CYType *typed) {
296 CYList<CYEnumConstant> constants;
297
298 CYForChild(cursor, fun([&](CXCursor child) {
299 if (clang_getCursorKind(child) == CXCursor_EnumConstantDecl)
300 constants->*$ CYEnumConstant($I($pool.strdup(CYCXString(child))), $D(clang_getEnumConstantDeclValue(child)));
301 }));
302
303 CYType *integer(CYDecodeType(clang_getEnumDeclIntegerType(cursor)));
304 typed->specifier_ = $ CYTypeEnum(NULL, integer->specifier_, constants);
305 }
306
307 static void CYParseStructure(CXCursor cursor, CYType *typed) {
308 CYList<CYTypeStructField> fields;
309 CYForChild(cursor, fun([&](CXCursor child) {
310 if (clang_getCursorKind(child) == CXCursor_FieldDecl)
311 fields->*$ CYTypeStructField(CYDecodeType(clang_getCursorType(child)), $I(CYCXString(child).Pool($pool)));
312 }));
313
314 typed->specifier_ = $ CYTypeStruct(NULL, $ CYStructTail(fields));
315 }
316
317 static void CYParseCursor(CXType type, CXCursor cursor, CYType *typed) {
318 CYCXString spelling(cursor);
319
320 switch (CXCursorKind kind = clang_getCursorKind(cursor)) {
321 case CXCursor_EnumDecl:
322 if (spelling[0] != '\0')
323 typed->specifier_ = $ CYTypeReference(CYTypeReferenceEnum, $I(spelling.Pool($pool)));
324 else
325 CYParseEnumeration(cursor, typed);
326 break;
327
328 case CXCursor_StructDecl: {
329 if (spelling[0] != '\0')
330 typed->specifier_ = $ CYTypeReference(CYTypeReferenceStruct, $I(spelling.Pool($pool)));
331 else
332 CYParseStructure(cursor, typed);
333 } break;
334
335 case CXCursor_UnionDecl: {
336 _assert(false);
337 } break;
338
339 default:
340 std::cerr << "C:" << CYCXString(kind) << std::endl;
341 _assert(false);
342 break;
343 }
344 }
345
346 static CYTypedParameter *CYParseSignature(CXType type, CYType *typed) {
347 CYParseType(clang_getResultType(type), typed);
348 CYList<CYTypedParameter> parameters;
349 for (int i(0), e(clang_getNumArgTypes(type)); i != e; ++i)
350 parameters->*$ CYTypedParameter(CYDecodeType(clang_getArgType(type, i)), NULL);
351 return parameters;
352 }
353
354 static void CYParseFunction(CXType type, CYType *typed) {
355 typed = typed->Modify($ CYTypeFunctionWith(clang_isFunctionTypeVariadic(type), CYParseSignature(type, typed)));
356 }
357
358 static void CYParseType(CXType type, CYType *typed) {
359 switch (CXTypeKind kind = type.kind) {
360 case CXType_Unexposed: {
361 CXType result(clang_getResultType(type));
362 if (result.kind == CXType_Invalid)
363 CYParseCursor(type, clang_getTypeDeclaration(type), typed);
364 else
365 // clang marks function pointers as Unexposed but still supports them
366 CYParseFunction(type, typed);
367 } break;
368
369 case CXType_Bool: typed->specifier_ = $ CYTypeVariable("bool"); break;
370 case CXType_Float: typed->specifier_ = $ CYTypeVariable("float"); break;
371 case CXType_Double: typed->specifier_ = $ CYTypeVariable("double"); break;
372
373 case CXType_Char_U: typed->specifier_ = $ CYTypeCharacter(CYTypeNeutral); break;
374 case CXType_Char_S: typed->specifier_ = $ CYTypeCharacter(CYTypeNeutral); break;
375 case CXType_SChar: typed->specifier_ = $ CYTypeCharacter(CYTypeSigned); break;
376 case CXType_UChar: typed->specifier_ = $ CYTypeCharacter(CYTypeUnsigned); break;
377
378 case CXType_Short: typed->specifier_ = $ CYTypeIntegral(CYTypeSigned, 0); break;
379 case CXType_UShort: typed->specifier_ = $ CYTypeIntegral(CYTypeUnsigned, 0); break;
380
381 case CXType_Int: typed->specifier_ = $ CYTypeIntegral(CYTypeSigned, 1); break;
382 case CXType_UInt: typed->specifier_ = $ CYTypeIntegral(CYTypeUnsigned, 1); break;
383
384 case CXType_Long: typed->specifier_ = $ CYTypeIntegral(CYTypeSigned, 2); break;
385 case CXType_ULong: typed->specifier_ = $ CYTypeIntegral(CYTypeUnsigned, 2); break;
386
387 case CXType_LongLong: typed->specifier_ = $ CYTypeIntegral(CYTypeSigned, 3); break;
388 case CXType_ULongLong: typed->specifier_ = $ CYTypeIntegral(CYTypeUnsigned, 3); break;
389
390 case CXType_Int128: typed->specifier_ = $ CYTypeInt128(CYTypeSigned); break;
391 case CXType_UInt128: typed->specifier_ = $ CYTypeInt128(CYTypeUnsigned); break;
392
393 case CXType_BlockPointer: {
394 CXType pointee(clang_getPointeeType(type));
395 _assert(!clang_isFunctionTypeVariadic(pointee));
396 typed = typed->Modify($ CYTypeBlockWith(CYParseSignature(pointee, typed)));
397 } break;
398
399 case CXType_ConstantArray:
400 CYParseType(clang_getArrayElementType(type), typed);
401 typed = typed->Modify($ CYTypeArrayOf($D(clang_getArraySize(type))));
402 break;
403
404 case CXType_Enum:
405 typed->specifier_ = $ CYTypeVariable($pool.strdup(CYCXString(clang_getTypeSpelling(type))));
406 break;
407
408 case CXType_FunctionProto:
409 CYParseFunction(type, typed);
410 break;
411
412 case CXType_IncompleteArray:
413 // XXX: I probably should not decay to Pointer
414 CYParseType(clang_getArrayElementType(type), typed);
415 typed = typed->Modify($ CYTypePointerTo());
416 break;
417
418 case CXType_ObjCClass:
419 typed->specifier_ = $ CYTypeVariable("Class");
420 break;
421
422 case CXType_ObjCId:
423 typed->specifier_ = $ CYTypeVariable("id");
424 break;
425
426 case CXType_ObjCInterface:
427 typed->specifier_ = $ CYTypeVariable($pool.strdup(CYCXString(clang_getTypeSpelling(type))));
428 break;
429
430 case CXType_ObjCObjectPointer: {
431 CXType pointee(clang_getPointeeType(type));
432 if (pointee.kind != CXType_Unexposed) {
433 CYParseType(pointee, typed);
434 typed = typed->Modify($ CYTypePointerTo());
435 } else
436 // Clang seems to have internal typedefs for id and Class that are awkward
437 _assert(false);
438 } break;
439
440 case CXType_ObjCSel:
441 typed->specifier_ = $ CYTypeVariable("SEL");
442 break;
443
444 case CXType_Pointer:
445 CYParseType(clang_getPointeeType(type), typed);
446 typed = typed->Modify($ CYTypePointerTo());
447 break;
448
449 case CXType_Record:
450 typed->specifier_ = $ CYTypeReference(CYTypeReferenceStruct, $I($pool.strdup(CYCXString(clang_getTypeSpelling(type)))));
451 break;
452
453 case CXType_Typedef:
454 // use the declaration in order to isolate the name of the typedef itself
455 typed->specifier_ = $ CYTypeVariable($pool.strdup(CYCXString(clang_getTypeDeclaration(type))));
456 break;
457
458 case CXType_Vector:
459 _assert(false);
460 break;
461
462 case CXType_Void:
463 typed->specifier_ = $ CYTypeVoid();
464 break;
465
466 default:
467 std::cerr << "T:" << CYCXString(clang_getTypeKindSpelling(kind)) << std::endl;
468 std::cerr << "_: " << CYCXString(clang_getTypeSpelling(type)) << std::endl;
469 _assert(false);
470 }
471
472 if (clang_isConstQualifiedType(type))
473 typed = typed->Modify($ CYTypeConstant());
474 }
475
476 static CYType *CYDecodeType(CXType type) {
477 CYType *typed($ CYType(NULL));
478 CYParseType(type, typed);
479 return typed;
480 }
481
482 static CXChildVisitResult CYChildVisit(CXCursor cursor, CXCursor parent, CXClientData arg) {
483 CYChildBaton &baton(*static_cast<CYChildBaton *>(arg));
484 CXTranslationUnit &unit(baton.unit);
485
486 CXChildVisitResult result(CXChildVisit_Continue);
487 CYCXString spelling(cursor);
488 std::string name(spelling);
489 std::ostringstream value;
490 unsigned priority(2);
491 unsigned flags(CYBridgeHold);
492
493 /*CXSourceLocation location(clang_getCursorLocation(cursor));
494 CYCXPosition<> position(location);
495 std::cerr << spelling << " " << position << std::endl;*/
496
497 try { switch (CXCursorKind kind = clang_getCursorKind(cursor)) {
498 case CXCursor_EnumConstantDecl: {
499 value << clang_getEnumConstantDeclValue(cursor);
500 } break;
501
502 case CXCursor_EnumDecl: {
503 if (spelling[0] == '\0')
504 goto skip;
505 // XXX: this was blindly copied from StructDecl
506 if (!clang_isCursorDefinition(cursor))
507 priority = 1;
508
509 CYLocalPool pool;
510
511 CYType typed;
512 CYParseEnumeration(cursor, &typed);
513
514 CYOptions options;
515 CYOutput out(*value.rdbuf(), options);
516 CYTypeExpression(&typed).Output(out, CYNoBFC);
517
518 value << ".withName(\"" << name << "\")";
519 name = "$cye" + name;
520 flags = CYBridgeType;
521
522 // the enum constants are implemented separately *also*
523 // XXX: maybe move output logic to function we can call
524 result = CXChildVisit_Recurse;
525 } break;
526
527 case CXCursor_MacroDefinition: {
528 CXSourceRange range(clang_getCursorExtent(cursor));
529 CYTokens tokens(unit, range);
530 _assert(tokens.size() != 0);
531
532 CXCursor cursors[tokens.size()];
533 clang_annotateTokens(unit, tokens, tokens.size(), cursors);
534
535 CYLocalPool local;
536 CYList<CYFunctionParameter> parameters;
537 unsigned offset(1);
538
539 if (tokens.size() != 1) {
540 CYCXPosition<> start(clang_getRangeStart(range));
541 CYCXString first(unit, tokens[offset]);
542 if (first == "(") {
543 CYCXPosition<> paren(unit, tokens[offset]);
544 if (start.offset_ + strlen(spelling) == paren.offset_) {
545 for (;;) {
546 _assert(++offset != tokens.size());
547 CYCXString token(unit, tokens[offset]);
548 parameters->*$P($B($I(token.Pool($pool))));
549 _assert(++offset != tokens.size());
550 CYCXString comma(unit, tokens[offset]);
551 if (comma == ")")
552 break;
553 _assert(comma == ",");
554 }
555 ++offset;
556 }
557 }
558 }
559
560 std::ostringstream body;
561 for (unsigned i(offset); i != tokens.size(); ++i) {
562 CYCXString token(unit, tokens[i]);
563 if (i != offset)
564 body << " ";
565 body << token;
566 }
567
568 if (!parameters)
569 value << body.str();
570 else {
571 CYOptions options;
572 CYOutput out(*value.rdbuf(), options);
573 out << '(' << "function" << '(';
574 out << parameters;
575 out << ')' << '{';
576 out << "return" << ' ';
577 value << body.str();
578 out << ';' << '}' << ')';
579 }
580 } break;
581
582 case CXCursor_StructDecl: {
583 if (spelling[0] == '\0')
584 goto skip;
585 if (!clang_isCursorDefinition(cursor))
586 priority = 1;
587
588 CYLocalPool pool;
589
590 CYType typed;
591 CYParseStructure(cursor, &typed);
592
593 CYOptions options;
594 CYOutput out(*value.rdbuf(), options);
595 CYTypeExpression(&typed).Output(out, CYNoBFC);
596
597 value << ".withName(\"" << name << "\")";
598 name = "$cys" + name;
599 flags = CYBridgeType;
600 } break;
601
602 case CXCursor_TypedefDecl: {
603 CYLocalPool local;
604
605 CYType *typed(CYDecodeType(clang_getTypedefDeclUnderlyingType(cursor)));
606 if (typed->specifier_ == NULL)
607 value << "(typedef " << CYCXString(clang_getTypeSpelling(clang_getTypedefDeclUnderlyingType(cursor))) << ")";
608 else {
609 CYOptions options;
610 CYOutput out(*value.rdbuf(), options);
611 CYTypeExpression(typed).Output(out, CYNoBFC);
612 }
613 } break;
614
615 case CXCursor_FunctionDecl:
616 case CXCursor_VarDecl: {
617 std::string label;
618
619 CYList<CYFunctionParameter> parameters;
620 CYStatement *code(NULL);
621
622 CYLocalPool local;
623
624 CYForChild(cursor, fun([&](CXCursor child) {
625 switch (CXCursorKind kind = clang_getCursorKind(child)) {
626 case CXCursor_AsmLabelAttr:
627 label = CYCXString(child);
628 break;
629
630 case CXCursor_CompoundStmt:
631 code = CYTranslateBlock(unit, child);
632 break;
633
634 case CXCursor_ParmDecl:
635 parameters->*$P($B($I(CYCXString(child).Pool($pool))));
636 break;
637
638 case CXCursor_IntegerLiteral:
639 case CXCursor_ObjCClassRef:
640 case CXCursor_TypeRef:
641 case CXCursor_UnexposedAttr:
642 break;
643
644 default:
645 //std::cerr << "A:" << CYCXString(child) << std::endl;
646 break;
647 }
648 }));
649
650 if (label.empty()) {
651 label = spelling;
652 label = '_' + label;
653 } else if (label[0] != '_')
654 goto skip;
655
656 if (code == NULL) {
657 CXType type(clang_getCursorType(cursor));
658 value << "*(typedef " << CYCXString(clang_getTypeSpelling(type)) << ").pointerTo()(dlsym(RTLD_DEFAULT,'" << label.substr(1) << "'))";
659 } else {
660 CYOptions options;
661 CYOutput out(*value.rdbuf(), options);
662 CYFunctionExpression *function($ CYFunctionExpression(NULL, parameters, code));
663 function->Output(out, CYNoBFC);
664 //std::cerr << value.str() << std::endl;
665 }
666 } break;
667
668 default:
669 result = CXChildVisit_Recurse;
670 goto skip;
671 break;
672 } {
673 CYKey &key(baton.keys[name]);
674 if (key.priority_ <= priority) {
675 key.priority_ = priority;
676 key.code_ = value.str();
677 key.flags_ = flags;
678 }
679 } } catch (const CYException &error) {
680 CYPool pool;
681 //std::cerr << error.PoolCString(pool) << std::endl;
682 }
683
684 skip:
685 return result;
686 }
687
688 int main(int argc, const char *argv[]) {
689 CXIndex index(clang_createIndex(0, 0));
690
691 const char *file(argv[1]);
692
693 unsigned offset(3);
694 #if CY_OBJECTIVEC
695 argv[--offset] = "-ObjC++";
696 #endif
697
698 CXTranslationUnit unit(clang_parseTranslationUnit(index, file, argv + offset, argc - offset, NULL, 0, CXTranslationUnit_DetailedPreprocessingRecord));
699
700 for (unsigned i(0), e(clang_getNumDiagnostics(unit)); i != e; ++i) {
701 CXDiagnostic diagnostic(clang_getDiagnostic(unit, i));
702 CYCXString spelling(clang_getDiagnosticSpelling(diagnostic));
703 std::cerr << spelling << std::endl;
704 }
705
706 CYKeyMap keys;
707 CYChildBaton baton(unit, keys);
708 clang_visitChildren(clang_getTranslationUnitCursor(unit), &CYChildVisit, &baton);
709
710 for (CYKeyMap::const_iterator key(keys.begin()); key != keys.end(); ++key) {
711 std::string code(key->second.code_);
712 for (size_t i(0), e(code.size()); i != e; ++i)
713 if (code[i] <= 0 || code[i] >= 0x7f || code[i] == '\n')
714 goto skip;
715 std::cout << key->first << "|" << key->second.flags_ << "\"" << code << "\"" << std::endl;
716 skip:; }
717
718 clang_disposeTranslationUnit(unit);
719 clang_disposeIndex(index);
720
721 return 0;
722 }