- 589b897 Rename function to be more specific and be more strict about its usage by Bruno Cardoso Lopes · 13 years ago
- 8592d90 Use MachineBranchProbabilityInfo instead of MachineLoopInfo in IfConversion. by Jakub Staszak · 13 years ago
- 152d4a4 Get rid of the extraneous GPR operand on so_reg_imm operands, which in turn necessitates a lot of changes to related bits. by Owen Anderson · 13 years ago
- 856e13d Fix MergeInVectorType to check for vector types with the same alloc by Dan Gohman · 13 years ago
- 7c6e42e ARM Asm parser range checking for [0,31] immediates. by Jim Grosbach · 13 years ago
- 8409f04 ARM parsing and encoding tests for SBC instruction. by Jim Grosbach · 13 years ago
- 5333658 Initialize DenseSets lazily. by Benjamin Kramer · 13 years ago
- 8ae45af ARM testcases for SADD/SASX parsing and encoding. by Jim Grosbach · 13 years ago
- 9d81c97 Add missing getAnalysisUsage in MachineBlockFrequency. by Jakub Staszak · 13 years ago
- f790193 ARM assembly parsing support for RSC instruction. by Jim Grosbach · 13 years ago
- 86fdff0 ARM assembly parsing support for RSB instruction. by Jim Grosbach · 13 years ago
- 616fbdf ARM parsing and encoding tests for RBIT, REV, REV16 and REVSH. by Jim Grosbach · 13 years ago
- a4c34ab ARM parsing and encodings tests for saturating arithmetic insns. by Jim Grosbach · 13 years ago
- 43d3b31 Tidy up. by Jim Grosbach · 13 years ago
- a056d20 Update generated CPP code with the new API on CallInst::Create and ConstantExpr::getGetElementPtr. by Nicolas Geoffray · 13 years ago
- 10c7d70 ARM assembly parsing POP/PUSH mnemonics. by Jim Grosbach · 13 years ago
- 45e11c7 Fix CMake build by Oscar Fuentes · 13 years ago
- 61b1b21 Add tests for ARM PKH assembly parsing. by Jim Grosbach · 13 years ago
- 92a2022 Split up the ARM so_reg ComplexPattern into so_reg_reg and so_reg_imm, allowing us to distinguish the encodings that use shifted registers from those that use shifted immediates. This is necessary to allow the fixed-length decoder to distinguish things like BICS vs LDRH. by Owen Anderson · 13 years ago
- a305fe7 Cleanup: make std::pair usage slightly less indecipherable without actually naming variables! by Andrew Trick · 13 years ago
- a50c175 Sink parts of TargetRegisterClass into MCRegisterClass. by Benjamin Kramer · 13 years ago
- f6c0525 ARM assembly parsing and encoding for PKHBT and PKHTB instructions. by Jim Grosbach · 13 years ago
- dca6cdd Added the infrastructute necessary for MIPS JIT support. Patch by Vladimir by Bruno Cardoso Lopes · 13 years ago
- 4b5e207 Make better use of ConstantExpr::getGetElementPtr's InBounds parameter. by Jay Foad · 13 years ago
- b60e851 Sort case-insensitively. by Jay Foad · 13 years ago
- dab3d29 Convert ConstantExpr::getGetElementPtr and by Jay Foad · 13 years ago
- 14732a1 Update llvm-gcc-4.2 and dragonegg after converting ConstantFolder APIs by Jay Foad · 13 years ago
- 12fc16f Convert ConstantFolder APIs to use ArrayRef. by Jay Foad · 13 years ago
- c30a38f move tier out of an anonymous namespace, it doesn't make sense by Chris Lattner · 13 years ago
- dbd4fe2 - Register v16i16 as valid VR256 register class by Bruno Cardoso Lopes · 13 years ago
- 65b74e1 Add support for 256-bit versions of VPERMIL instruction. This is a new by Bruno Cardoso Lopes · 13 years ago
- 9283b66 Improve splat promotion to handle AVX types: v32i8 and v16i16. Also by Bruno Cardoso Lopes · 13 years ago
- 0e87805 Add aditional patterns for vextractf128 instruction by Bruno Cardoso Lopes · 13 years ago
- df0e03c Add aditional patterns for vinsertf128 instruction by Bruno Cardoso Lopes · 13 years ago
- 11bbb20 Add v16i16 type to VR256 class by Bruno Cardoso Lopes · 13 years ago
- bca4781 Move code around. No functionality changes by Bruno Cardoso Lopes · 13 years ago
- 67727ca Tidy up code by Bruno Cardoso Lopes · 13 years ago
- c205a09 LSR, correct fix for rdar://9786536. Silly casting bug. by Andrew Trick · 13 years ago
- c2c988e LSR must sometimes sign-extend before generating double constants. by Andrew Trick · 13 years ago
- fb4eb16 Mark instructions which are part of the frame setup with the MachineInstr::FrameSetup flag. by Bill Wendling · 13 years ago
- 37eb38d LSR crashes on an empty IVUsers list. by Andrew Trick · 13 years ago
- 36c62d3 X86 is the only target that uses coff format. This should fixes test failures running on Windows, Cygwin, or MingW hosts. by Evan Cheng · 13 years ago
- e65b7ec docs/GettingStarted.html: Tweak style. by NAKAMURA Takumi · 13 years ago
- ee04a6d Sink ARMMCExpr and ARMAddressingModes into MC layer. First step to separate ARM MC code from target. by Evan Cheng · 13 years ago
- 7bc3178 Remove unused function. by Bill Wendling · 13 years ago
- 16da736 Remove the now defunct getCompactUnwindEncoding method from the frame lowering code. by Bill Wendling · 13 years ago
- 3737b89 Refactor. by Devang Patel · 13 years ago
- 947431e docs/GettingStarted.html: Fix a typo and tweak a command line. by NAKAMURA Takumi · 13 years ago
- 40c7e41 There are two ways to map a variable to its lexical scope. Lexical scope information is embedded in MDNode describing the variable. It is also available as a part of DebugLoc attached with DBG_VALUE instruction. DebugLoc attached with an instruction is less reliable in optimized code so use information embedded in the MDNode. by Devang Patel · 13 years ago
- 7470325 Clean up includes of llvm/Analysis/ConstantFolding.h so it's included where it's used and not included where it isn't. by Eli Friedman · 13 years ago
- 4ec14b0 While emitting constant value, look through derived type and use underlying basic type to determine size and signness of the constant value. by Devang Patel · 13 years ago
- dde038a ARM PKH shift ammount operand printing tweaks. by Jim Grosbach · 13 years ago
- 73bfa4a Bring LICM into compliance with the new "Memory Model for Concurrent Operations" in LangRef. by Eli Friedman · 13 years ago
- 5b60e1b Commit LangRef changes for LLVM concurrency model. Start of supporting C++0x memory model and atomics. See thread on llvmdev titled "Reviving the new LLVM concurrency model". by Eli Friedman · 13 years ago
- c3d48ce Unbreak the MSVC build. Since the "next" function already exists in the MSVC headers, we need the explicit llvm:: qualifier to prevent a conflict. by Francois Pichet · 13 years ago
- 1769a3d Tidy up a bit. by Jim Grosbach · 13 years ago
- a0472dc ARM: Tidy up representation of PKH instruction. by Jim Grosbach · 13 years ago
- aeb7de7 Fix cmake again :) by Benjamin Kramer · 13 years ago
- 203576a Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc. by Evan Cheng · 13 years ago
- 8eda131 Fix cmake. by Benjamin Kramer · 13 years ago
- 685a250 Sketch out an CFG reconstruction mode for llvm-objdump. by Benjamin Kramer · 13 years ago
- a4d0bd8 Extend the hack for _GLOBAL_OFFSET_TABLE_ slightly; PR10389. by Eli Friedman · 13 years ago
- 88d1bc8 Add parsing/encoding tests for ARM ORR instruction. by Jim Grosbach · 13 years ago
- a678514 Consolidate ARM NOP encoding test. by Jim Grosbach · 13 years ago
- c3635c2 ARM parsing and encoding tests for MVN by Jim Grosbach · 13 years ago
- ab40f4b ARM assembly parsing of MUL instruction. by Jim Grosbach · 13 years ago
- 0381c21 PR10421: Fix a straightforward bug in the widening logic for CONCAT_VECTORS. by Eli Friedman · 13 years ago
- 9d999f5 Initialize the EHFrameSection pointer to zero. by Benjamin Kramer · 13 years ago
- 91e7ccd Regenerate configure and friends for Chad. by Eric Christopher · 13 years ago
- 626f52d Fix a GCC warning. by Jay Foad · 13 years ago
- 34ad6db - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. by Evan Cheng · 13 years ago
- 4c81648 Include MCRegisterInfo to eliminate a compilation warning. by Evan Cheng · 13 years ago
- 5945848 Fix the CMake build. by Francois Pichet · 13 years ago
- e76a33b Add MCObjectFileInfo and sink the MCSections initialization code from by Evan Cheng · 13 years ago
- 86c9814 indvars: Added getInsertPointForUses to find a valid place to truncate the IV. by Andrew Trick · 13 years ago
- 13bcf2e indvars -disable-iv-rewrite: Add NarrowIVDefUse to cache def-use by Andrew Trick · 13 years ago
- e3345c4 X86Subtarget.h: Assume "x86_64-cygwin", though it has not been released yet, to appease test/CodeGen/X86 on cygwin. by NAKAMURA Takumi · 13 years ago
- 03c45f6 New pointer rotate test. by Eric Christopher · 13 years ago
- cf1e967 Extra semi-colon. by Eric Christopher · 13 years ago
- 9e92152 indvars test case for r135558. by Andrew Trick · 13 years ago
- f22d957 indvars -disable-iv-rewrite fix: derived GEP IVs by Andrew Trick · 13 years ago
- e236dc6 Don't leak CodeGenInfos. by Benjamin Kramer · 13 years ago
- de9416e Change name of class. by Akira Hatanaka · 13 years ago
- 32b7ebb Define classes for definitions of atomic instructions. by Akira Hatanaka · 13 years ago
- c8dad11 Build and install the archive when building the Apple way. by Bill Wendling · 13 years ago
- db54826 Lower memory barriers to sync instructions. by Akira Hatanaka · 13 years ago
- 70955c2 Fix an obvious typo that's preventing x86 (32-bit) from using .literal16. by Evan Cheng · 13 years ago
- 3610604 PR10386: Don't try to split an edge from an indirectbr. by Eli Friedman · 13 years ago
- 14c9246 Fix off-by-one. by Benjamin Kramer · 13 years ago
- b29b4dd Tweak ARM assembly parsing and printing of MSR instruction. by Jim Grosbach · 13 years ago
- c8fcfc9 Distinguish between two copies of one inlined variable. by Devang Patel · 13 years ago
- 80d01dd ARM assembly parsing of MRS instruction. by Jim Grosbach · 13 years ago
- f1a0090 Enhance the FixedLengthDecoder to be able to generate plausible-looking decoders for ARM. by Owen Anderson · 13 years ago
- bdd83fe Change variable name. by Akira Hatanaka · 13 years ago
- ccfd931 ARM assembly parsing for MRC/MRC2/MRRC/MRRC2. by Jim Grosbach · 13 years ago
- cc7ecc7 Use the correct opcodes: SLLV/SRLV or AND must be used instead of SLL/SRL or by Akira Hatanaka · 13 years ago
- 2317fe1 Move mr[r]c[2] ARM tests and tidy up a bit. by Jim Grosbach · 13 years ago
- 1a2be4d ARM testcases for MOVT. by Jim Grosbach · 13 years ago
- 4061da1 Use descriptive variable names. by Akira Hatanaka · 13 years ago
- 5f16057 ARM assembly parsing for MOV (register). by Jim Grosbach · 13 years ago