- Oct 31, 2010
-
-
Anders Carlsson authored
llvm-svn: 117873
-
Anders Carlsson authored
Baby steps towards using only CharUnits for base class offsets in ASTRecordLayout. Start by storing the offsets in CharUnits in the ASTRecordLayout object. llvm-svn: 117869
-
Anders Carlsson authored
Teach the constant expr evaluator about derived-to-base casts when no virtual bases are involved. Fixes PR5974. llvm-svn: 117868
-
Anders Carlsson authored
llvm-svn: 117850
-
- Oct 30, 2010
-
-
Argyrios Kyrtzidis authored
As a bonus, avoids a crash on the IRGen side due to accepting invalid code. llvm-svn: 117842
-
Daniel Dunbar authored
llvm-svn: 117829
-
John McCall authored
independently of whether they're definitions, then teach IR generation to ignore non-explicit visibility when emitting declarations. Use this to make sure that RTTI, vtables, and VTTs get the right visibility. More of rdar://problem/8613093 llvm-svn: 117781
-
John McCall authored
whether it's a declaration or not, then ignores that information for declarations unless it was explicitly given. It's not totally clear how that should be mapped into a sane system, but make an effort. llvm-svn: 117780
-
Chris Lattner authored
PR8423 llvm-svn: 117775
-
Douglas Gregor authored
the performance of C++ PCH and reducing stack depth in the reader. llvm-svn: 117732
-
John McCall authored
for namespace-scope variable declarations. Apply visibility in IR gen to variables that are merely declared and never defined. We were previously emitting these with default visibility unless they were declared with private_extern. Ignore global visibility settings when computing visibility for a declaration's context, and key several conditions on whether a visibility attribute exists anywhere in the hierarchy as opposed to whether it exists at the current level. llvm-svn: 117729
-
- Oct 29, 2010
-
-
Fariborz Jahanian authored
protocols, including those added to class, super class and categories; otherewise issue a warning. This fixes pr8453. llvm-svn: 117678
-
Daniel Dunbar authored
declared", it breaks things. llvm-svn: 117653
-
John McCall authored
and never defined. We were previously emitting these with default visibility unless they were declared with private_extern. Ignore global visibility settings when computing visibility for a declaration's context, and key several conditions on whether a visibility attribute exists anywhere in the hierarchy as opposed to whether it exists at the current level. llvm-svn: 117644
-
Charles Davis authored
This isn't used yet, because someone more experienced than I needs to look at the type system about gutting getCanonicalCallConv(). llvm-svn: 117638
-
John McCall authored
of its context without considering global settings like -fvisibility=hidden. Fixes PR8492. llvm-svn: 117628
-
- Oct 28, 2010
-
-
John McCall authored
Part 2 of rdar://problem/8595231 llvm-svn: 117567
-
Argyrios Kyrtzidis authored
llvm-svn: 117541
-
John McCall authored
in the scope checker. With that done, turn an indirect goto into a protected scope into a hard error; otherwise IR generation has to start worrying about declarations not dominating their scopes, as exemplified in PR8473. If this really affects anyone, I can probably adjust this to only hard-error on possible indirect gotos into VLA scopes rather than arbitrary scopes. But we'll see how people cope with the aggressive change on the marginal feature. llvm-svn: 117539
-
Argyrios Kyrtzidis authored
meaning we need to rewrite its name lookup table in a chained PCH. llvm-svn: 117536
-
Argyrios Kyrtzidis authored
llvm-svn: 117533
-
John McCall authored
and it's too much trouble to push for. Fixes PR8478. llvm-svn: 117532
-
John McCall authored
attribute. Part of rdar://problem/8595231 llvm-svn: 117526
-
John McCall authored
type-based visibility. llvm-svn: 117500
-
Douglas Gregor authored
not loading the specializations of a class template until some AST consumer needs them. llvm-svn: 117498
-
- Oct 27, 2010
-
-
Douglas Gregor authored
eliminate some excessive recursion and deserialization. llvm-svn: 117476
-
Chandler Carruth authored
a member call expression. This has proved to be a common pattern for users of RecursiveASTVisitor. llvm-svn: 117439
-
- Oct 26, 2010
-
-
John McCall authored
There's probably still significant padding waste on x86-64 UNIXen, but the difference in 32-bit compiles should be significant. There are a lot of Expr nodes left that could lose a word this way. llvm-svn: 117359
-
John McCall authored
anymore. llvm-svn: 117357
-
John McCall authored
- tags with C linkage should ignore visibility=hidden - functions and variables with explicit visibility attributes should ignore the linkage of their types Either of these should be sufficient to fix PR8457. Also, FileCheck-ize a test case. llvm-svn: 117351
-
Douglas Gregor authored
getCanonicalType() to make sure that the type we got back is actually canonical. This is the case for most types, which always build a canonical type when given canonical components. However, some types that involve expressions in their canonicalization (e.g., array types with dependent sizes) don't always build canonical types from canonical components, because there is no such thing as a "canonical" expression. Therefore, we do this extra mapping to ensure that the canonical types we store are actually canonical. llvm-svn: 117344
-
- Oct 25, 2010
-
-
Chandler Carruth authored
This adds them where missing, and traces them through PCH. We fix at least one bug in the extents found by the Index library, and make a lot of refactoring tools which care about the exact formulation of a constructor call easier to write. Also some minor cleanups to more consistently follow the friend pattern instead of the setter pattern when rebuilding a serialized AST. Patch originally by Samuel Benzaquen. llvm-svn: 117254
-
- Oct 24, 2010
-
-
Peter Collingbourne authored
as a function argument, one of the types is a transparent union type and the other type is compatible with a union member llvm-svn: 117243
-
Argyrios Kyrtzidis authored
llvm-svn: 117240
-
Argyrios Kyrtzidis authored
In that case a chained PCH will record the updates to the DefinitionData pointer of forward references. If a forward reference mutated into a definition re-write it into the chained PCH, this is too big of a change. llvm-svn: 117239
-
Argyrios Kyrtzidis authored
its initial creation/deserialization and store the changes in a chained PCH. The idea is that the AST entities call methods on the ASTMutationListener to give notifications of changes; the PCHWriter implements the ASTMutationListener interface and stores the incremental changes of the updated entity. WIP llvm-svn: 117235
-
- Oct 23, 2010
-
-
Chandler Carruth authored
llvm-svn: 117201
-
- Oct 22, 2010
-
-
John McCall authored
more closely parallel the computation of linkage. This gets us to a state much closer to what gcc emits, modulo bugs, which will undoubtedly arise in abundance. llvm-svn: 117147
-
Benjamin Kramer authored
llvm-svn: 117104
-
- Oct 21, 2010
-
-
Douglas Gregor authored
redeclarations of main appropriately rather than allowing it to be overloaded. Also, disallowing declaring main as a template. Fixes GCC DejaGNU g++.old-deja/g++.other/main1.C. llvm-svn: 117029
-