- bcaedae Reapply: by Chris Lattner · 15 years ago
- f8153065 reduce nesting. by Chris Lattner · 15 years ago
- 564360b Patch to correctly mangle block helper functions by Fariborz Jahanian · 15 years ago
- 9a20d55 Switch over to the new caching version of getMangledName. by Anders Carlsson · 15 years ago
- 793a990 Add a new variant of getMangledName that caches the mangling for decls. by Anders Carlsson · 15 years ago
- af89689 Instantiations subject to an explicit template instantiation by Douglas Gregor · 15 years ago
- 61c6c91 Fix for PR7415: refactor CodeGenModule::MayDeferGeneration and make it less by Eli Friedman · 15 years ago
- 06057ce Move CodeGenOptions.h *back* into Frontend. This should have been done when the by Chandler Carruth · 15 years ago
- 7cf84d6 Implement -fvisibility-inlines-hidden. <rdar://problem/7819834> by Douglas Gregor · 15 years ago
- 98b7c5c Add an option to specify the target C++ ABI to the frontend. Use it to by Charles Davis · 15 years ago
- 9a8822b Get rid of getMangledCXXCtorName and getMangledCXXDtorName. by Anders Carlsson · 15 years ago
- afd0429 Get rid of an unnecessary getMangledName overload. by Anders Carlsson · 15 years ago
- c76702c When deciding whether a deferred declaration has already been emitted, by John McCall · 15 years ago
- 3a811f1 IRgen: Add a stub class for generating ABI-specific C++ code. by Charles Davis · 15 years ago
- 8b24233 If a function definition has any sort of weak linkage, its static local by John McCall · 15 years ago
- 1297fd7 Disable the available_externally optimization for inline virtual by Douglas Gregor · 15 years ago
- 6fb745b Rework when and how vtables are emitted, by tracking where vtables are by Douglas Gregor · 15 years ago
- b076910 Do not give implicitly-defined virtual members functions by Douglas Gregor · 15 years ago
- c446d18 When we emit a non-constant initializer for a global variable of by Douglas Gregor · 15 years ago
- 109dfc6 IRGen for initialization/destruction of by Fariborz Jahanian · 15 years ago
- 784f211 Properly pass the address of a lazily-generated function declaration with by John McCall · 15 years ago
- ec951e0 More -fno-constant-cfstrings API work. by Fariborz Jahanian · 15 years ago
- 2bb5dda More work toward implementing NeXt's -fno-constant-cfstrings - wip. by Fariborz Jahanian · 15 years ago
- 33e982b Support for -fno-constant-cfstrings option - wip. by Fariborz Jahanian · 15 years ago
- b1af4c8 Add comment explaning the use of c99 inline in c++. by Rafael Espindola · 15 years ago
- cb421fa Fix -Wcast-qual warnings. by Dan Gohman · 15 years ago
- b8cab18 If a method is virtual and the class key function is in another file, emit the method as available_externally. by Rafael Espindola · 15 years ago
- 046c294 Vtable -> VTable renames across the board. by Anders Carlsson · 15 years ago
- b5e8156 unbreak tests. by Chris Lattner · 15 years ago
- 4357a82 minor cleanups by Chris Lattner · 15 years ago
- dbf02bc Fix use after free. Incrementing an use_iterator after its user is erased is unsafe. by Benjamin Kramer · 15 years ago
- 35db3b9 rely even less on CallInst internals by Gabor Greif · 15 years ago
- 6ba728d do not rely on CallInst interna, use CallSite to access arguments by Gabor Greif · 15 years ago
- 6ae1f35 Provide an extremely unsatisfactory diagnostic (instead of crashing) when by John McCall · 15 years ago
- 1e201b4 Eliminate excessive PCH deserialization caused by the search for by Douglas Gregor · 15 years ago
- 3ecd785 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 15 years ago
- c90f56d Revert r100193 since it causes failures in objc in clang by Mon P Wang · 15 years ago
- 8facca6 Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset. by Mon P Wang · 15 years ago
- c603463 adjust to IRBuilder change and use faster DebugLoc apis. by Chris Lattner · 15 years ago
- aaa210c use the new optimized debug info metadata accessors. In by Chris Lattner · 15 years ago
- b5896c3 Revert Mon Ping's 99930 due to broken llvm-gcc buildbots. by Bob Wilson · 15 years ago
- 3b5caa2 Added support for address spaces and added a isVolatile field to memcpy, memmove, and memset by Mon P Wang · 15 years ago
- d1a5c31 When given the magic class __cxxabiv1::__fundamental_type_info, produce by Rafael Espindola · 15 years ago
- f075b22 revert 99311. Looks like it broke darwin bootstrap. by Rafael Espindola · 15 years ago
- 5fb12c6 Avoid producing implicit methods when we have a explicit template instantiation by Rafael Espindola · 15 years ago
- 7270ee4 Always emit associated thunks when emitting the function itself. Remove getVtableAddressPoint, it's not used. by Anders Carlsson · 15 years ago
- 13189d0 Rename MaybeEmitVtable to EmitVTableRelatedData in preparation for making it emit thunks as well. by Anders Carlsson · 15 years ago
- af44035 Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 15 years ago
- efb0fa9 C++: Add support for -fno-use-cxa-atexit. - So much typing, so little gain... by Daniel Dunbar · 15 years ago
- f746aa6 Change CodeGenModule to rely on the Module's symbol table instead of by John McCall · 15 years ago
- 8f51a4f Give explicit template instantiations weak ODR linkage. Former by Douglas Gregor · 15 years ago
- 34fd284 Re-revert the explicit template instantiation linkage patch. I am beginning to look incompetent by Douglas Gregor · 15 years ago
- 8721360 Reinstate patch to turn explicit template instantiations into weak symbols by Douglas Gregor · 15 years ago
- 4ea9006 Revert the linkage change for explicit template instantiations; something is amiss by Douglas Gregor · 15 years ago
- e5e0c9d Give explicit template instantiations weak linkage (but don't defer by Douglas Gregor · 15 years ago
- bbf58bb Delay codegen of vtables when handling implicit instantiations. by Rafael Espindola · 15 years ago
- d3a344c Add a message to these asserts. by Benjamin Kramer · 15 years ago
- 6374c33 Implement __builtin_dwarf_sp_column for i386 (Darwin and not), x86-64 (all), by John McCall · 15 years ago
- 6a83670 Fix PR6473. by Rafael Espindola · 15 years ago
- 468ec6c Revert changes r97693, r97700, and r97718. by John McCall · 15 years ago
- 4819ac4 Refactor local class name mangling and make it ABI conforming. by Fariborz Jahanian · 15 years ago
- c9fe644 Create a TargetMachine whenever we create a CodeGenAction. The codegen of by John McCall · 15 years ago
- 7b9a5aa During codegen assert that any copy assignment, destructor or constructor that by Rafael Espindola · 15 years ago
- 11e8ce7 Add support for the weakref attribute. We still produce "alias weak" as llvm-gcc does, but are more strict on what uses of weakref we accept. by Rafael Espindola · 15 years ago
- c0bf462 Perform two more constructor/destructor code-size optimizations: by John McCall · 15 years ago
- d46f985 Re-introduce the ctor/dtor alias optimization, this time hidden behind a by John McCall · 15 years ago
- 8e51a1f Revert the ctor/dtor alias optimization for now; the buildbots can detect by John McCall · 15 years ago
- 92ac9ff Emit complete constructors and destructors as aliases to base constructors by John McCall · 15 years ago
- 3d2c43e Remove use of 'std::string' from Attr objects, using instead a byte by Ted Kremenek · 15 years ago
- 8878686 Emit global references with constant initializers as constants. Fixes PR5585. by John McCall · 15 years ago
- 39de84d Improved handling of the visibility attribute. Declarations now inherit their parent's visibility. by Anders Carlsson · 15 years ago
- a9a55c0 Switch CodeGen's "is this variable declaration a definition?" logic by Douglas Gregor · 15 years ago
- b2bcf1c Use the correct function info for constructors when applying function attributes. Fixes PR6245. by Anders Carlsson · 15 years ago
- 0b6bc8b When a function or variable somehow depends on a type or declaration by Douglas Gregor · 15 years ago
- b9f7096 Don't explicitly force utf strings into the __TEXT,__ustring by Chris Lattner · 15 years ago
- 31310a2 In C++, an initializer on a variable doesn't necessarily mean it's the definition. With that in mind, rename getDefinition to getAnyInitializer (to distinguish it from getInit) and reimplement it in terms of isThisDeclarationADefinition. Update all code to use this new function. by Sebastian Redl · 15 years ago
- 8b752f1 Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, by Ken Dyck · 15 years ago
- 4da244c Use CharUnits for alignment of UTF16 string in GetAddrOfConstantCFString(). by Ken Dyck · 15 years ago
- 3bb9269 Use the right definition when emitting a global variable. Fixes PR5564. by Anders Carlsson · 15 years ago
- 687cc4a Introduce CodeGenModule::GetTargetTypeStoreSize() to calculate the store size by Ken Dyck · 15 years ago
- d0c4792 If a global variable has an initializer with side effects, it can never be deferred (even if it's in an anonymous namespace). by Anders Carlsson · 15 years ago
- 0d13f6f Created __builtin___NSStringMakeConstantString() builtin, which generates constant Objective-C strings. by David Chisnall · 15 years ago
- 82d0a41 Generalize target weirdness handling having proper layering in mind: by Anton Korobeynikov · 15 years ago
- 031421b revert r92749, which is just dead code. by Chris Lattner · 15 years ago
- 6c6bda3 Fix for PR5967: Make const-marking for LLVM globals correct for cases requiring by Eli Friedman · 15 years ago
- dffb801 Fix linkage for RTTI names by re-using the logic for computing the by Douglas Gregor · 15 years ago
- 4b0f21c Fix marking of virtual members for nested classes whose first non-pure virtual function has a body inlined in the class by Douglas Gregor · 15 years ago
- bd6d619 Improve key-function computation for templates. In particular: by Douglas Gregor · 15 years ago
- ef37201 Add code to skip the emission of available externally functions at -O0. WIP. by Mike Stump · 15 years ago
- 1280708 strength reduce this call away. by Chris Lattner · 15 years ago
- d5b8902 this form of SetDebugLocation is about to go away, add some #includes that by Chris Lattner · 15 years ago
- ab18995 Some small improvements to dead code elimination; helps a bit on by Eli Friedman · 15 years ago
- 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
- 20e098b Fix for PR5714: make sure globals that will be modified aren't marked const. by Eli Friedman · 15 years ago
- 8d04258 Random string-related cleanups. by Benjamin Kramer · 15 years ago
- 548e60e Make sure that explicitly instantiated functions get the right linkage. by Anders Carlsson · 15 years ago
- 386ca78 Fix for PR5709: use the computed type of the declaration instead of the by Eli Friedman · 15 years ago
- 61eab88 Misc key function fixes. by Eli Friedman · 15 years ago
- b455f0e A bunch more thunk fixes from misc testing. by Eli Friedman · 15 years ago
- 72649ed Work-in-progess rewrite of thunks: move thunk generation outside of vtable by Eli Friedman · 15 years ago