1. ac57e6e Add the Object Code Emitter class. Original patch by Aaron Gray, I did some by Bruno Cardoso Lopes · 16 years ago
  2. 0b1308f Factor some code out and support for Jump Table relocations by Bruno Cardoso Lopes · 16 years ago
  3. 45f5d64 shrinking down #includes by Bruno Cardoso Lopes · 16 years ago
  4. a5e0abd Support Constant Pool Sections Add section symbols to the symbol table by Bruno Cardoso Lopes · 16 years ago
  5. e39493e Use a default alignment for data and bss sections. by Bruno Cardoso Lopes · 16 years ago
  6. c236a34 Use different functions to emit the string and symbol tables. by Bruno Cardoso Lopes · 16 years ago
  7. 0d3193e Add more methods to gather target specific elf stuff by Bruno Cardoso Lopes · 16 years ago
  8. ae9163f Introduce new BinaryObject (blob) class, ELF Writer modified to use it. BinaryObject.h by Aaron Gray by Bruno Cardoso Lopes · 16 years ago
  9. c997d45 Support for ELF Visibility by Bruno Cardoso Lopes · 16 years ago
  10. 06bfa33 Delete comment and fix typo by Bruno Cardoso Lopes · 16 years ago
  11. a029a27 Simple ELF32/64 binary files can now be emitted for x86 and x86_64 without by Bruno Cardoso Lopes · 16 years ago
  12. f5b0c5a Remove elf specific info from ELFWriter.h to Elf.h. Code cleanup and more comments added by Bruno Cardoso Lopes · 16 years ago
  13. 4cb3143 Move ELFCodeEmiter stuff to new files by Bruno Cardoso Lopes · 16 years ago
  14. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  15. 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 16 years ago
  16. d6b7a24 Add support to the JIT for true non-lazy operation. When a call to a function by Nate Begeman · 16 years ago
  17. bb46f52 Add the private linkage. by Rafael Espindola · 17 years ago
  18. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  19. 02b73ab elf writer really wants the size of the global, not the size by Chris Lattner · 17 years ago
  20. 64f0300 The llvm::ELFWriter::EmitGlobal() method is calling the by Bill Wendling · 17 years ago
  21. 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
  22. ce4a70b Rename startFunctionStub to startGVStub since it's also used for GV non-lazy ptr. by Evan Cheng · 17 years ago
  23. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
  24. cb37188 Use raw_ostream throughout the AsmPrinter. by Owen Anderson · 17 years ago
  25. aafce77 Add CommonLinkage; currently tentative definitions by Dale Johannesen · 17 years ago
  26. 87c3d41 Fix a bug in the ELF writer that caused it to produce malformed by Dan Gohman · 17 years ago
  27. 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
  28. bfae831 Use PassManagerBase instead of FunctionPassManager for functions by Dan Gohman · 17 years ago
  29. afe6c2b Enable exception handling int JIT by Nicolas Geoffray · 18 years ago
  30. d102593 Use getPreferredAlignmentLog or getPreferredAlignment by Duncan Sands · 18 years ago
  31. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  32. ded2b0d Add explicit keywords, and fix a minor typo that they uncovered. by Dan Gohman · 18 years ago
  33. ca0ed74 Eliminate the remaining uses of getTypeSize. This by Duncan Sands · 18 years ago
  34. 1997473 Drop 'const' by Devang Patel · 18 years ago
  35. 3e15bf3 Use 'static const char' instead of 'static const int'. by Devang Patel · 18 years ago
  36. 794fd75 Do not use typeinfo to identify pass in pass manager. by Devang Patel · 18 years ago
  37. d2b7cec Generalize TargetData strings, to support more interesting forms of data. by Chris Lattner · 19 years ago
  38. 8f84f1f Add function to create a file writer. by Bill Wendling · 19 years ago
  39. 5d73a2a Use TargetELFWriterInfo class. by Bill Wendling · 19 years ago
  40. 58092e3 Teach TargetData to handle 'preferred' alignment for each target, and use by Chris Lattner · 19 years ago
  41. c904a5b Have the OutputBuffer take the is64Bit and isLittleEndian booleans. by Bill Wendling · 19 years ago
  42. 203d3e4 Changed to use the OutputBuffer instead of the methods in MachO and ELF writers. by Bill Wendling · 19 years ago
  43. e911615 Revert patch. by Bill Wendling · 19 years ago
  44. 157c4ee Use the methods in the TargetObjInfo object instead of internal methods. by Bill Wendling · 19 years ago
  45. e815619 Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are by Bill Wendling · 19 years ago
  46. bdc679d Converted to using llvm streams instead of <iostream>s by Bill Wendling · 19 years ago
  47. ce9a576 Match MachineCodeEmitter changes. by Evan Cheng · 19 years ago
  48. 3ed469c For PR786: by Reid Spencer · 19 years ago
  49. 07000c6 Refactor a bunch of includes so that TargetMachine.h doesn't have to include by Owen Anderson · 19 years ago
  50. b4432f3 Suck block address tracking out of targets into the JIT Emitter. This by Chris Lattner · 19 years ago
  51. a69571c Refactor TargetMachine, pushing handling of TargetData into the target-specific subclasses. This has one caller-visible change: getTargetData() now returns a pointer instead of a reference. by Owen Anderson · 19 years ago
  52. af1563f Change the BasicBlockAddrs map to be a vector, indexed by MBB number. by Chris Lattner · 19 years ago
  53. f75f9be Several related changes: by Chris Lattner · 19 years ago
  54. f5d438c Do not make the JIT memory manager manage the memory for globals. Instead by Chris Lattner · 19 years ago
  55. 43b429b Refactor the machine code emitter interface to pull the pointers for the current by Chris Lattner · 19 years ago
  56. b0cc79d Remove dead method by Chris Lattner · 19 years ago
  57. 37efe67 JumpTable support! What this represents is working asm and jit support for by Nate Begeman · 19 years ago
  58. 2e096c1 add these so I can be less naughty by Duraid Madina · 20 years ago
  59. ed0c4ec nuke blank line by Chris Lattner · 20 years ago
  60. 23c73a1 Fix VC++ constant truncation warning. by Jeff Cohen · 20 years ago
  61. fe66039 new is not a valid default anywhere, so make this pure virtual by Andrew Lenharth · 20 years ago
  62. 00b16889 Eliminate all remaining tabs and trailing spaces. by Jeff Cohen · 20 years ago
  63. 0589523 Only get the .bss and .data sections when needed instead of unconditionally. by Chris Lattner · 20 years ago
  64. 0003395 Refactor getSection() method to make it easier to use. by Chris Lattner · 20 years ago
  65. 5f48ff7 Major refactor of the ELFWriter code. Instead of building up one big by Chris Lattner · 20 years ago
  66. 46c5305 Add support for 64-bit elf files by Chris Lattner · 20 years ago
  67. 44213c9 VC++ demands that the function returns a value by Jeff Cohen · 20 years ago
  68. 0e18050 Clean up code, no functionality changes. by Chris Lattner · 20 years ago
  69. 5fe7b6e Emit a symbol table entry for each function we output to the ELF file. This by Chris Lattner · 20 years ago
  70. aa507db add code to emit the .text section to the section header. by Chris Lattner · 20 years ago
  71. 5acd120 Use a name mangler object to uniquify names and remove nonstandard by Chris Lattner · 20 years ago
  72. 4c47e3a Add support for emitting a .data section and .bss section. by Chris Lattner · 20 years ago
  73. 80ed8fa Add support for emitting the symbol table (and its string table) of the by Chris Lattner · 20 years ago
  74. 35f0a4f iniital checkin of ELFWriter implementation by Chris Lattner · 20 years ago