summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86FastISel.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* [X86] Deduplicate static calling convention helpers for code size, NFCReid Kleckner2019-01-191-2/+0
* [X86] Remove X86ISD::INC/DEC. Just select them from X86ISD::ADD/SUB at isel timeCraig Topper2019-01-021-12/+6
* FastIsel: take care to update iterators when removing instructions.Tim Northover2018-12-171-1/+2
* Revert r345165 "[X86] Bring back the MOV64r0 pseudo instruction"Craig Topper2018-10-311-12/+20
* [X86] Bring back the MOV64r0 pseudo instructionCraig Topper2018-10-241-20/+12
* [X86] Remove some left over code from when MVT:i1 was a legal type for AVX512.Craig Topper2018-10-191-3/+0
* [X86] Teach fast isel to use MOV32ri64 for loading an unsigned 32 immediate i...Craig Topper2018-09-211-9/+1
* [X86] Teach X86FastISel::X86SelectRet to use EAX for the sret pointer in GNUX32Craig Topper2018-09-111-1/+1
* [x86/retpoline] Split the LLVM concept of retpolines into separateChandler Carruth2018-08-231-2/+2
* [X86] FastISel fall back on !absolute_symbol GVsVlad Tsyrklevich2018-08-011-0/+4
* Remove trailing spaceFangrui Song2018-07-301-2/+2
* DAG: Add calling convention argument to calling convention funcsMatt Arsenault2018-07-281-1/+1
* [X86][FastISel] Support uitofp with avx512.Craig Topper2018-07-131-8/+26
* [X86][FastISel] Add EVEX support to sitofp handling.Craig Topper2018-07-131-7/+16
* [X86][FastISel] Support EVEX version of sqrt.Craig Topper2018-07-121-8/+11
* [X86][FastISel] Choose EVEX instructions when possible when lowering x86_sse_...Craig Topper2018-07-121-8/+12
* Remove \brief commands from doxygen comments.Adrian Prantl2018-05-011-5/+5
* [X86] Added support for nocf_check attribute for indirect Branch TrackingOren Ben Simhon2018-03-171-0/+7
* [X86] Add back fast-isel code for handling i8 shifts.Craig Topper2018-03-141-7/+14
* [NFC] fix trivial typos in comments and documentsHiroshi Inoue2018-01-291-1/+1
* Introduce the "retpoline" x86 mitigation technique for variant #2 of the spec...Chandler Carruth2018-01-221-0/+4
* Remove alignment argument from memcpy/memmove/memset in favour of alignment a...Daniel Neilson2018-01-191-2/+2
* FastISel: support no-PLT PIC calls on ELF x86_64Saleem Abdulrasool2017-12-151-4/+2
* [X86] Rename some instructions that start with Int_ to have the _Int at the end.Craig Topper2017-12-101-2/+2
* [CodeGen] Print register names in lowercase in both MIR and debug outputFrancis Visoiu Mistrih2017-11-281-3/+3
* [X86] Add 64-bit int to float/double conversion with AVX to X86FastISel::X86...Craig Topper2017-11-011-3/+4
* [X86] Add AVX512 support to X86FastISel::fastMaterializeFloatZero.Craig Topper2017-11-011-4/+5
* [X86] Clang-format some code. NFCCraig Topper2017-10-311-2/+8
* [X86] Add AVX512 support to fast isel's X86ChooseCmpOpcode.Craig Topper2017-10-301-2/+3
* [X86] Remove AVX512 early out from X86FastISel::X86SelectCmp.Craig Topper2017-10-301-3/+0
* [X86] Use the extended vector register classes in fast isel with AVX512F/VL.Craig Topper2017-10-291-10/+10
* [X86] Add AVX512 support to X86FastISel::X86SelectFPExt and X86FastISel::X86S...Craig Topper2017-10-291-4/+12
* [X86] Add AVX512 support to X86FastISel::X86MaterializeFPCraig Topper2017-10-291-2/+6
* [X86] Replace some default cases in X86SelectShift with llvm_unreachable.Craig Topper2017-10-281-3/+3
* [X86] Remove unneeded MVT::i1 related code from fast isel.Craig Topper2017-10-281-10/+0
* [X86] Remove fast-isel code for handling i8 shifts. This is handled by auto g...Craig Topper2017-10-271-14/+7
* [X86] Teach fastisel to use VLX VMOVNTDQA for v4f64 and 256-bit integers when...Craig Topper2017-10-271-2/+2
* [X86] Enable extended comparison predicate support for SETUEQ/SETONE when tar...Craig Topper2017-10-091-3/+3
* [X86] Fix copy pasto in X86FastISel::fastEmitInst_rrrr.Craig Topper2017-10-021-1/+1
* [X86] Fix register class name in a comment. NFCCraig Topper2017-09-261-1/+1
* [X86] Don't emit COPY_TO_REG to ABCD registers before EXTRACT_SUBREG of sub_8bitCraig Topper2017-09-181-14/+1
* [X86] Teach fastisel to handle zext/sext i8->i16 and sext i1->i8/i16/i32/i64Craig Topper2017-09-021-0/+59
* [X86] Remove some code from fast isel that is no longer needed with i1 being ...Craig Topper2017-08-301-31/+0
* [X86] Remove unneed AVX512 check from fast isel.Craig Topper2017-08-301-2/+1
* [AVX512] Remove leftover code for when i1 was a legal type from the fast isel...Craig Topper2017-08-141-14/+0
* [X86] Teach fastisel to select calls to dllimport functionsReid Kleckner2017-08-051-8/+14
* [AArch64] Extend CallingConv::X86_64_Win64 to AArch64 as wellMartin Storsjo2017-07-171-2/+2
* [X86/FastIsel] Fall-back to SelectionDAG when lowering soft-floats.Davide Italiano2017-07-121-0/+3
* [X86][AVX1] Split 256-bit vector non-temporal FastISel loads to keep it non-t...Simon Pilgrim2017-06-061-0/+6
OpenPOWER on IntegriCloud