Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/llvm-lm32
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 07535cf
Choose a base ref
...
head repository: m-labs/llvm-lm32
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2d6822a
Choose a head ref

Commits on Aug 25, 2011

  1. Copy the full SHA
    06ef923 View commit details
  2. Add support for AVX 256-bit version of MOVDDUP!

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138588 91177308-0d34-0410-b5e6-96231b3b80d8
    bcardosolopes committed Aug 25, 2011
    Copy the full SHA
    6292ece View commit details
  3. Remove stray fullstop.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138589 91177308-0d34-0410-b5e6-96231b3b80d8
    nlewycky committed Aug 25, 2011
    Copy the full SHA
    b210cbf View commit details
  4. Copy the full SHA
    f1a2642 View commit details
  5. Initial check in that will auto-upgrade the old EH scheme to the new …

    …EH scheme.
    
    This upgrade suffers from the problems of the old EH scheme - i.e., that the
    calls to llvm.eh.exception() and llvm.eh.selector() can wander off and get
    lost. It makes a valiant effort to reclaim these little lost lambs.
    
    This is a first draft, so it hasn't yet been hooked up to the parser.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138602 91177308-0d34-0410-b5e6-96231b3b80d8
    isanbard committed Aug 25, 2011
    Copy the full SHA
    c82a61c View commit details
  6. Look at only the terminators of the basic block. Also, if we're using…

    … the new EH
    
    scheme, return 'true' so that it doesn't try to run the old EH scheme's fixup on
    the new code.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138605 91177308-0d34-0410-b5e6-96231b3b80d8
    isanbard committed Aug 25, 2011
    Copy the full SHA
    09908c4 View commit details
  7. Update to the new EH scheme.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138606 91177308-0d34-0410-b5e6-96231b3b80d8
    isanbard committed Aug 25, 2011
    Copy the full SHA
    1a9a2d0 View commit details

Commits on Aug 26, 2011

  1. SimplifyCFG: If we have a PHI node that can evaluate to NULL and do a…

    … load or store to the address returned by the PHI node then we can consider this incoming value as dead and remove the edge pointing there, unless there are instructions that can affect control flow executed in between.
    
    In theory this could be extended to other instructions, eg. division by zero, but it's likely that it will "miscompile" some code because people depend on div by zero not trapping. NULL pointer dereference usually leads to a crash so we should be on the safe side.
    
    This shrinks the size of a Release clang by 16k on x86_64.
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138618 91177308-0d34-0410-b5e6-96231b3b80d8
    d0k committed Aug 26, 2011
    Copy the full SHA
    98d6d23 View commit details
  2. Address review comments.

    - Reword comments.
    - Allow undefined behavior interfering with undefined behavior.
    - Add address space checks.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138619 91177308-0d34-0410-b5e6-96231b3b80d8
    d0k committed Aug 26, 2011
    Copy the full SHA
    9bb5488 View commit details
  3. Atomic load/store on ARM/Thumb.

    I don't really like the patterns, but I'm having trouble coming up with a
    better way to handle them.
    
    I plan on making other targets use the same legalization
    ARM-without-memory-barriers is using... it's not especially efficient, but
    if anyone cares, it's not that hard to fix for a given target if there's
    some better lowering.
    
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138621 91177308-0d34-0410-b5e6-96231b3b80d8
    eefriedman committed Aug 26, 2011
    Copy the full SHA
    069e2ed View commit details
  4. LoopInfo::updateUnloop fix, and verify Block->Loop maps.

    Fixes an oversight, and adds verification to catch it in the unloop.ll tests.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138622 91177308-0d34-0410-b5e6-96231b3b80d8
    atrick committed Aug 26, 2011
    Copy the full SHA
    5434c1e View commit details
  5. Fix disassembling of VCVTSD2SI

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138623 91177308-0d34-0410-b5e6-96231b3b80d8
    topperc committed Aug 26, 2011
    Copy the full SHA
    8fd13b6 View commit details
  6. Fix PR10755 by checking for invalid predicate codes from UNPREDICTABL…

    …E t2IT instructions when decoding their successors.
    
    This is the last disassembly crash detected by exhaustive Thumb2 instruction space.  Major thanks to Chandler Carruth for making this kind of exhaustive testing possible.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138625 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    9bd655d View commit details
  7. Add a testcase for r138625.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138626 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    5a18f20 View commit details
  8. Don't insert branch hint lables that are never used.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138630 91177308-0d34-0410-b5e6-96231b3b80d8
    Kalle Raiskila committed Aug 26, 2011
    Copy the full SHA
    54f8a9f View commit details
  9. We don't care if TableGen leaks memory.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138634 91177308-0d34-0410-b5e6-96231b3b80d8
    d0k committed Aug 26, 2011
    Copy the full SHA
    06a531f View commit details
  10. Support an extension of ARM asm syntax to allow immediate operands to…

    … ADR instructions. This is helpful for disassembler testing, and indeed exposed a disassembler bug that is also fixed here.
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138635 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    96425c8 View commit details
  11. ARMDisassembler: Always return a size, even when disassembling fails.

    This should fix PR10772.
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138636 91177308-0d34-0410-b5e6-96231b3b80d8
    d0k committed Aug 26, 2011
    Copy the full SHA
    86ce852 View commit details
  12. lit: Add %T as a replacement for the output directory

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138640 91177308-0d34-0410-b5e6-96231b3b80d8
    DougGregor committed Aug 26, 2011
    Copy the full SHA
    0f9d34c View commit details
  13. Update for feedback from Jim.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138642 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    1af7f72 View commit details
  14. Use %% for literals in RUN lines.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138647 91177308-0d34-0410-b5e6-96231b3b80d8
    atrick committed Aug 26, 2011
    Copy the full SHA
    6ca06cd View commit details
  15. Copy the full SHA
    2b18881 View commit details
  16. valgrind: Always suppress tblgen leaks.

    I'll clean up the rest of the XFAIL: vg_leak lines if this works.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138652 91177308-0d34-0410-b5e6-96231b3b80d8
    atrick committed Aug 26, 2011
    Copy the full SHA
    ae5ea6c View commit details
  17. invalid-LDR_PRE-arm.txt was already passing, but for the wrong reason…

    …s. We were failing to specify enough fixed bits of LDR_PRE/LDRB_PRE, resulting in decoding conflicts. Separate them into immediate vs. register versions, allowing us to specify the necessary fixed bits. This in turn results in the test being decoded properly, and being rejected as UNPREDICTABLE rather than a hard failure.
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138653 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    9ab0f25 View commit details
  18. Whitespace and 80-col.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138654 91177308-0d34-0410-b5e6-96231b3b80d8
    echristo committed Aug 26, 2011
    Copy the full SHA
    6c0046f View commit details
  19. Copy the full SHA
    1f4a32f View commit details
  20. Fix ARM codegen breakage caused by r138653.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138657 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    2b568fb View commit details
  21. Split the landing pad block only if it's a critical edge. Also intell…

    …igently
    
    split it in the other place where we're splitting critical edges.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138658 91177308-0d34-0410-b5e6-96231b3b80d8
    isanbard committed Aug 26, 2011
    Copy the full SHA
    51fb91c View commit details
  22. Add support for generating CMPXCHG16B on x86-64 for the cmpxchg IR in…

    …struction.
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138660 91177308-0d34-0410-b5e6-96231b3b80d8
    eefriedman committed Aug 26, 2011
    Copy the full SHA
    43f51ae View commit details
  23. Update the dominator tree with the correct dominator for the new 'unw…

    …ind' block.
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138664 91177308-0d34-0410-b5e6-96231b3b80d8
    isanbard committed Aug 26, 2011
    Copy the full SHA
    e8ef4cc View commit details
  24. Thumb2 assembler parsing and encoding of IT instruction.

    This handles only the handling of the IT instruction itself, not the
    processing and validation of the instructions in the IT block. That's next,
    and will include encoding tests for IT itself.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138665 91177308-0d34-0410-b5e6-96231b3b80d8
    Jim Grosbach committed Aug 26, 2011
    Copy the full SHA
    89df996 View commit details
  25. Spelling fail.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138667 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    9f7e831 View commit details
  26. ARM assembly parsing tweak for pldw.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138669 91177308-0d34-0410-b5e6-96231b3b80d8
    Jim Grosbach committed Aug 26, 2011
    Copy the full SHA
    4af54a4 View commit details
  27. Correct encoding of BL with immediate offset.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138673 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    d7568e1 View commit details
  28. Improve encoding support for BLX with immediat eoperands, and fix a B…

    …LX decoding bug this uncovered.
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138675 91177308-0d34-0410-b5e6-96231b3b80d8
    resistor committed Aug 26, 2011
    Copy the full SHA
    f1eab59 View commit details
  29. Copy the full SHA
    0005cc7 View commit details

Commits on Aug 27, 2011

  1. Fix PassManager stack depths.

    Patch by Xiaoyi Guo!
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138695 91177308-0d34-0410-b5e6-96231b3b80d8
    atrick committed Aug 27, 2011
    Copy the full SHA
    b846192 View commit details
  2. Copy the full SHA
    8557e6c View commit details
  3. Copy the full SHA
    f2cf25b View commit details
  4. Update to new EH scheme.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138699 91177308-0d34-0410-b5e6-96231b3b80d8
    isanbard committed Aug 27, 2011
    Copy the full SHA
    234e43a View commit details
  5. Only delete instructions once.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138700 91177308-0d34-0410-b5e6-96231b3b80d8
    isanbard committed Aug 27, 2011
    Copy the full SHA
    884fb72 View commit details
  6. Reverting r138695 to see if it fixes clang self host.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138701 91177308-0d34-0410-b5e6-96231b3b80d8
    atrick committed Aug 27, 2011
    Copy the full SHA
    8592a0c View commit details
  7. Auto upgrade the old EH scheme to use the new one. This is on a trial…

    … basis. If
    
    things to disasterously over night, this can be reverted.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138702 91177308-0d34-0410-b5e6-96231b3b80d8
    isanbard committed Aug 27, 2011
    Copy the full SHA
    df77a71 View commit details
  8. Reverted r138652, valgrind doesn't understand obj:*/tblgen.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138703 91177308-0d34-0410-b5e6-96231b3b80d8
    atrick committed Aug 27, 2011
    Copy the full SHA
    d326d3b View commit details
  9. Report failure if there are less bytes than requested in a MemoryObject.

    Before we just left the remaining bytes uninitialized. This is another step in making llvm valgrind-clean again.
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138705 91177308-0d34-0410-b5e6-96231b3b80d8
    d0k committed Aug 27, 2011
    Copy the full SHA
    f66f76c View commit details
  10. Silence GCC warnings and make an array const.

    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138706 91177308-0d34-0410-b5e6-96231b3b80d8
    d0k committed Aug 27, 2011
    Copy the full SHA
    2753ae3 View commit details
  11. The 'expected' argument to EXPECT_EQ is actually the first one;

    flip these tests around.
    
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138708 91177308-0d34-0410-b5e6-96231b3b80d8
    rjmccall committed Aug 27, 2011
    Copy the full SHA
    f5ec9b5 View commit details

Commits on Aug 28, 2011

  1. Fix integer overflow bug in raw_ostream::write. This showed up as a

    non-deterministic crash in the test suite. Fixes PR10055!
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138717 91177308-0d34-0410-b5e6-96231b3b80d8
    nlewycky committed Aug 28, 2011
    Copy the full SHA
    b1b051e View commit details
  2. Copy the full SHA
    be6ceb6 View commit details
  3. Encoding of instructions referencing segments has changed. Do what X8…

    …6MCCodeEmitter does.
    
    git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138723 91177308-0d34-0410-b5e6-96231b3b80d8
    Nicolas Geoffray committed Aug 28, 2011
    Copy the full SHA
    c98da24 View commit details
Showing 860 changed files with 32,476 additions and 23,957 deletions.
6 changes: 6 additions & 0 deletions CREDITS.TXT
Original file line number Diff line number Diff line change
@@ -32,6 +32,10 @@ E: dberlin@dberlin.org
D: ET-Forest implementation.
D: Sparse bitmap

N: David Blaikie
E: dblaikie@gmail.com
D: General bug fixing/fit & finish, mostly in Clang

N: Neil Booth
E: neil@daikokuya.co.uk
D: APFloat implementation.
@@ -278,6 +282,8 @@ N: Jakob Stoklund Olesen
E: stoklund@2pi.dk
D: Machine code verifier
D: Blackfin backend
D: Fast register allocator
D: Greedy register allocator

N: Richard Osborne
E: richard@xmos.com
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -187,8 +187,7 @@ FilesToConfig := \
include/llvm/Config/AsmPrinters.def \
include/llvm/Config/AsmParsers.def \
include/llvm/Config/Disassemblers.def \
include/llvm/Support/DataTypes.h \
tools/llvmc/src/Base.td
include/llvm/Support/DataTypes.h
FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))

all-local:: $(FilesToConfigPATH)
24 changes: 0 additions & 24 deletions Makefile.config.in
Original file line number Diff line number Diff line change
@@ -188,30 +188,6 @@ LIBS := @LIBS@
# Targets that we should build
TARGETS_TO_BUILD=@TARGETS_TO_BUILD@

# Path to location for LLVM C/C++ front-end. You can modify this if you
# want to override the value set by configure.
LLVMGCCDIR := @LLVMGCCDIR@

# Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
LLVMGCC := @LLVMGCC@
LLVMGXX := @LLVMGXX@
LLVMCC1 := @LLVMCC1@
LLVMCC1PLUS := @LLVMCC1PLUS@
LLVMGCC_LANGS := @LLVMGCC_LANGS@
LLVMGCC_DRAGONEGG := @LLVMGCC_DRAGONEGG@

# Information on Clang, if configured.
CLANGPATH := @CLANGPATH@
CLANGXXPATH := @CLANGXXPATH@
ENABLE_BUILT_CLANG := @ENABLE_BUILT_CLANG@

# The LLVM capable compiler to use.
LLVMCC_OPTION := @LLVMCC_OPTION@

# The flag used to emit LLVM IR.
LLVMCC_EMITIR_FLAG = @LLVMCC_EMITIR_FLAG@
LLVMCC_DISABLEOPT_FLAGS := @LLVMCC_DISABLEOPT_FLAGS@

# Path to directory where object files should be stored during a build.
# Set OBJ_ROOT to "." if you do not want to use a separate place for
# object files.
38 changes: 0 additions & 38 deletions Makefile.rules
Original file line number Diff line number Diff line change
@@ -190,19 +190,6 @@ uninstall:: uninstall-local
install-local:: all-local
install-bytecode:: install-bytecode-local

###############################################################################
# LLVMC: Provide rules for compiling llvmc-based driver
###############################################################################

ifdef LLVMC_BASED_DRIVER

TOOLNAME = $(LLVMC_BASED_DRIVER)

LLVMLIBS = CompilerDriver.a
LINK_COMPONENTS = support

endif # LLVMC_BASED_DRIVER

###############################################################################
# VARIABLES: Set up various variables based on configuration data
###############################################################################
@@ -1686,10 +1673,6 @@ ifdef TARGET
TABLEGEN_INC_FILES_COMMON = 1
endif

ifdef LLVMC_BASED_DRIVER
TABLEGEN_INC_FILES_COMMON = 1
endif

ifdef TABLEGEN_INC_FILES_COMMON

INCFiles := $(filter %.inc,$(BUILT_SOURCES))
@@ -1805,27 +1788,6 @@ clean-local::

endif # TARGET

ifdef LLVMC_BASED_DRIVER

TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
$(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))

TDCommon := $(strip $(wildcard \
$(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))

TDFiles := $(TDSrc) $(TDCommon)

$(INCTMPFiles) : $(TBLGEN) $(TDFiles)

$(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
$(Echo) "Building LLVMC compilation graph description with tblgen"
$(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<

clean-local::
-$(Verb) $(RM) -f $(INCFiles)

endif # LLVMC_BASED_DRIVER

###############################################################################
# OTHER RULES: Other rules needed
###############################################################################
1 change: 0 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
@@ -13,4 +13,3 @@ assistance with LLVM.

If you're writing a package for LLVM, see docs/Packaging.html for our
suggestions.

214 changes: 9 additions & 205 deletions autoconf/configure.ac
Original file line number Diff line number Diff line change
@@ -58,6 +58,12 @@ if test ${srcdir} != "." ; then
fi
fi

dnl We need to check for the compiler up here to avoid anything else
dnl starting with a different one.
AC_PROG_CC(clang llvm-gcc gcc)
AC_PROG_CXX(clang++ llvm-g++ g++)
AC_PROG_CPP

dnl Configure all of the projects present in our source tree. While we could
dnl just AC_CONFIG_SUBDIRS on the set of directories in projects that have a
dnl configure script, that usage of the AC_CONFIG_SUBDIRS macro is deprecated.
@@ -722,97 +728,6 @@ esac
AC_DEFINE_UNQUOTED([ENABLE_CBE_PRINTF_A],$ENABLE_CBE_PRINTF_A,
[Define if CBE is enabled for printf %a output])

dnl Allow a specific llvm-gcc/llvm-g++ pair to be used with this LLVM config.
AC_ARG_WITH(llvmgccdir,
AS_HELP_STRING([--with-llvmgccdir],
[Specify location of llvm-gcc install dir (default searches PATH)]),,
withval=default)
case "$withval" in
default) WITH_LLVMGCCDIR=default ;;
/* | [[A-Za-z]]:[[\\/]]*) WITH_LLVMGCCDIR=$withval ;;
*) AC_MSG_ERROR([Invalid path for --with-llvmgccdir. Provide full path]) ;;
esac

dnl Allow a specific llvm-gcc compiler to be used with this LLVM config.
AC_ARG_WITH(llvmgcc,
AS_HELP_STRING([--with-llvmgcc],
[Specify location of llvm-gcc driver (default searches PATH)]),
LLVMGCC=$with_llvmgcc
WITH_LLVMGCCDIR="",)

dnl Allow a specific llvm-g++ compiler to be used with this LLVM config.
AC_ARG_WITH(llvmgxx,
AS_HELP_STRING([--with-llvmgxx],
[Specify location of llvm-g++ driver (default searches PATH)]),
LLVMGXX=$with_llvmgxx
WITH_LLVMGCCDIR="",)

if test -n "$LLVMGCC"; then
LLVMGCCCOMMAND="$LLVMGCC"
fi

if test -n "$LLVMGXX"; then
LLVMGXXCOMMAND="$LLVMGXX"
fi

if test -n "$LLVMGCC" && test -z "$LLVMGXX"; then
AC_MSG_ERROR([Invalid llvm-g++. Use --with-llvmgxx when --with-llvmgcc is used]);
fi

if test -n "$LLVMGXX" && test -z "$LLVMGCC"; then
AC_MSG_ERROR([Invalid llvm-gcc. Use --with-llvmgcc when --with-llvmgxx is used]);
fi

dnl Allow a specific Clang compiler to be used with this LLVM config.
AC_ARG_WITH(clang,
AS_HELP_STRING([--with-clang],
[Specify location of clang compiler (default is --with-built-clang)]),
[],[with_clang=default])

dnl Enable use of the built Clang.
AC_ARG_WITH(built-clang,
AS_HELP_STRING([--with-built-clang],
[Use the compiled Clang as the LLVM compiler (default=check)]),
[],[with_built_clang=check])

dnl Select the Clang compiler option.
dnl
dnl If --with-clang is given, always honor that; otherwise honor
dnl --with-built-clang, or check if we have the clang sources.
AC_MSG_CHECKING([clang compiler])
WITH_CLANGPATH=""
WITH_BUILT_CLANG=0
if test "$with_clang" != "default"; then
WITH_CLANGPATH="$with_clang"
if ! test -x "$WITH_CLANGPATH"; then
AC_MSG_ERROR([invalid --with-clang, path does not specify an executable])
fi
elif test "$with_built_clang" = "yes"; then
WITH_BUILT_CLANG=1
elif test "$with_built_clang" = "no"; then
WITH_BUILT_CLANG=0
else
if test "$with_built_clang" != "check"; then
AC_MSG_ERROR([invalid value for --with-built-clang.])
fi

if test -f ${srcdir}/tools/clang/README.txt; then
WITH_BUILT_CLANG=1
fi
fi

if ! test -z "$WITH_CLANGPATH"; then
AC_MSG_RESULT([$WITH_CLANGPATH])
WITH_CLANGXXPATH=`"$WITH_CLANGPATH" --print-prog-name=clang++`
elif test "$WITH_BUILT_CLANG" = "1"; then
AC_MSG_RESULT([built])
else
AC_MSG_RESULT([none])
fi
AC_SUBST(CLANGPATH,$WITH_CLANGPATH)
AC_SUBST(CLANGXXPATH,$WITH_CLANGXXPATH)
AC_SUBST(ENABLE_BUILT_CLANG,$WITH_BUILT_CLANG)

dnl Override the option to use for optimized builds.
AC_ARG_WITH(optimize-option,
AS_HELP_STRING([--with-optimize-option],
@@ -969,11 +884,6 @@ dnl=== SECTION 4: Check for programs we need and that they are the right version
dnl===
dnl===-----------------------------------------------------------------------===

dnl Check for compilation tools
AC_PROG_CPP
AC_PROG_CC(gcc)
AC_PROG_CXX(g++)

AC_PROG_NM
AC_SUBST(NM)

@@ -1145,55 +1055,6 @@ dnl libtool).
AC_LIBTOOL_DLOPEN
AC_LIB_LTDL

if test "$WITH_LLVMGCCDIR" = "default" ; then
LLVMGCC="llvm-gcc${EXEEXT}"
LLVMGXX="llvm-g++${EXEEXT}"
LLVMGCCCOMMAND="$LLVMGCC"
LLVMGXXCOMMAND="$LLVMGXX"
AC_SUBST(LLVMGCCCOMMAND,$LLVMGCCCOMMAND)
AC_SUBST(LLVMGXXCOMMAND,$LLVMGXXCOMMAND)
AC_PATH_PROG(LLVMGCC, $LLVMGCC, [])
AC_PATH_PROG(LLVMGXX, $LLVMGXX, [])
else
if test -z "$LLVMGCC"; then
LLVMGCC="$WITH_LLVMGCCDIR/bin/llvm-gcc${EXEEXT}"
LLVMGCCCOMMAND="$LLVMGCC"
fi
if test -z "$LLVMGXX"; then
LLVMGXX="$WITH_LLVMGCCDIR/bin/llvm-g++${EXEEXT}"
LLVMGXXCOMMAND="$LLVMGXX"
fi

AC_SUBST(LLVMGCC,$LLVMGCC)
AC_SUBST(LLVMGXX,$LLVMGXX)
AC_SUBST(LLVMGCCCOMMAND,$LLVMGCCCOMMAND)
AC_SUBST(LLVMGXXCOMMAND,$LLVMGXXCOMMAND)
fi

dnl Select the LLVM capable compiler to use, we default to using llvm-gcc if
dnl found, otherwise clang if available.
AC_ARG_WITH(llvmcc,
AS_HELP_STRING([--with-llvmcc=<name>],
[Choose the LLVM capable compiler to use (llvm-gcc, clang, or none; default=check)]),
[],[with_llvmcc=check])
AC_MSG_CHECKING([LLVM capable compiler])
if test "$with_llvmcc" != "check"; then
if (test "$with_llvmcc" != "llvm-gcc" &&
test "$with_llvmcc" != "clang" &&
test "$with_llvmcc" != "none"); then
AC_MSG_ERROR([invalid value for --with-llvmcc, expected 'llvm-gcc', 'clang', or 'none'.])
fi
WITH_LLVMCC="$with_llvmcc"
elif test -n "$LLVMGCC"; then
WITH_LLVMCC=llvm-gcc
elif test -n "$WITH_CLANGPATH" || test "$WITH_BUILT_CLANG" -ne "0"; then
WITH_LLVMCC=clang
else
WITH_LLVMCC=none
fi
AC_MSG_RESULT([$WITH_LLVMCC])
AC_SUBST(LLVMCC_OPTION,$WITH_LLVMCC)

AC_MSG_CHECKING([tool compatibility])

dnl Ensure that compilation tools are GCC or a GNU compatible compiler such as
@@ -1518,9 +1379,9 @@ AC_LINK_IFELSE(
]]),
AC_LANG_POP([C++])
AC_MSG_RESULT(yes)
AC_DEFINE(LLVM_MULTITHREADED, 1, Build multithreading support into LLVM),
AC_DEFINE(LLVM_HAS_ATOMICS, 1, Has gcc/MSVC atomic intrinsics),
AC_MSG_RESULT(no)
AC_DEFINE(LLVM_MULTITHREADED, 0, Build multithreading support into LLVM)
AC_DEFINE(LLVM_HAS_ATOMICS, 0, Has gcc/MSVC atomic intrinsics)
AC_MSG_WARN([LLVM will be built thread-unsafe because atomic builtins are missing]))

dnl===-----------------------------------------------------------------------===
@@ -1539,63 +1400,9 @@ if test "$llvm_cv_os_type" = "Linux" -a "$llvm_cv_target_arch" = "x86_64" ; then
fi
fi

dnl Check, whether __dso_handle is present
dnl Check whether __dso_handle is present
AC_CHECK_FUNCS([__dso_handle])

dnl Check wether llvm-gcc is based on dragonegg
AC_CACHE_CHECK([whether llvm-gcc is dragonegg],[llvm_cv_llvmgcc_dragonegg],
[llvm_cv_llvmgcc_dragonegg="no"
if test -n "$LLVMGCC" ; then
cp /dev/null conftest.c
$LLVMGCC -fplugin-arg-dragonegg-emit-ir -S -o - conftest.c > /dev/null 2>&1
if test $? -eq 0 ; then
llvm_cv_llvmgcc_dragonegg="yes"
fi
rm conftest.c
fi])

dnl Set the flags needed to emit LLVM IR and to disable optimizations
dnl in llvmgcc
if test "$llvm_cv_llvmgcc_dragonegg" = "yes" ; then
LLVMCC_EMITIR_FLAG="-fplugin-arg-dragonegg-emit-ir"
LLVMCC_DISABLEOPT_FLAGS="-fplugin-arg-dragonegg-llvm-ir-optimize=0"
else
LLVMCC_EMITIR_FLAG="-emit-llvm"
LLVMCC_DISABLEOPT_FLAGS="-mllvm -disable-llvm-optzns"
fi

AC_SUBST(LLVMCC_EMITIR_FLAG)

dnl See if the llvm-gcc executable can compile to LLVM assembly
AC_CACHE_CHECK([whether llvm-gcc is sane],[llvm_cv_llvmgcc_sanity],
[llvm_cv_llvmgcc_sanity="no"
if test -n "$LLVMGCC" ; then
cp /dev/null conftest.c
$LLVMGCC "$LLVMCC_EMITIR_FLAG" -S -o - conftest.c | \
grep 'target datalayout =' > /dev/null 2>&1
if test $? -eq 0 ; then
llvm_cv_llvmgcc_sanity="yes"
fi
rm conftest.c
fi])

dnl Since we have a sane llvm-gcc, identify it and its sub-tools
dnl Furthermore, add some information about the tools
if test "$llvm_cv_llvmgcc_sanity" = "yes" ; then
AC_MSG_CHECKING([llvm-gcc component support])
llvmcc1path=`$LLVMGCC --print-prog-name=cc1`
AC_SUBST(LLVMCC1,$llvmcc1path)
llvmcc1pluspath=`$LLVMGCC --print-prog-name=cc1plus`
AC_SUBST(LLVMCC1PLUS,$llvmcc1pluspath)
llvmgccdir=`echo "$llvmcc1path" | sed 's,/libexec/.*,,'`
AC_SUBST(LLVMGCCDIR,$llvmgccdir)
llvmgcclangs=[`$LLVMGCC -v --help 2>&1 | grep '^Configured with:' | sed 's/^.*--enable-languages=\([^ ]*\).*/\1/'`]
AC_SUBST(LLVMGCC_LANGS,$llvmgcclangs)
AC_SUBST(LLVMGCC_DRAGONEGG,$llvm_cv_llvmgcc_dragonegg)
AC_SUBST(LLVMCC_DISABLEOPT_FLAGS)
AC_MSG_RESULT([ok])
fi

dnl Propagate the shared library extension that the libltdl checks did to
dnl the Makefiles so we can use it there too
AC_SUBST(SHLIBEXT,$libltdl_cv_shlibext)
@@ -1759,9 +1566,6 @@ if test -f ${srcdir}/tools/clang/README.txt; then
AC_CONFIG_FILES([tools/clang/docs/doxygen.cfg])
fi

dnl Configure llvmc's Base plugin
AC_CONFIG_FILES([tools/llvmc/src/Base.td])

dnl Do the first stage of configuration for llvm-config.in.
AC_CONFIG_FILES([tools/llvm-config/llvm-config.in])

2 changes: 1 addition & 1 deletion cmake/config-ix.cmake
Original file line number Diff line number Diff line change
@@ -272,7 +272,7 @@ else()
unset(HAVE_FFI_CALL CACHE)
endif( LLVM_ENABLE_FFI )

# Define LLVM_MULTITHREADED if gcc atomic builtins exists.
# Define LLVM_HAS_ATOMICS if gcc or MSVC atomic builtins are supported.
include(CheckAtomic)

if( LLVM_ENABLE_PIC )
Loading