1 //===---------------------------------------------------------------------===//
3 //===---------------------------------------------------------------------===//
5 C90/C99/C++ Comparisons:
6 http://david.tribble.com/text/cdiffs.htm
8 //===---------------------------------------------------------------------===//
10 To time GCC preprocessing speed without output, use:
12 This is similar to -Eonly.
15 //===---------------------------------------------------------------------===//
17 C++ Template Instantiation benchmark:
18 http://users.rcn.com/abrahams/instantiation_speed/index.html
20 //===---------------------------------------------------------------------===//
22 TODO: File Manager Speedup:
24 We currently do a lot of stat'ing for files that don't exist, particularly
25 when lots of -I paths exist (e.g. see the <iostream> example, check for
26 failures in stat in FileManager::getFile). It would be far better to make
27 the following changes:
28 1. FileEntry contains a sys::Path instead of a std::string for Name.
29 2. sys::Path contains timestamp and size, lazily computed. Eliminate from
31 3. File UIDs are created on request, not when files are opened.
32 These changes make it possible to efficiently have FileEntry objects for
33 files that exist on the file system, but have not been used yet.
36 1. DirectoryEntry gets a boolean value "has read entries". When false, not
37 all entries in the directory are in the file mgr, when true, they are.
38 2. Instead of stat'ing the file in FileManager::getFile, check to see if
39 the dir has been read. If so, fail immediately, if not, read the dir,
41 3. Reading the dir uses the getdirentries syscall, creating an FileEntry
44 //===---------------------------------------------------------------------===//
48 * Get frameworks that don't use #import to do so, e.g.
49 DirectoryService, AudioToolbox, CoreFoundation, etc. Why not using #import?
50 Because they work in C mode? C has #import.
51 * Have the lexer return a token for #import instead of handling it itself.
52 - Create a new preprocessor object with no external state (no -D/U options
53 from the command line, etc). Alternatively, keep track of exactly which
54 external state is used by a #import: declare it somehow.
55 * When having reading a #import file, keep track of whether we have (and/or
56 which) seen any "configuration" macros. Various cases:
57 - Uses of target args (__POWERPC__, __i386): Header has to be parsed
58 multiple times, per-target. What about #ifndef checks? How do we know?
59 - "Configuration" preprocessor macros not defined: POWERPC, etc. What about
60 things like __STDC__ etc? What is and what isn't allowed.
61 * Special handling for "umbrella" headers, which just contain #import stmts:
62 - Cocoa.h/AppKit.h - Contain pointers to digests instead of entire digests
63 themselves? Foundation.h isn't pure umbrella!
65 - Can put "digest" of a framework-worth of headers into the framework
66 itself. To open AppKit, just mmap
67 /System/Library/Frameworks/AppKit.framework/"digest", which provides a
68 symbol table in a well defined format. Lazily unstream stuff that is
69 needed. Contains declarations, macros, and debug information.
70 - System frameworks ship with digests. How do we handle configuration
71 information? How do we handle stuff like:
72 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2
73 which guards a bunch of decls? Should there be a couple of default
74 configs, then have the UI fall back to building/caching its own?
75 - GUI automatically builds digests when UI is idle, both of system
76 frameworks if they aren't not available in the right config, and of app
78 - GUI builds dependence graph of frameworks/digests based on #imports. If a
79 digest is out date, dependent digests are automatically invalidated.
81 * New constraints on #import for objc-v3:
82 - #imported file must not define non-inline function bodies.
83 - Alternatively, they can, and these bodies get compiled/linked *once*
84 per app into a dylib. What about building user dylibs?
85 - Restrictions on ObjC grammar: can't #import the body of a for stmt or fn.
86 - Compiler must detect and reject these cases.
87 - #defines defined within a #import have two behaviors:
88 - By default, they escape the header. These macros *cannot* be #undef'd
89 by other code: this is enforced by the front-end.
90 - Optionally, user can specify what macros escape (whitelist) or can use
93 //===---------------------------------------------------------------------===//
95 TODO: New language feature: Configuration queries:
96 - Instead of #ifdef __POWERPC__, use "if (strcmp(`cpu`, __POWERPC__))", or
97 some other, better, syntax.
98 - Use it to increase the number of "architecture-clean" #import'd files,
99 allowing a single index to be used for all fat slices.
101 //===---------------------------------------------------------------------===//
102 // Specifying targets: -triple and -arch
103 ===---------------------------------------------------------------------===//
105 The clang supports "-triple" and "-arch" options. At most one -triple and one
106 -arch option may be specified. Both are optional.
108 The "selection of target" behavior is defined as follows:
110 (1) If the user does not specify -triple, we default to the host triple.
111 (2) If the user specifies a -arch, that overrides the arch in the host or
114 //===---------------------------------------------------------------------===//
117 verifyInputConstraint and verifyOutputConstraint should not return bool.
119 Instead we should return something like:
121 enum VerifyConstraintResult {
125 OutputOperandConstraintLacksEqualsCharacter,
126 MatchingConstraintNotValidInOutputOperand,
129 InputOperandConstraintContainsEqualsCharacter,
130 MatchingConstraintReferencesInvalidOperandNumber,
133 PercentConstraintUsedWithLastOperand
136 //===---------------------------------------------------------------------===//