1. c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  2. 7d696d8 Convert more assert(0)+abort() -> LLVM_UNREACHABLE, by Torok Edwin · 16 years ago
  3. 752e928 Cleanup MachO writer and code emitter. Fix 80 cols problems, remove extra spaces, shrink down includes and move some methods out-of-line by Bruno Cardoso Lopes · 16 years ago
  4. ac57e6e Add the Object Code Emitter class. Original patch by Aaron Gray, I did some by Bruno Cardoso Lopes · 16 years ago
  5. a321dcd Move structures and classes into header files, providing two new headers and by Bruno Cardoso Lopes · 16 years ago
  6. af90a1c Use uint8_t and int32_t in {JIT,Machine}CodeEmiters by Bruno Cardoso Lopes · 16 years ago
  7. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  8. 4dc2b39 It makes no sense to have a ODR version of common linkage, so remove it. by Duncan Sands · 16 years ago
  9. 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 16 years ago
  10. d6b7a24 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 16 years ago
  11. bb46f52 Add the private linkage. by Rafael Espindola · 17 years ago
  12. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  13. a33649e Fix some release-assert warnings by Chris Lattner · 17 years ago
  14. 5788d1a Fix MachineCodeEmitter to use uintptr_t instead of intptr_t. This avoids some overflow issues. Patch by Thomas Jablin. by Evan Cheng · 17 years ago
  15. ce4a70b Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ptr. by Evan Cheng · 17 years ago
  16. 7111b02 Rename APFloat::convertToAPInt to bitcastToAPInt to by Dale Johannesen · 17 years ago
  17. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
  18. cb37188 Use raw_ostream throughout the AsmPrinter. by Owen Anderson · 17 years ago
  19. 399101a Use isSingleValueType instead of isFirstClassType to by Dan Gohman · 17 years ago
  20. aafce77 Add CommonLinkage; currently tentative definitions by Dale Johannesen · 17 years ago
  21. 51cc3c1 Correlate stubs with functions in JIT: when emitting a stub, the JIT tells the memory manager which function by Nicolas Geoffray · 17 years ago
  22. bfae831 Use PassManagerBase instead of FunctionPassManager for functions by Dan Gohman · 17 years ago
  23. ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 17 years ago
  24. afe6c2b Enable exception handling int JIT by Nicolas Geoffray · 17 years ago
  25. d102593 Use getPreferredAlignmentLog or getPreferredAlignment by Duncan Sands · 18 years ago
  26. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  27. ca0ed74 Eliminate the remaining uses of getTypeSize. This by Duncan Sands · 18 years ago
  28. 9d5f456 Revise previous patch per review comments. by Dale Johannesen · 18 years ago
  29. 3f6eb74 Add APInt interfaces to APFloat (allows directly by Dale Johannesen · 18 years ago
  30. 43421b3 Next round of APFloat changes. by Dale Johannesen · 18 years ago
  31. 1997473 Drop 'const' by Devang Patel · 18 years ago
  32. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
  33. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
  34. d7f3de6 Remove unneeded header file. by Reid Spencer · 18 years ago
  35. af80638 http://llvm.org/bugs/show_bug.cgi?id=1237 by Nate Begeman · 18 years ago
  36. a0a6278 Fix a typo, thanks Bill! by Nate Begeman · 18 years ago
  37. fec910c More Mach-O writer improvements. by Nate Begeman · 18 years ago
  38. 9d6565a For PR1195: by Reid Spencer · 18 years ago
  39. d2b7cec Generalize TargetData strings, to support more interesting forms of data. by Chris Lattner · 18 years ago
  40. 7f6b9d2 eliminate temporary vectors. by Chris Lattner · 18 years ago
  41. b1919e2 Privatize StructLayout::MemberOffsets, adding an accessor by Chris Lattner · 18 years ago
  42. 8f84f1f Add function to create a file writer. by Bill Wendling · 19 years ago
  43. c2b2d6a Fix a fixme by correctly calculating preferred alignments for functions, by Nate Begeman · 19 years ago
  44. 886b412 Pass in non-Mach-O-specific parameters to the GetTargetRelocation method. by Bill Wendling · 19 years ago
  45. 1257c85 Properly support cstrings by Nate Begeman · 19 years ago
  46. 6635f35 Handle multiple functions, properly mangle symbols, and fix support for by Nate Begeman · 19 years ago
  47. 2b72182 Make ivars private and use getters. Have the MachOWriter return "Mach-O by Bill Wendling · 19 years ago
  48. a4b7324 Use the TargetMachOWriterInfo class to get this information. by Bill Wendling · 19 years ago
  49. 58092e3 Teach TargetData to handle 'preferred' alignment for each target, and use by Chris Lattner · 19 years ago
  50. c904a5b Have the OutputBuffer take the is64Bit and isLittleEndian booleans. by Bill Wendling · 19 years ago
  51. 203d3e4 Changed to use the OutputBuffer instead of the methods in MachO and ELF writers. by Bill Wendling · 19 years ago
  52. e911615 Revert patch. by Bill Wendling · 19 years ago
  53. 157c4ee Use the methods in the TargetObjInfo object instead of internal methods. by Bill Wendling · 19 years ago
  54. a54b7cb For PR1064: by Reid Spencer · 19 years ago
  55. 4fe16d6 Rename BoolTy as Int1Ty. Patch by Sheng Zhou. by Reid Spencer · 19 years ago
  56. 4785781 For PR950: by Reid Spencer · 19 years ago
  57. bfaaaa6 Properly mangles symbol table names by Nate Begeman · 19 years ago
  58. bcd2498 Removed more <iostream> includes by Bill Wendling · 19 years ago
  59. ce9a576 Match MachineCodeEmitter changes. by Evan Cheng · 19 years ago
  60. 019f851 Behold, more work on relocations. Things are looking pretty good now. by Nate Begeman · 19 years ago
  61. 94be248 First pass at supporting relocations. Relocations are written correctly to by Nate Begeman · 19 years ago
  62. 9442599 improve compat with certain versions of GCC (on cygwin?) by Chris Lattner · 19 years ago
  63. d2030e6 Properly size the string table, and emit symbol table and string table by Nate Begeman · 19 years ago
  64. f8f2c5a Get closer to handling globals correctly. We now generally get them in the by Nate Begeman · 19 years ago
  65. eb883af Initial checkin of the Mach-O emitter. There's plenty of fixmes, but it by Nate Begeman · 19 years ago