- 38e24c7 objc: Implemented variables declared in class interface by Fariborz Jahanian · 16 years ago
- ceb77d9 Adjust for linkage name change. by Duncan Sands · 16 years ago
- e3fedbe Correct for change of this name in LLVM. by Duncan Sands · 16 years ago
- 4274581 Backout r66408, we don't want handling of globals to rely on the by Daniel Dunbar · 16 years ago
- 53d8922 Be sure to never create two functions with the same name, instead arrange to by Mike Stump · 16 years ago
- a210f35 Make constant emission for @encode use the common string emission code. by Eli Friedman · 16 years ago
- 286acbd Fixup our uses of various linkages to match how llvm now works. I think they are all by Mike Stump · 16 years ago
- b681b8f (LLVM svn up) Generalize RuntimeFunctions to RuntimeGlobals and add by Daniel Dunbar · 16 years ago
- 5e27314 IRgen support for weak_import. by Daniel Dunbar · 16 years ago
- fe34557 Don't mangle names of local variables. by Daniel Dunbar · 16 years ago
- 2136b2e Make IRGen compatible with declaring a function with incomplete by Eli Friedman · 16 years ago
- 90a9043 Move more of the blocks code up and out. by Mike Stump · 16 years ago
- 2a99814 Move more of blocks codegen out of CodeGenModule and into the by Mike Stump · 16 years ago
- 3f75c43 Support "asm" renaming of external symbols. - PR3698. by Daniel Dunbar · 16 years ago
- 74ac74a Don't set nounwind on functions when in using the new Obj-C ABI. by Daniel Dunbar · 16 years ago
- 4667c4a simplify some code. by Chris Lattner · 16 years ago
- 22c818a Initialize NSConcreteStackBlock by Anders Carlsson · 16 years ago
- c136e6c Fix PR3612. We ensure that we add builtins to the GlobalDeclMap and by Mike Stump · 16 years ago
- 0de40af Minor cleanup: use getDeclAlignInBytes helper. by Eli Friedman · 16 years ago
- dbb1ecc fix some sema problems with wide strings and hook up basic codegen for them. by Chris Lattner · 16 years ago
- eaf2bb8 first wave of fixes for @encode sema support. This is part of PR3648. by Chris Lattner · 16 years ago
- eda9a5e Emit extern_weak when needed. - PR3629. by Daniel Dunbar · 16 years ago
- 6e656f4 Initialize the Init variable to something reasonable when we emit an by Eli Friedman · 16 years ago
- 81ebbde Add irgen support for the noinline attribute. by Anders Carlsson · 16 years ago
- d5d3180 Don't emit K&R unprototyped function definitions as varargs. by Daniel Dunbar · 16 years ago
- 232350d Emission of global variable initialializer was broken in rare by Daniel Dunbar · 16 years ago
- 6ec3668 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 16 years ago
- b5da3e9 Add anti-FIXME. by Daniel Dunbar · 16 years ago
- 6aee306 Simplify. by Daniel Dunbar · 16 years ago
- 370ab3f Make it possible for builtins to expression FILE* arguments, so that by Douglas Gregor · 16 years ago
- 3e41d60 Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 16 years ago
- 7542bca Simplify predicate. by Daniel Dunbar · 16 years ago
- 5c61d97 IRgen support for attribute used. - PR3566 by Daniel Dunbar · 16 years ago
- 73241df Pull MayDeferGeneration out of EmitGlobal. by Daniel Dunbar · 16 years ago
- 0269871 Rename EmitStatics (etc) to EmitDeferred; provide basic infrastructure by Daniel Dunbar · 16 years ago
- 7d6dc4f Let the backend unique these. by Mike Stump · 16 years ago
- 3246991 Move DescriptorUniqueCount into CGM. by Mike Stump · 16 years ago
- 26efc33 Move GlobalUniqueCount up into CGM. by Mike Stump · 16 years ago
- 9b8a797 Move GenericBlockLiteralType into CGM. by Mike Stump · 16 years ago
- ab69514 Move BlockDescriptorType into CGM. by Mike Stump · 16 years ago
- 5f2bfd4 Add basic support for C++ name mangling according to the Itanium C++ by Douglas Gregor · 16 years ago
- d5cab54 Add a very basic implemenation of global blocks. This needs to be cleaned up. by Anders Carlsson · 16 years ago
- 17f194f Support __attribute__(section(<name>)) by Daniel Dunbar · 16 years ago
- 56b8001 Use 'compile' instead of 'codegen' when reporting error to user. by Daniel Dunbar · 16 years ago
- d604c40 Add -femit-all-decls codegen option. by Daniel Dunbar · 16 years ago
- 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
- 88b5396 More ABI API cleanup. by Daniel Dunbar · 16 years ago
- 725ad31 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 16 years ago
- 30bc571 Use NonFragileABI as name of new Next abi. More comments for the new meta-data. by Fariborz Jahanian · 16 years ago
- ee0af74 Refactoring ObjC Next's runtime classes in preparation for the new ObjC's abi. by Fariborz Jahanian · 16 years ago
- f7cf85b more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 16 years ago
- 4998888 Bug fix, __private_extern__ globals were always introducing a definition. by Daniel Dunbar · 16 years ago
- 305c658 Objc's compatibility-alias semantics and code gen issue fix. by Fariborz Jahanian · 16 years ago
- 3ef5db6 Silence a GCC warning by Sebastian Redl · 16 years ago
- b723f75 Fix the bug that would cause Python to crash at startup. by Anders Carlsson · 16 years ago
- 2f40270 Add full dllimport / dllexport support: both sema checks and codegen. by Anton Korobeynikov · 16 years ago
- 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
- fef30b5 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
- c9f29c6 Fix a serious null termination bug found by David Chisnall! by Chris Lattner · 16 years ago
- 98883e1 If a global var decl has an initializer, make sure to always set its linkage to external. by Anders Carlsson · 16 years ago
- d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
- 4e8a9e8 reapply the (corrected) patch to use the new llvm intrinsics for memcpy/memmove etc. by Chris Lattner · 16 years ago
- d677776 temporarily revert Sangiv's patch. by Chris Lattner · 16 years ago
- 8d668a4 mem[cpy,set,move] intrinsics are now overloaded. by Sanjiv Gupta · 16 years ago
- 8fbc154 Pointer width for PIC16 is 16 bits. Modify getMemCpy, getMemMove and getMemSet accordingly. by Sanjiv Gupta · 16 years ago
- 0293d54 Discard unused runtime function declarations (for readability). by Daniel Dunbar · 16 years ago
- 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
- 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
- e3daa76 Handle padding in the constant CFString struct. Fixes PR3046. by Anders Carlsson · 16 years ago
- f1c9c09 Codegen support for fastcall & stdcall CC. Patch by Ilya Okonsky! by Anton Korobeynikov · 17 years ago
- 21ef7ae LinkageSpecDecl is c++ specific, move it to DeclCXX by Chris Lattner · 17 years ago
- 2149470 Don't run the verifier as part of IRgen, this is now down (per module) by Daniel Dunbar · 17 years ago
- af668b0 Add attribute always_inline support. by Daniel Dunbar · 17 years ago
- 5fabf9d Add option argument to GetAddrOfConstantString to use for name of by Daniel Dunbar · 17 years ago
- 66031a5 Change CGDebugInfo::setLocation to just ignore invalid locations. This by Daniel Dunbar · 17 years ago
- f1968f2 Add simple interface for protecting runtime functions from name by Daniel Dunbar · 17 years ago
- f93349f Prefer llvm::Function::addFnAttr(...) to F->addAttribute(~0, ...). by Daniel Dunbar · 17 years ago
- a2c6912 Now Attributes are divided in three groups by Devang Patel · 17 years ago
- 761d7f7 Large mechanical patch. by Devang Patel · 17 years ago
- 45c25ba Move FunctionType conversion into CGCall.cpp: by Daniel Dunbar · 17 years ago
- b768807 Tweak CGCall functions again: by Daniel Dunbar · 17 years ago
- 5323a4b Tweak CGCall functions: by Daniel Dunbar · 17 years ago
- 219df66 Fix a number of issues w.r.t. emission of global for functions and by Daniel Dunbar · 17 years ago
- 0dbe227 Refactor parameter attribute handling: by Daniel Dunbar · 17 years ago
- 3a9a3e1 Set sext/zext on function result. - <rdar://problem/6156739> by Daniel Dunbar · 17 years ago
- f80519b Set function attributes (sext, zext, etc.) on Objective-C methods. by Daniel Dunbar · 17 years ago
- 90df4b6 Avoid superfluous errors regarding variable-length arrays (casts). by Daniel Dunbar · 17 years ago
- b381aac codegen constant data as such. add QualType::isConstant() by Nuno Lopes · 17 years ago
- 662174c8 Downgrade a number of FIXME asserts to ErrorUnsupported. - Notably VLAs by Daniel Dunbar · 17 years ago
- af05bb9 Objective-C @synthesize support. by Daniel Dunbar · 17 years ago
- 90db882 Use DenseMap on IdentifierInfo instead of StringMap. by Daniel Dunbar · 17 years ago
- 3e9df99 NeXT: Clean up constant CFString handling. by Daniel Dunbar · 17 years ago
- b7ec246 Add NeXT runtime support for generating methods. by Daniel Dunbar · 17 years ago
- 488e993 Change WarnUnsupported to ErrorUnsupported (in name and in practice). by Daniel Dunbar · 17 years ago
- 41071de Clean up CodeGenModule interface. by Daniel Dunbar · 17 years ago
- 7ded7f4 Change CGObjCRuntime methods to take appropriate clang Decls. by Daniel Dunbar · 17 years ago
- 9d9b09c Infinite loops considered harmful. - Thanks Thomas by Daniel Dunbar · 17 years ago
- 6143293 Add GetAddrOfConstantCString method by Daniel Dunbar · 17 years ago
- af2f62c Change ObjCRuntime GenerateProtocol[Ref] methods to take by Daniel Dunbar · 17 years ago
- 0d8a13d Fix compilation warning with help from David Chisnall. by Mike Stump · 17 years ago