- 96e2a99 GlobalsModRef: Ensure optnone+readonly/readnone attributes are respected by David Blaikie · 8 years ago
- 6ed2765 [SLP] Comment fix, NFC. by Alexey Bataev · 8 years ago
- 7656bbb [InstCombine] fold lshr (sext X), C1 --> zext (lshr X, C2) by Sanjay Patel · 8 years ago
- 931a427 [SLP] Comment fix, NFC. by Alexey Bataev · 8 years ago
- e38350c [Hexagon] Generate 'inbounds' GEPs in HexagonCommonGEP by Krzysztof Parzyszek · 8 years ago
- 1a53953 [DAG] Improve Store Merge candidate pruning. NFC. by Nirav Dave · 8 years ago
- 7ce6430 Fix builin_expect lowering bug PR33346 by Xinliang David Li · 8 years ago
- 41609fe Add BinaryFormat module definition by Eric Fiselier · 8 years ago
- e156d99 [mssa] Fix case when there is no definition in a block prior to an inserted use. by Alina Sbirlea · 8 years ago
- 57caaec [CGP] avoid zext/trunc of a memcmp expansion compare by Sanjay Patel · 8 years ago
- 8848866 [AMDGPU][MC] Corrected error message for s_waitcnt helpers by Dmitry Preobrazhensky · 8 years ago
- 619317e LowerTypeTests: Generate simpler IR for br(llvm.type.test, then, else). by Peter Collingbourne · 8 years ago
- f16db3c [CGP] pass size as param in MemCmpExpansion; NFCI by Sanjay Patel · 8 years ago
- 6a60571 PR33331 - opt-viewer.py produces broken output for directories with spaces by Filipe Cabecinhas · 8 years ago
- eeb64a6 [mips][dsp] Modify repl.ph to accept signed immediate values by Petar Jovanovic · 8 years ago
- 5fbefa5 [CGP] pass size as param in MemCmpExpansion; NFCI by Sanjay Patel · 8 years ago
- 7e504a2 [CGP] getParent()->getParent() --> getFunction(); NFCI by Sanjay Patel · 8 years ago
- de839bd [X86] Add test to demonstrate inefficient lowering of v48i8 shuffle. by Guy Blank · 8 years ago
- 68ada83 [SystemZ] Propagate MachineMemOperands by Jonas Paulsson · 8 years ago
- f6be5d2 [DAG] Move SelectionDAG::isCommutativeBinOp to TargetLowering. by Simon Pilgrim · 8 years ago
- 55d2b21 AMDGPU/GlobalISel: Mark 32-bit G_SELECT as legal by Tom Stellard · 8 years ago
- 705f5b1 [x86] avoid flipping sign bits for vector icmp by using known bits by Sanjay Patel · 8 years ago
- 2b75145 [CGP] add helper function for generating compare of load pairs; NFCI by Sanjay Patel · 8 years ago
- aa74d10 [PowerPC] Eliminate integer compare instructions - vol. 5 by Nemanja Ivanovic · 8 years ago
- d33e35c [mips] do not use FastISel when -mxgot is present by Petar Jovanovic · 8 years ago
- 82962d8 [ARM] Use FixupKind variable in processFixupValue (cleanup, NFC). by Florian Hahn · 8 years ago
- 77c163d [CGP] fix formatting in MemCmpExpansion; NFC by Sanjay Patel · 8 years ago
- f6257e9 [ARM] GlobalISel: Purge G_SEQUENCE by Diana Picus · 8 years ago
- 3204344 [PowerPC] Eliminate integer compare instructions - vol. 3 by Nemanja Ivanovic · 8 years ago
- 5a99874 [FileCheck] Don't scan past the closing CHECK-DAG for CHECK-NOT inside CHECK-DAG by Benjamin Kramer · 8 years ago
- f5c9f95 [ARM] GlobalISel: Support G_XOR by Diana Picus · 8 years ago
- b47b55f evert "[mips] Fix test mips64fpldst.ll with machine verifier enabled" by Simon Dardis · 8 years ago
- 39f72a5 [X86][SSE] Fix an issue with PEXTRW/PEXTRB indices during shuffle combining by Simon Pilgrim · 8 years ago
- acf8740 [ARM] GlobalISel: Support G_OR by Diana Picus · 8 years ago
- a7783d7 [Linker] Remove llc usage from link-arm-and-thumb.ll test case. by Florian Hahn · 8 years ago
- e85cbac [ARM] GlobalISel: Support G_AND by Diana Picus · 8 years ago
- 4d6ca73 [Linker] Remove warning when linking ARM and Thumb IR modules. by Florian Hahn · 8 years ago
- f7b3252 [ARM] Create relocations for unconditional branches. by Florian Hahn · 8 years ago
- 6e94e63 Adjust module.modulemap after r304864 by Eric Fiselier · 8 years ago
- 5d4bfc7 [APInt] Fix the documentation for isOneValue. NFC by Craig Topper · 8 years ago
- eb370b4 [InstCombine][InstSimplify] Use APInt::isNullValue/isOneValue to reduce compiled code for comparing APInts with 0 and 1. NFC by Craig Topper · 8 years ago
- e57d4f5 [InstCombine] Fix two asserts that were accidentally checking that an APInt pointer is non-zero instead of checking that the APInt self is non-zero. by Craig Topper · 8 years ago
- 1a0f861 Disable all warning for AlignOfTest.cpp. by Galina Kistanova · 8 years ago
- 51444fd Update libdeps to add BinaryFormat, introduced in r304864. by NAKAMURA Takumi · 8 years ago
- cd0e332 Reorder and reformat. by NAKAMURA Takumi · 8 years ago
- b070b91 Add dependency from LibDriver to BinaryFormat. by Zachary Turner · 8 years ago
- ce49018 Add dependency from AsmParser to BinaryFormat. by Zachary Turner · 8 years ago
- 25d9ac1 Add #include <system_error> by Zachary Turner · 8 years ago
- 19ca2b0 Move Object format code to lib/BinaryFormat. by Zachary Turner · 8 years ago
- d05a5f2 [LazyValueInfo] Remove redundant calls to ConstantRange::contains. The same exact call was made in the if above and we already know it returned true. NFC by Craig Topper · 8 years ago
- a26780d [Constants] Use isUIntN/isIntN from MathExtras instead of reimplementing the same code. NFC by Craig Topper · 8 years ago
- c68553c [Constants] Use APInt::isNullValue/isOneValue/uge to simplify some code and take advantage of APInt optimizations. NFC by Craig Topper · 8 years ago
- 9082d12 [APInt] Add a isOneValue method that can determine if a number is 1 by only using getActiveBits/countLeadingZeros by Craig Topper · 8 years ago
- 04631fc Try to work around possible bugs in version of Shpinx on buildserver. by Tony Tye · 8 years ago
- 4e7fb91 Introduce the new feature "abi-breaking-checks" to satisfy -reverse-iterate in llvm/test/Transforms/Util/PredicateInfo/ by NAKAMURA Takumi · 8 years ago
- e8e2b8a [InlineSpiller] Only account for real spills in the hoisting logic by Quentin Colombet · 8 years ago
- 756819c [CGP / PowerPC] use direct compares if there's only one load per block in memcmp() expansion by Sanjay Patel · 8 years ago
- 61c7e03 Add documentation for various aspects of the AMDGPU backend. by Tony Tye · 8 years ago
- 2f4ae78 Fix uninitialized read. by Zachary Turner · 8 years ago
- 3dfb196 [SCCIterator] Garbage collect dead code. NFC. by Davide Italiano · 8 years ago
- dab0766 Introduce -brief command line option to llvm-dwarfdump by Adrian Prantl · 8 years ago
- b428c9f Fix the includes in lib/Fuzzer on Windows that have ordering by Chandler Carruth · 8 years ago
- d1638eb [CFLAA] Remove unused include. NFCI. by Davide Italiano · 8 years ago
- e74c436 [CodeGen] Fix some Clang-tidy modernize-use-using and Include What You Use warnings; other minor fixes (NFC). by Eugene Zelenko · 8 years ago
- e11fbd1 [PowerPC] auto-generate full checks and increase test coverage by Sanjay Patel · 8 years ago
- 4a03a9f Allow VersionPrinter to print to arbitrary raw_ostreams by Dimitry Andric · 8 years ago
- fdb83c8 Added tests for X86InterleavedStore. by Evgeny Stupachenko · 8 years ago
- 3aa7f80 GlobalsModRef+OptNone: Don't prove readnone/other properties from an optnone function by David Blaikie · 8 years ago
- 6986553 Add documentation for various aspects of the AMDGPU backend. by Tony Tye · 8 years ago
- 675f794 [CGP] fix formatting/typos in MemCmpExpansion; NFC by Sanjay Patel · 8 years ago
- 3224965 [SLP] Change extension of the test, NFC. by Alexey Bataev · 8 years ago
- d330cb3 [SLP] Add a test for fix of PR32164, NFC. by Alexey Bataev · 8 years ago
- f632627 llc: Add ability to parse mir from stdin by Matthias Braun · 8 years ago
- cfed190 Fix PR23384 (part 3 of 3) by Evgeny Stupachenko · 8 years ago
- 946c51f [DAG] remove duplicated code for isOnlyUsedInZeroEqualityComparison(); NFCI by Sanjay Patel · 8 years ago
- 46747f1 [LVI Printer] Rely on the LVI analysis functions rather than the LVI cache by Anna Thomas · 8 years ago
- 53a472f [WebAssembly] MC: Refactor relocation handling by Sam Clegg · 8 years ago
- ae5480d MIRPrinter: Avoid assert() when printing empty INLINEASM strings. by Matthias Braun · 8 years ago
- 5c0660f UnitTests: Do not use assert() for error checking by Matthias Braun · 8 years ago
- 2c18fa1 AMDGPU/NFC: Move amdgpu code object metadata to support by Konstantin Zhuravlyov · 8 years ago
- 0a37827 [LoopIdiom] Move X86 specific atomic memcpy test to the X86 directory by Anna Thomas · 8 years ago
- 2d73c37 NewGVN: Fix PR/33187. This is a bug caused by two things: by Daniel Berlin · 8 years ago
- bacc833 [Atomics][LoopIdiom] Recognize unordered atomic memcpy by Anna Thomas · 8 years ago
- 8b43bdd [AMDGPU] Return correct value from SDWA pass by Stanislav Mekhanoshin · 8 years ago
- d6def3a [WebAssembly] Remove unused methods from MCWasmObjectTargetWriter by Sam Clegg · 8 years ago
- 55caeda [mips] Add madd4 subtarget feature by Petar Jovanovic · 8 years ago
- 958169b [IRCE] Canonicalize pre/post loops after the blocks are added into parent loop by Anna Thomas · 8 years ago
- 2c22224 Fix spelling mistake in getRThroughput static function names. NFCI. by Simon Pilgrim · 8 years ago
- 19ff9cf [X86][AVX1] Split 256-bit vector non-temporal FastISel loads to keep it non-temporal (PR32744) by Simon Pilgrim · 8 years ago
- 5d24d88 AMDGPU/GlobalISel: Mark 32-bit G_ICMP as legal by Tom Stellard · 8 years ago
- 6721342 Fix another ordering constraint with windows.h and comment about by Chandler Carruth · 8 years ago
- dca225e Fix several more missing headers, all of these were hidden by "lucky" by Chandler Carruth · 8 years ago
- 4d354ac Add a missing #include to a header. by Chandler Carruth · 8 years ago
- 1edfb2c Fix one place where I missed a commented requirement for a particular by Chandler Carruth · 8 years ago
- e3e43d9 Sort the remaining #include lines in include/... and lib/.... by Chandler Carruth · 8 years ago
- 3c0d607 Re-sort #include lines for unittests. This uses a slightly modified by Chandler Carruth · 8 years ago
- 9bea423 [ARM] Add curly braces around switch case [NFC] by Peter Smith · 8 years ago
- 4d04e9b [InstSimplify] Constant fold the new GEP in SimplifyGEPInst. by Joey Gouly · 8 years ago
- bac91bf [docs] Make it clear shifts yield poison when shift amount >= bitwidth by Nuno Lopes · 8 years ago
- de22782 by Vivek Pandya · 8 years ago