- Mar 18, 2011
-
-
NAKAMURA Takumi authored
llvm-svn: 127869
-
John McCall authored
Issue this as an IR-gen error; it's not really worthwhile doing this "right", i.e. in Sema, because IR gen knows a lot of tricks beyond what the constant evaluator knows. llvm-svn: 127854
-
- Mar 16, 2011
-
-
Eli Friedman authored
llvm-svn: 127768
-
- Mar 15, 2011
-
-
John McCall authored
make sure that upcasts of member pointer types are covered as constants. Fixed rdar://problem/9130221 llvm-svn: 127702
-
- Mar 07, 2011
-
-
John McCall authored
trivial to check this. Adjust for style. llvm-svn: 127151
-
John McCall authored
allocation and therefore requires a null-check. We were doing that, but we weren't treating the new-initializer as being conditionally executed, which means it was possible to get ill-formed IR as in PR9298. llvm-svn: 127147
-
- Mar 06, 2011
-
-
Anders Carlsson authored
llvm-svn: 127121
-
- Mar 05, 2011
-
-
NAKAMURA Takumi authored
llvm-svn: 127077
-
NAKAMURA Takumi authored
llvm-svn: 127076
-
- Mar 04, 2011
-
-
John McCall authored
computing for a nested decl with explicit visibility. This is all part of the general philosophy of explicit visibility attributes, where any information that was obviously available at the attribute site should probably be ignored. Fixes PR9371. llvm-svn: 126992
-
- Feb 28, 2011
-
-
Anders Carlsson authored
llvm-svn: 126599
-
- Feb 26, 2011
-
-
John McCall authored
loading references as part of that. Use 'char' TBAA when accessing (immediate!) fields of a may_alias struct; fixes PR9307. llvm-svn: 126540
-
- Feb 25, 2011
-
-
John McCall authored
necessarily enclose the innermost normal cleanup depth, because the top of the jump scope stack might be an EH cleanup or EH scope. Fixes PR9303. llvm-svn: 126472
-
- Feb 22, 2011
-
-
Devang Patel authored
llvm-svn: 126246
-
- Feb 21, 2011
-
-
Richard Smith authored
llvm-svn: 126140
-
John McCall authored
for ?: on record types. llvm-svn: 126113
-
John McCall authored
for consistency with other tests (and to remove "scalar" from the name). llvm-svn: 126104
-
- Feb 19, 2011
-
-
Douglas Gregor authored
attribute, we also care about those with the "constructor" attribute. Fixes PR6521. llvm-svn: 126055
-
Anders Carlsson authored
llvm-svn: 126037
-
John McCall authored
without defining them. This should be an error, but I'm paranoid about "uses" that end up not actually requiring a definition. I'll revisit later. Also, teach IR generation to not set internal linkage on variable declarations, just for safety's sake. Doing so produces an invalid module if the variable is not ultimately defined. Also, fix several places in the test suite where we were using internal functions without definitions. llvm-svn: 126016
-
- Feb 17, 2011
-
-
John McCall authored
class and to bind the shared value using OpaqueValueExpr. This fixes an unnoticed problem with deserialization of these expressions where the deserialized form would lose the vital pointer-equality trait; or rather, it fixes it because this patch also does the right thing for deserializing OVEs. Change OVEs to not be a "temporary object" in the sense that copy elision is permitted. This new representation is not totally unawkward to work with, but I think that's really part and parcel with the semantics we're modelling here. In particular, it's much easier to fix things like the copy elision bug and to make the CFG look right. I've tried to update the analyzer to deal with this in at least some obvious cases, and I think we get a much better CFG out, but the printing of OpaqueValueExprs probably needs some work. llvm-svn: 125744
-
Nick Lewycky authored
llvm-svn: 125694
-
- Feb 16, 2011
-
-
John McCall authored
llvm-svn: 125661
-
- Feb 15, 2011
-
-
Fariborz Jahanian authored
ends up in the text segment. // rdar://8825235. llvm-svn: 125585
-
Douglas Gregor authored
"used". Fixes <rdar://problem/8684363>. llvm-svn: 125579
-
John McCall authored
a zero constant for a complete class. rdar://problem/8424975 To make this happen, track the field indexes for virtual bases in the complete object. I'm curious whether we might be better off making CGRecordLayoutBuilder *much* more reliant on ASTRecordLayout; we're currently duplicating an awful lot of the ABI layout logic. llvm-svn: 125555
-
- Feb 13, 2011
-
-
John McCall authored
destruction in the destructor-aliases logic. Fixes PR 9197. llvm-svn: 125447
-
- Feb 09, 2011
-
-
Douglas Gregor authored
and we later find the definition, make sure that we add the definition (not the declaration) to the list of deferred definitions to emit. Fixes PR8864. Thanks to Nick Lewycky for testing this patch out llvm-svn: 125157
-
- Feb 08, 2011
-
-
John McCall authored
mutable fields and with trivial destructors and copy constructors. llvm-svn: 125073
-
- Feb 07, 2011
-
-
John McCall authored
llvm-svn: 125021
-
- Feb 06, 2011
-
-
Anders Carlsson authored
llvm-svn: 124988
-
Anders Carlsson authored
Fix self-host; if a thunk already exists and has available_externally linkage, we should change its linkage instead of asserting. llvm-svn: 124986
-
Anders Carlsson authored
When building with optimizations, emit thunks with available_externally linkage so devirtualized function calls can also be de-thunked. llvm-svn: 124984
-
- Feb 05, 2011
-
-
Anders Carlsson authored
won't assert when building a thunk for an implicit virtual member function that is not marked used. llvm-svn: 124967
-
Anders Carlsson authored
We now emit everything except unused implicit virtual member functions when building the vtable. llvm-svn: 124935
-
- Feb 04, 2011
-
-
Fariborz Jahanian authored
abi. llvm-svn: 124834
-
- Feb 03, 2011
-
-
Rafael Espindola authored
llvm-svn: 124781
-
Rafael Espindola authored
This reopens PR99114, but that one at least can be avoided with an #include. PR9130 cannot. llvm-svn: 124780
-
Anders Carlsson authored
is not defined in the current translation unit. Doing so lead to compile errors such as PR9114. Instead, when CodeGen is building the vtable, don't try to emit a definition for functions that aren't marked used in the current translation unit. Fixes PR9114. llvm-svn: 124768
-
Fariborz Jahanian authored
llvm-svn: 124757
-