- 3335a99 The .inc file is auto-generated and must not be edited by hand. by Mikhail Glushenkov · 14 years ago
- b686af0 Recommit the fix for rdar://9289512 with a couple tweaks to by Chris Lattner · 14 years ago
- 597fa65 Disassembly of A8.6.59 LDR (literal) Encoding T1 (16-bit thumb instruction) should by Johnny Chen · 14 years ago
- e7cf062 DAGCombine: fold "(zext x) == C" into "x == (trunc C)" if the trunc is lossless. by Benjamin Kramer · 14 years ago
- eac0c9d Do not leak argument's DbgVariables. by Devang Patel · 14 years ago
- 0a6ea83 Add asserts. by Devang Patel · 14 years ago
- b20a8fc X86: Try to use a smaller encoding by transforming (X << C1) & C2 into (X & (C2 >> C1)) & C1. (Part of PR5039) by Benjamin Kramer · 14 years ago
- eab6313 Comment out some unused parameter names to silence out-of-tree -Wunused warnings. by Frits van Bommel · 14 years ago
- f4b2f93 Use enums for constant values. by Eric Christopher · 14 years ago
- 9ab1d7f Make the file format strings a little prettier for mach-o. by Eric Christopher · 14 years ago
- 860d7e1 Add MachOObjectFile.cpp to cmake. by Eric Christopher · 14 years ago
- ea7e13e Hook in mach-o object files into Object interface. by Eric Christopher · 14 years ago
- f0c3af6 Add support for 64-bit object files to Path. by Eric Christopher · 14 years ago
- 6256b03 Add an ObjectFile implementation for mach-o. by Eric Christopher · 14 years ago
- bb498ca 80-col fix. by Eric Christopher · 14 years ago
- d94d846 include/llvm/Target/TargetAsmInfo.h: Fix a warning. by NAKAMURA Takumi · 14 years ago
- db6cbe1 In Thumb2 mode, lower frame indix references to: by Evan Cheng · 14 years ago
- d8a1624 Typo by Evan Cheng · 14 years ago
- add2944 Delete the other unused variable in this function. Sorry I missed this by Chandler Carruth · 14 years ago
- 32bd250 Remove an unused variable from a function. This is a likely cut-paste-o. by Chandler Carruth · 14 years ago
- d3dbd5f Branch folding is folding a landing pad into a regular BB. by Bill Wendling · 14 years ago
- c1fe100 Define Neon load/store intrinsics for Clang as macros instead of functions. by Bob Wilson · 14 years ago
- abf9af6 Compute the size of the FDE encoding instead of hard coding it. Update by Rafael Espindola · 14 years ago
- e8cfbd8 Remove unused argument. by Rafael Espindola · 14 years ago
- eccbad7 Don't pass address spaces to EmitULEB128IntValue. by Rafael Espindola · 14 years ago
- 71f3f11 Fix DWARF description of Q registers. by Devang Patel · 14 years ago
- 27f5acb Fix DWARF description of S registers. by Devang Patel · 14 years ago
- 06161fc Add DW_OP_bit_piece. by Devang Patel · 14 years ago
- acc381b Refactor. by Devang Patel · 14 years ago
- 8859df5 Test case for r129922 by Devang Patel · 14 years ago
- ec9186b PR9214: Convert Metadata API to use ArrayRef. by Jay Foad · 14 years ago
- ae5fbee Don't recycle loop variables. by Matt Beaumont-Gay · 14 years ago
- 5928046 Allow allocatable ranges from global live range splitting to be split again. by Jakob Stoklund Olesen · 14 years ago
- 1ac7fe0 Fix relative relocations. This is sufficient for running the rust testsuite with by Rafael Espindola · 14 years ago
- 64d3d12 As per ARM docs, register Dx is described as DW_OP_regx(256+x) in DWARF. by Devang Patel · 14 years ago
- 2c4b4b1 Add comment in output stream. by Devang Patel · 14 years ago
- 63c21de Revert r1296656, "Fix rdar://9289512 - not folding load into compare at -O0...", by Daniel Dunbar · 14 years ago
- 326fb9d PTX: Expand useable register space by Justin Holewinski · 14 years ago
- 5efde18 ptx: fix parameter ordering by Che-Liang Chiou · 14 years ago
- 4a17cad ptx: PTXMachineFunctionInfo no longer sort registers and so should not use std::binary_search by Che-Liang Chiou · 14 years ago
- 69ba413 Don't allow per-register spill size and alignment. by Jakob Stoklund Olesen · 14 years ago
- a4c4c0e In gcov profiling, give all functions an extra unified return block. This is by Nick Lewycky · 14 years ago
- 17df2c3 Fix think-o: emit all 8 bytes of the EOF marker. Also reflow a line in a by Nick Lewycky · 14 years ago
- a61e52c Add independent controls for whether GCOV profiling should emit .gcno files or by Nick Lewycky · 14 years ago
- 333ed45 Fix typo in comment. by Nick Lewycky · 14 years ago
- 074eeaa docs/llvm.css: Introduce cascading style <div> and <p> continued on <h[2-5]>. For now, it is applied in AliasAnalysis.html and ReleaseNotes.html. by NAKAMURA Takumi · 14 years ago
- b5f7491 docs/Passes.html: Fix a garbage. by NAKAMURA Takumi · 14 years ago
- 8c6d196 Structs have elements not parameters. I'm surprised this ever compiled... by Nick Lewycky · 14 years ago
- c857894 Remove -use-divmod-libcall. Let targets opt in when they are available. by Evan Cheng · 14 years ago
- 3b7d917 Add debug output for rematerializable instructions. by Jakob Stoklund Olesen · 14 years ago
- 08c5a34 Permit remat when a virtual register has multiple defs. by Jakob Stoklund Olesen · 14 years ago
- 344731c Fix another case of <rdar://problem/9184212> that only occurs with code by Cameron Zwarich · 14 years ago
- c5c43b9 The bitcast case here is actually handled uniformly earlier in the function, so by Cameron Zwarich · 14 years ago
- 5fc1282 Cleanup some code to better use an early return style in preparation for adding by Cameron Zwarich · 14 years ago
- 2575a9c Un-XFAIL this test for ARM. <rdar://problem/7662569> by Stuart Hastings · 14 years ago
- e5ff344 Revert r129846; it's breaking a buildbot. See by Eli Friedman · 14 years ago
- 6bfba2e Prefer cheap registers for busy live ranges. by Jakob Stoklund Olesen · 14 years ago
- e341e8c Excise unintended hunk in 129858. <rdar://problem/7662569> by Stuart Hastings · 14 years ago
- c731587 ARM byval support. Will be enabled by another patch to the FE. <rdar://problem/7662569> by Stuart Hastings · 14 years ago
- 88c924c sys/Host: Change getHostTriple() to return the full Darwin version on OS X. by Daniel Dunbar · 14 years ago
- e1fee48 PTX: Add intrinsics to list of built-in intrinsics, which allows them to be by Justin Holewinski · 14 years ago
- 3660a84 Behave like gnu as when a relocation crosses sections. by Rafael Espindola · 14 years ago
- b32204c ptx: add integer div and rem instruction by Che-Liang Chiou · 14 years ago
- 1e93249 ptx: add floating-point comparison to setp by Che-Liang Chiou · 14 years ago
- 2a2dbd0 ptx: fix parameter ordering by Che-Liang Chiou · 14 years ago
- 52a8399 This should always be signed chars, so use int8_t. This fixes a miscompile when by Nick Lewycky · 14 years ago
- 4788c3e Remove unused arguments. by Rafael Espindola · 14 years ago
- abbbfbd Rewrite the expander for umulo/smulo to remember to sign extend the input by Eric Christopher · 14 years ago
- 0ccc0dd llc: Fix a refacto, .loc support didn't work before 10.6. by Daniel Dunbar · 14 years ago
- 863f846 Made the MC disassembler check before accessing by Sean Callanan · 14 years ago
- 558692f ADT/Triple: Renambe isOSX... methods to isMacOSX for consistency with the OS by Daniel Dunbar · 14 years ago
- 4aaf346 Fix typo in the comment. by Johnny Chen · 14 years ago
- 398a5ca ADT/Triple: Drop support for -osx style triples, we are going with -macosx by Daniel Dunbar · 14 years ago
- 1af3947 ADT/Triple: Add support for Triple::MacOSX per feedback from Chris, will remove by Daniel Dunbar · 14 years ago
- 912225e ADT/Triple: Move a variety of clients to using isOSDarwin() and isOSWindows() by Daniel Dunbar · 14 years ago
- e1fe09f ADT/Triple: Add isOSDarwin() and isOSWindows() helper functions. by Daniel Dunbar · 14 years ago
- e8ba52d ADT/Triple: Fix Triple::getArchNameForAssembler to support OSX and iOS by Daniel Dunbar · 14 years ago
- 2cf711f Target/X86: Eliminate uses of getDarwinVers(). by Daniel Dunbar · 14 years ago
- 24cfd06 Target/X86: Add getTargetTriple() accessor. by Daniel Dunbar · 14 years ago
- 18a0929 Target/PPC: Kill off DarwinVers, which is now dead. by Daniel Dunbar · 14 years ago
- 14e2a90 Target/PPC: Eliminate a use of getDarwinVers(). by Daniel Dunbar · 14 years ago
- 869eca1 Target/PPC: Add a TargetTriple field. by Daniel Dunbar · 14 years ago
- 562ae4b add a helper method. by Chris Lattner · 14 years ago
- d285139 llc: Eliminate a use of getDarwinMajorNumber(). by Daniel Dunbar · 14 years ago
- 13fb3b5 Target: Eliminate a use of getDarwinMajorNumber(). by Daniel Dunbar · 14 years ago
- ebc5066 CodeGen: Eliminate a use of getDarwinMajorNumber(). by Daniel Dunbar · 14 years ago
- 4860fe0 ADT/Triple: Add helper function for OS X version checks. by Daniel Dunbar · 14 years ago
- 8974153 ADT/Triple: Add isOSVersionLT helper function. by Daniel Dunbar · 14 years ago
- 087d6a5 ADT/Triple: Generalize and simplify getDarwinNumber to just be getOSVersion. by Daniel Dunbar · 14 years ago
- 0dde4c0 ADT/Triple: Add support for more explicit "osx" and "ios" OS names. by Daniel Dunbar · 14 years ago
- 567cac0 Delete unnecessary variable. <rdar://problem/7662569> by Stuart Hastings · 14 years ago
- 2cc4013 Remove some duplicate op action entries and reorganize. by Eric Christopher · 14 years ago
- 84c5eed This patch combines several changes from Evan Cheng for rdar://8659675. by Bob Wilson · 14 years ago
- cd70496 Add -mcpu=cortex-a9-mp. It's cortex-a9 with MP extension. rdar://8648637. by Bob Wilson · 14 years ago
- 5dde893 Avoid some 's' 16-bit instruction which partially update CPSR by Bob Wilson · 14 years ago
- f6a4d3c Avoid write-after-write issue hazards for Cortex-A9. by Bob Wilson · 14 years ago
- b34d837 Some single-precision VFP instructions can execute in either the VPF or Neon by Bob Wilson · 14 years ago
- 11334db Improvements for the Cortex-A9 scheduling itineraries. by Bob Wilson · 14 years ago
- 3762046 Add support for FastISel'ing varargs calls. by Eli Friedman · 14 years ago
- 430721c Force the greedy register allocator to be linked alongside linear scan. by Jakob Stoklund Olesen · 14 years ago