- Apr 23, 2009
-
-
Dan Gohman authored
memory operand tuples. This doesn't ever come up in normal code however. llvm-svn: 69848
-
Dan Gohman authored
llvm-svn: 69847
-
Owen Anderson authored
llvm-svn: 69846
-
Evan Cheng authored
llvm-svn: 69844
-
Douglas Gregor authored
llvm-svn: 69843
-
Evan Cheng authored
llvm-svn: 69842
-
Fariborz Jahanian authored
llvm-svn: 69838
-
Evan Cheng authored
llvm-svn: 69836
-
Douglas Gregor authored
llvm-svn: 69835
-
Ted Kremenek authored
indicate whether or not the range represents an absolute range or should be extended by lexing to the end of the token. llvm-svn: 69834
-
Douglas Gregor authored
llvm-svn: 69833
-
David Greene authored
Allow defm to inherit from multiple multiclasses. llvm-svn: 69832
-
Douglas Gregor authored
llvm-svn: 69831
-
Chris Lattner authored
llvm-svn: 69830
-
Douglas Gregor authored
to happen (ever), but at least we'll do the right thing when it does. llvm-svn: 69829
-
- Apr 22, 2009
-
-
Douglas Gregor authored
headers. Future approaches to (de-)serializing ASTs will be based on the PCH infrastructure. llvm-svn: 69828
-
Douglas Gregor authored
Eliminate some FIXMEs in the PCH reader that were either already fixed or aren't actually things to fix llvm-svn: 69827
-
Douglas Gregor authored
in a bunch of declarations from the PCH file. We're down to loading very few declarations in Carbon-prefixed "Hello, World!": *** PCH Statistics: 6/20693 types read (0.028995%) 7/59230 declarations read (0.011818%) 50/44914 identifiers read (0.111324%) 0/32954 statements read (0.000000%) 5/6187 macros read (0.080815%) llvm-svn: 69825
-
Ted Kremenek authored
llvm-svn: 69824
-
Ted Kremenek authored
context. llvm-svn: 69823
-
David Greene authored
Implement !nameconcat to concatenate strings and look up the resulting name in the symbol table, returning an object. llvm-svn: 69822
-
Eli Friedman authored
int. Note that constant int->complex float and float->complex int casts were being miscompiled. llvm-svn: 69821
-
Douglas Gregor authored
file needs to store. CodeGen needs to see these definitions (via HandleTopLevelDecl), otherwise it won't be able to generate code for them. This patch notifies the consumer (e.g., CodeGen) about function definitions and variable definitions when the corresponding declarations are deserialized. Hence, we don't eagerly deserialize the declarations for every variable or function that has a definition in the PCH file. This gives another 5% speedup for the Carbon-prefixed "Hello, World!", and brings our PCH statistics down to something far more reasonable: *** PCH Statistics: 13/20693 types read (0.062823%) 17/59230 declarations read (0.028702%) 54/44914 identifiers read (0.120230%) 0/32954 statements read (0.000000%) 5/6187 macros read (0.080815%) llvm-svn: 69820
-
Chris Lattner authored
llvm-svn: 69819
-
Duncan Sands authored
llvm-svn: 69818
-
Devang Patel authored
llvm-svn: 69816
-
Douglas Gregor authored
PCH files now contain complete information about builtins, including any declarations that have been synthesized as part of building the PCH file. When using a PCH file, we do not initialize builtins at all; when needed, they'll be found in the PCH file. This optimization translations into a 9% speedup for "Hello, World!" with Carbon.h as a prefix header and roughly a 5% speedup for 403.gcc with its prefix header. We're also reading less of the PCH file for "Hello, World!": *** PCH Statistics: 286/20693 types read (1.382110%) 1630/59230 declarations read (2.751984%) 764/44914 identifiers read (1.701029%) 1/32954 statements read (0.003035%) 5/6187 macros read (0.080815%) down from *** PCH Statistics: 411/20693 types read (1.986179%) 2553/59230 declarations read (4.310316%) 1093/44646 identifiers read (2.448148%) 1/32954 statements read (0.003035%) 21/6187 macros read (0.339421%) llvm-svn: 69815
-
Ted Kremenek authored
- Remove stale assertion that was breaking the test suite. - When popping location contexts, only add a control-flow piece for fileID locations. llvm-svn: 69814
-
Ted Kremenek authored
starts from the first character of the first statement. llvm-svn: 69813
-
Ted Kremenek authored
character instead of the entire range for the IfStmt, ForStmt, etc. We may gradually refine these ranges later, but basically terminator ranges just refer to the first keyword. llvm-svn: 69812
-
Daniel Dunbar authored
Rework the shadow struct that is layed out for Objective-C classes. - Superclasses are now always laid out in their shadow structure at the first field. - Prior to this, the entire class heirarchy was flattened into a single structure which meant that alignment, padding, and bitfields were incorrect (the ASTRecordLayout was correct however, which meant our debug info didn't coincide with ivar offsets, for example). - This is still very suboptimal (for example, ivar are looked up recursively, but I believe the ivar layout itself is now at least close to correct. - <rdar://problem/6773388> error: objc[29823]: layout bitmap sliding backwards llvm-svn: 69811
-
David Greene authored
llvm-svn: 69810
-
Dan Gohman authored
llvm-svn: 69809
-
Dan Gohman authored
instructions in order to avoid inserting new ones. However, if the cast instruction is the SCEVExpander's InsertPt, this causes subsequently emitted instructions to be inserted near the cast, and not at the location of the original insert point. Fix this by adjusting the insert point in such cases. This fixes PR4009. llvm-svn: 69808
-
Dan Gohman authored
to better handle inserting instructions at the end of a block. llvm-svn: 69807
-
Dan Gohman authored
llvm-svn: 69806
-
Dan Gohman authored
up functions by name. llvm-svn: 69805
-
Dan Gohman authored
llvm-svn: 69804
-
Douglas Gregor authored
llvm-svn: 69803
-
Ted Kremenek authored
ccc-analyzer: Don't create preprocessed files about the ignored 'cdecl' attribute. We know Clang doesn't support it yet. llvm-svn: 69802
-