1. 241ab47 add support for folding immediates into stores when they by Chris Lattner · 17 years ago
  2. 438949a fold immediates into stores in simple cases, this produces diffs like this: by Chris Lattner · 17 years ago
  3. d53886b fold compare of null pointer into compare with 0. by Chris Lattner · 17 years ago
  4. 160f6cc Some minor cleanups: by Chris Lattner · 17 years ago
  5. 45ac17f Use switch on VT instead of Type* comparisons. by Chris Lattner · 17 years ago
  6. 51ccb3d Use X86FastEmitCompare for FCMP_OEQ and FCMP_UNE: it doesn't by Chris Lattner · 17 years ago
  7. 9a08a61 refactor compare emission out into a new X86FastEmitCompare method, by Chris Lattner · 17 years ago
  8. 0e13c78 Fold immediates into compares when possible, producing "cmp $4, %eax" instead of by Chris Lattner · 17 years ago
  9. 709d829 more minor refactoring of X86SelectBranch, no functionality change. by Chris Lattner · 17 years ago
  10. 871d246 factor buildmi calls in X86SelectBranch by Chris Lattner · 17 years ago
  11. 8aeeeb9 factor some more BuildMI's in X86SelectCmp by Chris Lattner · 17 years ago
  12. 54aebde factor some BuildMI calls, no functionality change. by Chris Lattner · 17 years ago
  13. dd5b58a FastISel support for exception-handling constructs. by Dan Gohman · 17 years ago
  14. 8c3f8b6 Add MBB successors and physreg Uses in the same order that by Dan Gohman · 17 years ago
  15. 145b828 Instead of emitting an implicit use for the super-register of by Dan Gohman · 17 years ago
  16. 4e6ed5e Fix X86FastISel to handle dynamic allocas that have avoided by Dan Gohman · 17 years ago
  17. d98d620 Optimize conditional branches in X86FastISel. This replaces by Dan Gohman · 17 years ago
  18. 5bbee4b Work around an interaction between fast-isel and regalloc=local. The by Dan Gohman · 17 years ago
  19. 6d4b052 Split x86's ADJCALLSTACK instructions into 32-bit and 64-bit forms. by Dan Gohman · 17 years ago
  20. 5396c99 Fix X86FastISel's output for x86-32 PIC constant pool addresses. by Dan Gohman · 17 years ago
  21. 57c3dac Move the GlobalBaseReg field out of X86ISelDAGToDAG.cpp by Dan Gohman · 17 years ago
  22. 9b66d73 Disable all x87 usage, including f32 and f64 when the subtarget by Dan Gohman · 17 years ago
  23. 7962e85 Fix an over-pessimization about GlobalVariable addresses in X86FastISel. by Dan Gohman · 17 years ago
  24. 09aae46 Fix X86FastISel's address folding to check displacement values for overflow. by Dan Gohman · 17 years ago
  25. 97135e1 Factor out the code for determining when symblic addresses by Dan Gohman · 17 years ago
  26. 5af29c2 Disable support for x86_f80 in X86FastISel. Supporting it would by Dan Gohman · 17 years ago
  27. 789ce77 Fix a bug in which address displacements were being added to the by Dan Gohman · 17 years ago
  28. 0598866 Large mechanical patch. by Devang Patel · 17 years ago
  29. 2cc3aa4 PIC support in X86FastISel. by Dan Gohman · 17 years ago
  30. d57dd5f Arrange for FastISel code to have access to the MachineModuleInfo by Dan Gohman · 17 years ago
  31. 290ae03 Change the calling convention used when tail call optimization is enabled from CC_X86_32_TailCall to CC_X86_32_FastCC. by Arnold Schwaighofer · 17 years ago
  32. 743922e Fold immediates into X86 shifts with fast isel. This generates: by Chris Lattner · 17 years ago
  33. 7e8ef60 Fix a FastISel GlobalVariable CSE bug. by Dan Gohman · 17 years ago
  34. 2ff7fd1 Refactor X86SelectConstAddr, folding it into X86SelectAddress. This by Dan Gohman · 17 years ago
  35. 3589308 Address-mode folding for X86FastISel. It's pretty basic, but it by Dan Gohman · 17 years ago
  36. 1fbc3cd Simplify this code. The FastISel class has its own TD member. by Dan Gohman · 17 years ago
  37. b5b6ec6 FastISel: For calls, prefer using the callee's address as a constant by Dan Gohman · 17 years ago
  38. ac34a00 Fix a bug in ANY_EXTEND handling that was breaking 403.gcc on X86-64 in fast isel. by Owen Anderson · 17 years ago
  39. b636913 If ISD::ANY_EXTEND fails, try ISD::ZERO_EXTEND and ISD::SIGN_EXTEND before giving up. This fixes 445.gobmk on by Owen Anderson · 17 years ago
  40. 78efce6 X86FastISel support for double->float and float->double casts. by Dan Gohman · 17 years ago
  41. 0586d91 Add X86FastISel support for static allocas, and refences by Dan Gohman · 17 years ago
  42. 59fbc80 Fix a constant lowering bug. Now we can do load and store instructions with funky getelementptr embedded in the address operand. by Evan Cheng · 17 years ago
  43. debdea0 Handle calls which produce i1 results: promote to i8 but and it with 1 to get the low bit. by Evan Cheng · 17 years ago
  44. 863890e Fix copy+pastos in comments. by Dan Gohman · 17 years ago
  45. 24e3a90 Add support to extend call operands when needed. Enable x86 fastisel call support. by Evan Cheng · 17 years ago
  46. f3d4efe Initial fastisel call support for C, Fast, and X86_FastCall calling conventions. It's meant to handle "simple" calls, i.e. no byval, structret, etc. It doesn't support multi-result returns either. by Evan Cheng · 17 years ago
  47. 10a8d9c Handle x86 truncate to i8 with target hook for now. by Evan Cheng · 17 years ago
  48. 3b217c6 Fix constant pool loads, and remove broken versions of addConstantPoolReference. by Owen Anderson · 17 years ago
  49. f58cb6d Fix X86FastISel's shift and select code to reject illegal types. by Dan Gohman · 17 years ago
  50. 31d2691 Fix the opcodes used by X86FastISel for shifts and conditional moves. by Dan Gohman · 17 years ago
  51. 0de588f Factor out code that emits load and store instructions. by Evan Cheng · 17 years ago
  52. 9c7216f Rename method. by Owen Anderson · 17 years ago
  53. c39f4db X86FastISel support for shifts and conditional moves. by Dan Gohman · 17 years ago
  54. 4f22bb0 Check a comparion's operand type for legality before expanding its operands. by Dan Gohman · 17 years ago
  55. f52550b Fix X86FastISel code for comparisons and conditional branches by Dan Gohman · 17 years ago
  56. d89ae99 X86FastISel support for conditional branches. by Dan Gohman · 17 years ago
  57. 95267a1 Add initial support for selecting constant materializations that require constant by Owen Anderson · 17 years ago
  58. 6e3f05f X86FastISel support for ICmpInst and FCmpInst. by Dan Gohman · 17 years ago
  59. 79924eb Fix the ordering of operands to the store (inverted relative to LLVM IR), and fix the testcase. by Owen Anderson · 17 years ago
  60. a3971df Add a first attempt at implementing stores for X86 fast isel using target hooks. by Owen Anderson · 17 years ago
  61. 373d50a Load from GV stub should be locally CSE'd. by Evan Cheng · 17 years ago
  62. 3df24e6 Create HandlePHINodesInSuccessorBlocksFast, a version of by Dan Gohman · 17 years ago
  63. 8b19e56 Add X86 target hook to implement load (even from GlobalAddress). by Evan Cheng · 17 years ago
  64. 88e3041 Unbreak fast isel. by Evan Cheng · 17 years ago
  65. c3f44b0 Let tblgen only generate fastisel routines, not the class definition. This makes it easier for targets to define its own fastisel class. by Evan Cheng · 17 years ago
  66. 667d8f7 Add initial support for fast isel of instructions that have inputs pinned to physical registers. by Owen Anderson · 17 years ago
  67. 99b2182 Add a target callback for FastISel. by Dan Gohman · 17 years ago
  68. 22bb311 Factor out the predicate check code from DAGISelEmitter.cpp by Dan Gohman · 17 years ago
  69. 1adf1b0 Instantiate FastISel for X86. by Dan Gohman · 17 years ago