aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenModule.h
AgeCommit message (Expand)Author
2009-04-08Add a destination type argument to EmitConstantExpr. This will be used for wh...Anders Carlsson
2009-04-02Emit code for linkage specifications.Anders Carlsson
2009-04-01More "prep" work for handling UTF16 CFString.Steve Naroff
2009-04-01move trivial forwarding function inline.Chris Lattner
2009-04-01Implement code generation of namespaces and add mangling tests.Anders Carlsson
2009-03-31Change UsedArray to be a vector of WeakVH to fix a dangling pointer problem t...Chris Lattner
2009-03-27Do not emit debug information for variables while generating optimized code. ...Devang Patel
2009-03-26most of this is plumbing to get CompileOptions down into Chris Lattner
2009-03-22switch getBuiltinLibFunction to use the new GetOrCreateLLVMFunction Chris Lattner
2009-03-22emit aliases as the definitions fly by, don't bother deferring untilChris Lattner
2009-03-22pull "runtime globals" into the same framework as other functions/global vari...Chris Lattner
2009-03-21now that all the decl reference and creation stuff is going through twoChris Lattner
2009-03-21fix a crash that could occur when a variable declaration became aChris Lattner
2009-03-21simplify and cleanup global variable creation stuff to all go through oneChris Lattner
2009-03-21simplify management of llvm::Function creation to all go throughChris Lattner
2009-03-21code cleanups, rename EmitForwardFunctionDefinition -> Chris Lattner
2009-03-21simplify some more code.Chris Lattner
2009-03-21simplify and comment some code better. Make BindRuntimeGlobalsChris Lattner
2009-03-19IRgen support for alias of global variable.Daniel Dunbar
2009-03-09Backout r66408, we don't want handling of globals to rely on theDaniel Dunbar
2009-03-09Be sure to never create two functions with the same name, instead arrange toMike Stump
2009-03-07Some struct/class mismatch fixes, to silence MSVC warnings.Sebastian Redl
2009-03-06(LLVM svn up) Generalize RuntimeFunctions to RuntimeGlobals and addDaniel Dunbar
2009-03-04Move more of the blocks code up and out.Mike Stump
2009-03-04Move more of blocks codegen out of CodeGenModule and into theMike Stump
2009-03-04Start the migration of more of the blocks code out of sight for mostMike Stump
2009-03-04Improved ABI compliance for __block variables. No testcases yet as weMike Stump
2009-02-27Fix PR3612. We ensure that we add builtins to the GlobalDeclMap andMike Stump
2009-02-24first wave of fixes for @encode sema support. This is part of PR3648.Chris Lattner
2009-02-24Prevent accidental copying of CodeGenFunction and CodeGenModule.Anders Carlsson
2009-02-19Don't emit K&R unprototyped function definitions as varargs.Daniel Dunbar
2009-02-19More codegen for blocks. The type of block literals should be better.Mike Stump
2009-02-18Address Chris's comments regarding C++ name mangling.Douglas Gregor
2009-02-17Change EmitConstantExpr to allow failure.Daniel Dunbar
2009-02-14Use getNameAsCString instead of getNameAsString and reflow the type.Mike Stump
2009-02-14Generate the helper function for blocks. Now basic codegen isMike Stump
2009-02-13IRgen support for attribute used.Daniel Dunbar
2009-02-13Pull MayDeferGeneration out of EmitGlobal.Daniel Dunbar
2009-02-13Rename EmitStatics (etc) to EmitDeferred; provide basic infrastructureDaniel Dunbar
2009-02-13Let the backend unique these.Mike Stump
2009-02-13Move DescriptorUniqueCount into CGM.Mike Stump
2009-02-13Move NSConcreteStackBlock into CGM.Mike Stump
2009-02-13Reflow to 80col.Mike Stump
2009-02-13Move GlobalUniqueCount up into CGM.Mike Stump
2009-02-13Condense NSConcreteGlobalBlock handling.Mike Stump
2009-02-13Move GenericBlockLiteralType into CGM.Mike Stump
2009-02-13Move BlockDescriptorType into CGM.Mike Stump
2009-02-13Add basic support for C++ name mangling according to the Itanium C++Douglas Gregor
2009-02-12Add a very basic implemenation of global blocks. This needs to be cleaned up.Anders Carlsson
2009-02-02More ABI API cleanup.Daniel Dunbar