aboutsummaryrefslogtreecommitdiff
path: root/CodeGen/CodeGenModule.h
AgeCommit message (Expand)Author
2008-03-15Make a major restructuring of the clang tree: introduce a top-levelChris Lattner
2008-03-14add initial support for generating an llvm.globalctors list. Patch by David ...Chris Lattner
2008-03-01Add codegen support for ObjC message expressions with the GNU runtime.Chris Lattner
2008-02-29make include guards more unique.Chris Lattner
2008-02-26Implement codegen for the following static var init.Lauro Ramos Venancio
2008-02-19Implement CodeGenModule::getMemSetFn method.Lauro Ramos Venancio
2008-02-11Fix PR1992 by computing the right type for string literals, whichChris Lattner
2008-02-06sink more of the type related code into CodeGenTypes.Chris Lattner
2008-02-06move the codegen ASTConsumer out of the driver into libcodegen,Chris Lattner
2008-02-05rewrite some of the type refinement code to eliminate dangling pointersChris Lattner
2008-01-26Factor out the constant generation into its own file.Anders Carlsson
2008-01-12Add first pieces of support for parsing and representing Chris Lattner
2008-01-03Fix a crash reported by Seo Sanghyeon.Chris Lattner
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-18local static vars are globals also. This fixes a testcaseChris Lattner
2007-12-18introduce a new CodeGenModule::getIntrinsic method, which wraps Chris Lattner
2007-12-02warn about unhandled initializers instead of crashing on them.Chris Lattner
2007-12-02Handle global variable definitions which change the type of a definition, suc...Chris Lattner
2007-12-02implement codegen for functions whose function body type don't matchChris Lattner
2007-12-02Warn about unsupported codegen with the diags machinery, giving us:Chris Lattner
2007-12-02Support initalisers for more than just int-typed static variables.Oliver Hunt
2007-11-28Implement support for -fwritable-strings and make the code generatorChris Lattner
2007-10-31Take 2.Devang Patel
2007-10-31temporarily revert devang's patch to link in the llvm codegen etc.Chris Lattner
2007-10-31Make target info available to clang code generator.Devang Patel
2007-10-30Refactor code into a separate method.Devang Patel
2007-09-13Phase 2 of making the Decl class more lightweight...Steve Naroff
2007-08-31add the ability to get the llvm function corresponding to a library builtin.Chris Lattner
2007-08-21Implement code generation for constant CFStrings.Anders Carlsson
2007-07-14In "int X,Y;", compile both X and Y.Chris Lattner
2007-07-13implement support for basic codegen of global variables with no initializers.Chris Lattner
2007-07-11Stage two of getting CFE top correct.Reid Spencer