aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenModule.cpp
AgeCommit message (Expand)Author
2009-04-22Don't convert interface types (to structs) as part of CodeGenTypes.Daniel Dunbar
2009-04-22Fix some mishandling of the attr(gnu_inline) mode when used withChris Lattner
2009-04-21Fix emission of static tentative definitions referenced from other static fun...Douglas Gregor
2009-04-21Explictly track tentative definitions within Sema, then hand thoseDouglas Gregor
2009-04-20the __gnuc_inline__ attribute is actually named __gnu_inline__,Chris Lattner
2009-04-19PR3853: Add CodeGen support for __thread.Eli Friedman
2009-04-19silence a warning, it isn't clear what the right answer is here,Chris Lattner
2009-04-18FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor
2009-04-17Add support for generating (very basic) C++ destructors. These aren't called ...Anders Carlsson
2009-04-17Attributes on block functions were not being set.Daniel Dunbar
2009-04-16Ensure that the most recent declaration of a tentative definition winsDaniel Dunbar
2009-04-15Defer generation of tentative definitions.Daniel Dunbar
2009-04-15Start attempting to generate code for C++ ctors.Anders Carlsson
2009-04-14Comment fix.Daniel Dunbar
2009-04-14Fix PR3988: extern inline functions get strong symbol definitions inChris Lattner
2009-04-14implement codegen support for __attribute((__gnuc_inline__)),Chris Lattner
2009-04-14Refactor how attributes are set on values.Daniel Dunbar
2009-04-14Split SetGlobalValueAttributes into definition/declaration halves.Daniel Dunbar
2009-04-14Rename (one) SetFunctionAttributes to SetLLVMFunctionAttributes toDaniel Dunbar
2009-04-14Reduce indentation, no functionality change.Daniel Dunbar
2009-04-14defer emission of always_inline, extern_inline, and inline functions (when Chris Lattner
2009-04-14give always_inline functions internal linkage. If they cannot be Chris Lattner
2009-04-14set the linkage of an inline function according to its language rules.Chris Lattner
2009-04-14Add a comment on SetGlobalValueAttributes.Daniel Dunbar
2009-04-14add a new enum type for linkage, no functionality change.Chris Lattner
2009-04-14Clean up handling of visibility.Daniel Dunbar
2009-04-14reduce indentation, no functionality change.Chris Lattner
2009-04-14do not set visibility on "private" or "available externally" linkage objects.Chris Lattner
2009-04-13Update to use hasAttr() instead of getAttr().Daniel Dunbar
2009-04-13Move/update recent FIXME (wrt UTF-8 checking for ObjC @-strings).Steve Naroff
2009-04-13Fixed crasher in <rdar://problem/6780904> [irgen] Assertion failed: (Result =...Steve Naroff
2009-04-10Internal variables could mistakenly have "hidden" visibility whenDaniel Dunbar
2009-04-10reject codegen of __thread variables as unimplemented, rdar://6775265Chris Lattner
2009-04-09Propagate the ASTContext to various AST traversal and lookup functions.Douglas Gregor
2009-04-08Add a destination type argument to EmitConstantExpr. This will be used for wh...Anders Carlsson
2009-04-07Visibility attributes should only be set on definition.Daniel Dunbar
2009-04-07Various fixes to symbols used for Obj-C x86_64 metadata.Daniel Dunbar
2009-04-04Add some basic support for generating C++ member functions.Anders Carlsson
2009-04-04Basic support for regparm codegenAnton Korobeynikov
2009-04-03Add a comment/FIXME so Eli can sleep better:-))Steve Naroff
2009-04-03Implement -fvisibility.Fariborz Jahanian
2009-04-03Add target hook for setting symbol prefix and section of unicodeDaniel Dunbar
2009-04-02Emit code for linkage specifications.Anders Carlsson
2009-04-01CodeGenModule::GetAddrOfConstantCFString():Steve Naroff
2009-04-01Add ConvertUTF module from http://www.unicode.org/Public/PROGRAMS/CVTUTF.Steve Naroff
2009-04-01More "prep" work for handling UTF16 CFString.Steve Naroff
2009-04-01fix the two xfails I added with a previous patch by making ObjC interfaceChris Lattner
2009-04-01move trivial forwarding function inline.Chris Lattner
2009-04-01Implement code generation of namespaces and add mangling tests.Anders Carlsson
2009-03-31Add Target hooks for IRgen of [cf]string literals.Daniel Dunbar