aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenModule.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-10-24Remove the HiddenWeakTemplateVTables CodeGen option. It's currently unused.Douglas Gregor1-3/+1
2012-10-23Switch CodeGenOptions over to a .def file, like we do with LangOptions.Douglas Gregor1-3/+3
2012-10-17Set a special flag in class metadata when an Objective-C classJohn McCall1-2/+2
2012-10-17"'Might as well make it static const.' -- John McCall" -- Michael ScottNico Weber1-1/+1
2012-10-16When using a symbol with attribute weakref, search for it first andJoerg Sonnenberger1-5/+8
2012-10-15Use enum values instead of magic numbers for indexing into the attribute list.Bill Wendling1-3/+7
2012-10-15Attributes RewriteBill Wendling1-1/+2
2012-10-14Remove operator cast method in favor of querying with the correct method.Bill Wendling1-3/+5
2012-10-13Simplify. Suggestion by Sean Silva.Nico Weber1-11/+3
2012-10-11Add codegen support for __uuidof().Nico Weber1-1/+81
2012-10-10Rename ObjCMethodDecl::isSynthesized to isPropertyAccessor.Jordan Rose1-3/+3
2012-10-10Have 'addFnAttr' take the attribute enum value. Then have it build the attrib...Bill Wendling1-11/+11
2012-10-09We use the enums to query whether an Attributes object has that attribute. TheBill Wendling1-1/+1
2012-10-08Move TargetData to DataLayout.Micah Villmow1-5/+5
2012-10-05Propagate calling convention for aliases and weakrefs.Alex Rosenberg1-2/+3
2012-09-28PR13941: Mark all virtual functions as unnamed_addr. It's not possible toRichard Smith1-0/+4
2012-09-28Add basic support for adding !tbaa.struct metadata on llvm.memcpy calls forDan Gohman1-0/+6
2012-09-26Update to new function attribute querying syntax.Bill Wendling1-1/+1
2012-09-06Dont cast away const needlessly. Found by gcc48 -Wcast-qual.Roman Divacky1-1/+1
2012-08-24Push ArrayRef through the Expr hierarchy.Benjamin Kramer1-4/+4
2012-08-22Reduce duplicated hash map lookups.Benjamin Kramer1-6/+2
2012-08-21[asan] If we are compiling with ASan, add metadata indicating dynamically ini...Kostya Serebryany1-0/+12
2012-08-10Decrementing std::string::end is not portable, use array access instead.Joerg Sonnenberger1-1/+1
2012-07-19Remove HasSynthBitfield and all callers/writers/etc. Also removeEric Christopher1-9/+1
2012-07-12Add the ObjFW runtime. Patch by Jonathan Schleifer!John McCall1-0/+1
2012-07-03Rename the GCC Objective-C runtime to gcc from gnu-fragile and the GNUstepDavid Chisnall1-3/+3
2012-07-02When we're looking for redeclarations which might provide a definition in Cod...Eli Friedman1-0/+1
2012-06-28Add -ftls-model command-line flag.Hans Wennborg1-7/+41
2012-06-26block literal irgen: several improvements on naming blockFariborz Jahanian1-3/+7
2012-06-23IRGen: Factor v-table generation into the CGCXXABI object.Charles Davis1-2/+2
2012-06-23Support the tls_model attribute (PR9788)Hans Wennborg1-1/+7
2012-06-20Restructure how the driver communicates information about theJohn McCall1-6/+17
2012-06-18[MSExtensions] Add support for __forceinline.Michael J. Spencer1-2/+2
2012-06-10PR13064: Store whether an in-class initializer uses direct or copyRichard Smith1-2/+2
2012-06-06Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie1-1/+1
2012-05-28adjust to mainline llvm API change.Chris Lattner1-4/+2
2012-05-20CUDA: add CodeGen support for global variable address spaces.Peter Collingbourne1-3/+21
2012-05-12Add support for __attribute__((hot)) and __attribute__((cold)).Benjamin Kramer1-0/+4
2012-05-04This patch adds a new Clang compiler flag "-gline-tables-only".Alexey Samsonov1-1/+2
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie1-1/+1
2012-04-27Use enum to set debug info size generated by ClangAlexey Samsonov1-1/+2
2012-04-24enable TBAA when -fthread-sanitizer is given, even with -O0 or -relaxed-alia...Kostya Serebryany1-3/+4
2012-04-16Typo.Eric Christopher1-1/+1
2012-04-11Enable debug info for objective c implementations that may not haveEric Christopher1-0/+5
2012-03-30Revert r153723, and its follow-ups r153728 and r153733.Chandler Carruth1-3/+2
2012-03-30Do the static-locals thing properly in the face of unions andJohn McCall1-2/+3
2012-03-30The UTF16 string referenced by a CFString should go into the __TEXT,__ustringBill Wendling1-26/+24
2012-03-29Fix whitespace.Bill Wendling1-6/+5
2012-03-26add tbaa metadata to vtable pointer loads/storesKostya Serebryany1-0/+6
2012-03-24Simplify some users of DenseMap::erase.Benjamin Kramer1-4/+1