1. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  2. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
  3. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago
  4. 7b30b1c A few corrections to the expr constant work. Not enabled at the moment. by Eli Friedman · 16 years ago
  5. aa43256 More expr constant work. (Off by default). by Anders Carlsson · 16 years ago
  6. 6ee7aa1 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 16 years ago
  7. 5ea7d07 More constant expr work. by Anders Carlsson · 16 years ago
  8. 531a550 daniel prefers completed thoughts. by Chris Lattner · 16 years ago
  9. 10cac6f Start implementing support for @synchonized with the darwin ObjC API. by Chris Lattner · 16 years ago
  10. 5a9a457 Check in code that uses tryEvaluate for emitting constant exprs (not used yet). by Anders Carlsson · 16 years ago
  11. e3daa76 Handle padding in the constant CFString struct. Fixes PR3046. by Anders Carlsson · 16 years ago
  12. d114ade Use IgnoreParenCasts. No functionality change. by Anders Carlsson · 16 years ago
  13. 1385f8e Fix silly bug spotted by Daniel Dunbar by Anders Carlsson · 16 years ago
  14. 0b685a5 Handle complex return values. by Anders Carlsson · 16 years ago
  15. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  16. f3edc2f Easy IRgen improvement for bitfields, don't emit x >> 0. by Daniel Dunbar · 16 years ago
  17. c22d665 Supply finished flag to EmitBlock for common statements which use by Daniel Dunbar · 16 years ago
  18. 9615ecb Normalize many BasicBlock names. by Daniel Dunbar · 16 years ago
  19. a0c21a8 Add IsFinished arg to EmitBlock. by Daniel Dunbar · 16 years ago
  20. 781d7ca For if blocks with no else, name the join block ifend instead of the by Daniel Dunbar · 16 years ago
  21. 36bc14c Quick fix for crash in IRgen when we can tryEvaluate a condition to by Daniel Dunbar · 16 years ago
  22. 8787530 Start a README.txt of possible optimizations to do in IRgen. by Daniel Dunbar · 16 years ago
  23. 09b1489 Handle ?: in EmitBranchOnBoolExpr. by Daniel Dunbar · 16 years ago
  24. be65abc Rename ?: operator blocks to cond.true and cond.false (I don't know by Daniel Dunbar · 16 years ago
  25. 4bc0455 Comment/indentation fix. by Daniel Dunbar · 16 years ago
  26. 9802a51 Lower ?: into select when the selected values are cheap and side-effect-free. by Chris Lattner · 16 years ago
  27. f7b5ea9 emit better codegen for ||/&&, shrinking expr.ll by another 240 lines. by Chris Lattner · 16 years ago
  28. 20eb09d use ConstantFoldsToSimpleInteger instead of code emission to do by Chris Lattner · 16 years ago
  29. 0912425 IRgen improvements on unreachable code: by Daniel Dunbar · 16 years ago
  30. 552f4c4 Handle Unary ! in EmitBranchOnBoolExpr, so that we can efficiently by Chris Lattner · 16 years ago
  31. 035cf42 Use EmitBranchOnBoolExpr in VisitConditionalOperator. This by Chris Lattner · 16 years ago
  32. 31a0984 Move EmitBranchOnBoolExpr and ConstantFoldsToSimpleInteger to by Chris Lattner · 16 years ago
  33. 9bc47e2 Make emission of 'if' conditions much more sophisticated when we by Chris Lattner · 16 years ago
  34. 746e03e Clean up some code to use isZero instead of calling getZExtValue. by Chris Lattner · 16 years ago
  35. 1fef965 Use createBasicBlock here too. by Daniel Dunbar · 16 years ago
  36. 29ea672 Disable generation of basic block names in NDEBUG mode. by Daniel Dunbar · 16 years ago
  37. a448fb2 Rework IRgen invariant w.r.t. current insert point. by Daniel Dunbar · 16 years ago
  38. 5e08ad3 Change EmitBranch to always clear the insert point to clarify irgen invariants. by Daniel Dunbar · 16 years ago
  39. f5bd45c Emit debug region end in unified return block. by Daniel Dunbar · 16 years ago
  40. f1c9c09 Codegen support for fastcall & stdcall CC. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  41. c657e92 Try to not emit the dead side of ?: if the condition is a constant. by Chris Lattner · 16 years ago
  42. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 16 years ago
  43. d57a871 Add CodeGenFunction::EmitBranch. by Daniel Dunbar · 16 years ago
  44. 0946ccd short circuit && and || when possible. This substantially reduces by Chris Lattner · 16 years ago
  45. 62b72f6 Make codegen smart enough to not emit the dead side of an if whose by Chris Lattner · 16 years ago
  46. 3cc5c40 implement debug info for typeof() by Chris Lattner · 16 years ago
  47. 824e3bd Add CodeGenFunction::EmitDummyBlock for marking places where we make by Daniel Dunbar · 16 years ago
  48. f84dcda Remove CodeGenFunction::StartBlock. by Daniel Dunbar · 16 years ago
  49. 55e8742 Centralize basic block creation in CodeGenFunction::createBasicBlock. by Daniel Dunbar · 16 years ago
  50. 526d927 don't preserve names on IR instructions. This matches llvm-gcc's behavior and by Chris Lattner · 16 years ago
  51. f2528e0 Fix even more bugs in debug info support: by Chris Lattner · 16 years ago
  52. 9c85ba3 reimplement debug info generation in terms of DebugInfo.h instead of by Chris Lattner · 16 years ago
  53. ce179ab Support named operands in inline asm statements. by Anders Carlsson · 16 years ago
  54. 960627d Avoid redundant cast<>s / simplify type dispatch. by Daniel Dunbar · 16 years ago
  55. d7f6050 "Fix" PR3021, don't crash on generating record types when we can't by Daniel Dunbar · 16 years ago
  56. 21ef7ae LinkageSpecDecl is c++ specific, move it to DeclCXX by Chris Lattner · 16 years ago
  57. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 16 years ago
  58. ddf7cac Implement lowering of va_arg in clang directly. (This is 32-bit X86 only for now). by Anders Carlsson · 16 years ago
  59. d9641f8 Fix bug in va_copy by Anders Carlsson · 16 years ago
  60. 86cd8af privatize some methods. by Chris Lattner · 16 years ago
  61. 45d196b Move IRBuilder type definition to common file. - No functionality change. by Daniel Dunbar · 16 years ago
  62. 31fc07d Made the mechanism of defining preprocessor defs for maxint, ptrdiff_t, wchar by Sanjiv Gupta · 16 years ago
  63. 9881cf0 Debug info: Bug fix, function types should always include the return type. by Daniel Dunbar · 16 years ago
  64. bea06e4 Quick fix for PR2950, infinite loop generating debug info for by Daniel Dunbar · 16 years ago
  65. 3845f86 Formatting tweaks. - No functionality change. by Daniel Dunbar · 16 years ago
  66. 0c0e7a6 NeXT: Emit protocol objects lazily. by Daniel Dunbar · 16 years ago
  67. 6a0b984 Fix for PR2966: va_start/va_end use the *address* of the by Eli Friedman · 16 years ago
  68. 2149470 Don't run the verifier as part of IRgen, this is now down (per module) by Daniel Dunbar · 16 years ago
  69. af668b0 Add attribute always_inline support. by Daniel Dunbar · 16 years ago
  70. be20bb5 make codegen reject initializes with designators, like this: by Chris Lattner · 16 years ago
  71. d2f4e5e CMake: Builds and installs clang binary and libs (no docs yet). It by Oscar Fuentes · 16 years ago
  72. 25f51dd Don't crash on invalid source locations in CGDebugInfo::getOrCreateCompileUnit. by Daniel Dunbar · 16 years ago
  73. 2104bf9 Map compilation units using FileEntry pointers instead of by Daniel Dunbar · 16 years ago
  74. d8c0ea1 Add GetModule accessor to ModuleBuilder by Daniel Dunbar · 16 years ago
  75. 8e9bebd Preliminary support for function overloading by Douglas Gregor · 16 years ago
  76. 2284ac9 Debug info bug fix, function start wasn't getting generated correctly by Daniel Dunbar · 16 years ago
  77. 961b03c Emit more descriptive unsupported error message on dot-syntax use of super. by Daniel Dunbar · 16 years ago
  78. f951719 Add FIXME about potential problem in how property ref lvalues are handled. by Daniel Dunbar · 16 years ago
  79. 662b71e Lift CodeGenFunction::EmitPredefinedFunctioName out of EmitPredefinedLValue. by Daniel Dunbar · 16 years ago
  80. 5fabf9d Add option argument to GetAddrOfConstantString to use for name of by Daniel Dunbar · 16 years ago
  81. 281f55c Emit error unsupported when asm string conversion fails instead of assert. by Daniel Dunbar · 16 years ago
  82. 0d504c1 Remove unneeded EncodingRecordTypes argument to getObjCEncodingForType. by Daniel Dunbar · 16 years ago
  83. d96b35b More Obj-C type encoding improvements. by Daniel Dunbar · 16 years ago
  84. 66031a5 Change CGDebugInfo::setLocation to just ignore invalid locations. This by Daniel Dunbar · 16 years ago
  85. 5669e57 NeXT: Use objc_msgSend_fpret for calling functions which return by Daniel Dunbar · 16 years ago
  86. 5273f51 Quick patch for PR2784, assert genereting debug info for opaque by Daniel Dunbar · 16 years ago
  87. bc4f403 Added pinsrd, pinsrq, and some other vector intrinsics by Mon P Wang · 16 years ago
  88. 35bc082 Simplify handling of struct/union/class tags. by Argyrios Kyrtzidis · 16 years ago
  89. 6b1da0e Lift out ABIInfo abstract base class. by Daniel Dunbar · 16 years ago
  90. 3304e55 silence release-assert warnings. by Chris Lattner · 16 years ago
  91. f02e9dd Lift EmitTargetBuiltinExpr out of EmitBuiltinExpr. by Daniel Dunbar · 16 years ago
  92. ee5a700 Adjust calls to APFloat conversion for new interface. by Dale Johannesen · 16 years ago
  93. 39741ce Use DeclStmt::getSolitaryDecl() instead of DeclStmt::getDecl() when processing the Decl of an Objective-C foreach statement. by Ted Kremenek · 16 years ago
  94. de3b8fb Use DeclStmt::getSolitaryDecl() instead of DeclStmt::getDecl() when processing the Decl of a @catch statement. by Ted Kremenek · 16 years ago
  95. e4ea1f4 In EmitDeclStmt: use DeclStmt::const_decl_iterator instead of walking the scoped decl chain. by Ted Kremenek · 16 years ago
  96. 506ff88 Make sema and codegen allow __builtin___CFStringMakeConstantString as a valid by Chris Lattner · 16 years ago
  97. 564ea2a always try to fold a builtin before emitting it. In the future by Chris Lattner · 16 years ago
  98. 9e62171 Move handling of __builtin_nan("") out of CGBuiltin.cpp into ExprConstant.cpp by Chris Lattner · 16 years ago
  99. 1f32999 remove some code where CGBuiltin folds constants, and use tryEvaluate to by Chris Lattner · 16 years ago
  100. f6b24ea instead of making codegen try to know about all of the builtins to generate by Chris Lattner · 16 years ago