1. 78c794a [X86] Fix several places that weren't passing what they though they were to MachineInstr::print by Craig Topper · 6 years ago
  2. 85bd397 [IR] Refactor attribute methods in Function class (NFC) by Evandro Menezes · 7 years ago
  3. edbf06a [AsmPrinter] Remove hidden flag -print-schedule. by Andrea Di Biagio · 7 years ago
  4. 2946cd7 Update the file headers across all of the LLVM projects in the monorepo by Chandler Carruth · 7 years ago
  5. cb7d968 [MachineCombiner][NFC] Prevent dereferencing past-the-end object in an MRI container by Gerolf Hoflehner · 7 years ago
  6. d34e60c Rename DEBUG macro to LLVM_DEBUG. by Nicola Zaghen · 7 years ago
  7. 0d7df36 [TargetSchedule] shrink interface for init(); NFCI by Sanjay Patel · 8 years ago
  8. 2aeb930 Revert r327721 "This patch fixes the invalid usage of OptSize in Machine Combiner." by Reid Kleckner · 8 years ago
  9. a0cd09d This patch fixes the invalid usage of OptSize in Machine Combiner. by Andrew V. Tischenko · 8 years ago
  10. 0838919 The final step to close D41278 [MachineCombiner] Improve debug output (NFC). by Andrew V. Tischenko · 8 years ago
  11. b65b078 (NFC)[MachineCombiner] Improve debug output. by Andrew V. Tischenko · 8 years ago
  12. 6805004 Fix unused variable warning in release mode. NFC. by Alexander Ivchenko · 8 years ago
  13. c68428b [MachineCombiner] Add check for optimal pattern order. by Florian Hahn · 8 years ago
  14. f1caa28 MachineFunction: Return reference from getFunction(); NFC by Matthias Braun · 8 years ago
  15. c468b64 Remove redundant includes from lib/CodeGen. by Michael Zolotukhin · 8 years ago
  16. 001c3dd [MachineCombiner] Add up latencies of all instructions in new pattern. by Florian Hahn · 8 years ago
  17. b3bde2e Fix a bunch more layering of CodeGen headers that are in Target by David Blaikie · 8 years ago
  18. 3f833ed Target/TargetInstrInfo.h -> CodeGen/TargetInstrInfo.h to match layering by David Blaikie · 8 years ago
  19. 194693e [MC] Split out register def/use idx calls to make debugging simpler. NFCI. by Simon Pilgrim · 8 years ago
  20. e52abba [MachineCombiner] Fix initialisation of LastUpdate for incremental update. by Florian Hahn · 8 years ago
  21. ceb4494 Recommit [MachineCombiner] Update instruction depths incrementally for large BBs. by Florian Hahn · 8 years ago
  22. 06e2a38 Revert r312719 "[MachineCombiner] Update instruction depths incrementally for large BBs." by Hans Wennborg · 8 years ago
  23. d39b8a3 [MachineCombiner] Update instruction depths incrementally for large BBs. by Florian Hahn · 8 years ago
  24. 1d2dc68 [NFC] Move DEBUG_TYPE macro below includes... by Jakub Kuderski · 8 years ago
  25. 1527baa CodeGen: Rename DEBUG_TYPE to match passnames by Matthias Braun · 8 years ago
  26. 17ce8a2 Fix up grammar in a comment. by Eric Christopher · 9 years ago
  27. 8da9691 Compile time decreasing in the case we're dealing with Machine Combiner. by Andrew V. Tischenko · 9 years ago
  28. a4976c6 MachineInstr: Remove parameter from dump() by Matthias Braun · 9 years ago
  29. 7779484 machine combiner: fix pretty printer by Sebastian Pop · 9 years ago
  30. e08d9c7 instr-combiner: sum up all latencies of the transformed instructions by Sebastian Pop · 9 years ago
  31. 117296c Use StringRef in Pass/PassManager APIs (NFC) by Mehdi Amini · 9 years ago
  32. 01b3a618 [MachineCombiner] Support for floating-point FMA on ARM64 (re-commit r267098) by Gerolf Hoflehner · 10 years ago
  33. 591c379 Revert r267098 - [MachineCombiner] Support for floating-point FMA on ARM64 by Daniel Sanders · 10 years ago
  34. b32f11f [MachineCombiner] Support for floating-point FMA on ARM64 by Gerolf Hoflehner · 10 years ago
  35. b550cb1 [NFC] Header cleanup by Mehdi Amini · 10 years ago
  36. 272a2bc Minor code cleanup. NFC. by Junmo Park · 10 years ago
  37. e59c8af Reapply "CodeGen: Use references in MachineTraceMetrics::Trace, NFC" by Duncan P. N. Exon Smith · 10 years ago
  38. 0cc90a9 Revert "CodeGen: Use references in MachineTraceMetrics::Trace, NFC" by Duncan P. N. Exon Smith · 10 years ago
  39. 83d3476 CodeGen: Use references in MachineTraceMetrics::Trace, NFC by Duncan P. N. Exon Smith · 10 years ago
  40. 33ec5db less indent; NFCI by Sanjay Patel · 10 years ago
  41. 766589e add 'MustReduceDepth' as an objective/cost-metric for the MachineCombiner by Sanjay Patel · 10 years ago
  42. 387e66e replace MachineCombinerPattern namespace and enum with enum class; NFCI by Sanjay Patel · 10 years ago
  43. 083ca9b Fix Clang-tidy modernize-use-nullptr warnings in source directories and generated files; other minor cleanups. by Hans Wennborg · 10 years ago
  44. acd4bae include equal sign in debug equations; NFC by Sanjay Patel · 10 years ago
  45. 74ca312 fix minsize detection: minsize attribute implies optimizing for size by Sanjay Patel · 10 years ago
  46. 17caf32 [MachineCombiner] Don't use the opcode-only form of computeInstrLatency by Hal Finkel · 10 years ago
  47. 924879a wrap OptSize and MinSize attributes for easier and consistent access (NFCI) by Sanjay Patel · 10 years ago
  48. e0fa8f2 [MachineCombiner] Work with itineraries by Hal Finkel · 10 years ago
  49. f00654e Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC) by Alexander Kornienko · 10 years ago
  50. e79b43a [x86] generalize reassociation optimization in machine combiner to 2 instructions by Sanjay Patel · 10 years ago
  51. cfe0393 name change: hasPattern() -> getMachineCombinerPatterns() ; NFC by Sanjay Patel · 10 years ago
  52. 70bc5f1 Fixed/added namespace ending comments using clang-tidy. NFC by Alexander Kornienko · 10 years ago
  53. 5714998 hoist loop-invariant; NFCI by Sanjay Patel · 10 years ago
  54. 85924e5 remove unnecessary casts; NFCI by Sanjay Patel · 10 years ago
  55. ccb8d5c punctuation policing; NFC by Sanjay Patel · 10 years ago
  56. a32fadd fix typo in comment; NFC by Sanjay Patel · 10 years ago
  57. f911484 fix typo in comment; NFC by Sanjay Patel · 10 years ago
  58. f69f4e4 use range-based for-loops; NFCI by Sanjay Patel · 10 years ago
  59. 70eb9c5 CodeGen: Canonicalize access to function attributes, NFC by Duncan P. N. Exon Smith · 11 years ago
  60. b1ca4e4 remove function names from comments; NFC by Sanjay Patel · 11 years ago
  61. 6b28077 fix typos; NFC by Sanjay Patel · 11 years ago
  62. 3d4276f The subtarget is cached on the MachineFunction. Access it directly. by Eric Christopher · 11 years ago
  63. 1175945 Change MCSchedModel to be a struct of statically initialized data. by Pete Cooper · 11 years ago
  64. fe2c11f [MachineCombiner] Removal of dangling DBG_VALUES after combining [20598] by Gerolf Hoflehner · 11 years ago
  65. 97c383b MachineCombiner Pass for selecting faster instruction sequence on AArch64 by Gerolf Hoflehner · 11 years ago
  66. d913448 Remove the TargetMachine forwards for TargetSubtargetInfo based by Eric Christopher · 11 years ago
  67. befa215 CodeGen: silence a warning by Saleem Abdulrasool · 11 years ago
  68. 5e1207e MachineCombiner Pass for selecting faster instruction by Gerolf Hoflehner · 11 years ago