1. 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
  2. 97c573d Fix a thinko. MO is getOperand(i-1) so we don't have to adjust e. by Evan Cheng · 17 years ago
  3. e3066ab Eliminate a compile time warning. by Evan Cheng · 17 years ago
  4. a956255 Fix MOVrx, MOVsrl_flag, and MOVsra_flag encodings. by Evan Cheng · 17 years ago
  5. ffa6d96 Handle the rest of pseudo instructions. by Evan Cheng · 17 years ago
  6. 35b0bfd Don't forget to emit stubs for function GV's emitted in CONSTPOOL_ENTRY's. by Evan Cheng · 17 years ago
  7. 67fd91f Missed a break statement. by Evan Cheng · 17 years ago
  8. 148cad8 Fix pre- and post-indexed load / store encoding bugs. by Evan Cheng · 17 years ago
  9. 607f1b4 Address mode immediate offset has already been divided by 4. by Evan Cheng · 17 years ago
  10. 3f4924e Fix a VFP binary arithmetic instruction encoding bug. by Evan Cheng · 17 years ago
  11. 7063291 Fix address mode 3 immediate offset mode encoding. by Evan Cheng · 17 years ago
  12. 3c4a4ff Consolidate formats; fix FCMPED etc. encodings. by Evan Cheng · 17 years ago
  13. 80a1198 Fix VFP conversion instruction encodings. by Evan Cheng · 17 years ago
  14. d06d48d Fix encoding of single-precision VFP registers. by Evan Cheng · 17 years ago
  15. 580c0df VFP fld / fst immediate field is multiplied by 4. by Evan Cheng · 17 years ago
  16. 0a0ab13 Fix FMDRR encoding. by Evan Cheng · 17 years ago
  17. cb5201f Handle floating point constpool_entry's. by Evan Cheng · 17 years ago
  18. cd8e66a Encode VFP load / store instructions. by Evan Cheng · 17 years ago
  19. 78be83d Encode VFP conversion instructions. by Evan Cheng · 17 years ago
  20. 96581d3 Encode VFP arithmetic instructions. by Evan Cheng · 17 years ago
  21. 9ed2f80 Rename isGVNonLazyPtr to isIndirectSym to reflect how it will be used. by Evan Cheng · 17 years ago
  22. 3cc8223 Tell ARMJITInfo if codegen relocation is PIC. It changes how function stubs are generated. by Evan Cheng · 17 years ago
  23. 1033251 Fix relocation for calls to external symbols. by Evan Cheng · 17 years ago
  24. 05c356e Skip over two-address use operands. by Evan Cheng · 17 years ago
  25. e96a490 Handle ARM machine constantpool entry with non-lazy ptr. by Evan Cheng · 17 years ago
  26. 413a89f More code clean up. by Evan Cheng · 17 years ago
  27. 437c173 Get PIC jump table working. by Evan Cheng · 17 years ago
  28. 4df60f5 Jump table JIT support. Work in progress. by Evan Cheng · 17 years ago
  29. 8b59db3 Encode misc arithmetic instructions. by Evan Cheng · 17 years ago
  30. 97f48c3 Encode extend instructions; more clean up. by Evan Cheng · 17 years ago
  31. 12c3a53 - Improve naming consistency: Branch -> BrFrm, BranchMisc -> BrMiscFrm. by Evan Cheng · 17 years ago
  32. d87293c Remove opcode from instruction TS flags; add MOVCC support; fix addrmode3 encoding bug. by Evan Cheng · 17 years ago
  33. 9092213 Fix so_imm encoding bug; add support for MOVi2pieces. by Evan Cheng · 17 years ago
  34. fbc9d41 Fix encoding of multiple instructions with 3 src operands; also handle smmul, smmla, and smmls. by Evan Cheng · 17 years ago
  35. 83b5cf0 Encode pic load / store instructions; fix some encoding bugs. by Evan Cheng · 17 years ago
  36. edda31c Restructure ARM code emitter to use instruction formats instead of addressing modes to determine how to encode instructions. by Evan Cheng · 17 years ago
  37. 142c15e Debug output tweak. by Evan Cheng · 17 years ago
  38. 25e0478 Handle ARM machine constantpool entries. by Evan Cheng · 17 years ago
  39. 0a4b9dc Add binary encoding support for multiply instructions. Some blanks left to fill in, but the basics are there. by Jim Grosbach · 17 years ago
  40. 938b9d8 Use better data structure for ConstPoolId2AddrMap. by Evan Cheng · 17 years ago
  41. ba44df6 Actually make debug output understandable. by Evan Cheng · 17 years ago
  42. eb4ed4b Encode PICADD; some code clean up. by Evan Cheng · 17 years ago
  43. e53a5af I think we got non-machine specific constpool entries covered. by Evan Cheng · 17 years ago
  44. 0f28243 Correct way to handle CONSTPOOL_ENTRY instructions. by Evan Cheng · 17 years ago
  45. bc6d876 Support for constant islands in the ARM JIT. by Jim Grosbach · 17 years ago
  46. 3341262 Encode the conditional execution predicate when JITing. by Jim Grosbach · 17 years ago
  47. 9e729a2 Clarify naming and correct conditional so that CMP and CMN instructions get the Rn operand encoded properly by Jim Grosbach · 17 years ago
  48. 48b828f Indexing off by one resulted in errant encoding of source register for by Jim Grosbach · 17 years ago
  49. 016d34c by Jim Grosbach · 17 years ago
  50. d735b80 Switch the MachineOperand accessors back to the short names like by Dan Gohman · 17 years ago
  51. efd30ba Fix typo s/ther/there/ by Jim Grosbach · 17 years ago
  52. 057d0c3 Duh. Default to ARMCC::AL (always). by Evan Cheng · 17 years ago
  53. 7fd7ca4 Fix addrmode1 instruction encodings; fix bx_ret encoding. by Evan Cheng · 17 years ago
  54. 2aa0e64 Fix random abort. by Evan Cheng · 17 years ago
  55. e7de7e3 Typo. by Evan Cheng · 17 years ago
  56. be3034c Rely on instruction format to determine so_reg operand for now. by Evan Cheng · 17 years ago
  57. 05fc966 Revert 56176. All those instruction formats are still needed. by Evan Cheng · 17 years ago
  58. 55375a4 Accidentially flipped the condition. by Evan Cheng · 17 years ago
  59. 42d5ee06 Add debug dumps. by Evan Cheng · 17 years ago
  60. a964b7d Eliminate unnecessary instruction formats. by Evan Cheng · 17 years ago
  61. 49a9f29 Addrmode 1 S bit can be dynamically set. Look for CPSR def. by Evan Cheng · 17 years ago
  62. 5f1db7b Rewrite address mode 1 code emission routines. by Evan Cheng · 17 years ago
  63. ae73dc1 Tidy up several unbeseeming casts from pointer to intptr_t. by Dan Gohman · 17 years ago
  64. 7602e11 Revamp ARM JIT. by Evan Cheng · 17 years ago
  65. 7c1c261 Remove bunch of gcc 4.3-related warnings from Target by Anton Korobeynikov · 17 years ago
  66. 6f0d024 Rename MRegisterInfo to TargetRegisterInfo. by Dan Gohman · 18 years ago
  67. 749c6f6 rename TargetInstrDescriptor -> TargetInstrDesc. by Chris Lattner · 18 years ago
  68. 6924430 Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects by Chris Lattner · 18 years ago
  69. 8aa797a Add new shorter predicates for testing machine operands for various types: by Chris Lattner · 18 years ago
  70. 9a1ceae Use MachineOperand::getImm instead of MachineOperand::getImmedValue. Likewise setImmedValue -> setImm by Chris Lattner · 18 years ago
  71. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  72. 9c1a382 Comments added. It now generates V5TE multiply instructions. However, it is still necessary to model PUWLSH bits more clearly. by Raul Herbster · 18 years ago
  73. 0ff94f7 Initial JIT support for ARM by Raul Fernandes Herbster. by Evan Cheng · 18 years ago
  74. c3dbe70 no email addrs in file headers by Chris Lattner · 18 years ago
  75. 148b6a4 Initial ARM JIT support by Raul Fernandes Herbster. by Evan Cheng · 18 years ago