1. 154fe98 There is no such thing as typeinfo for a cv-qualified type. Assert by Douglas Gregor · 15 years ago
  2. 0ad57fb simplify my previous patch. by Chris Lattner · 15 years ago
  3. 998eab1 fix opencl extvector element extraction on rvalues. We previously by Chris Lattner · 15 years ago
  4. 9e85c74 Mangle template template parameters. Fixes PR5861. by Anders Carlsson · 15 years ago
  5. fee667f Update for the intrinsic changes in llvm: the object size intrinsic by Eric Christopher · 15 years ago
  6. bdc601b Move the implementation of ASTContext::getTypeSizeInChars() to the .cpp file to by Ken Dyck · 15 years ago
  7. 8257d41 Make sure that we mangle overloaded operators that are member functions correctly, giving them the correct arity. by Anders Carlsson · 15 years ago
  8. 4971ff8 x86_64: Structures with no fields but which have padding should be classified as by Daniel Dunbar · 15 years ago
  9. 9e9199d Eliminate the ASTContext argument to CXXConstructorDecl::isCopyConstructor, since the context is available in the Decl by Douglas Gregor · 15 years ago
  10. 840943d Improve on my previous fix for debug information. Rather than by Douglas Gregor · 15 years ago
  11. 2101a82 Teach debug info generation to handle TemplateSpecializationType, by Douglas Gregor · 15 years ago
  12. 625c1ae Incomplete structs should also have internal linkage. by Anders Carlsson · 15 years ago
  13. 17fa6f9 Correcly handle pointers to member pointer types where the class or the pointee is incomplete. by Anders Carlsson · 15 years ago
  14. 8d14515 Rework the way pointer types are handled by the RTTI builder. We now get the right linkage for indirect pointers to incomplete structs. by Anders Carlsson · 15 years ago
  15. 7177dee Remove ';' after method definition. Noticed by clang++, which one would think by Daniel Dunbar · 15 years ago
  16. 27a9b72 Fix for PR5524: make reference binding in default argument work correctly. by Eli Friedman · 15 years ago
  17. e12e77b Work in progress for setting the vtable pointers for all bases correctly in by Eli Friedman · 15 years ago
  18. 8c69235 Cleanup switch so it doesn't have a default case. by Eli Friedman · 15 years ago
  19. edd6371 Fix for PR5830: fix the computation of the offset to a virtual base. by Eli Friedman · 15 years ago
  20. b0b8438 Fix a few MSVC warnings. by Daniel Dunbar · 15 years ago
  21. 5617bc0 CK_UserDefinedConversion is a valid kind when doing copy ctor elision. by Anders Carlsson · 15 years ago
  22. 4273f70 Change the return type of ASTContext::getTypeSizeInChars() from uint64_t to the by Ken Dyck · 15 years ago
  23. cc906ef Rename getByteSize() and getTypeSizeInBytes() in ASTContext to getCharWidth() by Ken Dyck · 15 years ago
  24. 6f0e485 Fix regression I introduced when dynamic_cast-ing to a reference type. by Anders Carlsson · 15 years ago
  25. 0ddb6f7 It's perfectly fine to see UserDefinedConversion casts when emitting scalar expressions. by Anders Carlsson · 15 years ago
  26. 9657c44 Address some of Anders comments by Douglas Gregor · 15 years ago
  27. 18ef5e2 Switch the initialization required by return statements over to the by Douglas Gregor · 15 years ago
  28. f2d8b9f Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used by Daniel Dunbar · 15 years ago
  29. dd5614b Handle case when DestPtr is 0. by Mike Stump · 15 years ago
  30. 1d7088d Rename GetAddrOfRTTI to GetAddrOfRTTIDescriptor. Remove the overload that takes a CXXRecordDecl since we were just creating a QualType from it anyway. by Anders Carlsson · 15 years ago
  31. f2945c0 Ensure we run cleanups for CXXTemporaries on the exceptional edge. WIP. by Mike Stump · 15 years ago
  32. ab6faf3 Simplify RTTIBuilder::finish. by Anders Carlsson · 15 years ago
  33. 2344077 Move the Info vector into the RTTIBuilder struct. No functionality change. by Anders Carlsson · 15 years ago
  34. e6ec205 Fix for PR5801: codegen memcpy, memmove, memset directly to LLVM intrinsics. by Eli Friedman · 15 years ago
  35. 16006c9 When value-initializing a class with no user-defined constructors but by Douglas Gregor · 15 years ago
  36. 4b3e5be Baby steps towards fixing PR5589. If a class needs a vtable pointer, add one. by Anders Carlsson · 15 years ago
  37. e8e4a1c Use GetAddrOfRTTI everywhere and remove GenerateRTTI and GenerateRTTIRef. With this change, we can now compile and link TableGen. by Anders Carlsson · 15 years ago
  38. 30311fa Handle ImplicitValueInitExpr in AggExprEmitter. by Anders Carlsson · 15 years ago
  39. 58040a5 Mangle CXXOperatorCallExprs, fixes PR5796. by Anders Carlsson · 15 years ago
  40. fba565d Add an addition check for undefined behavior for when we hit a by Mike Stump · 15 years ago
  41. b14e62d Implement additional undefined checks for additional loads and stores. WIP. by Mike Stump · 15 years ago
  42. a7fa7cd Fixes a code gen bug related to accessing a now by Fariborz Jahanian · 15 years ago
  43. 0ece491 ShouldDestroyTemporaries? I don't think so. by Anders Carlsson · 15 years ago
  44. 06159e8 update to match LLVM API change: by Chris Lattner · 15 years ago
  45. ea5ae31 Fix a small bug in ComputeMethodVtableIndices. by Eli Friedman · 15 years ago
  46. 624c7d7 Don't force the emission of destructor definitions. by Eli Friedman · 15 years ago
  47. d8af360 Fix spacing. by Mike Stump · 15 years ago
  48. 4151344 Ensure we preserve line information for each trap for by Mike Stump · 15 years ago
  49. 15037ca Switch codegen for -fcatch-undefined-bahavior over to __builtin_trap by Mike Stump · 15 years ago
  50. 750c85e We have to allow one to form an address for one past the end. WIP. by Mike Stump · 15 years ago
  51. be07f60 Add support for detecting undefined shift behavior. WIP. by Mike Stump · 15 years ago
  52. 8c89ff9 Patch to fix 32-bit @try failure with internal assertion when compiling by Fariborz Jahanian · 15 years ago
  53. 96a063a Simplifiy. by Mike Stump · 15 years ago
  54. c3420ff Revert mmx palignr to use an intrinsic, since mmx shuffle patterns are missing. by Nate Begeman · 15 years ago
  55. ce5818a Support x86's PALIGNR instruction without the use of a palignr intrinsic. by Nate Begeman · 15 years ago
  56. e170ba7 Mangle unary, binary and ternary expressions correctly. by Anders Carlsson · 15 years ago
  57. 3bf190e Simplify BuildSimpleType in the RTTBuilder to avoid using an std::vector. by Anders Carlsson · 15 years ago
  58. dd93755 Don't use a cookie if the global placement new function is used. by Anders Carlsson · 15 years ago
  59. 710f705 Fix regression in my last commit - if a struct has a trivial destructor but no usual deallocation function we don't need a cookie. by Anders Carlsson · 15 years ago
  60. 871d078 More array cookie improvements. by Anders Carlsson · 15 years ago
  61. 6153710 If the usual array deallocation function of a class takes two arguments, we need to pass the number of bytes allocated to the deallocation function, just not the number of bytes in a single element. by Anders Carlsson · 15 years ago
  62. 5ba7d21 Change the RTTIBuilder's finish member function to take a pointer to the constants array + the length of the array. by Anders Carlsson · 15 years ago
  63. 60cfcec Silence some release build warnings. by Chandler Carruth · 15 years ago
  64. 191dcd7 patch to add a property from a protocol to a class that adopts the protocol. by Fariborz Jahanian · 15 years ago
  65. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  66. 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
  67. 3b27f1a Patch to allow C-style cast from 'void *' to block pointer type. by Fariborz Jahanian · 15 years ago
  68. 20e098b Fix for PR5714: make sure globals that will be modified aren't marked const. by Eli Friedman · 15 years ago
  69. 470fb73 Fix linkage of type info and vtable for classes without linkage. by Eli Friedman · 15 years ago
  70. 6f9f25d Make sure mangling doesn't crash in another case. Add some more tests. by Eli Friedman · 15 years ago
  71. ecb7e93 Fix for PR5706: let mangleName deal with mangling names without identifiers by Eli Friedman · 15 years ago
  72. 44636d1 Move info vectors and add assertions in preparation of moving the vector directly into RTTIBuilder. by Anders Carlsson · 15 years ago
  73. 4e71356 Use GetAddrOfRTTI when getting the RTTI pointer for a base class. by Anders Carlsson · 15 years ago
  74. 8d04258 Random string-related cleanups. by Benjamin Kramer · 15 years ago
  75. 3a17370 Move the code for converting a member pointer to a bool so that it is usable by Eli Friedman · 15 years ago
  76. b81c786 Fix for PR5718: implement equality comparisons for member function pointers. by Eli Friedman · 15 years ago
  77. 31b7f52 Improve linkage of RTTI data structures. Introduce CodeGenModule::GetAddrOfRTTI which figures out the right linkage of the RTTI information for the given type and whether it should be defined or not. I will migrate clients over to GetAddrOfRTTI in subsequent commits (with tests). by Anders Carlsson · 15 years ago
  78. d6baec8 Use named flags in RTTIBuilder::BuildPointerType. by Anders Carlsson · 15 years ago
  79. 6ec687d When extending the lifetime of a temporary, make sure to emit a branch to the cleanup exit block. This fixes a broken module error in LLVMCConfigurationEmitter.cpp. by Anders Carlsson · 15 years ago
  80. 8370c58 When an exception needs to be freed by calling __cxa_exception_free, make sure to stash away the exception pointer somewhere. by Anders Carlsson · 15 years ago
  81. 0924a8a Fix spacing. by Mike Stump · 15 years ago
  82. 9dfebdc Support unary type traits in a scalar context. Not that I've actually seen by Eli Friedman · 15 years ago
  83. 548e60e Make sure that explicitly instantiated functions get the right linkage. by Anders Carlsson · 15 years ago
  84. 7b06f6c Mangle static variables inside Objective-C methods in Objective-C++. We currently mangle them the same way as gcc does. by Anders Carlsson · 15 years ago
  85. 9406705 Get rid of static variable. by Eli Friedman · 15 years ago
  86. 864143f Actually store the pointer into the global variable, spotted by Eli. by Anders Carlsson · 15 years ago
  87. 5030a98 Setup cleanup on eh edge out of the construction of the cleanup object by Mike Stump · 15 years ago
  88. c7974ca Handle emitting static variables that have reference type. by Anders Carlsson · 15 years ago
  89. fcbfdc1 Separate generating code for static variables and global variables. by Anders Carlsson · 15 years ago
  90. eb4072e Move more decl related functions to CGDeclCXX.cpp by Anders Carlsson · 15 years ago
  91. 5ec2e7c Add CGDeclCXX.cpp and move EmitCXXGlobalVarDeclInit there. by Anders Carlsson · 15 years ago
  92. 8755ec3 Fixup spacing. by Mike Stump · 15 years ago
  93. c83ebb5 Fix spacing. by Mike Stump · 15 years ago
  94. 182f383 Ensure we only generate one terminate handler. by Mike Stump · 15 years ago
  95. 23e17c8 Remove obsolete FIXME and some dead fallback code. by Mike Stump · 15 years ago
  96. 20d3a53 Add terminate handler to cleanups on exceptional edges. by Mike Stump · 15 years ago
  97. 820bca4 Code gen for ObjCIsaExpr AST used as lvalue. (fixes radar 7457534). by Fariborz Jahanian · 15 years ago
  98. 7695809 Add terminate handler for copy constructors for thrown objects. WIP. by Mike Stump · 15 years ago
  99. 9b39c51 Break out code for reuse. WIP. by Mike Stump · 15 years ago
  100. 39406b1 Add throw support. WIP. by Mike Stump · 15 years ago