1. ae0ee03 instead of forcing blocks on by default, make them default to off, but let by Chris Lattner · 17 years ago
  2. 8fc4dfb replace useNeXTRuntimeAsDefault with a generic hook that allows targets by Chris Lattner · 17 years ago
  3. f509d73 More fallout from r58501: primary fix is some more corrections to make by Eli Friedman · 17 years ago
  4. 31fc07d Made the mechanism of defining preprocessor defs for maxint, ptrdiff_t, wchar by Sanjiv Gupta · 17 years ago
  5. d599850 Fix the definition of __builtin_va_list on PPC, which was set to the V4 ABI, not the by Chris Lattner · 17 years ago
  6. fd0269d Add basic FreeBSD target support, patch by Roman Divacky! by Chris Lattner · 17 years ago
  7. a7406d4 Add 'x' constraint character. by Anders Carlsson · 17 years ago
  8. fce0934 Add the 'y' assembler constraint. by Anders Carlsson · 17 years ago
  9. d29b630 miscellaneous cleanups by Chris Lattner · 17 years ago
  10. 12f0926 move __FLT_EVAL_METHOD__, __FLT_RADIX__, and __DECIMAL_DIG__ into by Chris Lattner · 17 years ago
  11. 5db552d it helps when I save the file before testing and committing. by Chris Lattner · 17 years ago
  12. e9863ca suck the rest of the FP macros out of the targets into the PP by Chris Lattner · 17 years ago
  13. 2db78dd start moving fp macros over by Chris Lattner · 17 years ago
  14. 0e5d4ef move a bunch more integer sizing out of target-specific code into by Chris Lattner · 17 years ago
  15. 9b53316 eliminate __USER_LABEL_PREFIX__ from the Targets.cpp file, start moving by Chris Lattner · 17 years ago
  16. 079f2c46 Handle minor version numbers in __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ by Chris Lattner · 17 years ago
  17. 86b76fc Add missing include for use of atoi. by Nick Lewycky · 17 years ago
  18. 8b30c41 The definition of __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ follows by Chris Lattner · 17 years ago
  19. 048dd94 define __PASCAL_STRINGS__ whenever -fpascal-strings is enabled. by Chris Lattner · 17 years ago
  20. 71af229 __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ is a darwin-specific #define by Chris Lattner · 17 years ago
  21. b55a42b Add x86_64 Linux target. - PR2824 by Daniel Dunbar · 17 years ago
  22. c0c0f70 Per PR2773, define __USER_LABEL_PREFIX__ for x86-32 Linux and Windows. by Eli Friedman · 17 years ago
  23. eac7aee Add dragonfly target support, patch by Sascha Wildner by Chris Lattner · 17 years ago
  24. dcb4a1a Add TargetInfo::useNeXTRuntimeAsDefault by Daniel Dunbar · 17 years ago
  25. 1e1bfd2 Remove duplicate define from Windows-x86 target. by Eli Friedman · 17 years ago
  26. 29a3050 Initial implementation of Windows x86 target; at the moment, the only by Eli Friedman · 17 years ago
  27. 0d4047b Add Linux x86-32 target. by Eli Friedman · 17 years ago
  28. ed855cb First cut at OS detection, taking advantage of the new generic targets. by Eli Friedman · 17 years ago
  29. e427798 Class reorg for PPC; shouldn't be any visible changes unless I messed by Eli Friedman · 17 years ago
  30. a9f5496 Class reorg for ARM. Shouldn't be any visible changes. by Eli Friedman · 17 years ago
  31. 01b8668 Class hierarchy reorg for Sparc architecture. While I was there, I by Eli Friedman · 17 years ago
  32. 618234a Reorganize the class hierarchy for x86 targets; shouldn't have any by Eli Friedman · 17 years ago
  33. 1e21189 Fix PR2627, support for Q constraint. by Chris Lattner · 17 years ago
  34. 364af81 Allow targets to override description string. by Sanjiv Gupta · 17 years ago
  35. fba5cb1 Move some ObjC preprocessor definitions into by Daniel Dunbar · 17 years ago
  36. f77ac86 Add LangOptions::NeXTRuntime. by Daniel Dunbar · 17 years ago
  37. acc5f3e More #include cleaning by Daniel Dunbar · 17 years ago
  38. 8b7c9fb Always define __SIZE_TYPE__ as long unsigned int. by Anders Carlsson · 17 years ago
  39. 9d29480 add x86 EDI register alias by Nuno Lopes · 17 years ago
  40. 551d5e9 move the linux predefined macro definition to the TargetInfo, where it really belongs by Nuno Lopes · 17 years ago
  41. 5aa4fd6 Make the width and alignment for long double consistent with the by Eli Friedman · 17 years ago
  42. bf0c9bd Make sure to define __sparc__ on Solaris; this should "fix" by Eli Friedman · 17 years ago
  43. 2553126 Missed an include. by Eli Friedman · 17 years ago
  44. d37f0b8 Minor correction for PPC targets. by Eli Friedman · 17 years ago
  45. 61538a7 Some small changes to make the target info a bit more accurate. by Eli Friedman · 17 years ago
  46. f291b10 set long/pointers to 64-bits on ppc64/x86-64 by Chris Lattner · 17 years ago
  47. 927686f parameterize pointer size/align better without doing virtual method calls in normal case. by Chris Lattner · 17 years ago
  48. 2621fd1 Add basic support for the pic-* target triples and add support for by Chris Lattner · 17 years ago
  49. ad487f4 Add some basic ARM asm constraints by Nate Begeman · 17 years ago
  50. d0c33d3 Fix pasto, thanks to Anders for pointing this out. by Chris Lattner · 17 years ago
  51. 393ff04 add arm support by Chris Lattner · 17 years ago
  52. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from Basic/Targets.cpp]
  53. 456e79d Add support for the 'N' constraint. by Anders Carlsson · 17 years ago
  54. 0eaed12 eliminate the TargetInfoImpl stuff, simplifying the target implementations. by Chris Lattner · 17 years ago
  55. 98be494 remove the source location arguments to various target query methods. by Chris Lattner · 17 years ago
  56. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
  57. 544f043 move this into the right file. by Chris Lattner · 17 years ago
  58. fb79f7c TargetInfo objects now own the TargetInfoImpl objects they refer to. by Ted Kremenek · 17 years ago
  59. 411219b A, q and Z are valid LLVM inline asm constraints. by Lauro Ramos Venancio · 17 years ago
  60. a5694b8 Convert x86 target specific inline asm constraints to LLVM. by Lauro Ramos Venancio · 17 years ago
  61. 2665867 Added classes SolarisTargetInfo and by Gabor Greif · 17 years ago
  62. b41edf9 Add more supported constraints. by Anders Carlsson · 17 years ago
  63. e0e3abc Fix the __SIZE_TYPE__ definition on x86_32. This fixes the alloca.c (wget 1.10.2) compilation. by Lauro Ramos Venancio · 18 years ago
  64. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
  65. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 18 years ago
  66. bbced58 Moved construction of TargetInfo objects out of the Driver by Ted Kremenek · 18 years ago[Renamed (96%) from Driver/Targets.cpp]
  67. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 18 years ago
  68. fb344d3 properly namespacify. by Chris Lattner · 18 years ago
  69. 564f1de Move target specific builtin IDs to TargetBuiltins.h so that they can be used by CGBuiltin.cpp by Anders Carlsson · 18 years ago
  70. 44fe49c Add getTargetPrefix to TargetInfo, to be used with target specific intrinsics. by Anders Carlsson · 18 years ago
  71. acc9f33 Modified: CreateTargetInfo(). Now takes Diagnostic* instead of Diagnostic&. by Ted Kremenek · 18 years ago
  72. 82817ba I'm apparently the only sad lonely ppc user left :) by Chris Lattner · 18 years ago
  73. 8448d38 Removed searching for "darwin" keyword in target triple. We don't really support by Ted Kremenek · 18 years ago
  74. aead472 For target processing, on non-Darwin systems instead of using the host triple, by Ted Kremenek · 18 years ago
  75. ae36076 Implemented initial support for "-triple" option to the clang driver. This by Ted Kremenek · 18 years ago
  76. d04c6e2 Add more semantic analysis for inline asm statements. by Anders Carlsson · 18 years ago
  77. 646b261 Forgot some X86 registers by Anders Carlsson · 18 years ago
  78. 3346ae6 Add tables for GCC register names and aliases. This will be used for inline asm by Anders Carlsson · 18 years ago
  79. 338128b fix problems with test/sema/Cocoa.m etc on non-apple machines. by Chris Lattner · 18 years ago
  80. fb5e5ba Add __builtin_va_list definitions for x86_64 and ppc64. by Anders Carlsson · 18 years ago
  81. d15fa82 speed up clang startup another 28% by avoiding std::vector<std::string> by Chris Lattner · 18 years ago
  82. c3f8937 non-apple targets should be like i386, not the mythical, bogus, linux target. by Chris Lattner · 18 years ago
  83. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 18 years ago
  84. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 18 years ago