2009-08-24 14:01:07 +03:00
|
|
|
#===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
#
|
|
|
|
# This file is included by all of the LLVM makefiles. For details on how to use
|
|
|
|
# it properly, please see the document MakefileGuide.html in the docs directory.
|
|
|
|
#
|
|
|
|
#===-----------------------------------------------------------------------====#
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# TARGETS: Define standard targets that can be invoked
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Define the various target sets
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
RecursiveTargets := all clean clean-all install uninstall install-bytecode
|
|
|
|
LocalTargets := all-local clean-local clean-all-local check-local \
|
|
|
|
install-local printvars uninstall-local \
|
|
|
|
install-bytecode-local unittests
|
|
|
|
TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
|
|
|
|
dist-zip unittests
|
|
|
|
UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
|
|
|
|
InternalTargets := preconditions distdir dist-hook
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# INITIALIZATION: Basic things the makefile needs
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Set the VPATH so that we can find source files.
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
VPATH=$(PROJ_SRC_DIR)
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Reset the list of suffixes we know how to build.
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll
|
|
|
|
.SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Mark all of these targets as phony to avoid implicit rule search
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
.PHONY: $(UserTargets) $(InternalTargets)
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Make sure all the user-target rules are double colon rules and
|
|
|
|
# they are defined first.
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
$(UserTargets)::
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# PRECONDITIONS: that which must be built/checked first
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
SrcMakefiles := $(filter %Makefile %Makefile.tests,\
|
|
|
|
$(wildcard $(PROJ_SRC_DIR)/Makefile*))
|
|
|
|
ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
|
|
|
|
ConfigureScript := $(PROJ_SRC_ROOT)/configure
|
|
|
|
ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
|
|
|
|
MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
|
|
|
|
MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
|
|
|
|
MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
|
|
|
|
MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
|
|
|
|
PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
|
|
|
|
ifneq ($(MakefileCommonIn),)
|
|
|
|
PreConditions += $(MakefileCommon)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(MakefileConfigIn),)
|
|
|
|
PreConditions += $(MakefileConfig)
|
|
|
|
endif
|
|
|
|
|
|
|
|
preconditions: $(PreConditions)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Make sure the BUILT_SOURCES are built first
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
$(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
|
|
|
|
|
|
|
|
clean-all-local::
|
|
|
|
ifneq ($(strip $(BUILT_SOURCES)),)
|
|
|
|
-$(Verb) $(RM) -f $(BUILT_SOURCES)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
|
|
|
|
spotless:
|
|
|
|
$(Verb) if test -x config.status ; then \
|
|
|
|
$(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
|
|
|
|
$(MKDIR) .spotless.save ; \
|
|
|
|
$(MV) config.status .spotless.save ; \
|
|
|
|
$(MV) mklib .spotless.save ; \
|
|
|
|
$(MV) projects .spotless.save ; \
|
|
|
|
$(RM) -rf * ; \
|
|
|
|
$(MV) .spotless.save/config.status . ; \
|
|
|
|
$(MV) .spotless.save/mklib . ; \
|
|
|
|
$(MV) .spotless.save/projects . ; \
|
|
|
|
$(RM) -rf .spotless.save ; \
|
|
|
|
$(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
|
|
|
|
$(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
|
|
|
|
$(ConfigStatusScript) ; \
|
|
|
|
else \
|
|
|
|
$(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
spotless:
|
|
|
|
$(EchoCmd) "spotless target not supported for objdir == srcdir"
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(BUILT_SOURCES) : $(ObjMakefiles)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Make sure we're not using a stale configuration
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
reconfigure:
|
|
|
|
$(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
|
|
|
|
$(Verb) cd $(PROJ_OBJ_ROOT) && \
|
|
|
|
if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
|
|
|
|
$(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
|
|
|
|
fi ; \
|
|
|
|
$(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
|
|
|
|
$(ConfigStatusScript)
|
|
|
|
|
|
|
|
# FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
|
|
|
|
# up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
|
|
|
|
|
|
|
|
.PRECIOUS: $(ConfigStatusScript)
|
|
|
|
$(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile
|
|
|
|
$(Echo) Reconfiguring with $<
|
|
|
|
$(Verb) cd $(PROJ_OBJ_ROOT) && \
|
|
|
|
if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
|
|
|
|
$(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
|
|
|
|
fi ; \
|
|
|
|
$(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
|
|
|
|
$(ConfigStatusScript)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Make sure the configuration makefile is up to date
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
ifneq ($(MakefileConfigIn),)
|
|
|
|
$(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
|
|
|
|
$(Echo) Regenerating $@
|
|
|
|
$(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(MakefileCommonIn),)
|
|
|
|
$(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
|
|
|
|
$(Echo) Regenerating $@
|
|
|
|
$(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
|
|
|
|
endif
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# If the Makefile in the source tree has been updated, copy it over into the
|
|
|
|
# build tree. But, only do this if the source and object makefiles differ
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
|
|
|
|
|
|
|
|
Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
|
|
|
|
$(Echo) "Updating Makefile"
|
|
|
|
$(Verb) $(MKDIR) $(@D)
|
|
|
|
$(Verb) $(CP) -f $< $@
|
|
|
|
|
|
|
|
# Copy the Makefile.* files unless we're in the root directory which avoids
|
|
|
|
# the copying of Makefile.config.in or other things that should be explicitly
|
|
|
|
# taken care of.
|
|
|
|
$(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
|
|
|
|
@case '$?' in \
|
|
|
|
*Makefile.rules) ;; \
|
|
|
|
*.in) ;; \
|
|
|
|
*) $(EchoCmd) "Updating $(@F)" ; \
|
|
|
|
$(MKDIR) $(@D) ; \
|
|
|
|
$(CP) -f $< $@ ;; \
|
|
|
|
esac
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Set up the basic dependencies
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
$(UserTargets):: $(PreConditions)
|
|
|
|
|
|
|
|
all:: all-local
|
|
|
|
clean:: clean-local
|
|
|
|
clean-all:: clean-local clean-all-local
|
|
|
|
install:: install-local
|
|
|
|
uninstall:: uninstall-local
|
|
|
|
install-local:: all-local
|
|
|
|
install-bytecode:: install-bytecode-local
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# LLVMC: Provide rules for compiling llvmc plugins
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
ifdef LLVMC_PLUGIN
|
|
|
|
|
|
|
|
LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN))
|
|
|
|
CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN)
|
|
|
|
REQUIRES_EH := 1
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
|
|
|
|
LD.Flags += -lCompilerDriver
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Build a dynamic library if the user runs `make` directly from the plugin
|
|
|
|
# directory.
|
|
|
|
ifndef LLVMC_BUILTIN_PLUGIN
|
|
|
|
LOADABLE_MODULE = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
# TableGen stuff...
|
|
|
|
ifneq ($(BUILT_SOURCES),)
|
|
|
|
LLVMC_BUILD_AUTOGENERATED_INC=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif # LLVMC_PLUGIN
|
|
|
|
|
|
|
|
ifdef LLVMC_BASED_DRIVER
|
|
|
|
|
|
|
|
TOOLNAME = $(LLVMC_BASED_DRIVER)
|
|
|
|
|
|
|
|
REQUIRES_EH := 1
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
|
|
|
|
LD.Flags += -lCompilerDriver
|
|
|
|
else
|
|
|
|
LLVMLIBS = CompilerDriver.a
|
|
|
|
LINK_COMPONENTS = support system
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Preprocessor magic that generates references to static variables in built-in
|
|
|
|
# plugins.
|
|
|
|
ifneq ($(LLVMC_BUILTIN_PLUGINS),)
|
|
|
|
|
|
|
|
USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS))
|
|
|
|
|
|
|
|
LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS))
|
|
|
|
LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS))
|
|
|
|
LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS))
|
|
|
|
LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS))
|
|
|
|
LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS))
|
|
|
|
|
|
|
|
ifneq ($(LLVMC_BUILTIN_PLUGIN_1),)
|
|
|
|
CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(LLVMC_BUILTIN_PLUGIN_2),)
|
|
|
|
CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(LLVMC_BUILTIN_PLUGIN_3),)
|
|
|
|
CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(LLVMC_BUILTIN_PLUGIN_4),)
|
|
|
|
CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(LLVMC_BUILTIN_PLUGIN_5),)
|
|
|
|
CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5)
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif # LLVMC_BASED_DRIVER
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# VARIABLES: Set up various variables based on configuration data
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# Variable for if this make is for a "cleaning" target
|
|
|
|
ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
|
|
|
|
IS_CLEANING_TARGET=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Variables derived from configuration we are building
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
CPP.Defines :=
|
|
|
|
# OPTIMIZE_OPTION - The optimization level option we want to build LLVM with
|
|
|
|
# this can be overridden on the make command line.
|
|
|
|
ifndef OPTIMIZE_OPTION
|
|
|
|
ifneq ($(HOST_OS),MingW)
|
|
|
|
OPTIMIZE_OPTION := -O3
|
|
|
|
else
|
|
|
|
OPTIMIZE_OPTION := -O2
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_OPTIMIZED),1)
|
|
|
|
BuildMode := Release
|
|
|
|
# Don't use -fomit-frame-pointer on Darwin or FreeBSD.
|
|
|
|
ifneq ($(HOST_OS),FreeBSD)
|
|
|
|
ifneq ($(HOST_OS),Darwin)
|
|
|
|
OmitFramePointer := -fomit-frame-pointer
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Darwin requires -fstrict-aliasing to be explicitly enabled.
|
|
|
|
# Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
|
|
|
|
# with -fstrict-aliasing and ipa-type-escape radr://6756684
|
|
|
|
#ifeq ($(HOST_OS),Darwin)
|
|
|
|
# EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
|
|
|
|
#endif
|
|
|
|
CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
|
|
|
|
C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
|
|
|
|
LD.Flags += $(OPTIMIZE_OPTION)
|
|
|
|
else
|
|
|
|
BuildMode := Debug
|
|
|
|
CXX.Flags += -g
|
|
|
|
C.Flags += -g
|
|
|
|
LD.Flags += -g
|
|
|
|
KEEP_SYMBOLS := 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_PROFILING),1)
|
|
|
|
BuildMode := $(BuildMode)+Profile
|
|
|
|
CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
|
|
|
|
C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
|
|
|
|
LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
|
|
|
|
KEEP_SYMBOLS := 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
#ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
|
|
|
|
# CXX.Flags += -fvisibility-inlines-hidden
|
|
|
|
#endif
|
|
|
|
|
|
|
|
# IF REQUIRES_EH=1 is specified then don't disable exceptions
|
|
|
|
ifndef REQUIRES_EH
|
|
|
|
CXX.Flags += -fno-exceptions
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef REQUIRES_FRAME_POINTER
|
|
|
|
CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
|
|
|
|
C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
|
|
|
|
LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
|
|
|
|
endif
|
|
|
|
|
|
|
|
# IF REQUIRES_RTTI=1 is specified then don't disable run-time type id
|
|
|
|
ifndef REQUIRES_RTTI
|
|
|
|
# CXX.Flags += -fno-rtti
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef ENABLE_COVERAGE
|
|
|
|
BuildMode := $(BuildMode)+Coverage
|
|
|
|
CXX.Flags += -ftest-coverage -fprofile-arcs
|
|
|
|
C.Flags += -ftest-coverage -fprofile-arcs
|
|
|
|
endif
|
|
|
|
|
|
|
|
# If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
|
|
|
|
# then disable assertions by defining the appropriate preprocessor symbols.
|
|
|
|
ifdef DISABLE_ASSERTIONS
|
|
|
|
# Indicate that assertions are turned off using a minus sign
|
|
|
|
BuildMode := $(BuildMode)-Asserts
|
|
|
|
CPP.Defines += -DNDEBUG
|
|
|
|
else
|
|
|
|
CPP.Defines += -D_DEBUG
|
|
|
|
endif
|
|
|
|
|
|
|
|
# If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
|
|
|
|
# configured), then enable expensive checks by defining the
|
|
|
|
# appropriate preprocessor symbols.
|
|
|
|
ifdef ENABLE_EXPENSIVE_CHECKS
|
|
|
|
BuildMode := $(BuildMode)+Checks
|
|
|
|
CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
|
|
|
|
endif
|
|
|
|
|
|
|
|
# LOADABLE_MODULE implies several other things so we force them to be
|
|
|
|
# defined/on.
|
|
|
|
ifdef LOADABLE_MODULE
|
|
|
|
SHARED_LIBRARY := 1
|
|
|
|
LINK_LIBS_IN_SHARED := 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef SHARED_LIBRARY
|
|
|
|
ENABLE_PIC := 1
|
|
|
|
PIC_FLAG = "(PIC)"
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ENABLE_PIC),1)
|
|
|
|
ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
|
|
|
|
# Nothing. Win32 defaults to PIC and warns when given -fPIC
|
|
|
|
else
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
|
|
# Common symbols not allowed in dylib files
|
|
|
|
CXX.Flags += -fno-common
|
|
|
|
C.Flags += -fno-common
|
|
|
|
else
|
|
|
|
# Linux and others; pass -fPIC
|
|
|
|
CXX.Flags += -fPIC
|
|
|
|
C.Flags += -fPIC
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
|
|
CXX.Flags += -mdynamic-no-pic
|
|
|
|
C.Flags += -mdynamic-no-pic
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
CXX.Flags += -Woverloaded-virtual
|
|
|
|
CPP.BaseFlags += $(CPP.Defines)
|
|
|
|
AR.Flags := cru
|
|
|
|
|
|
|
|
# Make Floating point IEEE compliant on Alpha.
|
|
|
|
ifeq ($(ARCH),Alpha)
|
|
|
|
CXX.Flags += -mieee
|
|
|
|
CPP.BaseFlags += -mieee
|
|
|
|
ifeq ($(ENABLE_PIC),0)
|
|
|
|
CXX.Flags += -fPIC
|
|
|
|
CPP.BaseFlags += -fPIC
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(ARCH),Alpha)
|
|
|
|
LD.Flags += -Wl,--no-relax
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(HOST_OS),MingW)
|
|
|
|
ifeq ($(LLVM_CROSS_COMPILING),1)
|
|
|
|
# Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
|
|
|
|
ifdef TOOLNAME
|
|
|
|
LD.Flags += -Wl,--allow-multiple-definition
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef ENABLE_EXPENSIVE_CHECKS
|
|
|
|
# GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
|
|
|
|
# See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
|
|
|
|
CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags))
|
|
|
|
endif
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Directory locations
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
TargetMode :=
|
|
|
|
ifeq ($(LLVM_CROSS_COMPILING),1)
|
|
|
|
BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
|
|
|
|
endif
|
|
|
|
|
|
|
|
ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
|
|
|
|
ObjDir := $(ObjRootDir)
|
|
|
|
LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
|
|
|
|
ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
|
|
|
|
ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
|
|
|
|
LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
|
|
|
|
LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
|
|
|
|
LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
|
|
|
|
CFERuntimeLibDir := $(LLVMGCCDIR)/lib
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Full Paths To Compiled Tools and Utilities
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
|
|
|
|
Echo = @$(EchoCmd)
|
|
|
|
ifndef LLVMAS
|
|
|
|
LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
|
|
|
|
endif
|
|
|
|
ifndef TBLGEN
|
|
|
|
ifeq ($(LLVM_CROSS_COMPILING),1)
|
|
|
|
TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
|
|
|
|
else
|
|
|
|
TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
LLVM_CONFIG := $(LLVMToolDir)/llvm-config
|
|
|
|
ifndef LLVMLD
|
|
|
|
LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
|
|
|
|
endif
|
|
|
|
ifndef LLVMDIS
|
|
|
|
LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
|
|
|
|
endif
|
|
|
|
ifndef LLI
|
|
|
|
LLI := $(LLVMToolDir)/lli$(EXEEXT)
|
|
|
|
endif
|
|
|
|
ifndef LLC
|
|
|
|
LLC := $(LLVMToolDir)/llc$(EXEEXT)
|
|
|
|
endif
|
|
|
|
ifndef LOPT
|
|
|
|
LOPT := $(LLVMToolDir)/opt$(EXEEXT)
|
|
|
|
endif
|
|
|
|
ifndef LBUGPOINT
|
|
|
|
LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
|
|
|
|
endif
|
|
|
|
ifndef LUPGRADE
|
|
|
|
LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT)
|
|
|
|
endif
|
|
|
|
ifeq ($(LLVMGCC_MAJVERS),3)
|
|
|
|
LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC)
|
|
|
|
LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX)
|
|
|
|
else
|
|
|
|
LLVMGCCWITHPATH := $(LLVMGCC)
|
|
|
|
LLVMGXXWITHPATH := $(LLVMGXX)
|
|
|
|
endif
|
|
|
|
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Adjust to user's request
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
|
|
DARWIN_VERSION := `sw_vers -productVersion`
|
|
|
|
# Strip a number like 10.4.7 to 10.4
|
|
|
|
DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
|
|
|
|
# Get "4" out of 10.4 for later pieces in the makefile.
|
|
|
|
DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
|
|
|
|
|
|
|
|
SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \
|
|
|
|
-dynamiclib -mmacosx-version-min=$(DARWIN_VERSION)
|
|
|
|
else
|
|
|
|
ifeq ($(HOST_OS),Cygwin)
|
|
|
|
SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \
|
|
|
|
-Wl,--enable-auto-import -Wl,--enable-auto-image-base
|
|
|
|
else
|
|
|
|
SharedLinkOptions=-shared
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGET_OS),Darwin)
|
|
|
|
TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Adjust LD.Flags depending on the kind of library that is to be built. Note
|
|
|
|
# that if LOADABLE_MODULE is specified then the resulting shared library can
|
|
|
|
# be opened with dlopen.
|
|
|
|
ifdef LOADABLE_MODULE
|
|
|
|
LD.Flags += -module
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef SHARED_LIBRARY
|
|
|
|
ifneq ($(DARWIN_MAJVERS),4)
|
|
|
|
LD.Flags += $(RPATH) -Wl,$(LibDir)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef TOOL_VERBOSE
|
|
|
|
C.Flags += -v
|
|
|
|
CXX.Flags += -v
|
|
|
|
LD.Flags += -v
|
|
|
|
VERBOSE := 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Adjust settings for verbose mode
|
|
|
|
ifndef VERBOSE
|
|
|
|
Verb := @
|
|
|
|
AR.Flags += >/dev/null 2>/dev/null
|
|
|
|
ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
|
|
|
|
else
|
|
|
|
ConfigureScriptFLAGS :=
|
|
|
|
endif
|
|
|
|
|
|
|
|
# By default, strip symbol information from executable
|
|
|
|
ifndef KEEP_SYMBOLS
|
|
|
|
Strip := $(PLATFORMSTRIPOPTS)
|
|
|
|
StripWarnMsg := "(without symbols)"
|
|
|
|
Install.StripFlag += -s
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Adjust linker flags for building an executable
|
|
|
|
ifneq ($(HOST_OS),Darwin)
|
|
|
|
ifneq ($(DARWIN_MAJVERS),4)
|
|
|
|
ifdef TOOLNAME
|
|
|
|
ifdef EXAMPLE_TOOL
|
|
|
|
LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
|
|
|
|
else
|
|
|
|
LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
#----------------------------------------------------------
|
|
|
|
# Options To Invoke Tools
|
|
|
|
#----------------------------------------------------------
|
|
|
|
|
|
|
|
ifndef NO_PEDANTIC
|
|
|
|
CompileCommonOpts += -pedantic -Wno-long-long
|
|
|
|
endif
|
|
|
|
CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
|
|
|
|
$(EXTRA_OPTIONS)
|
|
|
|
|
|
|
|
ifeq ($(HOST_OS),HP-UX)
|
|
|
|
CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
|
|
|
|
endif
|
|
|
|
|
|
|
|
# If we are building a universal binary on Mac OS/X, pass extra options. This
|
|
|
|
# is useful to people that want to link the LLVM libraries into their universal
|
|
|
|
# apps.
|
|
|
|
#
|
|
|
|
# The following can be optionally specified:
|
|
|
|
# UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
|
|
|
|
# For Mac OS/X 10.4 Intel machines, the traditional one is:
|
|
|
|
# UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
|
|
|
|
# UNIVERSAL_ARCH can be optionally specified to be a list of architectures
|
|
|
|
# to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
|
|
|
|
# i386/ppc only.
|
|
|
|
ifdef UNIVERSAL
|
|
|
|
ifndef UNIVERSAL_ARCH
|
|
|
|
UNIVERSAL_ARCH := i386 ppc
|
|
|
|
endif
|
|
|
|
UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
|
|
|
|
CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
|
|
|
|
ifdef UNIVERSAL_SDK_PATH
|
|
|
|
CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Building universal cannot compute dependencies automatically.
|
|
|
|
DISABLE_AUTO_DEPENDENCIES=1
|
|
|
|
else
|
|
|
|
ifeq ($(TARGET_OS),Darwin)
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
|
|
TargetCommonOpts = -m64
|
|
|
|
else
|
|
|
|
ifeq ($(ARCH),x86)
|
|
|
|
TargetCommonOpts = -m32
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(HOST_OS),SunOS)
|
|
|
|
CPP.BaseFlags += -include llvm/System/Solaris.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
|
|
|
|
CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
|
|
|
|
# All -I flags should go here, so that they don't confuse llvm-config.
|
|
|
|
CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
|
|
|
|
$(patsubst %,-I%/include,\
|
|
|
|
$(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
|
|
|
|
$(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
|
|
|
|
$(CPP.BaseFlags)
|
|
|
|
|
|
|
|
ifeq ($(BUILD_COMPONENT), 1)
|
|
|
|
Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts) -c
|
|
|
|
Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
|
|
|
|
$(CPPFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts) -c
|
|
|
|
Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
|
|
|
|
$(CompileCommonOpts) $(CXX.Flags) -E
|
|
|
|
Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
|
|
|
|
$(LDFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
|
|
|
|
else
|
|
|
|
Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts) -c
|
|
|
|
Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts) -c
|
|
|
|
Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
|
|
|
|
$(CompileCommonOpts) $(CXX.Flags) -E
|
|
|
|
Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
|
|
|
|
endif
|
|
|
|
|
|
|
|
BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CFLAGS) \
|
|
|
|
$(CPPFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts)
|
|
|
|
Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts) -E
|
|
|
|
|
|
|
|
BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
|
|
|
|
$(CPPFLAGS) \
|
|
|
|
$(TargetCommonOpts) $(CompileCommonOpts)
|
|
|
|
|
|
|
|
ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
|
|
|
|
ScriptInstall = $(INSTALL) -m 0755
|
|
|
|
DataInstall = $(INSTALL) -m 0644
|
|
|
|
|
|
|
|
# When compiling under Mingw/Cygwin, the tblgen tool expects Windows
|
|
|
|
# paths. In this case, the SYSPATH function (defined in
|
|
|
|
# Makefile.config) transforms Unix paths into Windows paths.
|
|
|
|
TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
|
|
|
|
-I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
|
|
|
|
-I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
|
|
|
|
-I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
|
|
|
|
|
|
|
|
Archive = $(AR) $(AR.Flags)
|
|
|
|
LArchive = $(LLVMToolDir)/llvm-ar rcsf
|
|
|
|
ifdef RANLIB
|
|
|
|
Ranlib = $(RANLIB)
|
|
|
|
else
|
|
|
|
Ranlib = ranlib
|
|
|
|
endif
|
|
|
|
|
|
|
|
#----------------------------------------------------------
|
|
|
|
# Get the list of source files and compute object file
|
|
|
|
# names from them.
|
|
|
|
#----------------------------------------------------------
|
|
|
|
|
|
|
|
ifndef SOURCES
|
|
|
|
Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
|
|
|
|
$(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
|
|
|
|
else
|
|
|
|
Sources := $(SOURCES)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef BUILT_SOURCES
|
|
|
|
Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
|
|
|
|
endif
|
|
|
|
|
|
|
|
BaseNameSources := $(sort $(basename $(Sources)))
|
|
|
|
|
|
|
|
ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
|
|
|
|
ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# DIRECTORIES: Handle recursive descent of directory structure
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Provide rules to make install dirs. This must be early
|
|
|
|
# in the file so they get built before dependencies
|
|
|
|
#---------------------------------------------------------
|
|
|
|
|
|
|
|
$(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir)::
|
|
|
|
$(Verb) $(MKDIR) $@
|
|
|
|
|
|
|
|
# To create other directories, as needed, and timestamp their creation
|
|
|
|
%/.dir:
|
|
|
|
$(Verb) $(MKDIR) $* > /dev/null
|
|
|
|
$(Verb) $(DATE) > $@
|
|
|
|
|
|
|
|
.PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
|
|
|
|
.PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Handle the DIRS options for sequential construction
|
|
|
|
#---------------------------------------------------------
|
|
|
|
|
|
|
|
SubDirs :=
|
|
|
|
ifdef DIRS
|
|
|
|
SubDirs += $(DIRS)
|
|
|
|
|
|
|
|
ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
|
|
|
|
$(RecursiveTargets)::
|
|
|
|
$(Verb) for dir in $(DIRS); do \
|
|
|
|
if [ ! -f $$dir/Makefile ]; then \
|
|
|
|
$(MKDIR) $$dir; \
|
|
|
|
$(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
|
|
|
|
fi; \
|
|
|
|
($(MAKE) -C $$dir $@ ) || exit 1; \
|
|
|
|
done
|
|
|
|
else
|
|
|
|
$(RecursiveTargets)::
|
|
|
|
$(Verb) for dir in $(DIRS); do \
|
|
|
|
($(MAKE) -C $$dir $@ ) || exit 1; \
|
|
|
|
done
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Handle the EXPERIMENTAL_DIRS options ensuring success
|
|
|
|
# after each directory is built.
|
|
|
|
#---------------------------------------------------------
|
|
|
|
ifdef EXPERIMENTAL_DIRS
|
|
|
|
$(RecursiveTargets)::
|
|
|
|
$(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
|
|
|
|
if [ ! -f $$dir/Makefile ]; then \
|
|
|
|
$(MKDIR) $$dir; \
|
|
|
|
$(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
|
|
|
|
fi; \
|
|
|
|
($(MAKE) -C $$dir $@ ) || exit 0; \
|
|
|
|
done
|
|
|
|
endif
|
|
|
|
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
# Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
ifdef OPTIONAL_PARALLEL_DIRS
|
|
|
|
PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
|
|
|
|
endif
|
|
|
|
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
# Handle the PARALLEL_DIRS options for parallel construction
|
|
|
|
#-----------------------------------------------------------
|
|
|
|
ifdef PARALLEL_DIRS
|
|
|
|
|
|
|
|
SubDirs += $(PARALLEL_DIRS)
|
|
|
|
|
|
|
|
# Unfortunately, this list must be maintained if new recursive targets are added
|
|
|
|
all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
|
|
|
|
clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
|
|
|
|
clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
|
|
|
|
install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
|
|
|
|
uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
|
|
|
|
install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
|
|
|
|
|
|
|
|
ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
|
|
|
|
|
|
|
|
$(ParallelTargets) :
|
|
|
|
$(Verb) if [ ! -f $(@D)/Makefile ]; then \
|
|
|
|
$(MKDIR) $(@D); \
|
|
|
|
$(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
|
|
|
|
fi; \
|
|
|
|
$(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
|
|
|
|
endif
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Handle the OPTIONAL_DIRS options for directores that may
|
|
|
|
# or may not exist.
|
|
|
|
#---------------------------------------------------------
|
|
|
|
ifdef OPTIONAL_DIRS
|
|
|
|
|
|
|
|
SubDirs += $(OPTIONAL_DIRS)
|
|
|
|
|
|
|
|
ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
|
|
|
|
$(RecursiveTargets)::
|
|
|
|
$(Verb) for dir in $(OPTIONAL_DIRS); do \
|
|
|
|
if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
|
|
|
|
if [ ! -f $$dir/Makefile ]; then \
|
|
|
|
$(MKDIR) $$dir; \
|
|
|
|
$(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
|
|
|
|
fi; \
|
|
|
|
($(MAKE) -C$$dir $@ ) || exit 1; \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
else
|
|
|
|
$(RecursiveTargets)::
|
|
|
|
$(Verb) for dir in $(OPTIONAL_DIRS); do \
|
|
|
|
($(MAKE) -C$$dir $@ ) || exit 1; \
|
|
|
|
done
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Handle the CONFIG_FILES options
|
|
|
|
#---------------------------------------------------------
|
|
|
|
ifdef CONFIG_FILES
|
|
|
|
|
|
|
|
ifdef NO_INSTALL
|
|
|
|
install-local::
|
|
|
|
$(Echo) Install circumvented with NO_INSTALL
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) UnInstall circumvented with NO_INSTALL
|
|
|
|
else
|
|
|
|
install-local:: $(PROJ_etcdir) $(CONFIG_FILES)
|
|
|
|
$(Echo) Installing Configuration Files To $(PROJ_etcdir)
|
|
|
|
$(Verb)for file in $(CONFIG_FILES); do \
|
|
|
|
if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
|
|
|
|
$(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \
|
|
|
|
elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
|
|
|
|
$(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \
|
|
|
|
else \
|
|
|
|
$(ECHO) Error: cannot find config file $${file}. ; \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstalling Configuration Files From $(PROJ_etcdir)
|
|
|
|
$(Verb)for file in $(CONFIG_FILES); do \
|
|
|
|
$(RM) -f $(PROJ_etcdir)/$${file} ; \
|
|
|
|
done
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Set up variables for building libararies
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Define various command line options pertaining to the
|
|
|
|
# libraries needed when linking. There are "Proj" libs
|
|
|
|
# (defined by the user's project) and "LLVM" libs (defined
|
|
|
|
# by the LLVM project).
|
|
|
|
#---------------------------------------------------------
|
|
|
|
|
|
|
|
ifdef USEDLIBS
|
|
|
|
ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
|
|
|
|
ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
|
|
|
|
ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
|
|
|
|
ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef LLVMLIBS
|
|
|
|
LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
|
|
|
|
LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
|
|
|
|
LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
|
|
|
|
LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef IS_CLEANING_TARGET
|
|
|
|
ifdef LINK_COMPONENTS
|
|
|
|
|
|
|
|
# If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
|
|
|
|
# clean in tools, then do a make in tools (instead of at the top level).
|
|
|
|
$(LLVM_CONFIG):
|
|
|
|
@echo "*** llvm-config doesn't exist - rebuilding it."
|
|
|
|
@$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
|
|
|
|
|
|
|
|
$(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
|
|
|
|
|
|
|
|
LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
|
|
|
|
LLVMLibsPaths += $(LLVM_CONFIG) \
|
|
|
|
$(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Library Build Rules: Four ways to build a library
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Bytecode Module Targets:
|
|
|
|
# If the user set MODULE_NAME then they want to build a
|
|
|
|
# bytecode module from the sources. We compile all the
|
|
|
|
# sources and link it together into a single bytecode
|
|
|
|
# module.
|
|
|
|
#---------------------------------------------------------
|
|
|
|
|
|
|
|
ifdef MODULE_NAME
|
|
|
|
ifeq ($(strip $(LLVMGCC)),)
|
|
|
|
$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
|
|
|
|
else
|
|
|
|
|
|
|
|
Module := $(LibDir)/$(MODULE_NAME).bc
|
|
|
|
LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r
|
|
|
|
|
|
|
|
|
|
|
|
ifdef EXPORTED_SYMBOL_FILE
|
|
|
|
LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
|
|
|
|
$(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
|
|
|
|
$(Verb) $(LinkModule) -o $@ $(ObjectsBC)
|
|
|
|
|
|
|
|
all-local:: $(Module)
|
|
|
|
|
|
|
|
clean-local::
|
|
|
|
ifneq ($(strip $(Module)),)
|
|
|
|
-$(Verb) $(RM) -f $(Module)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef BYTECODE_DESTINATION
|
|
|
|
ModuleDestDir := $(BYTECODE_DESTINATION)
|
|
|
|
else
|
|
|
|
ModuleDestDir := $(PROJ_libdir)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef NO_INSTALL
|
|
|
|
install-local::
|
|
|
|
$(Echo) Install circumvented with NO_INSTALL
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstall circumvented with NO_INSTALL
|
|
|
|
else
|
|
|
|
DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
|
|
|
|
|
|
|
|
install-module:: $(DestModule)
|
|
|
|
install-local:: $(DestModule)
|
|
|
|
|
|
|
|
$(DestModule): $(ModuleDestDir) $(Module)
|
|
|
|
$(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
|
|
|
|
$(Verb) $(DataInstall) $(Module) $(DestModule)
|
|
|
|
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
|
|
|
|
-$(Verb) $(RM) -f $(DestModule)
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# if we're building a library ...
|
|
|
|
ifdef LIBRARYNAME
|
|
|
|
|
|
|
|
# Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
|
|
|
|
LIBRARYNAME := $(strip $(LIBRARYNAME))
|
|
|
|
ifdef LOADABLE_MODULE
|
|
|
|
LibName.A := $(LibDir)/$(LIBRARYNAME).a
|
|
|
|
LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT)
|
|
|
|
else
|
|
|
|
LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
|
|
|
|
LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT)
|
|
|
|
endif
|
|
|
|
LibName.O := $(LibDir)/$(LIBRARYNAME).o
|
|
|
|
LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Shared Library Targets:
|
|
|
|
# If the user asked for a shared library to be built
|
|
|
|
# with the SHARED_LIBRARY variable, then we provide
|
|
|
|
# targets for building them.
|
|
|
|
#---------------------------------------------------------
|
|
|
|
ifdef SHARED_LIBRARY
|
|
|
|
|
|
|
|
all-local:: $(LibName.SO)
|
|
|
|
|
|
|
|
ifdef LINK_LIBS_IN_SHARED
|
|
|
|
ifdef LOADABLE_MODULE
|
|
|
|
SharedLibKindMessage := "Loadable Module"
|
|
|
|
else
|
|
|
|
SharedLibKindMessage := "Shared Library"
|
|
|
|
endif
|
|
|
|
$(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir
|
|
|
|
$(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
|
|
|
|
$(LIBRARYNAME)$(SHLIBEXT)
|
|
|
|
$(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
|
|
|
|
$(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
|
|
|
|
else
|
|
|
|
$(LibName.SO): $(ObjectsO) $(LibDir)/.dir
|
|
|
|
$(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT)
|
|
|
|
$(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
|
|
|
|
endif
|
|
|
|
|
|
|
|
clean-local::
|
|
|
|
ifneq ($(strip $(LibName.SO)),)
|
|
|
|
-$(Verb) $(RM) -f $(LibName.SO)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef NO_INSTALL
|
|
|
|
install-local::
|
|
|
|
$(Echo) Install circumvented with NO_INSTALL
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstall circumvented with NO_INSTALL
|
|
|
|
else
|
|
|
|
DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT)
|
|
|
|
|
|
|
|
install-local:: $(DestSharedLib)
|
|
|
|
|
|
|
|
$(DestSharedLib): $(LibName.SO) $(PROJ_libdir)
|
|
|
|
$(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
|
|
|
|
$(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
|
|
|
|
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
|
|
|
|
-$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).*
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Bytecode Library Targets:
|
|
|
|
# If the user asked for a bytecode library to be built
|
|
|
|
# with the BYTECODE_LIBRARY variable, then we provide
|
|
|
|
# targets for building them.
|
|
|
|
#---------------------------------------------------------
|
|
|
|
ifdef BYTECODE_LIBRARY
|
|
|
|
ifeq ($(strip $(LLVMGCC)),)
|
|
|
|
$(warning Bytecode libraries require llvm-gcc which could not be found ****)
|
|
|
|
else
|
|
|
|
|
|
|
|
all-local:: $(LibName.BCA)
|
|
|
|
|
|
|
|
ifdef EXPORTED_SYMBOL_FILE
|
|
|
|
BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \
|
|
|
|
-internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
|
|
|
|
|
|
|
|
$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
|
|
|
|
$(LLVMToolDir)/llvm-ar
|
|
|
|
$(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
|
|
|
|
"(internalize)"
|
Merge LLVM upstream SVN r80601.
This brings in some memory leak fixes for LLVMCOntext.
Squashed commit of the following:
commit 4cfaf41d499ce05b11ecb62746c3e86b04440f62
Author: Bill Wendling <isanbard@gmail.com>
Date: Mon Aug 31 18:26:48 2009 +0000
Output a hex value, because all of the others are hex.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80601 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7829e5a6558bb97589d47d61da3142f7ebbdaeac
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 31 18:05:23 2009 +0000
Fix some misspellings of XTARGET.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80598 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8364630e4cb67b6f64a704960e73ae44ce3f10ed
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 31 17:49:20 2009 +0000
Mark test as passing on all x86, which it should,
although I don't think anyone cares about this
feature except Darwin. PR 4825.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80596 91177308-0d34-0410-b5e6-96231b3b80d8
commit cf91fb4cb2e15b1fa07dc1282ac59c3659d80015
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 17:08:30 2009 +0000
cleanups pointed out by duncan
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80595 91177308-0d34-0410-b5e6-96231b3b80d8
commit 752d366fe7a9d0f68258465ce554cdf40af2918e
Author: Duncan Sands <baldrick@free.fr>
Date: Mon Aug 31 16:45:16 2009 +0000
Revert commit 80428. It completely broke exception
handling on x86-32 linux.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80592 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c8dfbb88bb125c2b7d1105645937b14dce9bcd3
Author: Edwin Török <edwintorok@gmail.com>
Date: Mon Aug 31 16:14:59 2009 +0000
Free the constants that have no uses in ~LLVMContext.
This fixes leaks from LLVMContext in multithreaded apps.
Since constants are only deleted if they have no uses, it is safe to not delete
a Module on shutdown, as many single-threaded tools do.
Multithreaded apps should however delete the Module before destroying the
Context to ensure that there are no leaks (assuming they use a different context
for each thread).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80590 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6d5f43b77a907a2b42ff405ab16e078c6598c70e
Author: Edwin Török <edwintorok@gmail.com>
Date: Mon Aug 31 16:12:29 2009 +0000
Fix ExplicitSymbols leak.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80589 91177308-0d34-0410-b5e6-96231b3b80d8
commit b759ebc5bc48ee93a9f4b031ec6ed3247028d77c
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Mon Aug 31 13:05:24 2009 +0000
Normalize makefile comments and sort cmake file lists.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80584 91177308-0d34-0410-b5e6-96231b3b80d8
commit d79f43204be2893e74872f1062e2a44f023d39e1
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:09:28 2009 +0000
llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80578 91177308-0d34-0410-b5e6-96231b3b80d8
commit f4c67959b5ea0bbd3a39085c91c2d3162c6fd973
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:09:09 2009 +0000
llvm-mc: Simplify EmitAssignment ('.set' is identical to '=').
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80577 91177308-0d34-0410-b5e6-96231b3b80d8
commit b6a03e093598d90c10c8d1cab8425e3d107b12cf
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:50 2009 +0000
llvm-mc: Remove MCAsmParser::Parse[Paren]RelocatableExpression.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80576 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e96621a502ddebc12cd4d139756b7a90fd1ca8a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:38 2009 +0000
llvm-mc: Switch MCInst to storing an MCExpr* instead of an MCValue.
Also, use MCInst::print instead of custom code in MCAsmPrinter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80575 91177308-0d34-0410-b5e6-96231b3b80d8
commit 667cfd44ac3394697e60f54f72bfd190436c061a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:17 2009 +0000
llvm-mc: Add MCAsmParser::Parse[Paren]Expression forms which return an MCExpr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80574 91177308-0d34-0410-b5e6-96231b3b80d8
commit 22ad5f80f751da3ba986022d09c49fcc4416048a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:06 2009 +0000
llvm-mc: Make MCSymbolData symbol member const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80573 91177308-0d34-0410-b5e6-96231b3b80d8
commit 29efe7e0c9d32aaefa2a2924a8ded5fd4c76ff28
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:55 2009 +0000
llvm-mc: Add MCContext to MCAssembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80572 91177308-0d34-0410-b5e6-96231b3b80d8
commit 890ebe2d940760796e088902a2613cdf30b16e76
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:44 2009 +0000
llvm-mc: Add MCAsmParser::getContext.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80571 91177308-0d34-0410-b5e6-96231b3b80d8
commit 510c1a5512b7de68dc9b272eaba0e5d6c3ddc8b9
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:33 2009 +0000
llvm-mc: Add MCExpr::{dump,print}.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80570 91177308-0d34-0410-b5e6-96231b3b80d8
commit bc4d607b1a5fd13c1f19ef812ebb6fe814831d56
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:22 2009 +0000
llvm-mc: Switch MCExpr construction to using static member functions, and taking the MCContext (which now owns all MCExprs).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80569 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e3b031540ae25a464bfa37cdbd19e2cad301ee7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:08 2009 +0000
llvm-mc: Add some doxyment markers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80568 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3679d2f3156d001053bae8fa5a162852b7700a27
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:06:59 2009 +0000
llvm-mc: Move AsmExpr into MC lib (as MCExpr).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80567 91177308-0d34-0410-b5e6-96231b3b80d8
commit 298ea10f4da28d9be51f8be5af59f88ea86ce7ec
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 07:23:46 2009 +0000
Step #1 to giving Callgraph some sane invariants. The problems with callgraph
stem from the fact that we have two types of passes that need to update it:
1. callgraphscc and module passes that are explicitly aware of it
2. Functionpasses (and loop passes etc) that are interlaced with CGSCC passes
by the CGSCC Passmgr.
In the case of #1, we can reasonably expect the passes to update the call
graph just like any analysis. However, functionpasses are not and generally
should not be CG aware. This has caused us no end of problems, so this takes
a new approach. Logically, the CGSCC Pass manager can rescan every function
after it runs a function pass over it to see if the functionpass made any
updates to the IR that affect the callgraph. This allows it to catch new calls
introduced by the functionpass.
In practice, doing this would be slow. This implementation keeps track of
whether or not the current scc is dirtied by a function pass, and, if so,
delays updating the callgraph until it is actually needed again. This was
we avoid extraneous rescans, but we still have good invariants when the
callgraph is needed.
Step #2 of the "give Callgraph some sane invariants" is to change CallGraphNode
to use a CallBackVH for the callsite entry of the CallGraphNode. This way
we can immediately remove entries from the callgraph when a FunctionPass is
active instead of having dangling pointers. The current pass tries to tolerate
these dangling pointers, but it is just an evil hack.
This is related to PR3601/4835/4029. This also reverts r80541, a hack working
around the sad lack of invariants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80566 91177308-0d34-0410-b5e6-96231b3b80d8
commit 21d79e26df48405ff2fdfde682c4fdf6c646ef8a
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 06:57:37 2009 +0000
fix some cases where instcombine would change hte IR but not return true
from runOnFunction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80562 91177308-0d34-0410-b5e6-96231b3b80d8
commit 223479b6087a6d9a1470c857c459e408ba51df84
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 06:01:21 2009 +0000
cleanups, factor some code out to a helper function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80542 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5313424550268526a14fd910cfb59efb95e0f30
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:46:59 2009 +0000
fix a crash building SPASS by tolerating a callsite that doesn't exist
in the callgraph, see the big comment at the top of the testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80541 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4c76b7e8e15bf7ed6607393535f64a9070b6df8c
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:34:32 2009 +0000
comment and simplify some code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80540 91177308-0d34-0410-b5e6-96231b3b80d8
commit d441cd63a37ec3589fed1cfba11bbb177dab8fa6
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:22:48 2009 +0000
add -debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80539 91177308-0d34-0410-b5e6-96231b3b80d8
commit 26b7f945b3a935e44755202ef7be13fdee8c75b5
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:17:58 2009 +0000
improve -debug output, so that -debug is more likely to print when
instcombine is changing stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80538 91177308-0d34-0410-b5e6-96231b3b80d8
commit adba7ea53650f26a6752f606041ac6d741c1fd4f
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 04:36:22 2009 +0000
fix a bug I introduced with my 'instcombine builder' refactoring
changes: SimplifyDemandedBits can't use the builder yet because it
has the wrong insertion point. This fixes a crash building
MultiSource/Benchmarks/PAQ8p
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80537 91177308-0d34-0410-b5e6-96231b3b80d8
commit b74203603b43d08ddef33e9a4c9c03752d86aee6
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 04:09:04 2009 +0000
simplify some code by making the SCCNodes set contain Function*'s
instead of CallGraphNode*'s. This also papers over a callgraph
problem where a pass (in this case, MemCpyOpt) introduces a new
function into the module (llvm.memset.i64) but doesn't add it to
the call graph (nor should it, since it is a function pass).
While it might be a good idea for MemCpyOpt to not synthesize
functions in a runOnFunction(), there is no need for FunctionAttrs
to be boneheaded, so fix it there. This fixes an assertion building
176.gcc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80535 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e30f91f1c190b8f3ba93de2c8746e0addaf056e
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 03:22:35 2009 +0000
only print the override triple if it exists!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80534 91177308-0d34-0410-b5e6-96231b3b80d8
commit fd7079292b43ca5eceae2c585fc2899033a448f7
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 03:15:49 2009 +0000
Fix PR4834, a tricky case where the inliner would resolve an
indirect function pointer, inline it, then go to delete the body.
The problem is that the callgraph had other references to the function,
though the inliner had no way to know it, so we got a dangling pointer
and an invalid iterator out of the deal.
The fix to this is pretty simple: stop the inliner from deleting the
function by knowing that there are references to it. Do this by making
CallGraphNodes contain a refcount. This requires moving deletion of
available_externally functions to the module-level cleanup sweep where
it belongs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80533 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7d7776f7adca3f51d05c3bbfbacaf65a5ae5167f
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 02:24:20 2009 +0000
use an accessor instead of poking internals of a node.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80532 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7032b5cbb5282c844008e780c7bbdddf8f8cf096
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Mon Aug 31 01:58:50 2009 +0000
CMake: updated library dependencies.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80531 91177308-0d34-0410-b5e6-96231b3b80d8
commit 54b6adfbb882f2f9b96c241fb87d0128ce840960
Author: Jim Grosbach <grosbach@apple.com>
Date: Mon Aug 31 01:35:03 2009 +0000
PR4747
Shared landing pads run into trouble with SJLJ, as the dispatch table is
mapped to call sites, and merging the pads will throw that off. There needs
to be a one-to-one mapping of landing pad exception table entries to invoke
call points.
Detecting the shared pad during lowering of SJLJ info insn't sufficient, as
the dispatch function may still need separate destinations to properly
handle phi-nodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80530 91177308-0d34-0410-b5e6-96231b3b80d8
commit 86ab47ae9c388e9e046dedd9d9d554268290e450
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 00:28:46 2009 +0000
update unit test for previous change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80528 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3dab7152eedc0d822a9499102303eba526026021
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 00:19:58 2009 +0000
Fix some nasty callgraph dangling pointer problems in
argpromotion and structretpromote. Basically, when replacing
a function, they used the 'changeFunction' api which changes
the entry in the function map (and steals/reuses the callgraph
node).
This has some interesting effects: first, the problem is that it doesn't
update the "callee" edges in any callees of the function in the call graph.
Second, this covers for a major problem in all the CGSCC pass stuff, which
is that it is completely broken when functions are deleted if they *don't*
reuse a CGN. (there is a cute little fixme about this though :).
This patch changes the protocol that CGSCC passes must obey: now the CGSCC
pass manager copies the SCC and preincrements its iterator to avoid passes
invalidating it. This allows CGSCC passes to mutate the current SCC. However
multiple passes may be run on that SCC, so if passes do this, they are now
required to *update* the SCC to be current when they return.
Other less interesting parts of this patch are that it makes passes update
the CG more directly, eliminates changeFunction, and requires clients of
replaceCallSite to specify the new callee CGN if they are changing it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80527 91177308-0d34-0410-b5e6-96231b3b80d8
commit 637d133ffeaa961837ebc87ee6934be5ef401b8f
Author: Erick Tryzelaar <idadesub@users.sourceforge.net>
Date: Sun Aug 30 23:41:20 2009 +0000
Fix header comment for bindings/ocaml/llvm/Makefile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80526 91177308-0d34-0410-b5e6-96231b3b80d8
commit ad465d7013a6ec529a34605d51377202af71b418
Author: Erick Tryzelaar <idadesub@users.sourceforge.net>
Date: Sun Aug 30 23:38:06 2009 +0000
Make sure we specify no arguments for context functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80525 91177308-0d34-0410-b5e6-96231b3b80d8
commit ba263e5f1b2320558e3935bbfbdc10c6d581c19d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:24:32 2009 +0000
add a dump() method on callgraph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80524 91177308-0d34-0410-b5e6-96231b3b80d8
commit 72489759fa9fb63fdfa9f2e363222f0c45bf1340
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:14:17 2009 +0000
rename test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80523 91177308-0d34-0410-b5e6-96231b3b80d8
commit fae478e46e8ba5192eebbe569a627fdb954e587f
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:13:26 2009 +0000
merge all sinking tests into one and convert them to filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80522 91177308-0d34-0410-b5e6-96231b3b80d8
commit a94b6974dd77e6457eba731fc6bf760d150f4207
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:08:19 2009 +0000
convert scalar_promote to filecheck style and merge 2003-12-13-VolatilePromote.ll into it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80521 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9e2f641e11c20fa64e5f605e00168ecc7c0207b6
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:45:23 2009 +0000
eliminate some uses of prcontext. Any help here would be appreciated :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80520 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5d911fe3ad0daa3bab9f6ddb24931db969fed00
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:36:39 2009 +0000
rename test so that name reflects what it is testing for.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80519 91177308-0d34-0410-b5e6-96231b3b80d8
commit 16078ca613ec085b395afbabf5b68b7062e0ac1c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:36:06 2009 +0000
convert to filecheck format.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80518 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0799dd19d3f0c2f1beb1b17ef7842ae5b61043d2
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:31:34 2009 +0000
suck a bunch more gep tests into getelementptr.ll and filecheckize them all.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80517 91177308-0d34-0410-b5e6-96231b3b80d8
commit 16d7262e7a2e523c97e2c8bb2b4ab8823cf05772
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 21:14:05 2009 +0000
Tweak comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80516 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6a8458c86c784f7955ab7815b4840fc21f27b2d8
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 21:13:58 2009 +0000
Fix some possible-use-of-uninitialized warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80515 91177308-0d34-0410-b5e6-96231b3b80d8
commit 909749e25e3d5442e5b407781d2de92871f81a64
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:02:36 2009 +0000
consolodate various GEP tests into getelementptr.ll using filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80514 91177308-0d34-0410-b5e6-96231b3b80d8
commit ccf7551a0445599b24a0eae667242e67b5f5d298
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:02:02 2009 +0000
another huge testcase, this time from 'gs' in llvm-test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80513 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1fa629a0ffe6aa837bda41389c098e236a5b0f0c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:01:14 2009 +0000
remove another poorly-reduced testcase which came from ldecod in llvm-test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80512 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36d9c48134861d576a78c09e001d7773a502ea76
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:00:11 2009 +0000
this testcase is 500 lines long and is distilled from bzip2, just
remove it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80511 91177308-0d34-0410-b5e6-96231b3b80d8
commit 586de4da4bffce2aae9110a60a39a3318014674c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:48:15 2009 +0000
convert to filecheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80510 91177308-0d34-0410-b5e6-96231b3b80d8
commit 83288fa512830d723318bf99060d3ec4fbf53abc
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:38:21 2009 +0000
Fix PR4748: don't fold gep(bitcast(x)) into bitcast(gep) when x
is itself a bitcast. Since we have gep(bitcast(bitcast(y))) in this
case, just wait for the two bitcasts to get zapped. This prevents
instcombine from confusing some aliasing stuff, and allows it to
directly eliminate the load in the testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80508 91177308-0d34-0410-b5e6-96231b3b80d8
commit f3a2359906e6939a2552c7c23877592693d757f1
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:36:46 2009 +0000
misc cleanup
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80507 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6807a24de176e563843a0c5a21c9358b5eeefc2d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:06:40 2009 +0000
add getPointerAddressSpace() to GEP instruction, use the method
in a few scalar xforms to simplify things.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80506 91177308-0d34-0410-b5e6-96231b3b80d8
commit d6164c20cdaaa27a2cc7b340604b4df3f2b97129
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:01:10 2009 +0000
eliminate InsertCastBefore, use the builder instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80505 91177308-0d34-0410-b5e6-96231b3b80d8
commit 78628294ebe9a062fbd7e55edf5240e9b7c53fce
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 19:47:22 2009 +0000
eliminate InsertBitCastBefore, just use the builder instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80504 91177308-0d34-0410-b5e6-96231b3b80d8
commit b77b0464ba62108a07af655f626f5bfe3bd63162
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 19:45:21 2009 +0000
add a "getPointerAddressSpace" helper method to LoadInst and StoreInst.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80503 91177308-0d34-0410-b5e6-96231b3b80d8
commit d33527768525e6447c6fdcf521ffb975165dbc7a
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sun Aug 30 19:06:39 2009 +0000
Add missed pattern
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80502 91177308-0d34-0410-b5e6-96231b3b80d8
commit ad7516ac00ede459691feba7f448a4c3654ea6fc
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 18:50:58 2009 +0000
convert a bunch more calls to InsertNewInstBefore to use
the new Instcombine builder.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80501 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36ec3b4e9828905bdc6bf7ef91ac808ab11e7d45
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 17:53:59 2009 +0000
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80500 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8ba22dd113839d66b3f2912aff6bdd27776b1608
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 17:44:10 2009 +0000
hopefully unbreak the build by making this-> explicit for dependent
base class lookup.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80499 91177308-0d34-0410-b5e6-96231b3b80d8
commit 243874430bb02c8f76b7603cbc8f31ebf2749785
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sun Aug 30 17:14:54 2009 +0000
EXTRACT_VECTOR_ELEMENT can have result type different from element type.
Remove the assertion and generalize the code for ARM NEON stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80498 91177308-0d34-0410-b5e6-96231b3b80d8
commit 42cee05a28e87ba96760daaf9699f8355ea53f6e
Author: Edwin Török <edwintorok@gmail.com>
Date: Sun Aug 30 08:24:09 2009 +0000
Add regular expression matching support, based on OpenBSD regexec()/regcomp()
implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80493 91177308-0d34-0410-b5e6-96231b3b80d8
commit c769485a593b86360597d913c083292279730695
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 07:44:24 2009 +0000
give instcombine a custom IRBuilder that adds new instructions to the
workslist and is set to insert new instructions before the current one.
Convert a bunch of stuff that used to call InsertNewInstBefore over to
use it, greatly simplifying code and making it more natural.
There is still a lot more to go, but this is a good start.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80492 91177308-0d34-0410-b5e6-96231b3b80d8
commit f0b47f327e20f338c90202ea21001dd9b06f7ef5
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 07:01:09 2009 +0000
Update test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80490 91177308-0d34-0410-b5e6-96231b3b80d8
commit c5ad98f04a19b2b7d463713a77634471578d1a64
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:27:41 2009 +0000
add a new InstCombineWorklist::AddValue method that works even
if the operand is not an instruction.
Simplify most uses of AddOperandsToWorkList to use AddValue and
inline it into the one remaining callsite.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80488 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4796b62fccd6f8c414b5a642ebe0f6dbbabd5b61
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:22:51 2009 +0000
move AddUsersToWorkList to the worklist processing class, make the
argument stronger typed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80487 91177308-0d34-0410-b5e6-96231b3b80d8
commit 059cfc7570d47711c1b53c909ab0f9c347cb23c3
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:20:05 2009 +0000
rename AddUsesToWorkList -> AddOperandsToWorkList. The
former looks too much like AddUsersToWorkList and keeps
confusing me.
Remove AddSoonDeadInstToWorklist and change its two callers
to do the same thing in a simpler way.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80486 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8d310b5231890e926000c6939540b93fe094b61
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 06:17:49 2009 +0000
llvm-mc/X86: Encode constant MCValue's correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80485 91177308-0d34-0410-b5e6-96231b3b80d8
commit b03d1179e934cb99e30190835fea1e7f4a59ecad
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 06:17:16 2009 +0000
llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported for now.
- Switch Emit{CommonSymbol,Zerofill} to take alignment in bytes (for consistency).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80484 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3183fb6b613c15627c33a8257cbbfe10dbf0bb7f
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:13:40 2009 +0000
inline the trivial AddToWorkList/RemoveFromWorkList methods
into their callers. simplify ReplaceInstUsesWith. Make
EraseInstFromFunction only add operands to the worklist if
there aren't too many of them (this was a scalability win
for crazy programs that was only infrequently enforced).
Switch more code to using EraseInstFromFunction instead of
duplicating it inline. Change some fcmp/icmp optimizations
to modify fcmp/icmp in place instead of creating a new one
and deleting the old one just to change the predicate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80483 91177308-0d34-0410-b5e6-96231b3b80d8
commit bf09d6330ea039406e250493d7e45d001f81734d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:56:44 2009 +0000
fix a bug I introduced in r80478 found by the build bot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80482 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5119c70d1620b79288c50ca2ad6a3ea4f11a3f35
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:55:36 2009 +0000
refactor instcombine's worklist processing stuff out to its own class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80481 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1dde4eb8a0aef903bfd53d8dabfc61a560e1b327
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:55:04 2009 +0000
make DenseMap::clear() early exit if there is nothing to do.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80480 91177308-0d34-0410-b5e6-96231b3b80d8
commit 69af0ff152a949c41ea8ff4550c74627306262f7
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:42:59 2009 +0000
some minor cleanups to IRBuilder, factor the insertion
hook out of the main IRBuilder class to allow clients to
override it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80479 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c641fc37fc42d878883b0325810a5c8c02a436c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:30:55 2009 +0000
more cleanups: remove some redundant code, and simplify some
other places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80478 91177308-0d34-0410-b5e6-96231b3b80d8
commit c2c8a0ac3f529c9e536862b213e18f67de05f422
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:08:50 2009 +0000
eliminate the temporary SrcGEPOperands smallvector.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80477 91177308-0d34-0410-b5e6-96231b3b80d8
commit 95ba1ec4cbb14614f9ac26c9aabe5cac6640c4b0
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:00:50 2009 +0000
simplify/detangle some control flow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80476 91177308-0d34-0410-b5e6-96231b3b80d8
commit c0f553e874121b6a0feb35e580040c02da05ac3c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 04:49:01 2009 +0000
simplify and cleanup some code, remove some code that just
does constant folding of gep's: this is already handled in
a more general way.
No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80475 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9da50553ef4596ea75c3a5434bf9ad356fb574ee
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 04:25:40 2009 +0000
default count-aa to -print-all. The whole reason to use count-aa is
to see what queries are being made by a transformation, we might as well
default to printing them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80474 91177308-0d34-0410-b5e6-96231b3b80d8
commit 09880947395319ff0df656549ddf0b080b7af385
Author: Bill Wendling <isanbard@gmail.com>
Date: Sun Aug 30 00:28:57 2009 +0000
Nuke moribund "std::string" version of EOL(..., Encoding).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80466 91177308-0d34-0410-b5e6-96231b3b80d8
commit cdfb9b17b94bffa0de0e4862d22369fa1dcd9099
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:54:26 2009 +0000
Add AutoGenerated.inc to svn:ignore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80455 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5d138f96f048cc7009397708ed10edea7cede5a6
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:39:38 2009 +0000
Remove an unnecessary Context argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80454 91177308-0d34-0410-b5e6-96231b3b80d8
commit f928ad4af07aaac5e7e81757dcd514acbb5cb39c
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:37:49 2009 +0000
Minor logic simplification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80453 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3d9354c841746f1802babcd465e542d7a7ea2a10
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:36:57 2009 +0000
Add some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80452 91177308-0d34-0410-b5e6-96231b3b80d8
commit 18e06cf39d0313f80b055eb98dba8d8f42fd08cd
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:35:16 2009 +0000
Cleanup whitespace and indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80451 91177308-0d34-0410-b5e6-96231b3b80d8
commit b006a1010559be4bc9d5e577c50fc750194f34a6
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:34:14 2009 +0000
Remove some unused fields.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80450 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1596dd23f3e2df5225cdfcea0904a017f96aaa90
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 22:19:15 2009 +0000
CMOV_GR8 clobbers EFLAGS when its expansion involves an xor to set
a register to 0. This fixes PR4814.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80445 91177308-0d34-0410-b5e6-96231b3b80d8
commit ac09afaf40216429fad53899cce2f9fde8e267d4
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Sat Aug 29 13:38:21 2009 +0000
Inline empty destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80431 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c5374802712a3d28cd13207ed3979a95457075c
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:31:38 2009 +0000
Fix warning about non-virtual destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80429 91177308-0d34-0410-b5e6-96231b3b80d8
commit b4ac493684cdeb2147000a6816a563269fcf3c70
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:20:54 2009 +0000
- Add target lowering methods to get the preferred format for the FDE and LSDA
encodings.
- Make some of the values emitted by the FDEs dependent upon the pointer
size. This is in line with how GCC does things. And it has the benefit of
working for Darwin in 64-bit mode now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80428 91177308-0d34-0410-b5e6-96231b3b80d8
commit 946b521498866b3d83c4447c9c0ece6095a56874
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:17:53 2009 +0000
Add a form of EOL which emits the text version of a DWARF format encoding. This
doesn't handle all values of the formatting. Those can be added as needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80427 91177308-0d34-0410-b5e6-96231b3b80d8
commit 502c35e863882790a94ad432d0a03c4a7e1a0aad
Author: Bob Wilson <bob.wilson@apple.com>
Date: Sat Aug 29 05:53:25 2009 +0000
PR4795: Remove EEVT::isFP, isInt and isVec types used by TableGen's type
inferencing. As far as I can tell, these are equivalent to the existing
MVT::fAny, iAny and vAny types, and having both of them makes it harder
to reason about and modify the type inferencing code.
The specific problem in PR4795 occurs when updating a vAny type to be fAny
or iAny, or vice versa. Both iAny and fAny include vector types -- they
intersect with the set of types represented by vAny. When merging them,
choose fAny/iAny to represent the intersection. This is not perfect, since
fAny/iAny also include scalar types, but it is good enough for TableGen's
type inferencing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80423 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0ac7faa993d472be4a23e0e58fa6e9372960cfe8
Author: Eric Christopher <echristo@apple.com>
Date: Sat Aug 29 01:12:46 2009 +0000
Make the augmentation size and next set of bytes agree on size,
and make the reference pointer size as it should be.
Fixes an abort on a testcase derived from libunwind's personality
test in 64-bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80414 91177308-0d34-0410-b5e6-96231b3b80d8
commit 83b551c5efdc49183f744103cd8e22a75117d07f
Author: Jeffrey Yasskin <jyasskin@google.com>
Date: Sat Aug 29 00:44:16 2009 +0000
Fix OProfile support after r80406 changed the DebugInfo interface from
GlobalVariables to MDNodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80411 91177308-0d34-0410-b5e6-96231b3b80d8
commit e54c004ea5ea6c7e89b1cef9531ce05096122bbf
Author: David Goodwin <david_goodwin@apple.com>
Date: Sat Aug 29 00:11:13 2009 +0000
Another stab at fixing up register kill flags after post-RA scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80410 91177308-0d34-0410-b5e6-96231b3b80d8
commit cb7c98d9ef32354166106ff8218fb9fcbb8b2d24
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sat Aug 29 00:08:18 2009 +0000
Do not assert on too wide splats we don't support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80409 91177308-0d34-0410-b5e6-96231b3b80d8
commit 44e0a6cee931258a05b190f9e6e411a6d276c96a
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Fri Aug 28 23:41:26 2009 +0000
Add missed extract_element pattern
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80408 91177308-0d34-0410-b5e6-96231b3b80d8
commit 15e723d2c6021bbeacad9baa9c0d946d4a19867e
Author: Devang Patel <dpatel@apple.com>
Date: Fri Aug 28 23:24:31 2009 +0000
Reapply 79977.
Use MDNodes to encode debug info in llvm IR.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80406 91177308-0d34-0410-b5e6-96231b3b80d8
commit c299914a58baed2d7cf594494dbba60880d476cd
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 23:18:09 2009 +0000
Let Darwin linker auto-synthesize stubs and lazy-pointers. This deletes a bunch of nasty code in ARM asm printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80404 91177308-0d34-0410-b5e6-96231b3b80d8
commit a14f4474b2d915579e9e9bd8bf4080d7f25e7dcd
Author: Eric Christopher <echristo@apple.com>
Date: Fri Aug 28 22:33:43 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80401 91177308-0d34-0410-b5e6-96231b3b80d8
commit c6750c9bc8e555f632777eb1c69793b3b0dc40f6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 16:14:46 2009 +0000
Fix creation of .bca libraries with EXPORTED_SYMBOLS_LIST, this was putting the
llvm-ld shell wrapper script in the archive, not the relinked object!
Also, rename the temp file to avoid conflicts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80373 91177308-0d34-0410-b5e6-96231b3b80d8
commit 72d34e1a91e3f2b58559f92e5c1716ba10586bf1
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 16:13:45 2009 +0000
Read Makefile.config before using LLVMGCC.
See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090824/085828.html
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80372 91177308-0d34-0410-b5e6-96231b3b80d8
commit ab4193ba50b6b5fcda5e2230e4705676ec07b463
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 16:12:48 2009 +0000
install-sh chmods to 0755 by default, and this causes 'git diff' to show
that all the Makefiles changed mode.
Fix this by tellint install-sh to chmod
only to 0644, these are not executable files after all!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80371 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5cc6d8ae5a5813f059b0f03511b29c101c3a8ba
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Fri Aug 28 16:06:41 2009 +0000
Short-term workaround for frame-related weirdness on win64.
Some other minor win64 fixes as well.
Patch by Michael Beck!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80370 91177308-0d34-0410-b5e6-96231b3b80d8
commit 422cc43971693fd61517993472065277cb0cc903
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 14:05:07 2009 +0000
rm needs -f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80363 91177308-0d34-0410-b5e6-96231b3b80d8
commit da6633bee39686d02cd348b5c79c9dfc14eea6fd
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 13:35:44 2009 +0000
Remove the llvmprof.out from the test output, otherwise running
make check in a non-clean directory causes it to fail (for example when running
make check twice), since execution counts will differ.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80362 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3f10e8664f46c60e4153da5da0ce33cd6b0b2ea3
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 11:28:24 2009 +0000
Preparation for Optimal Edge Profiling:
This implements the maximum spanning tree algorithm on CFGs according to
weights given by the ProfileEstimator. This is then used to implement Optimal
Edge Profiling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80358 91177308-0d34-0410-b5e6-96231b3b80d8
commit c99a43a3864aee1121af69db21545a3974226d41
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:38:26 2009 +0000
Remove profiling output file because two consecutive runs of make check give
error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80357 91177308-0d34-0410-b5e6-96231b3b80d8
commit 354f75a94252e20f1d61ff7b047f34070dcccfc9
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:07:41 2009 +0000
Removed unnecessary file creation during test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80356 91177308-0d34-0410-b5e6-96231b3b80d8
commit 975ad9a72fa60d0e8946c9ec584eb5c29d14386e
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:00:28 2009 +0000
Pulled all tests into one test. Removed some redundant tests. Rename.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80355 91177308-0d34-0410-b5e6-96231b3b80d8
commit f14af431e0f9724474dfa923ba940ecaf19316c7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 08:08:22 2009 +0000
Fix -Asserts warning, round two.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80354 91177308-0d34-0410-b5e6-96231b3b80d8
commit 796a639383578ff065b5c32539c88f9adb5327c2
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 07:08:47 2009 +0000
llvm-mc: .lsym is more unsupported than unimplemented, pending a use case appearing.
Also, all one of the file level flags are implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80352 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8388a8fed449aa79d848dd2e7b0cf8650e063028
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 07:08:35 2009 +0000
llvm-mc: Support .comm emission.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80351 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3ab6715ba17ac6726bd92a4514c68c5e58c3c884
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 06:59:37 2009 +0000
Print a nl before pic labels so they start at a new line. This makes assembly more readable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80350 91177308-0d34-0410-b5e6-96231b3b80d8
commit fd5e315e8d6dca8cab80789552b6bbfef4d960e0
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 06:48:25 2009 +0000
Since all std::cout is gone, also remove iostream include.
(See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090824/085620.html)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80349 91177308-0d34-0410-b5e6-96231b3b80d8
commit a2aca168e5c7bbb35569f6f77a3cd4e8bc17520a
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 06:41:00 2009 +0000
Readded test from r79615, this tests the complete profiling tool chain. Furhter
tests can test only parts of this system.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80348 91177308-0d34-0410-b5e6-96231b3b80d8
commit df98a14701fe2de1d0b83205f32edcdfef8ca141
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:49:21 2009 +0000
llvm-mc: Support .zerofill emission.
- I'm still trying to figure out the cleanest way to implement this and match the assembler, currently there are some substantial differences.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80347 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c215be1a50bfd6f0b994d61d0c0548fefa52795
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:49:04 2009 +0000
llvm-mc: Tweak section alignment and size computation to match 'as' closer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80345 91177308-0d34-0410-b5e6-96231b3b80d8
commit 91e7ee60faaf7867aebddbf4915e1422c6895337
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:54 2009 +0000
llvm-mc: Factor getSectionData out of SwitchSection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80344 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3f952b45c4791659fe6b6addfdc2812f11a21a41
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:46 2009 +0000
llvm-mc: Emit .lcomm as .zerofill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80343 91177308-0d34-0410-b5e6-96231b3b80d8
commit c12c27bdbc93d517025612eab112f28366256839
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:29 2009 +0000
llvm-mc: Unique zero fill sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80342 91177308-0d34-0410-b5e6-96231b3b80d8
commit 15f1a5cc63c5f08b31c8a67884efd2604067711e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:22 2009 +0000
llvm-mc: Add const to EmitZeroFill section argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80341 91177308-0d34-0410-b5e6-96231b3b80d8
commit b6eff3bcb6f481500df60e028ceaff6b60336a1d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:10 2009 +0000
llvm-mc: Fix thinko in emitting values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80340 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8425d44b7ffa3397ac7d010598e9caab54e1ed4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:04 2009 +0000
Add MathExtras.h OffsetToAlignment, like RoundUpToAlignment but returns the
offset to the next aligned integer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80339 91177308-0d34-0410-b5e6-96231b3b80d8
commit c24bcdb66bd5b6904147ac443ca44da2660f9223
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:47:56 2009 +0000
Fix -Asserts warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80338 91177308-0d34-0410-b5e6-96231b3b80d8
commit d7e5bacf57cba6f139d726a0c63cb195f38cd39d
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 04:48:54 2009 +0000
finish a half formed thought :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80334 91177308-0d34-0410-b5e6-96231b3b80d8
commit ac6a9258ed6e7fa1e1e40ef505799ac54e852be4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 03:06:28 2009 +0000
Another NO_RUNTIME_LIBRARIES tweak...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80331 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1497c39481d4d8616d4ba1fb2cde490cfc100baa
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 02:20:39 2009 +0000
Tweak NO_RUNTIME_LIBS.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80330 91177308-0d34-0410-b5e6-96231b3b80d8
commit c4823b9ee92e32a666e03406c46a530fcdbdda1a
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 00:45:47 2009 +0000
Mark Andersen's as experimental.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80328 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8b647dc112f792cb21b0b675e6d2b300207a4fa
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 00:43:14 2009 +0000
Fix PR3913, patch by Jakub Staszak!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80327 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5e1d21856de4bf387cccf8365885c45c87642dfb
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 00:31:43 2009 +0000
v4, v5 does not support sxtb / sxth.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80322 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66f3f9e7356761c91f8063a38b37293ce750c1c2
Author: Bob Wilson <bob.wilson@apple.com>
Date: Fri Aug 28 00:21:13 2009 +0000
Disable optional bindings for Apple-style builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80319 91177308-0d34-0410-b5e6-96231b3b80d8
commit dc8f15c7a771649ab75bdf2dea1b27067ee9f269
Author: Bob Wilson <bob.wilson@apple.com>
Date: Fri Aug 28 00:10:15 2009 +0000
Revert 76080. This broke some powerpc cross compiles.
It also makes the llvmCore build dependent on whatever version of llvm-gcc
happens to be installed on the build machine.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80316 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6decb644026d266aaed9bc51e5840529a4af8df0
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:58:10 2009 +0000
Revert r80305, I forgot a dependent change.
--- Reverse-merging r80305 into '.':
U tools/llvm-mc/AsmParser.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80309 91177308-0d34-0410-b5e6-96231b3b80d8
commit 20b3210d23b9c5633787e3d8bbd98d7cc0083c32
Author: Devang Patel <dpatel@apple.com>
Date: Thu Aug 27 23:51:51 2009 +0000
Closure is a very generic name. Use AppleBlock instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80307 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3edc5f01bcfec50757d8cbdb7cd0fb6abb561d67
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:45:06 2009 +0000
llvm-mc: Unique sections in .zerofill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80305 91177308-0d34-0410-b5e6-96231b3b80d8
commit ab36e15e689a516f8ff2af4c2c0210a90a423652
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 23:44:33 2009 +0000
eliminate all 80-col violations that I have introduced in my recent checkins (and some others more)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80304 91177308-0d34-0410-b5e6-96231b3b80d8
commit 41d850e034d4f33728c8d8d51a3811dbe0fccf8c
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:43:28 2009 +0000
Don't build runtime libraries in an Apple style build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80303 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5b6d86316d71c3eae687ecb56abfdfd12679a54
Author: Bruno Cardoso Lopes <bruno.cardoso@gmail.com>
Date: Thu Aug 27 19:57:56 2009 +0000
Revert 80278 for now, it caused a lot of MIPS tests to fail
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80280 91177308-0d34-0410-b5e6-96231b3b80d8
commit 862f67b71f0aaeccdd24a0cbd4d99a9a9413c43a
Author: Bruno Cardoso Lopes <bruno.cardoso@gmail.com>
Date: Thu Aug 27 19:40:40 2009 +0000
Revamp our friend Mips :)
Add MO flags to simplify the printing of relocations.
Remove the support for printing large code model relocs (which
aren't supported anyway).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80278 91177308-0d34-0410-b5e6-96231b3b80d8
commit 90adb6c4bd8c285660db59e5ac10fd71fa3c1076
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:16:24 2009 +0000
Don't mark CMOV_GR8 as two-address, or commutable, since it's a pseudo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80271 91177308-0d34-0410-b5e6-96231b3b80d8
commit fa4c3253f6dd9f328549aa73e2710981ac3a2881
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:14:26 2009 +0000
Adjust the MachineBasicBlock verifier rules to be more
tolerant of blocks that end with "unreachable".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80270 91177308-0d34-0410-b5e6-96231b3b80d8
commit 20391ca63ee850ffd6fb86bfd058ff61b698197d
Author: Eric Christopher <echristo@apple.com>
Date: Thu Aug 27 18:08:16 2009 +0000
Add FIXME for when we support more specific XMM registers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80269 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3d82bbd2ddfb775d59f271cc25cade73551f976c
Author: Eric Christopher <echristo@apple.com>
Date: Thu Aug 27 18:07:15 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80268 91177308-0d34-0410-b5e6-96231b3b80d8
commit f8b840f45084d2486be3fd074807d9a37564a33d
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:02:03 2009 +0000
Use stripPointerCasts instead of doing the same manually.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80267 91177308-0d34-0410-b5e6-96231b3b80d8
commit a578538e9fde98cb05ce9740d7c63aafbd1c69f4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:59:08 2009 +0000
Minor code simplification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80266 91177308-0d34-0410-b5e6-96231b3b80d8
commit c99596ddbf78116260c177edcfad9261bf186b68
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:55:13 2009 +0000
Teach getUnderlyingObject and skipPointerCasts about GlobalAliases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80265 91177308-0d34-0410-b5e6-96231b3b80d8
commit fe1256903404065be182735c1402411c4940e9e5
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:54:15 2009 +0000
Be somewhat more consistent about const qualifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80264 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c8455152e3d41b8e5f7b33c3ed99c7a8105f5a8
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:52:56 2009 +0000
Global Aliases are not identifiable objects.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80263 91177308-0d34-0410-b5e6-96231b3b80d8
commit 54e98d921f7eabfd3baae5399e835ddc39a75e6c
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:51:25 2009 +0000
Handle TargetData with const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80262 91177308-0d34-0410-b5e6-96231b3b80d8
commit ec966442362eeff9b24c9eee2b11188ab4a5246b
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:29:49 2009 +0000
Strip trailing whitespace from blank lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80259 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7bec0f5f90c6d917beb4b1433c847aa132cdfacf
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 17:07:35 2009 +0000
re-apply r80197, now that iterator.h is not mentioned any more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80254 91177308-0d34-0410-b5e6-96231b3b80d8
commit aa152ae811d8e0ffd01c7a8b454d595cb1a1a31f
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:25:49 2009 +0000
Hopefully the final missing part :(
scalar_to_vector is fully legal now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80251 91177308-0d34-0410-b5e6-96231b3b80d8
commit 872393c20ee29eaae1746deed115f06192526f64
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:10:17 2009 +0000
Forgot about actual change :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80250 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0a21bce095161b98a3671b2aa0e63a020b03e120
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:04:47 2009 +0000
scalar_to_vector is fully legal now (implemented as subreg accesses)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80249 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2b6e274f8669337cb148c1df4e060a41af14cc1e
Author: Devang Patel <dpatel@apple.com>
Date: Thu Aug 27 15:32:38 2009 +0000
Remove an entry from ValueMap before removing elements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80247 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e8275030925dbd3beeb873d0bf605f0c0c67f0b
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 14:51:42 2009 +0000
Ok, sometimes it's profitable to turn scalar_to_vector stuff into subreg access.
Add a testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80246 91177308-0d34-0410-b5e6-96231b3b80d8
commit baee7b2a5501a45a59554b5bafd87264a2edc442
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 14:38:44 2009 +0000
Transform float scalar_to_vector into subreg accesses.
No idea whether this is profitable or not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80245 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9daa0677ac901b0f54bdba31dc3913b92df58e50
Author: Misha Brukman <brukman+llvm@gmail.com>
Date: Thu Aug 27 14:14:21 2009 +0000
STRD and LDRD require ARMv5TE, not just ARMv5T.
See http://llvm.org/PR4687 for more info and links.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80244 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4dd75744b70c1a3f686ce5a43952124fb0de7ad9
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Thu Aug 27 12:02:34 2009 +0000
Inverse logic to increase portability.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80240 91177308-0d34-0410-b5e6-96231b3b80d8
commit 07f1cdae7f327c15cdfc0d68c8500a275dba72b2
Author: Sanjiv Gupta <sanjiv.gupta@microchip.com>
Date: Thu Aug 27 11:54:38 2009 +0000
To make mcc16 run correctly on mac.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80239 91177308-0d34-0410-b5e6-96231b3b80d8
commit 006e46ee524c49f00fdfa4d0b582c7ecd693c95b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 08:17:51 2009 +0000
llvm-mc/Mach-O: Add MCCodeEmitter support, for encoding instructions.
- No relocations yet, of course.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80235 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f37963b50b496c99300850683ed41db4f9431b6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 08:12:55 2009 +0000
llvm-mc/X86: Implement single instruction encoding interface for MC.
- Note, this is a gigantic hack, with the sole purpose of unblocking further
work on the assembler (its also possible to test the mathcer more completely
now).
- Despite being a hack, its actually good enough to work over all of 403.gcc
(although some encodings are probably incorrect). This is a testament to the
beauty of X86's MachineInstr, no doubt! ;)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80234 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1f32816fdaf9ba3a7e6e5705f94be145fafde497
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:58:57 2009 +0000
llvm-mc: Print encodings after the instruction, and only when we have an asm
printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80233 91177308-0d34-0410-b5e6-96231b3b80d8
commit 75513bd24edb8ea2142145b448df7a4cdaeaa335
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:58:05 2009 +0000
X86: Mark EH_RETURN as code-gen-only.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80232 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0125384b4a902da228354e5a201cd4cf4f2f1a4a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:57:12 2009 +0000
Add {MCInst,MCOperand}::{print,dump}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80231 91177308-0d34-0410-b5e6-96231b3b80d8
commit 160f252aa8189beba57b0b025b0206a3910c4ae9
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:56:39 2009 +0000
llvm-mc: Only show instruction encodings with --show-encoding.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80230 91177308-0d34-0410-b5e6-96231b3b80d8
commit f449eb343e70f1e4e8f982939d53c083a1bc5ba3
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 06:59:20 2009 +0000
the buildbots revealed one more breakage. fix. (why didn't I see this?)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80227 91177308-0d34-0410-b5e6-96231b3b80d8
commit 765f012f22956a3085e1e84441af9d880bf65f35
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 06:41:46 2009 +0000
Clean up the minor mess I caused with removing iterator.h. I shall take care of 80-col violations and the FIXME later. (Thanks goodness that I live in another continent, so the monkeypox did not strike me :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80224 91177308-0d34-0410-b5e6-96231b3b80d8
commit bc42440879f2a302f2801e224828cfdccd5a92a7
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 06:29:33 2009 +0000
Implement a new optimization in the inliner: if inlining multiple
calls into a function and if the calls bring in arrays, try to merge
them together to reduce stack size. For example, in the testcase
we'd previously end up with 4 allocas, now we end up with 2 allocas.
As described in the comments, this is not really the ideal solution
to this problem, but it is surprisingly effective. For example, on
176.gcc, we end up eliminating 67 arrays at "gccas" time and another
24 at "llvm-ld" time.
One piece of concern that I didn't look into: at -O0 -g with
forced inlining this will almost certainly result in worse debug
info. I think this is acceptable though given that this is a case
of "debugging optimized code", and we don't want debug info to
prevent the optimizer from doing things anyway.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80215 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2d1272cbbc0ba9bffbc702e67c59a8d12ec93660
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 06:20:45 2009 +0000
the inliner shouldn't crash on this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80214 91177308-0d34-0410-b5e6-96231b3b80d8
commit ea3bccb555f65187ecbb134d26aab8103ca167b2
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 06:11:15 2009 +0000
For now, only run MC tests if X86 is configured.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80213 91177308-0d34-0410-b5e6-96231b3b80d8
commit 17d1a4db879f7af0fd20dd78f704ff9f82aabbe1
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 05:49:50 2009 +0000
This is passing for PPC on Mac OS X.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80210 91177308-0d34-0410-b5e6-96231b3b80d8
commit cf5d1d8ceb34c56f21bd3f41f5329407e8d090ce
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 05:35:28 2009 +0000
Revert accidental commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80208 91177308-0d34-0410-b5e6-96231b3b80d8
commit f659a56d993743e0d51beb2c94fbe187637e5918
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:43:05 2009 +0000
unbreak the build, yay for symlinks + makefiles. :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80205 91177308-0d34-0410-b5e6-96231b3b80d8
commit d1586b1a1d27d5efeb8e487bbeb7ed255159e53b
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:32:07 2009 +0000
reduce header #include'age
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80204 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1ba292d8cfe7b5bf705c5bb307f63f0c0bbe8979
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:20:52 2009 +0000
enhance InlineFunction to be able to optionally return
a the list of static allocas that it inlined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80203 91177308-0d34-0410-b5e6-96231b3b80d8
commit eb87590c5346b7c17032242e2232a6c1d217f964
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:02:30 2009 +0000
smallvectorize the list of returns built by CloneAndPruneFunctionInto.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80202 91177308-0d34-0410-b5e6-96231b3b80d8
commit 612956220f38126feaacceb378cf105043739271
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 03:56:43 2009 +0000
remove CloneTrace, which appears to be dead since 2004.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80201 91177308-0d34-0410-b5e6-96231b3b80d8
commit ae56c0de911bf5328ffda48e51ce37bcd7aa0d76
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 03:51:50 2009 +0000
reduce inlining factor some stuff out to a static helper function,
and other code cleanups. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80199 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5537c20c55869fac64e4f5738f8eab2080cc79c6
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 03:32:50 2009 +0000
Revert accidental commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80198 91177308-0d34-0410-b5e6-96231b3b80d8
commit 25cd944a98bcf3b1542c71d2654fe61e28562867
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 03:29:26 2009 +0000
--- Reverse-merging r80147 into '.':
A include/llvm/ADT/iterator.cmake
U autoconf/configure.ac
--- Reverse-merging r80161 into '.':
U cmake/config-ix.cmake
--- Reverse-merging r80171 into '.':
U Makefile
--- Reverse-merging r80173 into '.':
U configure
U include/llvm/Config/config.h.in
--- Reverse-merging r80180 into '.':
A include/llvm/ADT/iterator.h.in
Despite common miscomceptions, iterator.h is alive and well. It broke the build
bots for several hours. And yet no one bothered to look at them.
Gabor and Doug, please review your changes and make sure that they actually
build before resubmitting them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80197 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0d0598f6281c0b1ae107b2fa2fabd69ec21263c4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 02:43:49 2009 +0000
Add some checks for MachineCFG consistency. Use AnalyzeBranch and
do extra checking when it succeeds, as those are cases where
CodeGen will be doing particularly interesting CFG modifications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80196 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92e5548870b7945deb93f7956ea816f67d34b73f
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 02:08:37 2009 +0000
Update CMake
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80195 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f377df6bba8110c3bc0bf5185d33d1f46b54c6b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 01:34:22 2009 +0000
llvm-mc: Tweak MCCodeEmitter skeleton.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80193 91177308-0d34-0410-b5e6-96231b3b80d8
commit cdde2975f55c43493f3318630985e7a1e8e14384
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 01:25:57 2009 +0000
Initialize the PoisonMemory member before initializing
members that call methods that read the PoisonMemory member.
This fixes potential spurious (though probably otherwise
harmless) poising of unused memory, and fixes the
associated valgrind error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80192 91177308-0d34-0410-b5e6-96231b3b80d8
commit 363cd759d4186bdae7b49e89a0d434749d6198aa
Author: Evan Cheng <evan.cheng@apple.com>
Date: Thu Aug 27 01:23:50 2009 +0000
Fix PR4789. Teach eliminateFrameIndex how to handle VLDRQ and VSTRQ which cannot fold any immediate offset.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80191 91177308-0d34-0410-b5e6-96231b3b80d8
commit 511e71114c34c8ddae2b44b996502a5efe1adc3a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 01:15:54 2009 +0000
Add missing declarations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80190 91177308-0d34-0410-b5e6-96231b3b80d8
commit 12266adfd9dc571aafb7ec7f8b69d85c7a6e352a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 00:51:57 2009 +0000
Sketch TargetRegistry support for MCCodeEmitter abstract interface.
- Of course, nothing actually can provide this interface yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80188 91177308-0d34-0410-b5e6-96231b3b80d8
commit adb77e4c37d183af9a2f29b6df8b0dfee562bbba
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 00:38:04 2009 +0000
Try to make MSVC just a little happier.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80187 91177308-0d34-0410-b5e6-96231b3b80d8
commit b59f15a1d2c40f978d93f43b006546f455a65f04
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 00:31:47 2009 +0000
X86FastISel support for loading and storing values of type i1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80186 91177308-0d34-0410-b5e6-96231b3b80d8
commit 29b998f5248398e6cfe323a5ebd7419bb77975b4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 00:14:12 2009 +0000
Expand i8 selects into control flow instead of 16-bit conditional
moves. This avoids the need to promote the operands (or implicitly
extend them, a partial register update condition), and can reduce
i8 register pressure. This substantially speeds up code such as
write_hex in lib/Support/raw_ostream.cpp.
subclass-coalesce.ll is too trivial and no longer tests what it was
originally intended to test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80184 91177308-0d34-0410-b5e6-96231b3b80d8
commit a7bddb52ed1bb68e8c654c522b885f941c540d04
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 23:35:33 2009 +0000
now that include/llvm/ADT/iterator.h.in is not attempted to be built, its prerequisite can go away too
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80180 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5b99e6fa820047460b362d5d981766ac313b1ce
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 23:12:33 2009 +0000
Simplify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80176 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2eff5fff4d600df3d29f74dd195bc564a48206b4
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 22:59:05 2009 +0000
Regenerate configure
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80173 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3eace462948ecfec5ee53127c445e4d0d5f1ae89
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 22:55:19 2009 +0000
eliminate references to ADT/iterator.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80171 91177308-0d34-0410-b5e6-96231b3b80d8
commit d68b1af98ca9bb39ac51d046a37266ceb24e38b5
Author: Owen Anderson <resistor@mac.com>
Date: Wed Aug 26 22:55:11 2009 +0000
Make this into a static method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80170 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f01e9983a054713a49d2ac2124e8ca26d128574
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 22:50:39 2009 +0000
Fix bad length argument to substr calls. Apparently I'm the first one to
attempt more than 2 constraints on an instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80169 91177308-0d34-0410-b5e6-96231b3b80d8
commit 418706d9a8a304630ddecc3709598d823bee8188
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 22:49:51 2009 +0000
llvm-mc/Mach-O: Unique sections properly, so we don't get duplicate text
sections, etc.
- The quick and dirty way, just clone the TargetLoweringObjectFile
code. Eventually this should be shared... somehow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80168 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1ea86df7ddb44659fbf694934abb2177beed8637
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 22:13:22 2009 +0000
llvm-mc/Mach-O: Don't put assembler temporary labels in the symbol table.
- I moved section creation back into AsmParser. I think policy decisions like
this should be pushed higher, not lower, when possible (in addition the
assembler has flags which change this behavior, for example).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80162 91177308-0d34-0410-b5e6-96231b3b80d8
commit b003759e247f0edb3b691849598ba252f51ae624
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 22:12:02 2009 +0000
De-bork CMake build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80161 91177308-0d34-0410-b5e6-96231b3b80d8
commit e92cc8d5591cb7ded636c91cc98c741af62ec85f
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:44:57 2009 +0000
Rework getPersonalityIndex slightly - 0 is now a valid and not-NULL
personality function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80153 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2a1099a6809307eee7521b1f725ef89370f7ebd1
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 21:36:59 2009 +0000
nobody includes llvm/ADT/iterator.h any more,
so get rid of this monstrosity. iterator.h.in is scheduled for deletion in my working copy,
but I wait till I see that configure gets regenerated, as it depends on it. I'll commit
then.
There are still some AC_* tests in the configure.ac dealing with iterators, those can
be zapped probably too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80147 91177308-0d34-0410-b5e6-96231b3b80d8
commit c87d5ae938fe0c3b0afc3aefef1dc6a9873516e4
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:30:49 2009 +0000
If we're emitting additional CIEs due to personality functions
don't emit the default one. Explicitly check for the NULL
CIE later.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80146 91177308-0d34-0410-b5e6-96231b3b80d8
commit 84603633a7609ec55de5d8145048efbbf45e5c9c
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:27:09 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80145 91177308-0d34-0410-b5e6-96231b3b80d8
commit f8c4bb7da634d77a7f2cff601b8d3f53c143e9ad
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 21:22:22 2009 +0000
llvm-mc/Mach-O: Set .subsections_via_symbols flag properly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80144 91177308-0d34-0410-b5e6-96231b3b80d8
commit 87f46499f001931c031002473a73793772852e51
Author: Bill Wendling <isanbard@gmail.com>
Date: Wed Aug 26 21:00:34 2009 +0000
Don't submit test directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80139 91177308-0d34-0410-b5e6-96231b3b80d8
commit 441e205eb82a0ebd70b807d8560c5a76188eabc5
Author: Reid Kleckner <reid@kleckner.net>
Date: Wed Aug 26 20:58:25 2009 +0000
Allocate the module provider in the Kaleidoscope code on the heap, not the stack, so that it can be properly deleted. Also update the tutorial with the new code. This fixes PR4762, hopefully better than the last time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80138 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4952aa5163ff4e87910d461f06316cc793ca95b8
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 19:16:32 2009 +0000
Remove all the LLVM_COMPACTIFY_SENTINELS-related macro magic as discussed with Chris on IRC. Anybody wanting to debug sentinel dereferencing problems must revert this patch and perform the indicated modifications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80128 91177308-0d34-0410-b5e6-96231b3b80d8
commit ffefef35790db7819c72ba7e53c73b8e5931e851
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Wed Aug 26 18:37:05 2009 +0000
CMake: Removed outdated TODO.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80124 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66448030685cdc3c9bfd52449e4027258aaba480
Author: Venkatraman Govindaraju <venkatra@cs.wisc.edu>
Date: Wed Aug 26 18:24:12 2009 +0000
Generate section for bss and enable weak symbols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80121 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3a392c8714c745ffdc77da0a8589c7b0df03515f
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 18:11:50 2009 +0000
Convert some more Neon tests to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80120 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5e69950d5391bdf294b415bf39dd44f9f40556a1
Author: Dale Johannesen <dalej@apple.com>
Date: Wed Aug 26 18:10:32 2009 +0000
Alter 79292 to produce output that actually assembles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80119 91177308-0d34-0410-b5e6-96231b3b80d8
commit 23f2034aaff80f52b309ee17bfa7a9fc801c9677
Author: Mike Stump <mrs@apple.com>
Date: Wed Aug 26 18:02:19 2009 +0000
Allow unsigned long long DenseMapInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80118 91177308-0d34-0410-b5e6-96231b3b80d8
commit b1b88455b18224867a8d2fc6c3202b6ce12e0a1c
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 17:39:53 2009 +0000
Remove unneeded ARM-specific DAG nodes for VLD* and VST* Neon operations.
The instructions can be selected directly from the intrinsics. We will need
to add some ARM-specific nodes for VLD/VST of 3 and 4 128-bit vectors, but
those are not yet implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80117 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0defefd8ce9f13cecba8c988897c3224a25e96f8
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 17:39:40 2009 +0000
Add extload expansion for f128
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80116 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e72169c1b197ef8c5b4c663e2eee4551a3a7178
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 17:39:23 2009 +0000
Unbreak FP128 stuff in cbe
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80115 91177308-0d34-0410-b5e6-96231b3b80d8
commit 644cdc3c64cb485c6a21d1bfb126c107e5b40d64
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Wed Aug 26 17:05:06 2009 +0000
Ignore -fPIC test on Windows. Suggested by Yonggang Luo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80111 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8427b6b0529e66663737b39ea51a1fbdbbbbd534
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 16:33:57 2009 +0000
Unbreak CMake build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80109 91177308-0d34-0410-b5e6-96231b3b80d8
commit 886f20275a78a1b03b83a8145a62f5e4cfbb1c99
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 16:26:09 2009 +0000
Expand scalar_to_vector - we don't have any isel logic for it now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80107 91177308-0d34-0410-b5e6-96231b3b80d8
commit 75c687bcc528eb81dc693d63f7aff9185b29e56f
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 16:06:11 2009 +0000
Add comments detailing a known bug, so that people writing other
backends don't use it as an example.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80105 91177308-0d34-0410-b5e6-96231b3b80d8
commit 32b17ffaa8593d25728c9ebad7e82a45c16f817c
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 15:57:57 2009 +0000
-fast is now -O0. -fast-isel is no longer experimental.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80104 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4637d177299aed45c6be7ca24e003771f33fd5d6
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 15:56:38 2009 +0000
Move ProfileInfo::Edge's operator<< out of line. Among other benefits,
this eliminates the ATTRIBUTE_USED, which wasn't being used in a manner
acceptable to some GCC versions, according to the buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80103 91177308-0d34-0410-b5e6-96231b3b80d8
commit a064a395489f954b0eaafb351d15b456699dea8e
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 15:18:38 2009 +0000
Bugfix for r80100, forgot include. Sorry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80101 91177308-0d34-0410-b5e6-96231b3b80d8
commit 70eeb51888ed9e73d058a3b0c889c295219e2109
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 15:13:44 2009 +0000
Implemented comments from Daniel Dunbar.
(See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090817/084958.html)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80100 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9959b052347ceddec3576013485f2564b99b944e
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:59:13 2009 +0000
Don't use INSERT_SUBREG to model anyext operations on x86-64, as it
leads to partial-register definitions. To help avoid redundant
zero-extensions, also teach the h-register matching patterns that
use movzbl to match anyext as well as zext.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80099 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9927f829a68b645ed5813b25e21a881d94fc80d8
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:53:06 2009 +0000
Create a ScalarEvolution-based AliasAnalysis implementation.
This is a simple AliasAnalysis implementation which works by making
ScalarEvolution queries. ScalarEvolution has a more complete understanding
of arithmetic than BasicAA's collection of ad-hoc checks, so it handles
some cases that BasicAA misses, for example p[i] and p[i+1] within the
same iteration of a loop.
This is currently experimental. It may be that the main use for this pass
will be to help find cases where BasicAA can be profitably extended, or
to help in the development of the overall AliasAnalysis infrastructure,
however it's also possible that it could grow up to become a directly
useful pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80098 91177308-0d34-0410-b5e6-96231b3b80d8
commit 596114dc06489e5bd79e3e8ffc60d43bbf3668e3
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:34:12 2009 +0000
Fix a missing newline, now that Value's operator<< doesn't add one of its own.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80096 91177308-0d34-0410-b5e6-96231b3b80d8
commit 84c793aef4170e0d5be4d2c6fcb26a9e56cad21b
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:32:17 2009 +0000
Use SetVector instead of std::set so that alias relations are tested and
printed in a deterministic order.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80095 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8fa9da2b34655a15102a0845617a9951ee945ed6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:58:10 2009 +0000
llvm-mc/Mach-O: Add support for relocations.
- I haven't really tried to find the "right" way to store the fixups or apply
them, yet. This works, but isn't particularly elegant or fast.
- Still no evaluation support, so we don't actually ever not turn a fixup into
a relocation entry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80089 91177308-0d34-0410-b5e6-96231b3b80d8
commit c3c1992d46f418c45a8e0b5fdb3c452c90aa960e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:54 2009 +0000
llvm-mc/Mach-O: Move symbol indices into the MCSymbolData structure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80088 91177308-0d34-0410-b5e6-96231b3b80d8
commit cefbda1f46cc612e074fdcc1d8aab712aba085e7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:44 2009 +0000
llvm-mc/Mach-O: Dump relocations and section data (optionally) in my Mach-O dumper.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80087 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4486ac16542e9dd843778c5f684e1cd9d7bb3945
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:37 2009 +0000
llvm-mc: Add symbol entries for undefined symbols used in .fill and .org.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80086 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7c672df8b969b7514438228bed80cfad6e9c473e
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 13:44:29 2009 +0000
Add dummy inline asm handling for 'r' constraint. This fixes PR4778
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80085 91177308-0d34-0410-b5e6-96231b3b80d8
commit 39fd40ae8671ecff6a1857b5a0156e52284c4e5c
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 13:33:09 2009 +0000
Moved isDeclaration() check further down to allow for function counts for
declarations if necessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80084 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92183c031a21857a580b38795272ce80863b9ebf
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:57 2009 +0000
llvm-mc: Change MCContext value table to take const MCSymbol*s.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80079 91177308-0d34-0410-b5e6-96231b3b80d8
commit b9d13ac6e4228451c6fe54566064978597aabc1b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:46 2009 +0000
llvm-mc: Make MCValue take const MCSymbol*s.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80078 91177308-0d34-0410-b5e6-96231b3b80d8
commit cb73cfe2496d5e70d8cc4c89e7de29373b348353
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:34 2009 +0000
llvm-mc: Make non-sensical max bytes to .align an error.
Also, warn about overflow in alignment values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80077 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e64a6cc0e75cf654fd23ac9ffa1a9a1d3d911e9
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 09:05:21 2009 +0000
Changed std::cout to outs(), retaining formating.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80076 91177308-0d34-0410-b5e6-96231b3b80d8
commit 94060421ce73922e71c183fba0fda8bace7d0e2d
Author: Devang Patel <dpatel@apple.com>
Date: Wed Aug 26 05:01:18 2009 +0000
Revert 79977. It causes llvm-gcc bootstrap failures on some platforms.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80073 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66d02907de42fa311fb2b512e820277bb1a61e7c
Author: Chris Lattner <sabre@nondot.org>
Date: Wed Aug 26 05:00:16 2009 +0000
some mips and some sparc compilers apparently
predefine mips and sparc respectively. Just overrule them :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80072 91177308-0d34-0410-b5e6-96231b3b80d8
commit 202ced1e32f5a88a8c865e62ea10c88a712c3fab
Author: Venkatraman Govindaraju <venkatra@cs.wisc.edu>
Date: Wed Aug 26 04:50:17 2009 +0000
test commit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80070 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3eb9a3f37ed8ee8e026d2dfebe6bae08df4e615d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 04:28:45 2009 +0000
llvm-mc: Fix tests for python variations in int printing, sigh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80069 91177308-0d34-0410-b5e6-96231b3b80d8
commit 53a9082d2e95f33980ef2b7f5104e0cc46d6342d
Author: Chris Lattner <sabre@nondot.org>
Date: Wed Aug 26 04:21:30 2009 +0000
fix some funky indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80068 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0f56d41709c27ec2f0637e19881fefd90e31c22b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 04:13:32 2009 +0000
llvm-mc/Mach-O: Add section padding where needed (to align the next section).
Also, simplify some of Mach-O writer code which can now use section addresses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80067 91177308-0d34-0410-b5e6-96231b3b80d8
commit b3730b1a3de7fe37a660bd30d3d0d55bcea22d1d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 02:48:04 2009 +0000
llvm-mc/Mach-O: Set addresses for symbols.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80065 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7fd6b0fff74a7c9fbc054b3303fee1a8f22002b2
Author: Dale Johannesen <dalej@apple.com>
Date: Wed Aug 26 01:08:21 2009 +0000
Add an 'inline hint' attribute to represent source
code hints that it would be a good idea to inline
a function ("inline" keyword). No functional change
yet; FEs do not emit this and inliner does not use it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80063 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2e1a5d0b91503b8d5ada9fe0b19567daca2f1c6f
Author: Devang Patel <dpatel@apple.com>
Date: Wed Aug 26 00:39:50 2009 +0000
Add isClosure() predicate. This is used to add DW_AT_APPLE_block attribute.
Patch by Caroline Tice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80061 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6d294da8f845a8d611529759d194315b76b44a6e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 00:18:21 2009 +0000
llvm-mc: Improve indirect symbol support (add the indirect index table).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80059 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3b126fbc67c6279898f8ca0c31f233a3a56b31d9
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 00:13:22 2009 +0000
Remove unused variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80058 91177308-0d34-0410-b5e6-96231b3b80d8
commit bdd4dc67fb10d0f304bec21c924263f8444ae7a7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 00:10:55 2009 +0000
llvm-mc: Add MCSection::isDefined()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80057 91177308-0d34-0410-b5e6-96231b3b80d8
commit 917614663633aa0ff1bdf7208862e8b7e25dd911
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 23:27:45 2009 +0000
Fix the InsertAtEnd form of ShuffleVectorInst constructor to use
the correct type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80050 91177308-0d34-0410-b5e6-96231b3b80d8
commit e6803b821738076b5b2299c1cd496be0d0042362
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 23:17:54 2009 +0000
Eliminate the unused Context argument on one of the ICmpInst and FCmpInst
constructors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80049 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4e46ac9407307942712236f8c91875ef323c182f
Author: Gabor Greif <ggreif@gmail.com>
Date: Tue Aug 25 23:02:21 2009 +0000
revert r78628 and r78803 as these are not needed any more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80048 91177308-0d34-0410-b5e6-96231b3b80d8
commit 58d95377713fa32cbf129e19f4005f4863f9cdb3
Author: Scott Michel <scottm@aero.org>
Date: Tue Aug 25 22:37:34 2009 +0000
Updated i128 sext support for CellSPU backend, contributed by Ken Werner (IBM)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80042 91177308-0d34-0410-b5e6-96231b3b80d8
commit 91bf99a35153b00098633f214207c308c52acdcd
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:29:08 2009 +0000
Use covariant return types for Instruction::clone, and eliminate
the forms of ExtractElementInst and InsertElementInst that are
equivalent to clone.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80041 91177308-0d34-0410-b5e6-96231b3b80d8
commit 97be9d37d93c38bc82950e0373cd3a8d1d2aa024
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 22:27:22 2009 +0000
Get rid of this horrible "benign race" by exploiting ManagedStatic to initialize
the array on its first access.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80040 91177308-0d34-0410-b5e6-96231b3b80d8
commit ba4fe8b91352f65caaf2a30f234b5006afd1cf2b
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:24:20 2009 +0000
This should use isIndenticalToWhenDefined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80039 91177308-0d34-0410-b5e6-96231b3b80d8
commit fc00c4a2407c1b30a19fef9ec0a1ae00f7f7472d
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:11:20 2009 +0000
Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined,
and introduce a new Instruction::isIdenticalTo which tests for full
identity, including the SubclassOptionalData flags. Also, fix the
Instruction::clone implementations to preserve the SubclassOptionalData
flags. Finally, teach several optimizations how to handle
SubclassOptionalData correctly, given these changes.
This fixes the counterintuitive behavior of isIdenticalTo not comparing
the full value, and clone not returning an identical clone, as well as
some subtle bugs that could be caused by these.
Thanks to Nick Lewycky for reporting this, and for an initial patch!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80038 91177308-0d34-0410-b5e6-96231b3b80d8
commit e73ff31d813cdc36e334404992c42bfef7842c95
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:31:39 2009 +0000
Revert last patch. We need to put this into TargetLowering. There will be a lot
of EH stuff going into there, so we can wait to add them all then.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80036 91177308-0d34-0410-b5e6-96231b3b80d8
commit 12d46f5ea460e149882e39dc25c649580a161141
Author: Gabor Greif <ggreif@gmail.com>
Date: Tue Aug 25 21:25:22 2009 +0000
re-committing yesterday's r79938.
This time there is no additional include of llvm/Config/config.h
at all. Instead I use a hard-coded preprecessor symbol:
LLVM_COMPACTIFY_SENTINELS
(should this work on the self-hosting buildbot, then
cleanups come next)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80035 91177308-0d34-0410-b5e6-96231b3b80d8
commit b81243240cbfc573324c9760a77e6b1463955bab
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 21:10:45 2009 +0000
llvm-mc: Add statistic for number of fragments emitted by the assembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80033 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4f61e5051fa25f4abb928573db6ea52585748b93
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:09:50 2009 +0000
Add the #include here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80032 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4b90952a9dd2b26ef6dd359cb8e4f7139e40f864
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 21:01:56 2009 +0000
remove some dead lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80031 91177308-0d34-0410-b5e6-96231b3b80d8
commit 538dfe54dd1c732208b2dbb00057b0a58cdeb61e
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:01:42 2009 +0000
Comment formatting. Removing of unused #include and type forwarding.
OCD is fun!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80030 91177308-0d34-0410-b5e6-96231b3b80d8
commit f2db1075b5a1bf1ea8f2d2c618917651150b8a94
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 20:57:38 2009 +0000
convert to filecheck style
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80029 91177308-0d34-0410-b5e6-96231b3b80d8
commit 864504a5810fdfd23e1774de0b935dcdafb91645
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 20:49:04 2009 +0000
convert to filecheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80025 91177308-0d34-0410-b5e6-96231b3b80d8
commit e371d63e2a817eda5e3563eb574c99fa08df7e6d
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 20:21:17 2009 +0000
Add a target asm info hook to specify that particular bits of data in the FDE
should be forced to 32-bits (.long) even on 64-bit architectures. Darwin wants
these bits to be 64-bits (.quad). However, other platforms may disagree.
This is just the info right now and is part of a work-in-progress which needs
this. We'll add the actual *use* of this soon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80024 91177308-0d34-0410-b5e6-96231b3b80d8
commit b0b96906a0018edbadd9f4f3b17b48ec3c29838e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 20:21:09 2009 +0000
EXIT STAGE LEFT: gccas, gccld
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80023 91177308-0d34-0410-b5e6-96231b3b80d8
commit 13808ef92db201ec027004b4fd8eb2db55c5aae4
Author: Sanjiv Gupta <sanjiv.gupta@microchip.com>
Date: Tue Aug 25 19:39:05 2009 +0000
Start refactoring PIC16 TargetObjectFile code. Eventually, all the stuff from
PIC16Section will move to MCSectionPIC16.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80021 91177308-0d34-0410-b5e6-96231b3b80d8
commit b1d423e0cccd3f78122a5e8c9e959c8569b23bb0
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 18:45:03 2009 +0000
Switch abi-isel.ll to FileCheck; it's not much faster, but it now tests a lot
more and is much nicer to the OS.
- Dan, please check. If there are parts of the test you think I should strip
out so it doesn't cause random failures let me know (there are still some PIC
label numbers in it, for example).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80019 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1d99646fa9e8847b0ceb086e33a24ed707491684
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:56:57 2009 +0000
Don't assume that two identical instructions that read from memory
will always return the same value. This isn't currently necessary,
since this code doesn't currently ever get called under circumstances
where it would matter, but it may some day.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80017 91177308-0d34-0410-b5e6-96231b3b80d8
commit 82d30b73d3a37de0ec7960a4e099ef9e255d4f11
Author: Bob Wilson <bob.wilson@apple.com>
Date: Tue Aug 25 17:52:39 2009 +0000
Remove some unused SDNode definitions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80015 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5bba145cbd5935b442e6a197eda3477f5d1372a5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:49:57 2009 +0000
Teach ScalarEvolution about GlobalAliases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80014 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c17fd9fbdcfebe29c7ea59c2c7675e420aa49f5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:48:17 2009 +0000
Delete some unnecessary flushes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80013 91177308-0d34-0410-b5e6-96231b3b80d8
commit 814c2eaa0121afd0661d8a2b5f715fcb1174f0b5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:47:44 2009 +0000
Use X86II::MO_NO_FLAG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80012 91177308-0d34-0410-b5e6-96231b3b80d8
commit 316062a4d193609d98e80e64389fc2094ad8c515
Author: Bob Wilson <bob.wilson@apple.com>
Date: Tue Aug 25 17:46:06 2009 +0000
Expose the instruction contraint string as an argument to the NLdSt class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80011 91177308-0d34-0410-b5e6-96231b3b80d8
commit 208278cfa708aa6e5fcca6d1b92ee780beb72a8c
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:42:10 2009 +0000
Special-case static allocas in IndVarSimplify's loop invariant
sinking code, since they are special. If the loop preheader happens
to be the entry block of a function, don't sink static allocas
out of it. This fixes PR4775.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80010 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36ed6c0368d77188063d1594e54c52df1438ae87
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:42:07 2009 +0000
Comment-ify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80009 91177308-0d34-0410-b5e6-96231b3b80d8
commit 845a722eb435c2a9c0528b13a472e595340b6dd8
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:35:37 2009 +0000
Switch to SmallVector.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80007 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2845c6f885c8c7615610ab8494f7535a8f67334c
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:26:32 2009 +0000
Pull out this predicate loop into a helper function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80006 91177308-0d34-0410-b5e6-96231b3b80d8
commit a9c16fe7d4d2b61191b362a5d073bdc95c123c0f
Author: David Goodwin <david_goodwin@apple.com>
Date: Tue Aug 25 17:03:05 2009 +0000
Fixup register kills after scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80002 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9518d88d270c05fb576604fc813405de177e2e34
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Tue Aug 25 17:00:23 2009 +0000
Provide dynamic_stackalloc lowering for MSP430.
This fixes PR4769
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80001 91177308-0d34-0410-b5e6-96231b3b80d8
commit b802d676875f2df286887be83419649770dd8580
Author: Edwin Török <edwintorok@gmail.com>
Date: Tue Aug 25 16:53:15 2009 +0000
Remove target triple from this test, it fails on x86-64 with
--enable-targets=host-only otherwise.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80000 91177308-0d34-0410-b5e6-96231b3b80d8
commit e577ff861e934b98cb950a0b0d32d0a9a1dce8b1
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 16:00:35 2009 +0000
Allocate the basic types inside the LLVMContextImpl instance,
rather than separately with new. Move the members above the
TypeMap members to avoid destruction order issues. This fixes
a leak of these objects, and eliminates an extra level of
indirection in Type::getInt32Ty and friends.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79997 91177308-0d34-0410-b5e6-96231b3b80d8
commit 87489cff37dde33a9dbb37fbfbad46ce2f70c8af
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:54:01 2009 +0000
Update documentation for the -f change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79996 91177308-0d34-0410-b5e6-96231b3b80d8
commit a0e89b2e414df522132636eb256ecbcc2d01a4e8
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:45:44 2009 +0000
Fix a few typos from the removal of -f.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79994 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2d65d35d9233277aee7c8a6d3643740e3ed29f0b
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:38:29 2009 +0000
Remove obsolete -f flags.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
commit 176426d2102142aaa0bf19aca55f528ceb873329
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:34:52 2009 +0000
Make LLVM command-line tools overwrite their output files without -f.
This is conventional command-line tool behavior. -f now just means
"enable binary output on terminals".
Add a -f option to llvm-extract and llvm-link, for consistency.
Remove F_Force from raw_fd_ostream and enable overwriting and
truncating by default. Introduce an F_Excl flag to permit users to
enable a failure when the file already exists. This flag is
currently unused.
Update Makefiles and documentation accordingly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79990 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8c949d7c548ed4ec883a2c8bd922607be2563f5a
Author: Andreas Neustifter <astifter@gmx.at>
Date: Tue Aug 25 12:53:27 2009 +0000
Read profile files as binary as proposed in
http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-August/025020.html.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79983 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9112f5f6755a85f10036ff20741fc264622dc14a
Author: Xerxes Ranby <xerxes@zafena.se>
Date: Tue Aug 25 10:12:55 2009 +0000
Fix PR4772 ARM JIT.GlobalInFuction unittest by explicitly initialize MMI
to 0 during JITEmitter constructor.
Modified:
lib/ExecutionEngine/JIT/JITEmitter.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79982 91177308-0d34-0410-b5e6-96231b3b80d8
commit a75796301ee17e60daea754e30a035a53891650d
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 08:08:33 2009 +0000
- Rename EmitCommonInformationEntry to EmitCIE.
- Rename EmitFunctionDescriptionEntry to EmitFDE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79981 91177308-0d34-0410-b5e6-96231b3b80d8
commit 57b83c78f56324e3a8ff636b311235f6f2350b4e
Author: Devang Patel <dpatel@apple.com>
Date: Tue Aug 25 05:24:07 2009 +0000
Update DebugInfo interface to use metadata, instead of special named llvm.dbg.... global variables, to encode debugging information in llvm IR. This is mostly a mechanical change that tests metadata support very well.
This change speeds up llvm-gcc by more then 6% at "-O0 -g" (measured by compiling InstructionCombining.cpp!)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79977 91177308-0d34-0410-b5e6-96231b3b80d8
commit bcc93309ca3632b3cd2b45f265a534256be7589a
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 02:32:05 2009 +0000
- Emit new line after each FDE.
- Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79971 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4767b24840250630c47fee8be2a6aef07f19d30a
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 02:27:42 2009 +0000
Rename functions to something more descriptive. At the very least mention the
CIE and FDE in their names.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79969 91177308-0d34-0410-b5e6-96231b3b80d8
commit 30d4d765dfc6d01bc4c1d6934582050106bcceba
Author: Dale Johannesen <dalej@apple.com>
Date: Tue Aug 25 01:13:58 2009 +0000
Allow multiple occurrences of -inline-threshold on
the command line. This gives llvm-gcc developers
a way to control inlining (documented as "not intended
for end users").
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79966 91177308-0d34-0410-b5e6-96231b3b80d8
commit 06b990c5b3f32505188e52be1b70b38290f81b83
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 00:54:39 2009 +0000
Handle a corner case when extracing code regions where one of the immediate successor
of an extracted block contains a PHI using a value defined in the extracted region.
With this patch, the partial inliner now passes MultiSource/Applications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79963 91177308-0d34-0410-b5e6-96231b3b80d8
commit f1f04ecf6e5af3aa7c4c59077486c9cb29df20ea
Author: Dale Johannesen <dalej@apple.com>
Date: Tue Aug 25 00:16:14 2009 +0000
Fix PR 4751, another difficulty with %a modifier on x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79961 91177308-0d34-0410-b5e6-96231b3b80d8
commit 09220a24f7845a078fb41c61ee909eed6c94a255
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 00:05:04 2009 +0000
--- Reverse-merging r79938 into '.':
U include/llvm/BasicBlock.h
U include/llvm/ADT/ilist_node.h
U include/llvm/ADT/ilist.h
U include/llvm/CodeGen/SelectionDAG.h
U include/llvm/CodeGen/MachineFunction.h
U include/llvm/CodeGen/MachineBasicBlock.h
U include/llvm/Function.h
Revert r79938. It was causing self-hosting build failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79960 91177308-0d34-0410-b5e6-96231b3b80d8
commit f2942e63abf0b485e88c21a9fc96bfb13754ed41
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Tue Aug 25 00:02:29 2009 +0000
CMake: updated list of source files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79959 91177308-0d34-0410-b5e6-96231b3b80d8
commit 399ece6621d316d7378e5fc13bd030e5572f03ce
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 23:57:35 2009 +0000
- Remove SelectSEXTi128 from SPUISelDAGToDAG.cpp, evidently, this is redundant
code, according to Anton (I'm not totally convinced, but we can always
resurrect patches if we need to do so.)
- Start moving CellSPU's tests to prefer FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79958 91177308-0d34-0410-b5e6-96231b3b80d8
commit 27dad5a41e0b0fa8fd5cba2e6f5dd70b82689e76
Author: Owen Anderson <resistor@mac.com>
Date: Mon Aug 24 23:32:14 2009 +0000
When extracting SEME regions of code, the extractor needs to update the dominator tree for split return blocks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79957 91177308-0d34-0410-b5e6-96231b3b80d8
commit 316e6fb92b997dfa4db655a371d5699cbcac0473
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 22:49:22 2009 +0000
Prefer 'FileCheck' over 'grep'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79953 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36173e27ebfe4da907c17f2b507a9df3415a3aad
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 22:28:53 2009 +0000
128-bit sign extension and vector shift cleanups, contributed by Ken Werner
(IBM).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79949 91177308-0d34-0410-b5e6-96231b3b80d8
commit 73ab81726b384015ac9bfe7f734fc13b93297c4c
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 21:53:27 2009 +0000
Initialize ShufBytes, as gcc 4.4 can't detect that the entire array is
initialized and a warning about a potentially unintialized variable is
generated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79946 91177308-0d34-0410-b5e6-96231b3b80d8
commit af26e32df3f129ac906a45c4527b5ee3641cb22d
Author: Andreas Neustifter <astifter@gmx.at>
Date: Mon Aug 24 21:41:37 2009 +0000
Add llvm_start_edge_profiling to exported symbols for libprofile_rt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79944 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92b39ace140de279245e80d0465528933787c7e4
Author: Andreas Neustifter <astifter@gmx.at>
Date: Mon Aug 24 21:37:48 2009 +0000
This patch cleans up the ProfileInfo by
*) introducing new data type and export function of edge info for whole function (preparation for next patch).
*) renaming variables to make clear distinction between data and containers that contain this data.
*) updated comments and whitespaces.
*) made ProfileInfo::MissingValue a double (as it should be...).
(Discussed at http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090817/084955.html.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79940 91177308-0d34-0410-b5e6-96231b3b80d8
commit c19dfb9d25347b815512bba5eb64052708e4c183
Author: Gabor Greif <ggreif@gmail.com>
Date: Mon Aug 24 21:34:17 2009 +0000
Resubmit an earlier patch of mine:
reduce the size of relevant "ghostly" sentinels
by a pointer.
This attempt now makes the compactification dependent
on the configure variable LLVM_COMPACT_SENTINELS
and should not cause any bootstrap failures for
llvm-gcc any more.
Please note that this is not yet the final version,
and (as settled with Chris) I shall take out the
autofoo/cmake portions in the next days.
This will also lose the assertability on sentinel
dereferencing and operator++, but that seems
an acceptable price to pay for the simplified
build logic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79938 91177308-0d34-0410-b5e6-96231b3b80d8
commit b2f99910fba8818270e41e75f4b127d82a2082a6
Author: Bob Wilson <bob.wilson@apple.com>
Date: Mon Aug 24 21:17:17 2009 +0000
Fix a typo. Somehow I thought this had passed before, but I guess not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79937 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5c686b114bf6ac6b3137f96bc59ffb2e8e20de6
Author: Gabor Greif <ggreif@gmail.com>
Date: Mon Aug 24 21:00:10 2009 +0000
prune ignores: AutoGenerated.inc is no more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79936 91177308-0d34-0410-b5e6-96231b3b80d8
commit cacea03dbaca34b44783243898ef2274bd71e72e
Author: Bob Wilson <bob.wilson@apple.com>
Date: Mon Aug 24 20:33:47 2009 +0000
Convert slow test to use FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79935 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8551a303173101cf595dc35200eea7da37e769d4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 24 20:08:27 2009 +0000
Convert two gratuitous abuses of poor helpless CPU cycles to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79933 91177308-0d34-0410-b5e6-96231b3b80d8
commit b9640223f05f0257603a0138c1ea8cb59c7f5acc
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 24 17:51:19 2009 +0000
Split test into 3.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79926 91177308-0d34-0410-b5e6-96231b3b80d8
commit a0151d0e9f948b39e55944b5cad64fb33732af25
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 24 11:56:58 2009 +0000
llvm-mc/Mach-O: Preliminary support for indirect symbols.
- The indirect table itself isn't being filled in yet.
- This isn't factored properly and is rather FIXMEd, but at the moment I'm more
focused on figuring out what it needs to do.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79910 91177308-0d34-0410-b5e6-96231b3b80d8
commit b69f053e0d5af3463d1bbf2101e5c1431cca6fee
Author: Duncan Sands <baldrick@free.fr>
Date: Mon Aug 24 10:59:01 2009 +0000
Fix the build when using gcc-4.4 on linux. Header needed
for stderr and fprintf.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79909 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-31 22:38:59 +03:00
|
|
|
$(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
|
2009-08-24 14:01:07 +03:00
|
|
|
$(Verb) $(RM) -f $@
|
Merge LLVM upstream SVN r80601.
This brings in some memory leak fixes for LLVMCOntext.
Squashed commit of the following:
commit 4cfaf41d499ce05b11ecb62746c3e86b04440f62
Author: Bill Wendling <isanbard@gmail.com>
Date: Mon Aug 31 18:26:48 2009 +0000
Output a hex value, because all of the others are hex.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80601 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7829e5a6558bb97589d47d61da3142f7ebbdaeac
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 31 18:05:23 2009 +0000
Fix some misspellings of XTARGET.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80598 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8364630e4cb67b6f64a704960e73ae44ce3f10ed
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 31 17:49:20 2009 +0000
Mark test as passing on all x86, which it should,
although I don't think anyone cares about this
feature except Darwin. PR 4825.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80596 91177308-0d34-0410-b5e6-96231b3b80d8
commit cf91fb4cb2e15b1fa07dc1282ac59c3659d80015
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 17:08:30 2009 +0000
cleanups pointed out by duncan
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80595 91177308-0d34-0410-b5e6-96231b3b80d8
commit 752d366fe7a9d0f68258465ce554cdf40af2918e
Author: Duncan Sands <baldrick@free.fr>
Date: Mon Aug 31 16:45:16 2009 +0000
Revert commit 80428. It completely broke exception
handling on x86-32 linux.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80592 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c8dfbb88bb125c2b7d1105645937b14dce9bcd3
Author: Edwin Török <edwintorok@gmail.com>
Date: Mon Aug 31 16:14:59 2009 +0000
Free the constants that have no uses in ~LLVMContext.
This fixes leaks from LLVMContext in multithreaded apps.
Since constants are only deleted if they have no uses, it is safe to not delete
a Module on shutdown, as many single-threaded tools do.
Multithreaded apps should however delete the Module before destroying the
Context to ensure that there are no leaks (assuming they use a different context
for each thread).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80590 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6d5f43b77a907a2b42ff405ab16e078c6598c70e
Author: Edwin Török <edwintorok@gmail.com>
Date: Mon Aug 31 16:12:29 2009 +0000
Fix ExplicitSymbols leak.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80589 91177308-0d34-0410-b5e6-96231b3b80d8
commit b759ebc5bc48ee93a9f4b031ec6ed3247028d77c
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Mon Aug 31 13:05:24 2009 +0000
Normalize makefile comments and sort cmake file lists.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80584 91177308-0d34-0410-b5e6-96231b3b80d8
commit d79f43204be2893e74872f1062e2a44f023d39e1
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:09:28 2009 +0000
llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80578 91177308-0d34-0410-b5e6-96231b3b80d8
commit f4c67959b5ea0bbd3a39085c91c2d3162c6fd973
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:09:09 2009 +0000
llvm-mc: Simplify EmitAssignment ('.set' is identical to '=').
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80577 91177308-0d34-0410-b5e6-96231b3b80d8
commit b6a03e093598d90c10c8d1cab8425e3d107b12cf
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:50 2009 +0000
llvm-mc: Remove MCAsmParser::Parse[Paren]RelocatableExpression.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80576 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e96621a502ddebc12cd4d139756b7a90fd1ca8a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:38 2009 +0000
llvm-mc: Switch MCInst to storing an MCExpr* instead of an MCValue.
Also, use MCInst::print instead of custom code in MCAsmPrinter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80575 91177308-0d34-0410-b5e6-96231b3b80d8
commit 667cfd44ac3394697e60f54f72bfd190436c061a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:17 2009 +0000
llvm-mc: Add MCAsmParser::Parse[Paren]Expression forms which return an MCExpr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80574 91177308-0d34-0410-b5e6-96231b3b80d8
commit 22ad5f80f751da3ba986022d09c49fcc4416048a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:08:06 2009 +0000
llvm-mc: Make MCSymbolData symbol member const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80573 91177308-0d34-0410-b5e6-96231b3b80d8
commit 29efe7e0c9d32aaefa2a2924a8ded5fd4c76ff28
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:55 2009 +0000
llvm-mc: Add MCContext to MCAssembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80572 91177308-0d34-0410-b5e6-96231b3b80d8
commit 890ebe2d940760796e088902a2613cdf30b16e76
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:44 2009 +0000
llvm-mc: Add MCAsmParser::getContext.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80571 91177308-0d34-0410-b5e6-96231b3b80d8
commit 510c1a5512b7de68dc9b272eaba0e5d6c3ddc8b9
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:33 2009 +0000
llvm-mc: Add MCExpr::{dump,print}.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80570 91177308-0d34-0410-b5e6-96231b3b80d8
commit bc4d607b1a5fd13c1f19ef812ebb6fe814831d56
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:22 2009 +0000
llvm-mc: Switch MCExpr construction to using static member functions, and taking the MCContext (which now owns all MCExprs).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80569 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e3b031540ae25a464bfa37cdbd19e2cad301ee7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:07:08 2009 +0000
llvm-mc: Add some doxyment markers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80568 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3679d2f3156d001053bae8fa5a162852b7700a27
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 31 08:06:59 2009 +0000
llvm-mc: Move AsmExpr into MC lib (as MCExpr).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80567 91177308-0d34-0410-b5e6-96231b3b80d8
commit 298ea10f4da28d9be51f8be5af59f88ea86ce7ec
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 07:23:46 2009 +0000
Step #1 to giving Callgraph some sane invariants. The problems with callgraph
stem from the fact that we have two types of passes that need to update it:
1. callgraphscc and module passes that are explicitly aware of it
2. Functionpasses (and loop passes etc) that are interlaced with CGSCC passes
by the CGSCC Passmgr.
In the case of #1, we can reasonably expect the passes to update the call
graph just like any analysis. However, functionpasses are not and generally
should not be CG aware. This has caused us no end of problems, so this takes
a new approach. Logically, the CGSCC Pass manager can rescan every function
after it runs a function pass over it to see if the functionpass made any
updates to the IR that affect the callgraph. This allows it to catch new calls
introduced by the functionpass.
In practice, doing this would be slow. This implementation keeps track of
whether or not the current scc is dirtied by a function pass, and, if so,
delays updating the callgraph until it is actually needed again. This was
we avoid extraneous rescans, but we still have good invariants when the
callgraph is needed.
Step #2 of the "give Callgraph some sane invariants" is to change CallGraphNode
to use a CallBackVH for the callsite entry of the CallGraphNode. This way
we can immediately remove entries from the callgraph when a FunctionPass is
active instead of having dangling pointers. The current pass tries to tolerate
these dangling pointers, but it is just an evil hack.
This is related to PR3601/4835/4029. This also reverts r80541, a hack working
around the sad lack of invariants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80566 91177308-0d34-0410-b5e6-96231b3b80d8
commit 21d79e26df48405ff2fdfde682c4fdf6c646ef8a
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 06:57:37 2009 +0000
fix some cases where instcombine would change hte IR but not return true
from runOnFunction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80562 91177308-0d34-0410-b5e6-96231b3b80d8
commit 223479b6087a6d9a1470c857c459e408ba51df84
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 06:01:21 2009 +0000
cleanups, factor some code out to a helper function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80542 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5313424550268526a14fd910cfb59efb95e0f30
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:46:59 2009 +0000
fix a crash building SPASS by tolerating a callsite that doesn't exist
in the callgraph, see the big comment at the top of the testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80541 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4c76b7e8e15bf7ed6607393535f64a9070b6df8c
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:34:32 2009 +0000
comment and simplify some code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80540 91177308-0d34-0410-b5e6-96231b3b80d8
commit d441cd63a37ec3589fed1cfba11bbb177dab8fa6
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:22:48 2009 +0000
add -debug output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80539 91177308-0d34-0410-b5e6-96231b3b80d8
commit 26b7f945b3a935e44755202ef7be13fdee8c75b5
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 05:17:58 2009 +0000
improve -debug output, so that -debug is more likely to print when
instcombine is changing stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80538 91177308-0d34-0410-b5e6-96231b3b80d8
commit adba7ea53650f26a6752f606041ac6d741c1fd4f
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 04:36:22 2009 +0000
fix a bug I introduced with my 'instcombine builder' refactoring
changes: SimplifyDemandedBits can't use the builder yet because it
has the wrong insertion point. This fixes a crash building
MultiSource/Benchmarks/PAQ8p
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80537 91177308-0d34-0410-b5e6-96231b3b80d8
commit b74203603b43d08ddef33e9a4c9c03752d86aee6
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 04:09:04 2009 +0000
simplify some code by making the SCCNodes set contain Function*'s
instead of CallGraphNode*'s. This also papers over a callgraph
problem where a pass (in this case, MemCpyOpt) introduces a new
function into the module (llvm.memset.i64) but doesn't add it to
the call graph (nor should it, since it is a function pass).
While it might be a good idea for MemCpyOpt to not synthesize
functions in a runOnFunction(), there is no need for FunctionAttrs
to be boneheaded, so fix it there. This fixes an assertion building
176.gcc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80535 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e30f91f1c190b8f3ba93de2c8746e0addaf056e
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 03:22:35 2009 +0000
only print the override triple if it exists!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80534 91177308-0d34-0410-b5e6-96231b3b80d8
commit fd7079292b43ca5eceae2c585fc2899033a448f7
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 03:15:49 2009 +0000
Fix PR4834, a tricky case where the inliner would resolve an
indirect function pointer, inline it, then go to delete the body.
The problem is that the callgraph had other references to the function,
though the inliner had no way to know it, so we got a dangling pointer
and an invalid iterator out of the deal.
The fix to this is pretty simple: stop the inliner from deleting the
function by knowing that there are references to it. Do this by making
CallGraphNodes contain a refcount. This requires moving deletion of
available_externally functions to the module-level cleanup sweep where
it belongs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80533 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7d7776f7adca3f51d05c3bbfbacaf65a5ae5167f
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 02:24:20 2009 +0000
use an accessor instead of poking internals of a node.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80532 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7032b5cbb5282c844008e780c7bbdddf8f8cf096
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Mon Aug 31 01:58:50 2009 +0000
CMake: updated library dependencies.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80531 91177308-0d34-0410-b5e6-96231b3b80d8
commit 54b6adfbb882f2f9b96c241fb87d0128ce840960
Author: Jim Grosbach <grosbach@apple.com>
Date: Mon Aug 31 01:35:03 2009 +0000
PR4747
Shared landing pads run into trouble with SJLJ, as the dispatch table is
mapped to call sites, and merging the pads will throw that off. There needs
to be a one-to-one mapping of landing pad exception table entries to invoke
call points.
Detecting the shared pad during lowering of SJLJ info insn't sufficient, as
the dispatch function may still need separate destinations to properly
handle phi-nodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80530 91177308-0d34-0410-b5e6-96231b3b80d8
commit 86ab47ae9c388e9e046dedd9d9d554268290e450
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 00:28:46 2009 +0000
update unit test for previous change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80528 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3dab7152eedc0d822a9499102303eba526026021
Author: Chris Lattner <sabre@nondot.org>
Date: Mon Aug 31 00:19:58 2009 +0000
Fix some nasty callgraph dangling pointer problems in
argpromotion and structretpromote. Basically, when replacing
a function, they used the 'changeFunction' api which changes
the entry in the function map (and steals/reuses the callgraph
node).
This has some interesting effects: first, the problem is that it doesn't
update the "callee" edges in any callees of the function in the call graph.
Second, this covers for a major problem in all the CGSCC pass stuff, which
is that it is completely broken when functions are deleted if they *don't*
reuse a CGN. (there is a cute little fixme about this though :).
This patch changes the protocol that CGSCC passes must obey: now the CGSCC
pass manager copies the SCC and preincrements its iterator to avoid passes
invalidating it. This allows CGSCC passes to mutate the current SCC. However
multiple passes may be run on that SCC, so if passes do this, they are now
required to *update* the SCC to be current when they return.
Other less interesting parts of this patch are that it makes passes update
the CG more directly, eliminates changeFunction, and requires clients of
replaceCallSite to specify the new callee CGN if they are changing it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80527 91177308-0d34-0410-b5e6-96231b3b80d8
commit 637d133ffeaa961837ebc87ee6934be5ef401b8f
Author: Erick Tryzelaar <idadesub@users.sourceforge.net>
Date: Sun Aug 30 23:41:20 2009 +0000
Fix header comment for bindings/ocaml/llvm/Makefile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80526 91177308-0d34-0410-b5e6-96231b3b80d8
commit ad465d7013a6ec529a34605d51377202af71b418
Author: Erick Tryzelaar <idadesub@users.sourceforge.net>
Date: Sun Aug 30 23:38:06 2009 +0000
Make sure we specify no arguments for context functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80525 91177308-0d34-0410-b5e6-96231b3b80d8
commit ba263e5f1b2320558e3935bbfbdc10c6d581c19d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:24:32 2009 +0000
add a dump() method on callgraph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80524 91177308-0d34-0410-b5e6-96231b3b80d8
commit 72489759fa9fb63fdfa9f2e363222f0c45bf1340
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:14:17 2009 +0000
rename test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80523 91177308-0d34-0410-b5e6-96231b3b80d8
commit fae478e46e8ba5192eebbe569a627fdb954e587f
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:13:26 2009 +0000
merge all sinking tests into one and convert them to filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80522 91177308-0d34-0410-b5e6-96231b3b80d8
commit a94b6974dd77e6457eba731fc6bf760d150f4207
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 22:08:19 2009 +0000
convert scalar_promote to filecheck style and merge 2003-12-13-VolatilePromote.ll into it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80521 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9e2f641e11c20fa64e5f605e00168ecc7c0207b6
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:45:23 2009 +0000
eliminate some uses of prcontext. Any help here would be appreciated :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80520 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5d911fe3ad0daa3bab9f6ddb24931db969fed00
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:36:39 2009 +0000
rename test so that name reflects what it is testing for.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80519 91177308-0d34-0410-b5e6-96231b3b80d8
commit 16078ca613ec085b395afbabf5b68b7062e0ac1c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:36:06 2009 +0000
convert to filecheck format.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80518 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0799dd19d3f0c2f1beb1b17ef7842ae5b61043d2
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:31:34 2009 +0000
suck a bunch more gep tests into getelementptr.ll and filecheckize them all.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80517 91177308-0d34-0410-b5e6-96231b3b80d8
commit 16d7262e7a2e523c97e2c8bb2b4ab8823cf05772
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 21:14:05 2009 +0000
Tweak comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80516 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6a8458c86c784f7955ab7815b4840fc21f27b2d8
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 21:13:58 2009 +0000
Fix some possible-use-of-uninitialized warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80515 91177308-0d34-0410-b5e6-96231b3b80d8
commit 909749e25e3d5442e5b407781d2de92871f81a64
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:02:36 2009 +0000
consolodate various GEP tests into getelementptr.ll using filecheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80514 91177308-0d34-0410-b5e6-96231b3b80d8
commit ccf7551a0445599b24a0eae667242e67b5f5d298
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:02:02 2009 +0000
another huge testcase, this time from 'gs' in llvm-test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80513 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1fa629a0ffe6aa837bda41389c098e236a5b0f0c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:01:14 2009 +0000
remove another poorly-reduced testcase which came from ldecod in llvm-test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80512 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36d9c48134861d576a78c09e001d7773a502ea76
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 21:00:11 2009 +0000
this testcase is 500 lines long and is distilled from bzip2, just
remove it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80511 91177308-0d34-0410-b5e6-96231b3b80d8
commit 586de4da4bffce2aae9110a60a39a3318014674c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:48:15 2009 +0000
convert to filecheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80510 91177308-0d34-0410-b5e6-96231b3b80d8
commit 83288fa512830d723318bf99060d3ec4fbf53abc
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:38:21 2009 +0000
Fix PR4748: don't fold gep(bitcast(x)) into bitcast(gep) when x
is itself a bitcast. Since we have gep(bitcast(bitcast(y))) in this
case, just wait for the two bitcasts to get zapped. This prevents
instcombine from confusing some aliasing stuff, and allows it to
directly eliminate the load in the testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80508 91177308-0d34-0410-b5e6-96231b3b80d8
commit f3a2359906e6939a2552c7c23877592693d757f1
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:36:46 2009 +0000
misc cleanup
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80507 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6807a24de176e563843a0c5a21c9358b5eeefc2d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:06:40 2009 +0000
add getPointerAddressSpace() to GEP instruction, use the method
in a few scalar xforms to simplify things.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80506 91177308-0d34-0410-b5e6-96231b3b80d8
commit d6164c20cdaaa27a2cc7b340604b4df3f2b97129
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 20:01:10 2009 +0000
eliminate InsertCastBefore, use the builder instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80505 91177308-0d34-0410-b5e6-96231b3b80d8
commit 78628294ebe9a062fbd7e55edf5240e9b7c53fce
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 19:47:22 2009 +0000
eliminate InsertBitCastBefore, just use the builder instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80504 91177308-0d34-0410-b5e6-96231b3b80d8
commit b77b0464ba62108a07af655f626f5bfe3bd63162
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 19:45:21 2009 +0000
add a "getPointerAddressSpace" helper method to LoadInst and StoreInst.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80503 91177308-0d34-0410-b5e6-96231b3b80d8
commit d33527768525e6447c6fdcf521ffb975165dbc7a
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sun Aug 30 19:06:39 2009 +0000
Add missed pattern
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80502 91177308-0d34-0410-b5e6-96231b3b80d8
commit ad7516ac00ede459691feba7f448a4c3654ea6fc
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 18:50:58 2009 +0000
convert a bunch more calls to InsertNewInstBefore to use
the new Instcombine builder.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80501 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36ec3b4e9828905bdc6bf7ef91ac808ab11e7d45
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 17:53:59 2009 +0000
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80500 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8ba22dd113839d66b3f2912aff6bdd27776b1608
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 17:44:10 2009 +0000
hopefully unbreak the build by making this-> explicit for dependent
base class lookup.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80499 91177308-0d34-0410-b5e6-96231b3b80d8
commit 243874430bb02c8f76b7603cbc8f31ebf2749785
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sun Aug 30 17:14:54 2009 +0000
EXTRACT_VECTOR_ELEMENT can have result type different from element type.
Remove the assertion and generalize the code for ARM NEON stuff.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80498 91177308-0d34-0410-b5e6-96231b3b80d8
commit 42cee05a28e87ba96760daaf9699f8355ea53f6e
Author: Edwin Török <edwintorok@gmail.com>
Date: Sun Aug 30 08:24:09 2009 +0000
Add regular expression matching support, based on OpenBSD regexec()/regcomp()
implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80493 91177308-0d34-0410-b5e6-96231b3b80d8
commit c769485a593b86360597d913c083292279730695
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 07:44:24 2009 +0000
give instcombine a custom IRBuilder that adds new instructions to the
workslist and is set to insert new instructions before the current one.
Convert a bunch of stuff that used to call InsertNewInstBefore over to
use it, greatly simplifying code and making it more natural.
There is still a lot more to go, but this is a good start.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80492 91177308-0d34-0410-b5e6-96231b3b80d8
commit f0b47f327e20f338c90202ea21001dd9b06f7ef5
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 07:01:09 2009 +0000
Update test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80490 91177308-0d34-0410-b5e6-96231b3b80d8
commit c5ad98f04a19b2b7d463713a77634471578d1a64
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:27:41 2009 +0000
add a new InstCombineWorklist::AddValue method that works even
if the operand is not an instruction.
Simplify most uses of AddOperandsToWorkList to use AddValue and
inline it into the one remaining callsite.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80488 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4796b62fccd6f8c414b5a642ebe0f6dbbabd5b61
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:22:51 2009 +0000
move AddUsersToWorkList to the worklist processing class, make the
argument stronger typed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80487 91177308-0d34-0410-b5e6-96231b3b80d8
commit 059cfc7570d47711c1b53c909ab0f9c347cb23c3
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:20:05 2009 +0000
rename AddUsesToWorkList -> AddOperandsToWorkList. The
former looks too much like AddUsersToWorkList and keeps
confusing me.
Remove AddSoonDeadInstToWorklist and change its two callers
to do the same thing in a simpler way.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80486 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8d310b5231890e926000c6939540b93fe094b61
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 06:17:49 2009 +0000
llvm-mc/X86: Encode constant MCValue's correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80485 91177308-0d34-0410-b5e6-96231b3b80d8
commit b03d1179e934cb99e30190835fea1e7f4a59ecad
Author: Daniel Dunbar <daniel@zuster.org>
Date: Sun Aug 30 06:17:16 2009 +0000
llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported for now.
- Switch Emit{CommonSymbol,Zerofill} to take alignment in bytes (for consistency).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80484 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3183fb6b613c15627c33a8257cbbfe10dbf0bb7f
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 06:13:40 2009 +0000
inline the trivial AddToWorkList/RemoveFromWorkList methods
into their callers. simplify ReplaceInstUsesWith. Make
EraseInstFromFunction only add operands to the worklist if
there aren't too many of them (this was a scalability win
for crazy programs that was only infrequently enforced).
Switch more code to using EraseInstFromFunction instead of
duplicating it inline. Change some fcmp/icmp optimizations
to modify fcmp/icmp in place instead of creating a new one
and deleting the old one just to change the predicate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80483 91177308-0d34-0410-b5e6-96231b3b80d8
commit bf09d6330ea039406e250493d7e45d001f81734d
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:56:44 2009 +0000
fix a bug I introduced in r80478 found by the build bot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80482 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5119c70d1620b79288c50ca2ad6a3ea4f11a3f35
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:55:36 2009 +0000
refactor instcombine's worklist processing stuff out to its own class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80481 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1dde4eb8a0aef903bfd53d8dabfc61a560e1b327
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:55:04 2009 +0000
make DenseMap::clear() early exit if there is nothing to do.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80480 91177308-0d34-0410-b5e6-96231b3b80d8
commit 69af0ff152a949c41ea8ff4550c74627306262f7
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:42:59 2009 +0000
some minor cleanups to IRBuilder, factor the insertion
hook out of the main IRBuilder class to allow clients to
override it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80479 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c641fc37fc42d878883b0325810a5c8c02a436c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:30:55 2009 +0000
more cleanups: remove some redundant code, and simplify some
other places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80478 91177308-0d34-0410-b5e6-96231b3b80d8
commit c2c8a0ac3f529c9e536862b213e18f67de05f422
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:08:50 2009 +0000
eliminate the temporary SrcGEPOperands smallvector.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80477 91177308-0d34-0410-b5e6-96231b3b80d8
commit 95ba1ec4cbb14614f9ac26c9aabe5cac6640c4b0
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 05:00:50 2009 +0000
simplify/detangle some control flow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80476 91177308-0d34-0410-b5e6-96231b3b80d8
commit c0f553e874121b6a0feb35e580040c02da05ac3c
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 04:49:01 2009 +0000
simplify and cleanup some code, remove some code that just
does constant folding of gep's: this is already handled in
a more general way.
No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80475 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9da50553ef4596ea75c3a5434bf9ad356fb574ee
Author: Chris Lattner <sabre@nondot.org>
Date: Sun Aug 30 04:25:40 2009 +0000
default count-aa to -print-all. The whole reason to use count-aa is
to see what queries are being made by a transformation, we might as well
default to printing them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80474 91177308-0d34-0410-b5e6-96231b3b80d8
commit 09880947395319ff0df656549ddf0b080b7af385
Author: Bill Wendling <isanbard@gmail.com>
Date: Sun Aug 30 00:28:57 2009 +0000
Nuke moribund "std::string" version of EOL(..., Encoding).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80466 91177308-0d34-0410-b5e6-96231b3b80d8
commit cdfb9b17b94bffa0de0e4862d22369fa1dcd9099
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:54:26 2009 +0000
Add AutoGenerated.inc to svn:ignore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80455 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5d138f96f048cc7009397708ed10edea7cede5a6
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:39:38 2009 +0000
Remove an unnecessary Context argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80454 91177308-0d34-0410-b5e6-96231b3b80d8
commit f928ad4af07aaac5e7e81757dcd514acbb5cb39c
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:37:49 2009 +0000
Minor logic simplification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80453 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3d9354c841746f1802babcd465e542d7a7ea2a10
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:36:57 2009 +0000
Add some comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80452 91177308-0d34-0410-b5e6-96231b3b80d8
commit 18e06cf39d0313f80b055eb98dba8d8f42fd08cd
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:35:16 2009 +0000
Cleanup whitespace and indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80451 91177308-0d34-0410-b5e6-96231b3b80d8
commit b006a1010559be4bc9d5e577c50fc750194f34a6
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 23:34:14 2009 +0000
Remove some unused fields.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80450 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1596dd23f3e2df5225cdfcea0904a017f96aaa90
Author: Dan Gohman <gohman@apple.com>
Date: Sat Aug 29 22:19:15 2009 +0000
CMOV_GR8 clobbers EFLAGS when its expansion involves an xor to set
a register to 0. This fixes PR4814.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80445 91177308-0d34-0410-b5e6-96231b3b80d8
commit ac09afaf40216429fad53899cce2f9fde8e267d4
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Sat Aug 29 13:38:21 2009 +0000
Inline empty destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80431 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c5374802712a3d28cd13207ed3979a95457075c
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:31:38 2009 +0000
Fix warning about non-virtual destructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80429 91177308-0d34-0410-b5e6-96231b3b80d8
commit b4ac493684cdeb2147000a6816a563269fcf3c70
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:20:54 2009 +0000
- Add target lowering methods to get the preferred format for the FDE and LSDA
encodings.
- Make some of the values emitted by the FDEs dependent upon the pointer
size. This is in line with how GCC does things. And it has the benefit of
working for Darwin in 64-bit mode now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80428 91177308-0d34-0410-b5e6-96231b3b80d8
commit 946b521498866b3d83c4447c9c0ece6095a56874
Author: Bill Wendling <isanbard@gmail.com>
Date: Sat Aug 29 12:17:53 2009 +0000
Add a form of EOL which emits the text version of a DWARF format encoding. This
doesn't handle all values of the formatting. Those can be added as needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80427 91177308-0d34-0410-b5e6-96231b3b80d8
commit 502c35e863882790a94ad432d0a03c4a7e1a0aad
Author: Bob Wilson <bob.wilson@apple.com>
Date: Sat Aug 29 05:53:25 2009 +0000
PR4795: Remove EEVT::isFP, isInt and isVec types used by TableGen's type
inferencing. As far as I can tell, these are equivalent to the existing
MVT::fAny, iAny and vAny types, and having both of them makes it harder
to reason about and modify the type inferencing code.
The specific problem in PR4795 occurs when updating a vAny type to be fAny
or iAny, or vice versa. Both iAny and fAny include vector types -- they
intersect with the set of types represented by vAny. When merging them,
choose fAny/iAny to represent the intersection. This is not perfect, since
fAny/iAny also include scalar types, but it is good enough for TableGen's
type inferencing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80423 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0ac7faa993d472be4a23e0e58fa6e9372960cfe8
Author: Eric Christopher <echristo@apple.com>
Date: Sat Aug 29 01:12:46 2009 +0000
Make the augmentation size and next set of bytes agree on size,
and make the reference pointer size as it should be.
Fixes an abort on a testcase derived from libunwind's personality
test in 64-bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80414 91177308-0d34-0410-b5e6-96231b3b80d8
commit 83b551c5efdc49183f744103cd8e22a75117d07f
Author: Jeffrey Yasskin <jyasskin@google.com>
Date: Sat Aug 29 00:44:16 2009 +0000
Fix OProfile support after r80406 changed the DebugInfo interface from
GlobalVariables to MDNodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80411 91177308-0d34-0410-b5e6-96231b3b80d8
commit e54c004ea5ea6c7e89b1cef9531ce05096122bbf
Author: David Goodwin <david_goodwin@apple.com>
Date: Sat Aug 29 00:11:13 2009 +0000
Another stab at fixing up register kill flags after post-RA scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80410 91177308-0d34-0410-b5e6-96231b3b80d8
commit cb7c98d9ef32354166106ff8218fb9fcbb8b2d24
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Sat Aug 29 00:08:18 2009 +0000
Do not assert on too wide splats we don't support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80409 91177308-0d34-0410-b5e6-96231b3b80d8
commit 44e0a6cee931258a05b190f9e6e411a6d276c96a
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Fri Aug 28 23:41:26 2009 +0000
Add missed extract_element pattern
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80408 91177308-0d34-0410-b5e6-96231b3b80d8
commit 15e723d2c6021bbeacad9baa9c0d946d4a19867e
Author: Devang Patel <dpatel@apple.com>
Date: Fri Aug 28 23:24:31 2009 +0000
Reapply 79977.
Use MDNodes to encode debug info in llvm IR.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80406 91177308-0d34-0410-b5e6-96231b3b80d8
commit c299914a58baed2d7cf594494dbba60880d476cd
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 23:18:09 2009 +0000
Let Darwin linker auto-synthesize stubs and lazy-pointers. This deletes a bunch of nasty code in ARM asm printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80404 91177308-0d34-0410-b5e6-96231b3b80d8
commit a14f4474b2d915579e9e9bd8bf4080d7f25e7dcd
Author: Eric Christopher <echristo@apple.com>
Date: Fri Aug 28 22:33:43 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80401 91177308-0d34-0410-b5e6-96231b3b80d8
commit c6750c9bc8e555f632777eb1c69793b3b0dc40f6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 16:14:46 2009 +0000
Fix creation of .bca libraries with EXPORTED_SYMBOLS_LIST, this was putting the
llvm-ld shell wrapper script in the archive, not the relinked object!
Also, rename the temp file to avoid conflicts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80373 91177308-0d34-0410-b5e6-96231b3b80d8
commit 72d34e1a91e3f2b58559f92e5c1716ba10586bf1
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 16:13:45 2009 +0000
Read Makefile.config before using LLVMGCC.
See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090824/085828.html
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80372 91177308-0d34-0410-b5e6-96231b3b80d8
commit ab4193ba50b6b5fcda5e2230e4705676ec07b463
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 16:12:48 2009 +0000
install-sh chmods to 0755 by default, and this causes 'git diff' to show
that all the Makefiles changed mode.
Fix this by tellint install-sh to chmod
only to 0644, these are not executable files after all!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80371 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5cc6d8ae5a5813f059b0f03511b29c101c3a8ba
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Fri Aug 28 16:06:41 2009 +0000
Short-term workaround for frame-related weirdness on win64.
Some other minor win64 fixes as well.
Patch by Michael Beck!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80370 91177308-0d34-0410-b5e6-96231b3b80d8
commit 422cc43971693fd61517993472065277cb0cc903
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 14:05:07 2009 +0000
rm needs -f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80363 91177308-0d34-0410-b5e6-96231b3b80d8
commit da6633bee39686d02cd348b5c79c9dfc14eea6fd
Author: Edwin Török <edwintorok@gmail.com>
Date: Fri Aug 28 13:35:44 2009 +0000
Remove the llvmprof.out from the test output, otherwise running
make check in a non-clean directory causes it to fail (for example when running
make check twice), since execution counts will differ.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80362 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3f10e8664f46c60e4153da5da0ce33cd6b0b2ea3
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 11:28:24 2009 +0000
Preparation for Optimal Edge Profiling:
This implements the maximum spanning tree algorithm on CFGs according to
weights given by the ProfileEstimator. This is then used to implement Optimal
Edge Profiling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80358 91177308-0d34-0410-b5e6-96231b3b80d8
commit c99a43a3864aee1121af69db21545a3974226d41
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:38:26 2009 +0000
Remove profiling output file because two consecutive runs of make check give
error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80357 91177308-0d34-0410-b5e6-96231b3b80d8
commit 354f75a94252e20f1d61ff7b047f34070dcccfc9
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:07:41 2009 +0000
Removed unnecessary file creation during test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80356 91177308-0d34-0410-b5e6-96231b3b80d8
commit 975ad9a72fa60d0e8946c9ec584eb5c29d14386e
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 10:00:28 2009 +0000
Pulled all tests into one test. Removed some redundant tests. Rename.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80355 91177308-0d34-0410-b5e6-96231b3b80d8
commit f14af431e0f9724474dfa923ba940ecaf19316c7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 08:08:22 2009 +0000
Fix -Asserts warning, round two.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80354 91177308-0d34-0410-b5e6-96231b3b80d8
commit 796a639383578ff065b5c32539c88f9adb5327c2
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 07:08:47 2009 +0000
llvm-mc: .lsym is more unsupported than unimplemented, pending a use case appearing.
Also, all one of the file level flags are implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80352 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8388a8fed449aa79d848dd2e7b0cf8650e063028
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 07:08:35 2009 +0000
llvm-mc: Support .comm emission.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80351 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3ab6715ba17ac6726bd92a4514c68c5e58c3c884
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 06:59:37 2009 +0000
Print a nl before pic labels so they start at a new line. This makes assembly more readable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80350 91177308-0d34-0410-b5e6-96231b3b80d8
commit fd5e315e8d6dca8cab80789552b6bbfef4d960e0
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 06:48:25 2009 +0000
Since all std::cout is gone, also remove iostream include.
(See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090824/085620.html)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80349 91177308-0d34-0410-b5e6-96231b3b80d8
commit a2aca168e5c7bbb35569f6f77a3cd4e8bc17520a
Author: Andreas Neustifter <astifter@gmx.at>
Date: Fri Aug 28 06:41:00 2009 +0000
Readded test from r79615, this tests the complete profiling tool chain. Furhter
tests can test only parts of this system.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80348 91177308-0d34-0410-b5e6-96231b3b80d8
commit df98a14701fe2de1d0b83205f32edcdfef8ca141
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:49:21 2009 +0000
llvm-mc: Support .zerofill emission.
- I'm still trying to figure out the cleanest way to implement this and match the assembler, currently there are some substantial differences.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80347 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c215be1a50bfd6f0b994d61d0c0548fefa52795
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:49:04 2009 +0000
llvm-mc: Tweak section alignment and size computation to match 'as' closer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80345 91177308-0d34-0410-b5e6-96231b3b80d8
commit 91e7ee60faaf7867aebddbf4915e1422c6895337
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:54 2009 +0000
llvm-mc: Factor getSectionData out of SwitchSection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80344 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3f952b45c4791659fe6b6addfdc2812f11a21a41
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:46 2009 +0000
llvm-mc: Emit .lcomm as .zerofill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80343 91177308-0d34-0410-b5e6-96231b3b80d8
commit c12c27bdbc93d517025612eab112f28366256839
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:29 2009 +0000
llvm-mc: Unique zero fill sections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80342 91177308-0d34-0410-b5e6-96231b3b80d8
commit 15f1a5cc63c5f08b31c8a67884efd2604067711e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:22 2009 +0000
llvm-mc: Add const to EmitZeroFill section argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80341 91177308-0d34-0410-b5e6-96231b3b80d8
commit b6eff3bcb6f481500df60e028ceaff6b60336a1d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:10 2009 +0000
llvm-mc: Fix thinko in emitting values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80340 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8425d44b7ffa3397ac7d010598e9caab54e1ed4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:48:04 2009 +0000
Add MathExtras.h OffsetToAlignment, like RoundUpToAlignment but returns the
offset to the next aligned integer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80339 91177308-0d34-0410-b5e6-96231b3b80d8
commit c24bcdb66bd5b6904147ac443ca44da2660f9223
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 05:47:56 2009 +0000
Fix -Asserts warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80338 91177308-0d34-0410-b5e6-96231b3b80d8
commit d7e5bacf57cba6f139d726a0c63cb195f38cd39d
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 04:48:54 2009 +0000
finish a half formed thought :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80334 91177308-0d34-0410-b5e6-96231b3b80d8
commit ac6a9258ed6e7fa1e1e40ef505799ac54e852be4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 03:06:28 2009 +0000
Another NO_RUNTIME_LIBRARIES tweak...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80331 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1497c39481d4d8616d4ba1fb2cde490cfc100baa
Author: Daniel Dunbar <daniel@zuster.org>
Date: Fri Aug 28 02:20:39 2009 +0000
Tweak NO_RUNTIME_LIBS.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80330 91177308-0d34-0410-b5e6-96231b3b80d8
commit c4823b9ee92e32a666e03406c46a530fcdbdda1a
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 00:45:47 2009 +0000
Mark Andersen's as experimental.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80328 91177308-0d34-0410-b5e6-96231b3b80d8
commit a8b647dc112f792cb21b0b675e6d2b300207a4fa
Author: Chris Lattner <sabre@nondot.org>
Date: Fri Aug 28 00:43:14 2009 +0000
Fix PR3913, patch by Jakub Staszak!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80327 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5e1d21856de4bf387cccf8365885c45c87642dfb
Author: Evan Cheng <evan.cheng@apple.com>
Date: Fri Aug 28 00:31:43 2009 +0000
v4, v5 does not support sxtb / sxth.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80322 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66f3f9e7356761c91f8063a38b37293ce750c1c2
Author: Bob Wilson <bob.wilson@apple.com>
Date: Fri Aug 28 00:21:13 2009 +0000
Disable optional bindings for Apple-style builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80319 91177308-0d34-0410-b5e6-96231b3b80d8
commit dc8f15c7a771649ab75bdf2dea1b27067ee9f269
Author: Bob Wilson <bob.wilson@apple.com>
Date: Fri Aug 28 00:10:15 2009 +0000
Revert 76080. This broke some powerpc cross compiles.
It also makes the llvmCore build dependent on whatever version of llvm-gcc
happens to be installed on the build machine.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80316 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6decb644026d266aaed9bc51e5840529a4af8df0
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:58:10 2009 +0000
Revert r80305, I forgot a dependent change.
--- Reverse-merging r80305 into '.':
U tools/llvm-mc/AsmParser.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80309 91177308-0d34-0410-b5e6-96231b3b80d8
commit 20b3210d23b9c5633787e3d8bbd98d7cc0083c32
Author: Devang Patel <dpatel@apple.com>
Date: Thu Aug 27 23:51:51 2009 +0000
Closure is a very generic name. Use AppleBlock instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80307 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3edc5f01bcfec50757d8cbdb7cd0fb6abb561d67
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:45:06 2009 +0000
llvm-mc: Unique sections in .zerofill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80305 91177308-0d34-0410-b5e6-96231b3b80d8
commit ab36e15e689a516f8ff2af4c2c0210a90a423652
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 23:44:33 2009 +0000
eliminate all 80-col violations that I have introduced in my recent checkins (and some others more)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80304 91177308-0d34-0410-b5e6-96231b3b80d8
commit 41d850e034d4f33728c8d8d51a3811dbe0fccf8c
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 23:43:28 2009 +0000
Don't build runtime libraries in an Apple style build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80303 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5b6d86316d71c3eae687ecb56abfdfd12679a54
Author: Bruno Cardoso Lopes <bruno.cardoso@gmail.com>
Date: Thu Aug 27 19:57:56 2009 +0000
Revert 80278 for now, it caused a lot of MIPS tests to fail
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80280 91177308-0d34-0410-b5e6-96231b3b80d8
commit 862f67b71f0aaeccdd24a0cbd4d99a9a9413c43a
Author: Bruno Cardoso Lopes <bruno.cardoso@gmail.com>
Date: Thu Aug 27 19:40:40 2009 +0000
Revamp our friend Mips :)
Add MO flags to simplify the printing of relocations.
Remove the support for printing large code model relocs (which
aren't supported anyway).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80278 91177308-0d34-0410-b5e6-96231b3b80d8
commit 90adb6c4bd8c285660db59e5ac10fd71fa3c1076
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:16:24 2009 +0000
Don't mark CMOV_GR8 as two-address, or commutable, since it's a pseudo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80271 91177308-0d34-0410-b5e6-96231b3b80d8
commit fa4c3253f6dd9f328549aa73e2710981ac3a2881
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:14:26 2009 +0000
Adjust the MachineBasicBlock verifier rules to be more
tolerant of blocks that end with "unreachable".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80270 91177308-0d34-0410-b5e6-96231b3b80d8
commit 20391ca63ee850ffd6fb86bfd058ff61b698197d
Author: Eric Christopher <echristo@apple.com>
Date: Thu Aug 27 18:08:16 2009 +0000
Add FIXME for when we support more specific XMM registers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80269 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3d82bbd2ddfb775d59f271cc25cade73551f976c
Author: Eric Christopher <echristo@apple.com>
Date: Thu Aug 27 18:07:15 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80268 91177308-0d34-0410-b5e6-96231b3b80d8
commit f8b840f45084d2486be3fd074807d9a37564a33d
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 18:02:03 2009 +0000
Use stripPointerCasts instead of doing the same manually.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80267 91177308-0d34-0410-b5e6-96231b3b80d8
commit a578538e9fde98cb05ce9740d7c63aafbd1c69f4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:59:08 2009 +0000
Minor code simplification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80266 91177308-0d34-0410-b5e6-96231b3b80d8
commit c99596ddbf78116260c177edcfad9261bf186b68
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:55:13 2009 +0000
Teach getUnderlyingObject and skipPointerCasts about GlobalAliases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80265 91177308-0d34-0410-b5e6-96231b3b80d8
commit fe1256903404065be182735c1402411c4940e9e5
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:54:15 2009 +0000
Be somewhat more consistent about const qualifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80264 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3c8455152e3d41b8e5f7b33c3ed99c7a8105f5a8
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:52:56 2009 +0000
Global Aliases are not identifiable objects.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80263 91177308-0d34-0410-b5e6-96231b3b80d8
commit 54e98d921f7eabfd3baae5399e835ddc39a75e6c
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:51:25 2009 +0000
Handle TargetData with const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80262 91177308-0d34-0410-b5e6-96231b3b80d8
commit ec966442362eeff9b24c9eee2b11188ab4a5246b
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 17:29:49 2009 +0000
Strip trailing whitespace from blank lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80259 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7bec0f5f90c6d917beb4b1433c847aa132cdfacf
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 17:07:35 2009 +0000
re-apply r80197, now that iterator.h is not mentioned any more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80254 91177308-0d34-0410-b5e6-96231b3b80d8
commit aa152ae811d8e0ffd01c7a8b454d595cb1a1a31f
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:25:49 2009 +0000
Hopefully the final missing part :(
scalar_to_vector is fully legal now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80251 91177308-0d34-0410-b5e6-96231b3b80d8
commit 872393c20ee29eaae1746deed115f06192526f64
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:10:17 2009 +0000
Forgot about actual change :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80250 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0a21bce095161b98a3671b2aa0e63a020b03e120
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 16:04:47 2009 +0000
scalar_to_vector is fully legal now (implemented as subreg accesses)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80249 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2b6e274f8669337cb148c1df4e060a41af14cc1e
Author: Devang Patel <dpatel@apple.com>
Date: Thu Aug 27 15:32:38 2009 +0000
Remove an entry from ValueMap before removing elements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80247 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6e8275030925dbd3beeb873d0bf605f0c0c67f0b
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 14:51:42 2009 +0000
Ok, sometimes it's profitable to turn scalar_to_vector stuff into subreg access.
Add a testcase.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80246 91177308-0d34-0410-b5e6-96231b3b80d8
commit baee7b2a5501a45a59554b5bafd87264a2edc442
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Thu Aug 27 14:38:44 2009 +0000
Transform float scalar_to_vector into subreg accesses.
No idea whether this is profitable or not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80245 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9daa0677ac901b0f54bdba31dc3913b92df58e50
Author: Misha Brukman <brukman+llvm@gmail.com>
Date: Thu Aug 27 14:14:21 2009 +0000
STRD and LDRD require ARMv5TE, not just ARMv5T.
See http://llvm.org/PR4687 for more info and links.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80244 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4dd75744b70c1a3f686ce5a43952124fb0de7ad9
Author: Benjamin Kramer <benny.kra@googlemail.com>
Date: Thu Aug 27 12:02:34 2009 +0000
Inverse logic to increase portability.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80240 91177308-0d34-0410-b5e6-96231b3b80d8
commit 07f1cdae7f327c15cdfc0d68c8500a275dba72b2
Author: Sanjiv Gupta <sanjiv.gupta@microchip.com>
Date: Thu Aug 27 11:54:38 2009 +0000
To make mcc16 run correctly on mac.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80239 91177308-0d34-0410-b5e6-96231b3b80d8
commit 006e46ee524c49f00fdfa4d0b582c7ecd693c95b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 08:17:51 2009 +0000
llvm-mc/Mach-O: Add MCCodeEmitter support, for encoding instructions.
- No relocations yet, of course.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80235 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f37963b50b496c99300850683ed41db4f9431b6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 08:12:55 2009 +0000
llvm-mc/X86: Implement single instruction encoding interface for MC.
- Note, this is a gigantic hack, with the sole purpose of unblocking further
work on the assembler (its also possible to test the mathcer more completely
now).
- Despite being a hack, its actually good enough to work over all of 403.gcc
(although some encodings are probably incorrect). This is a testament to the
beauty of X86's MachineInstr, no doubt! ;)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80234 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1f32816fdaf9ba3a7e6e5705f94be145fafde497
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:58:57 2009 +0000
llvm-mc: Print encodings after the instruction, and only when we have an asm
printer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80233 91177308-0d34-0410-b5e6-96231b3b80d8
commit 75513bd24edb8ea2142145b448df7a4cdaeaa335
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:58:05 2009 +0000
X86: Mark EH_RETURN as code-gen-only.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80232 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0125384b4a902da228354e5a201cd4cf4f2f1a4a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:57:12 2009 +0000
Add {MCInst,MCOperand}::{print,dump}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80231 91177308-0d34-0410-b5e6-96231b3b80d8
commit 160f252aa8189beba57b0b025b0206a3910c4ae9
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 07:56:39 2009 +0000
llvm-mc: Only show instruction encodings with --show-encoding.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80230 91177308-0d34-0410-b5e6-96231b3b80d8
commit f449eb343e70f1e4e8f982939d53c083a1bc5ba3
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 06:59:20 2009 +0000
the buildbots revealed one more breakage. fix. (why didn't I see this?)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80227 91177308-0d34-0410-b5e6-96231b3b80d8
commit 765f012f22956a3085e1e84441af9d880bf65f35
Author: Gabor Greif <ggreif@gmail.com>
Date: Thu Aug 27 06:41:46 2009 +0000
Clean up the minor mess I caused with removing iterator.h. I shall take care of 80-col violations and the FIXME later. (Thanks goodness that I live in another continent, so the monkeypox did not strike me :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80224 91177308-0d34-0410-b5e6-96231b3b80d8
commit bc42440879f2a302f2801e224828cfdccd5a92a7
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 06:29:33 2009 +0000
Implement a new optimization in the inliner: if inlining multiple
calls into a function and if the calls bring in arrays, try to merge
them together to reduce stack size. For example, in the testcase
we'd previously end up with 4 allocas, now we end up with 2 allocas.
As described in the comments, this is not really the ideal solution
to this problem, but it is surprisingly effective. For example, on
176.gcc, we end up eliminating 67 arrays at "gccas" time and another
24 at "llvm-ld" time.
One piece of concern that I didn't look into: at -O0 -g with
forced inlining this will almost certainly result in worse debug
info. I think this is acceptable though given that this is a case
of "debugging optimized code", and we don't want debug info to
prevent the optimizer from doing things anyway.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80215 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2d1272cbbc0ba9bffbc702e67c59a8d12ec93660
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 06:20:45 2009 +0000
the inliner shouldn't crash on this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80214 91177308-0d34-0410-b5e6-96231b3b80d8
commit ea3bccb555f65187ecbb134d26aab8103ca167b2
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 06:11:15 2009 +0000
For now, only run MC tests if X86 is configured.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80213 91177308-0d34-0410-b5e6-96231b3b80d8
commit 17d1a4db879f7af0fd20dd78f704ff9f82aabbe1
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 05:49:50 2009 +0000
This is passing for PPC on Mac OS X.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80210 91177308-0d34-0410-b5e6-96231b3b80d8
commit cf5d1d8ceb34c56f21bd3f41f5329407e8d090ce
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 05:35:28 2009 +0000
Revert accidental commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80208 91177308-0d34-0410-b5e6-96231b3b80d8
commit f659a56d993743e0d51beb2c94fbe187637e5918
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:43:05 2009 +0000
unbreak the build, yay for symlinks + makefiles. :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80205 91177308-0d34-0410-b5e6-96231b3b80d8
commit d1586b1a1d27d5efeb8e487bbeb7ed255159e53b
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:32:07 2009 +0000
reduce header #include'age
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80204 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1ba292d8cfe7b5bf705c5bb307f63f0c0bbe8979
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:20:52 2009 +0000
enhance InlineFunction to be able to optionally return
a the list of static allocas that it inlined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80203 91177308-0d34-0410-b5e6-96231b3b80d8
commit eb87590c5346b7c17032242e2232a6c1d217f964
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 04:02:30 2009 +0000
smallvectorize the list of returns built by CloneAndPruneFunctionInto.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80202 91177308-0d34-0410-b5e6-96231b3b80d8
commit 612956220f38126feaacceb378cf105043739271
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 03:56:43 2009 +0000
remove CloneTrace, which appears to be dead since 2004.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80201 91177308-0d34-0410-b5e6-96231b3b80d8
commit ae56c0de911bf5328ffda48e51ce37bcd7aa0d76
Author: Chris Lattner <sabre@nondot.org>
Date: Thu Aug 27 03:51:50 2009 +0000
reduce inlining factor some stuff out to a static helper function,
and other code cleanups. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80199 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5537c20c55869fac64e4f5738f8eab2080cc79c6
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 03:32:50 2009 +0000
Revert accidental commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80198 91177308-0d34-0410-b5e6-96231b3b80d8
commit 25cd944a98bcf3b1542c71d2654fe61e28562867
Author: Bill Wendling <isanbard@gmail.com>
Date: Thu Aug 27 03:29:26 2009 +0000
--- Reverse-merging r80147 into '.':
A include/llvm/ADT/iterator.cmake
U autoconf/configure.ac
--- Reverse-merging r80161 into '.':
U cmake/config-ix.cmake
--- Reverse-merging r80171 into '.':
U Makefile
--- Reverse-merging r80173 into '.':
U configure
U include/llvm/Config/config.h.in
--- Reverse-merging r80180 into '.':
A include/llvm/ADT/iterator.h.in
Despite common miscomceptions, iterator.h is alive and well. It broke the build
bots for several hours. And yet no one bothered to look at them.
Gabor and Doug, please review your changes and make sure that they actually
build before resubmitting them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80197 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0d0598f6281c0b1ae107b2fa2fabd69ec21263c4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 02:43:49 2009 +0000
Add some checks for MachineCFG consistency. Use AnalyzeBranch and
do extra checking when it succeeds, as those are cases where
CodeGen will be doing particularly interesting CFG modifications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80196 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92e5548870b7945deb93f7956ea816f67d34b73f
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 02:08:37 2009 +0000
Update CMake
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80195 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f377df6bba8110c3bc0bf5185d33d1f46b54c6b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 01:34:22 2009 +0000
llvm-mc: Tweak MCCodeEmitter skeleton.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80193 91177308-0d34-0410-b5e6-96231b3b80d8
commit cdde2975f55c43493f3318630985e7a1e8e14384
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 01:25:57 2009 +0000
Initialize the PoisonMemory member before initializing
members that call methods that read the PoisonMemory member.
This fixes potential spurious (though probably otherwise
harmless) poising of unused memory, and fixes the
associated valgrind error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80192 91177308-0d34-0410-b5e6-96231b3b80d8
commit 363cd759d4186bdae7b49e89a0d434749d6198aa
Author: Evan Cheng <evan.cheng@apple.com>
Date: Thu Aug 27 01:23:50 2009 +0000
Fix PR4789. Teach eliminateFrameIndex how to handle VLDRQ and VSTRQ which cannot fold any immediate offset.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80191 91177308-0d34-0410-b5e6-96231b3b80d8
commit 511e71114c34c8ddae2b44b996502a5efe1adc3a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 01:15:54 2009 +0000
Add missing declarations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80190 91177308-0d34-0410-b5e6-96231b3b80d8
commit 12266adfd9dc571aafb7ec7f8b69d85c7a6e352a
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 00:51:57 2009 +0000
Sketch TargetRegistry support for MCCodeEmitter abstract interface.
- Of course, nothing actually can provide this interface yet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80188 91177308-0d34-0410-b5e6-96231b3b80d8
commit adb77e4c37d183af9a2f29b6df8b0dfee562bbba
Author: Daniel Dunbar <daniel@zuster.org>
Date: Thu Aug 27 00:38:04 2009 +0000
Try to make MSVC just a little happier.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80187 91177308-0d34-0410-b5e6-96231b3b80d8
commit b59f15a1d2c40f978d93f43b006546f455a65f04
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 00:31:47 2009 +0000
X86FastISel support for loading and storing values of type i1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80186 91177308-0d34-0410-b5e6-96231b3b80d8
commit 29b998f5248398e6cfe323a5ebd7419bb77975b4
Author: Dan Gohman <gohman@apple.com>
Date: Thu Aug 27 00:14:12 2009 +0000
Expand i8 selects into control flow instead of 16-bit conditional
moves. This avoids the need to promote the operands (or implicitly
extend them, a partial register update condition), and can reduce
i8 register pressure. This substantially speeds up code such as
write_hex in lib/Support/raw_ostream.cpp.
subclass-coalesce.ll is too trivial and no longer tests what it was
originally intended to test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80184 91177308-0d34-0410-b5e6-96231b3b80d8
commit a7bddb52ed1bb68e8c654c522b885f941c540d04
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 23:35:33 2009 +0000
now that include/llvm/ADT/iterator.h.in is not attempted to be built, its prerequisite can go away too
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80180 91177308-0d34-0410-b5e6-96231b3b80d8
commit b5b99e6fa820047460b362d5d981766ac313b1ce
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 23:12:33 2009 +0000
Simplify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80176 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2eff5fff4d600df3d29f74dd195bc564a48206b4
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 22:59:05 2009 +0000
Regenerate configure
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80173 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3eace462948ecfec5ee53127c445e4d0d5f1ae89
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 22:55:19 2009 +0000
eliminate references to ADT/iterator.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80171 91177308-0d34-0410-b5e6-96231b3b80d8
commit d68b1af98ca9bb39ac51d046a37266ceb24e38b5
Author: Owen Anderson <resistor@mac.com>
Date: Wed Aug 26 22:55:11 2009 +0000
Make this into a static method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80170 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2f01e9983a054713a49d2ac2124e8ca26d128574
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 22:50:39 2009 +0000
Fix bad length argument to substr calls. Apparently I'm the first one to
attempt more than 2 constraints on an instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80169 91177308-0d34-0410-b5e6-96231b3b80d8
commit 418706d9a8a304630ddecc3709598d823bee8188
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 22:49:51 2009 +0000
llvm-mc/Mach-O: Unique sections properly, so we don't get duplicate text
sections, etc.
- The quick and dirty way, just clone the TargetLoweringObjectFile
code. Eventually this should be shared... somehow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80168 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1ea86df7ddb44659fbf694934abb2177beed8637
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 22:13:22 2009 +0000
llvm-mc/Mach-O: Don't put assembler temporary labels in the symbol table.
- I moved section creation back into AsmParser. I think policy decisions like
this should be pushed higher, not lower, when possible (in addition the
assembler has flags which change this behavior, for example).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80162 91177308-0d34-0410-b5e6-96231b3b80d8
commit b003759e247f0edb3b691849598ba252f51ae624
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 22:12:02 2009 +0000
De-bork CMake build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80161 91177308-0d34-0410-b5e6-96231b3b80d8
commit e92cc8d5591cb7ded636c91cc98c741af62ec85f
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:44:57 2009 +0000
Rework getPersonalityIndex slightly - 0 is now a valid and not-NULL
personality function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80153 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2a1099a6809307eee7521b1f725ef89370f7ebd1
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 21:36:59 2009 +0000
nobody includes llvm/ADT/iterator.h any more,
so get rid of this monstrosity. iterator.h.in is scheduled for deletion in my working copy,
but I wait till I see that configure gets regenerated, as it depends on it. I'll commit
then.
There are still some AC_* tests in the configure.ac dealing with iterators, those can
be zapped probably too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80147 91177308-0d34-0410-b5e6-96231b3b80d8
commit c87d5ae938fe0c3b0afc3aefef1dc6a9873516e4
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:30:49 2009 +0000
If we're emitting additional CIEs due to personality functions
don't emit the default one. Explicitly check for the NULL
CIE later.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80146 91177308-0d34-0410-b5e6-96231b3b80d8
commit 84603633a7609ec55de5d8145048efbbf45e5c9c
Author: Eric Christopher <echristo@apple.com>
Date: Wed Aug 26 21:27:09 2009 +0000
Nuke trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80145 91177308-0d34-0410-b5e6-96231b3b80d8
commit f8c4bb7da634d77a7f2cff601b8d3f53c143e9ad
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 21:22:22 2009 +0000
llvm-mc/Mach-O: Set .subsections_via_symbols flag properly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80144 91177308-0d34-0410-b5e6-96231b3b80d8
commit 87f46499f001931c031002473a73793772852e51
Author: Bill Wendling <isanbard@gmail.com>
Date: Wed Aug 26 21:00:34 2009 +0000
Don't submit test directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80139 91177308-0d34-0410-b5e6-96231b3b80d8
commit 441e205eb82a0ebd70b807d8560c5a76188eabc5
Author: Reid Kleckner <reid@kleckner.net>
Date: Wed Aug 26 20:58:25 2009 +0000
Allocate the module provider in the Kaleidoscope code on the heap, not the stack, so that it can be properly deleted. Also update the tutorial with the new code. This fixes PR4762, hopefully better than the last time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80138 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4952aa5163ff4e87910d461f06316cc793ca95b8
Author: Gabor Greif <ggreif@gmail.com>
Date: Wed Aug 26 19:16:32 2009 +0000
Remove all the LLVM_COMPACTIFY_SENTINELS-related macro magic as discussed with Chris on IRC. Anybody wanting to debug sentinel dereferencing problems must revert this patch and perform the indicated modifications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80128 91177308-0d34-0410-b5e6-96231b3b80d8
commit ffefef35790db7819c72ba7e53c73b8e5931e851
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Wed Aug 26 18:37:05 2009 +0000
CMake: Removed outdated TODO.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80124 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66448030685cdc3c9bfd52449e4027258aaba480
Author: Venkatraman Govindaraju <venkatra@cs.wisc.edu>
Date: Wed Aug 26 18:24:12 2009 +0000
Generate section for bss and enable weak symbols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80121 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3a392c8714c745ffdc77da0a8589c7b0df03515f
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 18:11:50 2009 +0000
Convert some more Neon tests to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80120 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5e69950d5391bdf294b415bf39dd44f9f40556a1
Author: Dale Johannesen <dalej@apple.com>
Date: Wed Aug 26 18:10:32 2009 +0000
Alter 79292 to produce output that actually assembles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80119 91177308-0d34-0410-b5e6-96231b3b80d8
commit 23f2034aaff80f52b309ee17bfa7a9fc801c9677
Author: Mike Stump <mrs@apple.com>
Date: Wed Aug 26 18:02:19 2009 +0000
Allow unsigned long long DenseMapInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80118 91177308-0d34-0410-b5e6-96231b3b80d8
commit b1b88455b18224867a8d2fc6c3202b6ce12e0a1c
Author: Bob Wilson <bob.wilson@apple.com>
Date: Wed Aug 26 17:39:53 2009 +0000
Remove unneeded ARM-specific DAG nodes for VLD* and VST* Neon operations.
The instructions can be selected directly from the intrinsics. We will need
to add some ARM-specific nodes for VLD/VST of 3 and 4 128-bit vectors, but
those are not yet implemented.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80117 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0defefd8ce9f13cecba8c988897c3224a25e96f8
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 17:39:40 2009 +0000
Add extload expansion for f128
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80116 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e72169c1b197ef8c5b4c663e2eee4551a3a7178
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 17:39:23 2009 +0000
Unbreak FP128 stuff in cbe
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80115 91177308-0d34-0410-b5e6-96231b3b80d8
commit 644cdc3c64cb485c6a21d1bfb126c107e5b40d64
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Wed Aug 26 17:05:06 2009 +0000
Ignore -fPIC test on Windows. Suggested by Yonggang Luo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80111 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8427b6b0529e66663737b39ea51a1fbdbbbbd534
Author: Douglas Gregor <doug.gregor@gmail.com>
Date: Wed Aug 26 16:33:57 2009 +0000
Unbreak CMake build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80109 91177308-0d34-0410-b5e6-96231b3b80d8
commit 886f20275a78a1b03b83a8145a62f5e4cfbb1c99
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 16:26:09 2009 +0000
Expand scalar_to_vector - we don't have any isel logic for it now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80107 91177308-0d34-0410-b5e6-96231b3b80d8
commit 75c687bcc528eb81dc693d63f7aff9185b29e56f
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 16:06:11 2009 +0000
Add comments detailing a known bug, so that people writing other
backends don't use it as an example.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80105 91177308-0d34-0410-b5e6-96231b3b80d8
commit 32b17ffaa8593d25728c9ebad7e82a45c16f817c
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 15:57:57 2009 +0000
-fast is now -O0. -fast-isel is no longer experimental.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80104 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4637d177299aed45c6be7ca24e003771f33fd5d6
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 15:56:38 2009 +0000
Move ProfileInfo::Edge's operator<< out of line. Among other benefits,
this eliminates the ATTRIBUTE_USED, which wasn't being used in a manner
acceptable to some GCC versions, according to the buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80103 91177308-0d34-0410-b5e6-96231b3b80d8
commit a064a395489f954b0eaafb351d15b456699dea8e
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 15:18:38 2009 +0000
Bugfix for r80100, forgot include. Sorry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80101 91177308-0d34-0410-b5e6-96231b3b80d8
commit 70eeb51888ed9e73d058a3b0c889c295219e2109
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 15:13:44 2009 +0000
Implemented comments from Daniel Dunbar.
(See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090817/084958.html)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80100 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9959b052347ceddec3576013485f2564b99b944e
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:59:13 2009 +0000
Don't use INSERT_SUBREG to model anyext operations on x86-64, as it
leads to partial-register definitions. To help avoid redundant
zero-extensions, also teach the h-register matching patterns that
use movzbl to match anyext as well as zext.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80099 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9927f829a68b645ed5813b25e21a881d94fc80d8
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:53:06 2009 +0000
Create a ScalarEvolution-based AliasAnalysis implementation.
This is a simple AliasAnalysis implementation which works by making
ScalarEvolution queries. ScalarEvolution has a more complete understanding
of arithmetic than BasicAA's collection of ad-hoc checks, so it handles
some cases that BasicAA misses, for example p[i] and p[i+1] within the
same iteration of a loop.
This is currently experimental. It may be that the main use for this pass
will be to help find cases where BasicAA can be profitably extended, or
to help in the development of the overall AliasAnalysis infrastructure,
however it's also possible that it could grow up to become a directly
useful pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80098 91177308-0d34-0410-b5e6-96231b3b80d8
commit 596114dc06489e5bd79e3e8ffc60d43bbf3668e3
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:34:12 2009 +0000
Fix a missing newline, now that Value's operator<< doesn't add one of its own.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80096 91177308-0d34-0410-b5e6-96231b3b80d8
commit 84c793aef4170e0d5be4d2c6fcb26a9e56cad21b
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 14:32:17 2009 +0000
Use SetVector instead of std::set so that alias relations are tested and
printed in a deterministic order.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80095 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8fa9da2b34655a15102a0845617a9951ee945ed6
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:58:10 2009 +0000
llvm-mc/Mach-O: Add support for relocations.
- I haven't really tried to find the "right" way to store the fixups or apply
them, yet. This works, but isn't particularly elegant or fast.
- Still no evaluation support, so we don't actually ever not turn a fixup into
a relocation entry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80089 91177308-0d34-0410-b5e6-96231b3b80d8
commit c3c1992d46f418c45a8e0b5fdb3c452c90aa960e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:54 2009 +0000
llvm-mc/Mach-O: Move symbol indices into the MCSymbolData structure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80088 91177308-0d34-0410-b5e6-96231b3b80d8
commit cefbda1f46cc612e074fdcc1d8aab712aba085e7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:44 2009 +0000
llvm-mc/Mach-O: Dump relocations and section data (optionally) in my Mach-O dumper.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80087 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4486ac16542e9dd843778c5f684e1cd9d7bb3945
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 13:57:37 2009 +0000
llvm-mc: Add symbol entries for undefined symbols used in .fill and .org.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80086 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7c672df8b969b7514438228bed80cfad6e9c473e
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Wed Aug 26 13:44:29 2009 +0000
Add dummy inline asm handling for 'r' constraint. This fixes PR4778
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80085 91177308-0d34-0410-b5e6-96231b3b80d8
commit 39fd40ae8671ecff6a1857b5a0156e52284c4e5c
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 13:33:09 2009 +0000
Moved isDeclaration() check further down to allow for function counts for
declarations if necessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80084 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92183c031a21857a580b38795272ce80863b9ebf
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:57 2009 +0000
llvm-mc: Change MCContext value table to take const MCSymbol*s.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80079 91177308-0d34-0410-b5e6-96231b3b80d8
commit b9d13ac6e4228451c6fe54566064978597aabc1b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:46 2009 +0000
llvm-mc: Make MCValue take const MCSymbol*s.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80078 91177308-0d34-0410-b5e6-96231b3b80d8
commit cb73cfe2496d5e70d8cc4c89e7de29373b348353
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 09:16:34 2009 +0000
llvm-mc: Make non-sensical max bytes to .align an error.
Also, warn about overflow in alignment values.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80077 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3e64a6cc0e75cf654fd23ac9ffa1a9a1d3d911e9
Author: Andreas Neustifter <astifter@gmx.at>
Date: Wed Aug 26 09:05:21 2009 +0000
Changed std::cout to outs(), retaining formating.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80076 91177308-0d34-0410-b5e6-96231b3b80d8
commit 94060421ce73922e71c183fba0fda8bace7d0e2d
Author: Devang Patel <dpatel@apple.com>
Date: Wed Aug 26 05:01:18 2009 +0000
Revert 79977. It causes llvm-gcc bootstrap failures on some platforms.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80073 91177308-0d34-0410-b5e6-96231b3b80d8
commit 66d02907de42fa311fb2b512e820277bb1a61e7c
Author: Chris Lattner <sabre@nondot.org>
Date: Wed Aug 26 05:00:16 2009 +0000
some mips and some sparc compilers apparently
predefine mips and sparc respectively. Just overrule them :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80072 91177308-0d34-0410-b5e6-96231b3b80d8
commit 202ced1e32f5a88a8c865e62ea10c88a712c3fab
Author: Venkatraman Govindaraju <venkatra@cs.wisc.edu>
Date: Wed Aug 26 04:50:17 2009 +0000
test commit
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80070 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3eb9a3f37ed8ee8e026d2dfebe6bae08df4e615d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 04:28:45 2009 +0000
llvm-mc: Fix tests for python variations in int printing, sigh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80069 91177308-0d34-0410-b5e6-96231b3b80d8
commit 53a9082d2e95f33980ef2b7f5104e0cc46d6342d
Author: Chris Lattner <sabre@nondot.org>
Date: Wed Aug 26 04:21:30 2009 +0000
fix some funky indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80068 91177308-0d34-0410-b5e6-96231b3b80d8
commit 0f56d41709c27ec2f0637e19881fefd90e31c22b
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 04:13:32 2009 +0000
llvm-mc/Mach-O: Add section padding where needed (to align the next section).
Also, simplify some of Mach-O writer code which can now use section addresses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80067 91177308-0d34-0410-b5e6-96231b3b80d8
commit b3730b1a3de7fe37a660bd30d3d0d55bcea22d1d
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 02:48:04 2009 +0000
llvm-mc/Mach-O: Set addresses for symbols.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80065 91177308-0d34-0410-b5e6-96231b3b80d8
commit 7fd6b0fff74a7c9fbc054b3303fee1a8f22002b2
Author: Dale Johannesen <dalej@apple.com>
Date: Wed Aug 26 01:08:21 2009 +0000
Add an 'inline hint' attribute to represent source
code hints that it would be a good idea to inline
a function ("inline" keyword). No functional change
yet; FEs do not emit this and inliner does not use it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80063 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2e1a5d0b91503b8d5ada9fe0b19567daca2f1c6f
Author: Devang Patel <dpatel@apple.com>
Date: Wed Aug 26 00:39:50 2009 +0000
Add isClosure() predicate. This is used to add DW_AT_APPLE_block attribute.
Patch by Caroline Tice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80061 91177308-0d34-0410-b5e6-96231b3b80d8
commit 6d294da8f845a8d611529759d194315b76b44a6e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 00:18:21 2009 +0000
llvm-mc: Improve indirect symbol support (add the indirect index table).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80059 91177308-0d34-0410-b5e6-96231b3b80d8
commit 3b126fbc67c6279898f8ca0c31f233a3a56b31d9
Author: Dan Gohman <gohman@apple.com>
Date: Wed Aug 26 00:13:22 2009 +0000
Remove unused variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80058 91177308-0d34-0410-b5e6-96231b3b80d8
commit bdd4dc67fb10d0f304bec21c924263f8444ae7a7
Author: Daniel Dunbar <daniel@zuster.org>
Date: Wed Aug 26 00:10:55 2009 +0000
llvm-mc: Add MCSection::isDefined()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80057 91177308-0d34-0410-b5e6-96231b3b80d8
commit 917614663633aa0ff1bdf7208862e8b7e25dd911
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 23:27:45 2009 +0000
Fix the InsertAtEnd form of ShuffleVectorInst constructor to use
the correct type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80050 91177308-0d34-0410-b5e6-96231b3b80d8
commit e6803b821738076b5b2299c1cd496be0d0042362
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 23:17:54 2009 +0000
Eliminate the unused Context argument on one of the ICmpInst and FCmpInst
constructors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80049 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4e46ac9407307942712236f8c91875ef323c182f
Author: Gabor Greif <ggreif@gmail.com>
Date: Tue Aug 25 23:02:21 2009 +0000
revert r78628 and r78803 as these are not needed any more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80048 91177308-0d34-0410-b5e6-96231b3b80d8
commit 58d95377713fa32cbf129e19f4005f4863f9cdb3
Author: Scott Michel <scottm@aero.org>
Date: Tue Aug 25 22:37:34 2009 +0000
Updated i128 sext support for CellSPU backend, contributed by Ken Werner (IBM)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80042 91177308-0d34-0410-b5e6-96231b3b80d8
commit 91bf99a35153b00098633f214207c308c52acdcd
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:29:08 2009 +0000
Use covariant return types for Instruction::clone, and eliminate
the forms of ExtractElementInst and InsertElementInst that are
equivalent to clone.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80041 91177308-0d34-0410-b5e6-96231b3b80d8
commit 97be9d37d93c38bc82950e0373cd3a8d1d2aa024
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 22:27:22 2009 +0000
Get rid of this horrible "benign race" by exploiting ManagedStatic to initialize
the array on its first access.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80040 91177308-0d34-0410-b5e6-96231b3b80d8
commit ba4fe8b91352f65caaf2a30f234b5006afd1cf2b
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:24:20 2009 +0000
This should use isIndenticalToWhenDefined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80039 91177308-0d34-0410-b5e6-96231b3b80d8
commit fc00c4a2407c1b30a19fef9ec0a1ae00f7f7472d
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 22:11:20 2009 +0000
Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined,
and introduce a new Instruction::isIdenticalTo which tests for full
identity, including the SubclassOptionalData flags. Also, fix the
Instruction::clone implementations to preserve the SubclassOptionalData
flags. Finally, teach several optimizations how to handle
SubclassOptionalData correctly, given these changes.
This fixes the counterintuitive behavior of isIdenticalTo not comparing
the full value, and clone not returning an identical clone, as well as
some subtle bugs that could be caused by these.
Thanks to Nick Lewycky for reporting this, and for an initial patch!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80038 91177308-0d34-0410-b5e6-96231b3b80d8
commit e73ff31d813cdc36e334404992c42bfef7842c95
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:31:39 2009 +0000
Revert last patch. We need to put this into TargetLowering. There will be a lot
of EH stuff going into there, so we can wait to add them all then.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80036 91177308-0d34-0410-b5e6-96231b3b80d8
commit 12d46f5ea460e149882e39dc25c649580a161141
Author: Gabor Greif <ggreif@gmail.com>
Date: Tue Aug 25 21:25:22 2009 +0000
re-committing yesterday's r79938.
This time there is no additional include of llvm/Config/config.h
at all. Instead I use a hard-coded preprecessor symbol:
LLVM_COMPACTIFY_SENTINELS
(should this work on the self-hosting buildbot, then
cleanups come next)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80035 91177308-0d34-0410-b5e6-96231b3b80d8
commit b81243240cbfc573324c9760a77e6b1463955bab
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 21:10:45 2009 +0000
llvm-mc: Add statistic for number of fragments emitted by the assembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80033 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4f61e5051fa25f4abb928573db6ea52585748b93
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:09:50 2009 +0000
Add the #include here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80032 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4b90952a9dd2b26ef6dd359cb8e4f7139e40f864
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 21:01:56 2009 +0000
remove some dead lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80031 91177308-0d34-0410-b5e6-96231b3b80d8
commit 538dfe54dd1c732208b2dbb00057b0a58cdeb61e
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 21:01:42 2009 +0000
Comment formatting. Removing of unused #include and type forwarding.
OCD is fun!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80030 91177308-0d34-0410-b5e6-96231b3b80d8
commit f2db1075b5a1bf1ea8f2d2c618917651150b8a94
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 20:57:38 2009 +0000
convert to filecheck style
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80029 91177308-0d34-0410-b5e6-96231b3b80d8
commit 864504a5810fdfd23e1774de0b935dcdafb91645
Author: Chris Lattner <sabre@nondot.org>
Date: Tue Aug 25 20:49:04 2009 +0000
convert to filecheck
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80025 91177308-0d34-0410-b5e6-96231b3b80d8
commit e371d63e2a817eda5e3563eb574c99fa08df7e6d
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 20:21:17 2009 +0000
Add a target asm info hook to specify that particular bits of data in the FDE
should be forced to 32-bits (.long) even on 64-bit architectures. Darwin wants
these bits to be 64-bits (.quad). However, other platforms may disagree.
This is just the info right now and is part of a work-in-progress which needs
this. We'll add the actual *use* of this soon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80024 91177308-0d34-0410-b5e6-96231b3b80d8
commit b0b96906a0018edbadd9f4f3b17b48ec3c29838e
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 20:21:09 2009 +0000
EXIT STAGE LEFT: gccas, gccld
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80023 91177308-0d34-0410-b5e6-96231b3b80d8
commit 13808ef92db201ec027004b4fd8eb2db55c5aae4
Author: Sanjiv Gupta <sanjiv.gupta@microchip.com>
Date: Tue Aug 25 19:39:05 2009 +0000
Start refactoring PIC16 TargetObjectFile code. Eventually, all the stuff from
PIC16Section will move to MCSectionPIC16.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80021 91177308-0d34-0410-b5e6-96231b3b80d8
commit b1d423e0cccd3f78122a5e8c9e959c8569b23bb0
Author: Daniel Dunbar <daniel@zuster.org>
Date: Tue Aug 25 18:45:03 2009 +0000
Switch abi-isel.ll to FileCheck; it's not much faster, but it now tests a lot
more and is much nicer to the OS.
- Dan, please check. If there are parts of the test you think I should strip
out so it doesn't cause random failures let me know (there are still some PIC
label numbers in it, for example).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80019 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1d99646fa9e8847b0ceb086e33a24ed707491684
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:56:57 2009 +0000
Don't assume that two identical instructions that read from memory
will always return the same value. This isn't currently necessary,
since this code doesn't currently ever get called under circumstances
where it would matter, but it may some day.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80017 91177308-0d34-0410-b5e6-96231b3b80d8
commit 82d30b73d3a37de0ec7960a4e099ef9e255d4f11
Author: Bob Wilson <bob.wilson@apple.com>
Date: Tue Aug 25 17:52:39 2009 +0000
Remove some unused SDNode definitions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80015 91177308-0d34-0410-b5e6-96231b3b80d8
commit 5bba145cbd5935b442e6a197eda3477f5d1372a5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:49:57 2009 +0000
Teach ScalarEvolution about GlobalAliases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80014 91177308-0d34-0410-b5e6-96231b3b80d8
commit 1c17fd9fbdcfebe29c7ea59c2c7675e420aa49f5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:48:17 2009 +0000
Delete some unnecessary flushes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80013 91177308-0d34-0410-b5e6-96231b3b80d8
commit 814c2eaa0121afd0661d8a2b5f715fcb1174f0b5
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:47:44 2009 +0000
Use X86II::MO_NO_FLAG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80012 91177308-0d34-0410-b5e6-96231b3b80d8
commit 316062a4d193609d98e80e64389fc2094ad8c515
Author: Bob Wilson <bob.wilson@apple.com>
Date: Tue Aug 25 17:46:06 2009 +0000
Expose the instruction contraint string as an argument to the NLdSt class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80011 91177308-0d34-0410-b5e6-96231b3b80d8
commit 208278cfa708aa6e5fcca6d1b92ee780beb72a8c
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 17:42:10 2009 +0000
Special-case static allocas in IndVarSimplify's loop invariant
sinking code, since they are special. If the loop preheader happens
to be the entry block of a function, don't sink static allocas
out of it. This fixes PR4775.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80010 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36ed6c0368d77188063d1594e54c52df1438ae87
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:42:07 2009 +0000
Comment-ify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80009 91177308-0d34-0410-b5e6-96231b3b80d8
commit 845a722eb435c2a9c0528b13a472e595340b6dd8
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:35:37 2009 +0000
Switch to SmallVector.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80007 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2845c6f885c8c7615610ab8494f7535a8f67334c
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 17:26:32 2009 +0000
Pull out this predicate loop into a helper function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80006 91177308-0d34-0410-b5e6-96231b3b80d8
commit a9c16fe7d4d2b61191b362a5d073bdc95c123c0f
Author: David Goodwin <david_goodwin@apple.com>
Date: Tue Aug 25 17:03:05 2009 +0000
Fixup register kills after scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80002 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9518d88d270c05fb576604fc813405de177e2e34
Author: Anton Korobeynikov <asl@math.spbu.ru>
Date: Tue Aug 25 17:00:23 2009 +0000
Provide dynamic_stackalloc lowering for MSP430.
This fixes PR4769
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80001 91177308-0d34-0410-b5e6-96231b3b80d8
commit b802d676875f2df286887be83419649770dd8580
Author: Edwin Török <edwintorok@gmail.com>
Date: Tue Aug 25 16:53:15 2009 +0000
Remove target triple from this test, it fails on x86-64 with
--enable-targets=host-only otherwise.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80000 91177308-0d34-0410-b5e6-96231b3b80d8
commit e577ff861e934b98cb950a0b0d32d0a9a1dce8b1
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 16:00:35 2009 +0000
Allocate the basic types inside the LLVMContextImpl instance,
rather than separately with new. Move the members above the
TypeMap members to avoid destruction order issues. This fixes
a leak of these objects, and eliminates an extra level of
indirection in Type::getInt32Ty and friends.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79997 91177308-0d34-0410-b5e6-96231b3b80d8
commit 87489cff37dde33a9dbb37fbfbad46ce2f70c8af
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:54:01 2009 +0000
Update documentation for the -f change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79996 91177308-0d34-0410-b5e6-96231b3b80d8
commit a0e89b2e414df522132636eb256ecbcc2d01a4e8
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:45:44 2009 +0000
Fix a few typos from the removal of -f.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79994 91177308-0d34-0410-b5e6-96231b3b80d8
commit 2d65d35d9233277aee7c8a6d3643740e3ed29f0b
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:38:29 2009 +0000
Remove obsolete -f flags.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
commit 176426d2102142aaa0bf19aca55f528ceb873329
Author: Dan Gohman <gohman@apple.com>
Date: Tue Aug 25 15:34:52 2009 +0000
Make LLVM command-line tools overwrite their output files without -f.
This is conventional command-line tool behavior. -f now just means
"enable binary output on terminals".
Add a -f option to llvm-extract and llvm-link, for consistency.
Remove F_Force from raw_fd_ostream and enable overwriting and
truncating by default. Introduce an F_Excl flag to permit users to
enable a failure when the file already exists. This flag is
currently unused.
Update Makefiles and documentation accordingly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79990 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8c949d7c548ed4ec883a2c8bd922607be2563f5a
Author: Andreas Neustifter <astifter@gmx.at>
Date: Tue Aug 25 12:53:27 2009 +0000
Read profile files as binary as proposed in
http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-August/025020.html.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79983 91177308-0d34-0410-b5e6-96231b3b80d8
commit 9112f5f6755a85f10036ff20741fc264622dc14a
Author: Xerxes Ranby <xerxes@zafena.se>
Date: Tue Aug 25 10:12:55 2009 +0000
Fix PR4772 ARM JIT.GlobalInFuction unittest by explicitly initialize MMI
to 0 during JITEmitter constructor.
Modified:
lib/ExecutionEngine/JIT/JITEmitter.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79982 91177308-0d34-0410-b5e6-96231b3b80d8
commit a75796301ee17e60daea754e30a035a53891650d
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 08:08:33 2009 +0000
- Rename EmitCommonInformationEntry to EmitCIE.
- Rename EmitFunctionDescriptionEntry to EmitFDE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79981 91177308-0d34-0410-b5e6-96231b3b80d8
commit 57b83c78f56324e3a8ff636b311235f6f2350b4e
Author: Devang Patel <dpatel@apple.com>
Date: Tue Aug 25 05:24:07 2009 +0000
Update DebugInfo interface to use metadata, instead of special named llvm.dbg.... global variables, to encode debugging information in llvm IR. This is mostly a mechanical change that tests metadata support very well.
This change speeds up llvm-gcc by more then 6% at "-O0 -g" (measured by compiling InstructionCombining.cpp!)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79977 91177308-0d34-0410-b5e6-96231b3b80d8
commit bcc93309ca3632b3cd2b45f265a534256be7589a
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 02:32:05 2009 +0000
- Emit new line after each FDE.
- Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79971 91177308-0d34-0410-b5e6-96231b3b80d8
commit 4767b24840250630c47fee8be2a6aef07f19d30a
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 02:27:42 2009 +0000
Rename functions to something more descriptive. At the very least mention the
CIE and FDE in their names.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79969 91177308-0d34-0410-b5e6-96231b3b80d8
commit 30d4d765dfc6d01bc4c1d6934582050106bcceba
Author: Dale Johannesen <dalej@apple.com>
Date: Tue Aug 25 01:13:58 2009 +0000
Allow multiple occurrences of -inline-threshold on
the command line. This gives llvm-gcc developers
a way to control inlining (documented as "not intended
for end users").
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79966 91177308-0d34-0410-b5e6-96231b3b80d8
commit 06b990c5b3f32505188e52be1b70b38290f81b83
Author: Owen Anderson <resistor@mac.com>
Date: Tue Aug 25 00:54:39 2009 +0000
Handle a corner case when extracing code regions where one of the immediate successor
of an extracted block contains a PHI using a value defined in the extracted region.
With this patch, the partial inliner now passes MultiSource/Applications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79963 91177308-0d34-0410-b5e6-96231b3b80d8
commit f1f04ecf6e5af3aa7c4c59077486c9cb29df20ea
Author: Dale Johannesen <dalej@apple.com>
Date: Tue Aug 25 00:16:14 2009 +0000
Fix PR 4751, another difficulty with %a modifier on x86.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79961 91177308-0d34-0410-b5e6-96231b3b80d8
commit 09220a24f7845a078fb41c61ee909eed6c94a255
Author: Bill Wendling <isanbard@gmail.com>
Date: Tue Aug 25 00:05:04 2009 +0000
--- Reverse-merging r79938 into '.':
U include/llvm/BasicBlock.h
U include/llvm/ADT/ilist_node.h
U include/llvm/ADT/ilist.h
U include/llvm/CodeGen/SelectionDAG.h
U include/llvm/CodeGen/MachineFunction.h
U include/llvm/CodeGen/MachineBasicBlock.h
U include/llvm/Function.h
Revert r79938. It was causing self-hosting build failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79960 91177308-0d34-0410-b5e6-96231b3b80d8
commit f2942e63abf0b485e88c21a9fc96bfb13754ed41
Author: Oscar Fuentes <ofv@wanadoo.es>
Date: Tue Aug 25 00:02:29 2009 +0000
CMake: updated list of source files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79959 91177308-0d34-0410-b5e6-96231b3b80d8
commit 399ece6621d316d7378e5fc13bd030e5572f03ce
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 23:57:35 2009 +0000
- Remove SelectSEXTi128 from SPUISelDAGToDAG.cpp, evidently, this is redundant
code, according to Anton (I'm not totally convinced, but we can always
resurrect patches if we need to do so.)
- Start moving CellSPU's tests to prefer FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79958 91177308-0d34-0410-b5e6-96231b3b80d8
commit 27dad5a41e0b0fa8fd5cba2e6f5dd70b82689e76
Author: Owen Anderson <resistor@mac.com>
Date: Mon Aug 24 23:32:14 2009 +0000
When extracting SEME regions of code, the extractor needs to update the dominator tree for split return blocks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79957 91177308-0d34-0410-b5e6-96231b3b80d8
commit 316e6fb92b997dfa4db655a371d5699cbcac0473
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 22:49:22 2009 +0000
Prefer 'FileCheck' over 'grep'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79953 91177308-0d34-0410-b5e6-96231b3b80d8
commit 36173e27ebfe4da907c17f2b507a9df3415a3aad
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 22:28:53 2009 +0000
128-bit sign extension and vector shift cleanups, contributed by Ken Werner
(IBM).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79949 91177308-0d34-0410-b5e6-96231b3b80d8
commit 73ab81726b384015ac9bfe7f734fc13b93297c4c
Author: Scott Michel <scottm@aero.org>
Date: Mon Aug 24 21:53:27 2009 +0000
Initialize ShufBytes, as gcc 4.4 can't detect that the entire array is
initialized and a warning about a potentially unintialized variable is
generated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79946 91177308-0d34-0410-b5e6-96231b3b80d8
commit af26e32df3f129ac906a45c4527b5ee3641cb22d
Author: Andreas Neustifter <astifter@gmx.at>
Date: Mon Aug 24 21:41:37 2009 +0000
Add llvm_start_edge_profiling to exported symbols for libprofile_rt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79944 91177308-0d34-0410-b5e6-96231b3b80d8
commit 92b39ace140de279245e80d0465528933787c7e4
Author: Andreas Neustifter <astifter@gmx.at>
Date: Mon Aug 24 21:37:48 2009 +0000
This patch cleans up the ProfileInfo by
*) introducing new data type and export function of edge info for whole function (preparation for next patch).
*) renaming variables to make clear distinction between data and containers that contain this data.
*) updated comments and whitespaces.
*) made ProfileInfo::MissingValue a double (as it should be...).
(Discussed at http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090817/084955.html.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79940 91177308-0d34-0410-b5e6-96231b3b80d8
commit c19dfb9d25347b815512bba5eb64052708e4c183
Author: Gabor Greif <ggreif@gmail.com>
Date: Mon Aug 24 21:34:17 2009 +0000
Resubmit an earlier patch of mine:
reduce the size of relevant "ghostly" sentinels
by a pointer.
This attempt now makes the compactification dependent
on the configure variable LLVM_COMPACT_SENTINELS
and should not cause any bootstrap failures for
llvm-gcc any more.
Please note that this is not yet the final version,
and (as settled with Chris) I shall take out the
autofoo/cmake portions in the next days.
This will also lose the assertability on sentinel
dereferencing and operator++, but that seems
an acceptable price to pay for the simplified
build logic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79938 91177308-0d34-0410-b5e6-96231b3b80d8
commit b2f99910fba8818270e41e75f4b127d82a2082a6
Author: Bob Wilson <bob.wilson@apple.com>
Date: Mon Aug 24 21:17:17 2009 +0000
Fix a typo. Somehow I thought this had passed before, but I guess not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79937 91177308-0d34-0410-b5e6-96231b3b80d8
commit f5c686b114bf6ac6b3137f96bc59ffb2e8e20de6
Author: Gabor Greif <ggreif@gmail.com>
Date: Mon Aug 24 21:00:10 2009 +0000
prune ignores: AutoGenerated.inc is no more
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79936 91177308-0d34-0410-b5e6-96231b3b80d8
commit cacea03dbaca34b44783243898ef2274bd71e72e
Author: Bob Wilson <bob.wilson@apple.com>
Date: Mon Aug 24 20:33:47 2009 +0000
Convert slow test to use FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79935 91177308-0d34-0410-b5e6-96231b3b80d8
commit 8551a303173101cf595dc35200eea7da37e769d4
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 24 20:08:27 2009 +0000
Convert two gratuitous abuses of poor helpless CPU cycles to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79933 91177308-0d34-0410-b5e6-96231b3b80d8
commit b9640223f05f0257603a0138c1ea8cb59c7f5acc
Author: Dale Johannesen <dalej@apple.com>
Date: Mon Aug 24 17:51:19 2009 +0000
Split test into 3.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79926 91177308-0d34-0410-b5e6-96231b3b80d8
commit a0151d0e9f948b39e55944b5cad64fb33732af25
Author: Daniel Dunbar <daniel@zuster.org>
Date: Mon Aug 24 11:56:58 2009 +0000
llvm-mc/Mach-O: Preliminary support for indirect symbols.
- The indirect table itself isn't being filled in yet.
- This isn't factored properly and is rather FIXMEd, but at the moment I'm more
focused on figuring out what it needs to do.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79910 91177308-0d34-0410-b5e6-96231b3b80d8
commit b69f053e0d5af3463d1bbf2101e5c1431cca6fee
Author: Duncan Sands <baldrick@free.fr>
Date: Mon Aug 24 10:59:01 2009 +0000
Fix the build when using gcc-4.4 on linux. Header needed
for stderr and fprintf.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79909 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-31 22:38:59 +03:00
|
|
|
$(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
|
2009-08-24 14:01:07 +03:00
|
|
|
else
|
|
|
|
$(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
|
|
|
|
$(LLVMToolDir)/llvm-ar
|
|
|
|
$(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
|
|
|
|
$(Verb) $(RM) -f $@
|
|
|
|
$(Verb) $(LArchive) $@ $(ObjectsBC)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
clean-local::
|
|
|
|
ifneq ($(strip $(LibName.BCA)),)
|
|
|
|
-$(Verb) $(RM) -f $(LibName.BCA)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef BYTECODE_DESTINATION
|
|
|
|
BytecodeDestDir := $(BYTECODE_DESTINATION)
|
|
|
|
else
|
|
|
|
BytecodeDestDir := $(PROJ_libdir)
|
|
|
|
endif
|
|
|
|
|
|
|
|
DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
|
|
|
|
|
|
|
|
install-bytecode-local:: $(DestBytecodeLib)
|
|
|
|
|
|
|
|
ifdef NO_INSTALL
|
|
|
|
install-local::
|
|
|
|
$(Echo) Install circumvented with NO_INSTALL
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstall circumvented with NO_INSTALL
|
|
|
|
else
|
|
|
|
install-local:: $(DestBytecodeLib)
|
|
|
|
|
|
|
|
$(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
|
|
|
|
$(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
|
|
|
|
$(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
|
|
|
|
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
|
|
|
|
-$(Verb) $(RM) -f $(DestBytecodeLib)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Library Targets:
|
|
|
|
# If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
|
|
|
|
# building an archive.
|
|
|
|
#---------------------------------------------------------
|
|
|
|
ifndef BUILD_ARCHIVE
|
|
|
|
ifndef LOADABLE_MODULE
|
|
|
|
BUILD_ARCHIVE = 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Archive Library Targets:
|
|
|
|
# If the user wanted a regular archive library built,
|
|
|
|
# then we provide targets for building them.
|
|
|
|
#---------------------------------------------------------
|
|
|
|
ifdef BUILD_ARCHIVE
|
|
|
|
|
|
|
|
all-local:: $(LibName.A)
|
|
|
|
|
|
|
|
$(LibName.A): $(ObjectsO) $(LibDir)/.dir
|
|
|
|
$(Echo) Building $(BuildMode) Archive Library $(notdir $@)
|
|
|
|
-$(Verb) $(RM) -f $@
|
|
|
|
$(Verb) $(Archive) $@ $(ObjectsO)
|
|
|
|
$(Verb) $(Ranlib) $@
|
|
|
|
|
|
|
|
clean-local::
|
|
|
|
ifneq ($(strip $(LibName.A)),)
|
|
|
|
-$(Verb) $(RM) -f $(LibName.A)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef NO_INSTALL
|
|
|
|
install-local::
|
|
|
|
$(Echo) Install circumvented with NO_INSTALL
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstall circumvented with NO_INSTALL
|
|
|
|
else
|
|
|
|
DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a
|
|
|
|
|
|
|
|
install-local:: $(DestArchiveLib)
|
|
|
|
|
|
|
|
$(DestArchiveLib): $(LibName.A) $(PROJ_libdir)
|
|
|
|
$(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
|
|
|
|
$(Verb) $(MKDIR) $(PROJ_libdir)
|
|
|
|
$(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
|
|
|
|
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
|
|
|
|
-$(Verb) $(RM) -f $(DestArchiveLib)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# endif LIBRARYNAME
|
|
|
|
endif
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Tool Build Rules: Build executable tool based on TOOLNAME option
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
ifdef TOOLNAME
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Set up variables for building a tool.
|
|
|
|
#---------------------------------------------------------
|
|
|
|
ifdef EXAMPLE_TOOL
|
|
|
|
ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT)
|
|
|
|
else
|
|
|
|
ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT)
|
|
|
|
endif
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Prune Exports
|
|
|
|
#---------------------------------------------------------
|
|
|
|
|
|
|
|
# If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
|
|
|
|
# not exporting all of the weak symbols from the binary. This reduces dyld
|
|
|
|
# startup time by 4x on darwin in some cases.
|
|
|
|
ifdef TOOL_NO_EXPORTS
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
|
|
|
|
|
|
# Tiger tools don't support this.
|
|
|
|
ifneq ($(DARWIN_MAJVERS),4)
|
|
|
|
LD.Flags += -Wl,-exported_symbol -Wl,_main
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
|
|
|
|
LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Provide targets for building the tools
|
|
|
|
#---------------------------------------------------------
|
|
|
|
all-local:: $(ToolBuildPath)
|
|
|
|
|
|
|
|
clean-local::
|
|
|
|
ifneq ($(strip $(ToolBuildPath)),)
|
|
|
|
-$(Verb) $(RM) -f $(ToolBuildPath)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef EXAMPLE_TOOL
|
|
|
|
$(ToolBuildPath): $(ExmplDir)/.dir
|
|
|
|
else
|
|
|
|
$(ToolBuildPath): $(ToolDir)/.dir
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
|
|
|
|
$(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
|
|
|
|
$(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
|
|
|
|
$(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
|
|
|
|
$(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
|
|
|
|
$(StripWarnMsg)
|
|
|
|
|
|
|
|
ifdef NO_INSTALL
|
|
|
|
install-local::
|
|
|
|
$(Echo) Install circumvented with NO_INSTALL
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstall circumvented with NO_INSTALL
|
|
|
|
else
|
|
|
|
DestTool = $(PROJ_bindir)/$(TOOLNAME)$(EXEEXT)
|
|
|
|
|
|
|
|
install-local:: $(DestTool)
|
|
|
|
|
|
|
|
$(DestTool): $(ToolBuildPath) $(PROJ_bindir)
|
|
|
|
$(Echo) Installing $(BuildMode) $(DestTool)
|
|
|
|
$(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
|
|
|
|
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstalling $(BuildMode) $(DestTool)
|
|
|
|
-$(Verb) $(RM) -f $(DestTool)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Object Build Rules: Build object files based on sources
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
|
|
|
|
ifeq ($(HOST_OS),HP-UX)
|
|
|
|
DISABLE_AUTO_DEPENDENCIES=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Provide rule sets for when dependency generation is enabled
|
|
|
|
ifndef DISABLE_AUTO_DEPENDENCIES
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Create .o files in the ObjDir directory from the .cpp and .c files...
|
|
|
|
#---------------------------------------------------------
|
|
|
|
|
|
|
|
DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
|
|
|
|
-MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
|
|
|
|
|
|
|
|
# If the build succeeded, move the dependency file over, otherwise
|
|
|
|
# remove it.
|
|
|
|
DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
|
|
|
|
else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
|
|
|
|
|
|
|
|
$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG)
|
|
|
|
$(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
|
|
|
|
$(DEPEND_MOVEFILE)
|
|
|
|
|
|
|
|
$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
|
|
|
|
$(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
|
|
|
|
$(DEPEND_MOVEFILE)
|
|
|
|
|
|
|
|
$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
|
|
|
|
$(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
|
|
|
|
$(DEPEND_MOVEFILE)
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Create .bc files in the ObjDir directory from .cpp .cc and .c files...
|
|
|
|
#---------------------------------------------------------
|
|
|
|
|
|
|
|
BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
|
|
|
|
-MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
|
|
|
|
|
|
|
|
# If the build succeeded, move the dependency file over, otherwise
|
|
|
|
# remove it.
|
|
|
|
BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
|
|
|
|
else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
|
|
|
|
|
|
|
|
$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
|
|
|
|
$(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
|
|
|
|
$(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
|
|
|
|
$< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
|
|
|
|
$(BC_DEPEND_MOVEFILE)
|
|
|
|
|
|
|
|
$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
|
|
|
|
$(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
|
|
|
|
$(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
|
|
|
|
$< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
|
|
|
|
$(BC_DEPEND_MOVEFILE)
|
|
|
|
|
|
|
|
$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
|
|
|
|
$(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
|
|
|
|
$(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
|
|
|
|
$< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
|
|
|
|
$(BC_DEPEND_MOVEFILE)
|
|
|
|
|
|
|
|
# Provide alternate rule sets if dependencies are disabled
|
|
|
|
else
|
|
|
|
|
|
|
|
$(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
|
|
|
|
$(Compile.CXX) $< -o $@
|
|
|
|
|
|
|
|
$(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
|
|
|
|
$(Compile.CXX) $< -o $@
|
|
|
|
|
|
|
|
$(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
|
|
|
|
$(Compile.C) $< -o $@
|
|
|
|
|
|
|
|
$(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
|
|
|
|
$(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
|
|
|
|
$(BCCompile.CXX) $< -o $@ -S -emit-llvm
|
|
|
|
|
|
|
|
$(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX)
|
|
|
|
$(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
|
|
|
|
$(BCCompile.CXX) $< -o $@ -S -emit-llvm
|
|
|
|
|
|
|
|
$(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC)
|
|
|
|
$(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
|
|
|
|
$(BCCompile.C) $< -o $@ -S -emit-llvm
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
## Rules for building preprocessed (.i/.ii) outputs.
|
|
|
|
$(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
|
|
|
|
$(Verb) $(Preprocess.CXX) $< -o $@
|
|
|
|
|
|
|
|
$(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
|
|
|
|
$(Verb) $(Preprocess.CXX) $< -o $@
|
|
|
|
|
|
|
|
$(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
|
|
|
|
$(Verb) $(Preprocess.C) $< -o $@
|
|
|
|
|
|
|
|
|
|
|
|
$(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
|
|
|
|
$(Compile.CXX) $< -o $@ -S
|
|
|
|
|
|
|
|
$(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
|
|
|
|
$(Compile.CXX) $< -o $@ -S
|
|
|
|
|
|
|
|
$(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
|
|
|
|
$(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
|
|
|
|
$(Compile.C) $< -o $@ -S
|
|
|
|
|
|
|
|
|
|
|
|
# make the C and C++ compilers strip debug info out of bytecode libraries.
|
|
|
|
ifdef DEBUG_RUNTIME
|
|
|
|
$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
|
|
|
|
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
|
|
|
|
$(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
|
|
|
|
else
|
|
|
|
$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
|
|
|
|
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
|
|
|
|
$(Verb) $(LLVMAS) $< -o - | \
|
|
|
|
$(LOPT) -std-compile-opts -strip-debug -o $@ -f
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------
|
|
|
|
# Provide rule to build .bc files from .ll sources,
|
|
|
|
# regardless of dependencies
|
|
|
|
#---------------------------------------------------------
|
|
|
|
$(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
|
|
|
|
$(Echo) "Compiling $*.ll for $(BuildMode) build"
|
|
|
|
$(Verb) $(LLVMAS) $< -f -o $@
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# TABLEGEN: Provide rules for running tblgen to produce *.inc files
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
ifdef TARGET
|
|
|
|
TABLEGEN_INC_FILES_COMMON = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef LLVMC_BUILD_AUTOGENERATED_INC
|
|
|
|
TABLEGEN_INC_FILES_COMMON = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef TABLEGEN_INC_FILES_COMMON
|
|
|
|
|
|
|
|
INCFiles := $(filter %.inc,$(BUILT_SOURCES))
|
|
|
|
INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
|
|
|
|
.PRECIOUS: $(INCTMPFiles) $(INCFiles)
|
|
|
|
|
|
|
|
# INCFiles rule: All of the tblgen generated files are emitted to
|
|
|
|
# $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
|
|
|
|
# us to only "touch" the real file if the contents of it change. IOW, if
|
|
|
|
# tblgen is modified, all of the .inc.tmp files are regenerated, but no
|
|
|
|
# dependencies of the .inc files are, unless the contents of the .inc file
|
|
|
|
# changes.
|
|
|
|
$(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
|
|
|
|
$(Verb) $(CMP) -s $@ $< || $(CP) $< $@
|
|
|
|
|
|
|
|
endif # TABLEGEN_INC_FILES_COMMON
|
|
|
|
|
|
|
|
ifdef TARGET
|
|
|
|
|
|
|
|
TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
|
|
|
|
$(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
|
|
|
|
$(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
|
|
|
|
$(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
|
|
|
|
$(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
|
|
|
|
$(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
|
|
|
|
$(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
|
|
|
|
|
|
|
|
# All of these files depend on tblgen and the .td files.
|
|
|
|
$(INCTMPFiles) : $(TBLGEN) $(TDFiles)
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) register names with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) register information header with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) register info implementation with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) instruction names with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) instruction information with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) assembly writer with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) assembly writer #1 with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) assembly matcher with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) code emitter with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) subtarget information with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) calling convention information with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
$(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
|
|
|
|
$(ObjDir)/%GenIntrinsics.inc.tmp : Intrinsics%.td $(ObjDir)/.dir
|
|
|
|
$(Echo) "Building $(<F) calling convention information with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
clean-local::
|
|
|
|
-$(Verb) $(RM) -f $(INCFiles)
|
|
|
|
|
|
|
|
endif # TARGET
|
|
|
|
|
|
|
|
ifdef LLVMC_BUILD_AUTOGENERATED_INC
|
|
|
|
|
|
|
|
LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
|
|
|
|
$(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
|
|
|
|
|
|
|
|
TDFiles := $(LLVMCPluginSrc) \
|
|
|
|
$(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
|
|
|
|
|
|
|
|
$(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \
|
|
|
|
$(TBLGEN) $(TD_COMMON)
|
|
|
|
$(Echo) "Building LLVMC configuration library with tblgen"
|
|
|
|
$(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
|
|
|
|
|
|
|
|
endif # LLVMC_BUILD_AUTOGENERATED_INC
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# OTHER RULES: Other rules needed
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
# To create postscript files from dot files...
|
|
|
|
ifneq ($(DOT),false)
|
|
|
|
%.ps: %.dot
|
|
|
|
$(DOT) -Tps < $< > $@
|
|
|
|
else
|
|
|
|
%.ps: %.dot
|
|
|
|
$(Echo) "Cannot build $@: The program dot is not installed"
|
|
|
|
endif
|
|
|
|
|
|
|
|
# This rules ensures that header files that are removed still have a rule for
|
|
|
|
# which they can be "generated." This allows make to ignore them and
|
|
|
|
# reproduce the dependency lists.
|
|
|
|
%.h:: ;
|
|
|
|
%.hpp:: ;
|
|
|
|
|
|
|
|
# Define clean-local to clean the current directory. Note that this uses a
|
|
|
|
# very conservative approach ensuring that empty variables do not cause
|
|
|
|
# errors or disastrous removal.
|
|
|
|
clean-local::
|
|
|
|
ifneq ($(strip $(ObjRootDir)),)
|
|
|
|
-$(Verb) $(RM) -rf $(ObjRootDir)
|
|
|
|
endif
|
|
|
|
-$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
|
|
|
|
ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
|
|
|
|
-$(Verb) $(RM) -f *$(SHLIBEXT)
|
|
|
|
endif
|
|
|
|
|
|
|
|
clean-all-local::
|
|
|
|
-$(Verb) $(RM) -rf Debug Release Profile
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# DEPENDENCIES: Include the dependency files if we should
|
|
|
|
###############################################################################
|
|
|
|
ifndef DISABLE_AUTO_DEPENDENCIES
|
|
|
|
|
|
|
|
# If its not one of the cleaning targets
|
|
|
|
ifndef IS_CLEANING_TARGET
|
|
|
|
|
|
|
|
# Get the list of dependency files
|
|
|
|
DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources)))
|
|
|
|
DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
|
|
|
|
|
|
|
|
# Include bitcode dependency files if using bitcode libraries
|
|
|
|
ifdef BYTECODE_LIBRARY
|
|
|
|
DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
|
|
|
|
endif
|
|
|
|
|
|
|
|
-include $(DependFiles) ""
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# CHECK: Running the test suite
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
check::
|
|
|
|
$(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
|
|
|
|
if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
|
|
|
|
$(EchoCmd) Running test suite ; \
|
|
|
|
$(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
|
|
|
|
TESTSUITE=$(TESTSUITE) ; \
|
|
|
|
else \
|
|
|
|
$(EchoCmd) No Makefile in test directory ; \
|
|
|
|
fi ; \
|
|
|
|
else \
|
|
|
|
$(EchoCmd) No test directory ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# UNITTESTS: Running the unittests test suite
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
unittests::
|
|
|
|
$(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
|
|
|
|
if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
|
|
|
|
$(EchoCmd) Running unittests test suite ; \
|
|
|
|
$(MAKE) -C $(PROJ_OBJ_ROOT)/unittests ; \
|
|
|
|
else \
|
|
|
|
$(EchoCmd) No Makefile in unittests directory ; \
|
|
|
|
fi ; \
|
|
|
|
else \
|
|
|
|
$(EchoCmd) No unittests directory ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# DISTRIBUTION: Handle construction of a distribution tarball
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Define distribution related variables
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
|
|
|
|
DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
|
|
|
|
TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
|
|
|
|
DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
|
|
|
|
DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
|
|
|
|
DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
|
|
|
|
DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
|
|
|
|
ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
|
|
|
|
Makefile.config.in configure autoconf
|
|
|
|
DistOther := $(notdir $(wildcard \
|
|
|
|
$(PROJ_SRC_DIR)/*.h \
|
|
|
|
$(PROJ_SRC_DIR)/*.td \
|
|
|
|
$(PROJ_SRC_DIR)/*.def \
|
|
|
|
$(PROJ_SRC_DIR)/*.ll \
|
|
|
|
$(PROJ_SRC_DIR)/*.in))
|
|
|
|
DistSubDirs := $(SubDirs)
|
|
|
|
DistSources = $(Sources) $(EXTRA_DIST)
|
|
|
|
DistFiles = $(DistAlways) $(DistSources) $(DistOther)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# We MUST build distribution with OBJ_DIR != SRC_DIR
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
|
|
|
|
dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
|
|
|
|
$(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Prevent attempt to run dist targets from anywhere but the top level
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
ifneq ($(LEVEL),.)
|
|
|
|
dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
|
|
|
|
$(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
|
|
|
|
else
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Provide the top level targets
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
|
|
|
|
dist-gzip:: $(DistTarGZip)
|
|
|
|
|
|
|
|
$(DistTarGZip) : $(TopDistDir)/.makedistdir
|
|
|
|
$(Echo) Packing gzipped distribution tar file.
|
|
|
|
$(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
|
|
|
|
$(GZIP) -c > "$(DistTarGZip)"
|
|
|
|
|
|
|
|
dist-bzip2:: $(DistTarBZ2)
|
|
|
|
|
|
|
|
$(DistTarBZ2) : $(TopDistDir)/.makedistdir
|
|
|
|
$(Echo) Packing bzipped distribution tar file.
|
|
|
|
$(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
|
|
|
|
$(BZIP2) -c >$(DistTarBZ2)
|
|
|
|
|
|
|
|
dist-zip:: $(DistZip)
|
|
|
|
|
|
|
|
$(DistZip) : $(TopDistDir)/.makedistdir
|
|
|
|
$(Echo) Packing zipped distribution file.
|
|
|
|
$(Verb) rm -f $(DistZip)
|
|
|
|
$(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
|
|
|
|
|
|
|
|
dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
|
|
|
|
$(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
|
|
|
|
|
|
|
|
DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
|
|
|
|
|
|
|
|
dist-check:: $(DistTarGZip)
|
|
|
|
$(Echo) Checking distribution tar file.
|
|
|
|
$(Verb) if test -d $(DistCheckDir) ; then \
|
|
|
|
$(RM) -rf $(DistCheckDir) ; \
|
|
|
|
fi
|
|
|
|
$(Verb) $(MKDIR) $(DistCheckDir)
|
|
|
|
$(Verb) cd $(DistCheckDir) && \
|
|
|
|
$(MKDIR) $(DistCheckDir)/build && \
|
|
|
|
$(MKDIR) $(DistCheckDir)/install && \
|
|
|
|
gunzip -c $(DistTarGZip) | $(TAR) xf - && \
|
|
|
|
cd build && \
|
|
|
|
../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
|
|
|
|
--srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
|
|
|
|
$(MAKE) all && \
|
|
|
|
$(MAKE) check && \
|
|
|
|
$(MAKE) unittests && \
|
|
|
|
$(MAKE) install && \
|
|
|
|
$(MAKE) uninstall && \
|
|
|
|
$(MAKE) dist-clean && \
|
|
|
|
$(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
|
|
|
|
|
|
|
|
dist-clean::
|
|
|
|
$(Echo) Cleaning distribution files
|
|
|
|
-$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
|
|
|
|
$(DistCheckDir)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Provide the recursive distdir target for building the distribution directory
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
distdir: $(DistDir)/.makedistdir
|
|
|
|
$(DistDir)/.makedistdir: $(DistSources)
|
|
|
|
$(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
|
|
|
|
if test -d "$(DistDir)" ; then \
|
|
|
|
find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
|
|
|
|
exit 1 ; \
|
|
|
|
fi ; \
|
|
|
|
$(EchoCmd) Removing old $(DistDir) ; \
|
|
|
|
$(RM) -rf $(DistDir); \
|
|
|
|
$(EchoCmd) Making 'all' to verify build ; \
|
|
|
|
$(MAKE) ENABLE_OPTIMIZED=1 all ; \
|
|
|
|
fi
|
|
|
|
$(Echo) Building Distribution Directory $(DistDir)
|
|
|
|
$(Verb) $(MKDIR) $(DistDir)
|
|
|
|
$(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
|
|
|
|
srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
|
|
|
|
for file in $(DistFiles) ; do \
|
|
|
|
case "$$file" in \
|
|
|
|
$(PROJ_SRC_DIR)/*) \
|
|
|
|
file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
|
|
|
|
;; \
|
|
|
|
$(PROJ_SRC_ROOT)/*) \
|
|
|
|
file=`echo "$$file" | \
|
|
|
|
sed "s#^$$srcrootstrip/##"` \
|
|
|
|
;; \
|
|
|
|
esac; \
|
|
|
|
if test -f "$(PROJ_SRC_DIR)/$$file" || \
|
|
|
|
test -d "$(PROJ_SRC_DIR)/$$file" ; then \
|
|
|
|
from_dir="$(PROJ_SRC_DIR)" ; \
|
|
|
|
elif test -f "$$file" || test -d "$$file" ; then \
|
|
|
|
from_dir=. ; \
|
|
|
|
fi ; \
|
|
|
|
to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
|
|
|
|
if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
|
|
|
|
to_dir="$(DistDir)/$$dir"; \
|
|
|
|
$(MKDIR) "$$to_dir" ; \
|
|
|
|
else \
|
|
|
|
to_dir="$(DistDir)"; \
|
|
|
|
fi; \
|
|
|
|
mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
|
|
|
|
if test -n "$$mid_dir" ; then \
|
|
|
|
$(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
|
|
|
|
fi ; \
|
|
|
|
if test -d "$$from_dir/$$file"; then \
|
|
|
|
if test -d "$(PROJ_SRC_DIR)/$$file" && \
|
|
|
|
test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
|
|
|
|
cd $(PROJ_SRC_DIR) ; \
|
|
|
|
$(TAR) cf - $$file --exclude .svn --exclude CVS | \
|
|
|
|
( cd $$to_dir ; $(TAR) xf - ) ; \
|
|
|
|
cd $(PROJ_OBJ_DIR) ; \
|
|
|
|
else \
|
|
|
|
cd $$from_dir ; \
|
|
|
|
$(TAR) cf - $$file --exclude .svn --exclude CVS | \
|
|
|
|
( cd $$to_dir ; $(TAR) xf - ) ; \
|
|
|
|
cd $(PROJ_OBJ_DIR) ; \
|
|
|
|
fi; \
|
|
|
|
elif test -f "$$from_dir/$$file" ; then \
|
|
|
|
$(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
|
|
|
|
elif test -L "$$from_dir/$$file" ; then \
|
|
|
|
$(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
|
|
|
|
elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
|
|
|
|
$(EchoCmd) "===== WARNING: Distribution Source " \
|
|
|
|
"$$from_dir/$$file Not Found!" ; \
|
|
|
|
elif test "$(Verb)" != '@' ; then \
|
|
|
|
$(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
$(Verb) for subdir in $(DistSubDirs) ; do \
|
|
|
|
if test "$$subdir" \!= "." ; then \
|
|
|
|
new_distdir="$(DistDir)/$$subdir" ; \
|
|
|
|
test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
|
|
|
|
( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
|
|
|
|
DistDir="$$new_distdir" distdir ) || exit 1; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
$(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
|
|
|
|
$(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
|
|
|
|
$(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
|
|
|
|
-name .svn \) -print` ;\
|
|
|
|
$(MAKE) dist-hook ; \
|
|
|
|
$(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
|
|
|
|
-o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
|
|
|
|
-o ! -type d ! -perm -400 -exec chmod a+r {} \; \
|
|
|
|
-o ! -type d ! -perm -444 -exec \
|
|
|
|
$(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
|
|
|
|
|| chmod -R a+r $(DistDir) ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
# This is invoked by distdir target, define it as a no-op to avoid errors if not
|
|
|
|
# defined by user.
|
|
|
|
dist-hook::
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# TOP LEVEL - targets only to apply at the top level directory
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
ifeq ($(LEVEL),.)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Install support for the project's include files:
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
ifdef NO_INSTALL
|
|
|
|
install-local::
|
|
|
|
$(Echo) Install circumvented with NO_INSTALL
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstall circumvented with NO_INSTALL
|
|
|
|
else
|
|
|
|
install-local::
|
|
|
|
$(Echo) Installing include files
|
|
|
|
$(Verb) $(MKDIR) $(PROJ_includedir)
|
|
|
|
$(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
|
|
|
|
cd $(PROJ_SRC_ROOT)/include && \
|
|
|
|
for hdr in `find . -type f '!' '(' -name '*~' \
|
|
|
|
-o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
|
|
|
|
grep -v .svn` ; do \
|
|
|
|
instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \
|
|
|
|
if test \! -d "$$instdir" ; then \
|
|
|
|
$(EchoCmd) Making install directory $$instdir ; \
|
|
|
|
$(MKDIR) $$instdir ;\
|
|
|
|
fi ; \
|
|
|
|
$(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
|
|
|
|
done ; \
|
|
|
|
fi
|
|
|
|
ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
|
|
|
|
$(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
|
|
|
|
cd $(PROJ_OBJ_ROOT)/include && \
|
|
|
|
for hdr in `find . -type f -print | grep -v CVS` ; do \
|
|
|
|
$(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \
|
|
|
|
done ; \
|
|
|
|
fi
|
|
|
|
endif
|
|
|
|
|
|
|
|
uninstall-local::
|
|
|
|
$(Echo) Uninstalling include files
|
|
|
|
$(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
|
|
|
|
cd $(PROJ_SRC_ROOT)/include && \
|
|
|
|
$(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
|
|
|
|
'!' '(' -name '*~' -o -name '.#*' \
|
|
|
|
-o -name '*.in' ')' -print ')' | \
|
|
|
|
grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \
|
|
|
|
cd $(PROJ_SRC_ROOT)/include && \
|
|
|
|
$(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
|
|
|
|
-print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \
|
|
|
|
fi
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
check-line-length:
|
|
|
|
@echo searching for overlength lines in files: $(Sources)
|
|
|
|
@echo
|
|
|
|
@echo
|
|
|
|
egrep -n '.{81}' $(Sources) /dev/null
|
|
|
|
|
|
|
|
check-for-tabs:
|
|
|
|
@echo searching for tabs in files: $(Sources)
|
|
|
|
@echo
|
|
|
|
@echo
|
|
|
|
egrep -n ' ' $(Sources) /dev/null
|
|
|
|
|
|
|
|
check-footprint:
|
|
|
|
@ls -l $(LibDir) | awk '\
|
|
|
|
BEGIN { sum = 0; } \
|
|
|
|
{ sum += $$5; } \
|
|
|
|
END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
|
|
|
|
@ls -l $(ToolDir) | awk '\
|
|
|
|
BEGIN { sum = 0; } \
|
|
|
|
{ sum += $$5; } \
|
|
|
|
END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Print out the directories used for building
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
printvars::
|
|
|
|
$(Echo) "BuildMode : " '$(BuildMode)'
|
|
|
|
$(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
|
|
|
|
$(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
|
|
|
|
$(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
|
|
|
|
$(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
|
|
|
|
$(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
|
|
|
|
$(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
|
|
|
|
$(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
|
|
|
|
$(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
|
|
|
|
$(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
|
|
|
|
$(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
|
|
|
|
$(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
|
|
|
|
$(Echo) "UserTargets : " '$(UserTargets)'
|
|
|
|
$(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
|
|
|
|
$(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
|
|
|
|
$(Echo) "ObjDir : " '$(ObjDir)'
|
|
|
|
$(Echo) "LibDir : " '$(LibDir)'
|
|
|
|
$(Echo) "ToolDir : " '$(ToolDir)'
|
|
|
|
$(Echo) "ExmplDir : " '$(ExmplDir)'
|
|
|
|
$(Echo) "Sources : " '$(Sources)'
|
|
|
|
$(Echo) "TDFiles : " '$(TDFiles)'
|
|
|
|
$(Echo) "INCFiles : " '$(INCFiles)'
|
|
|
|
$(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
|
|
|
|
$(Echo) "PreConditions: " '$(PreConditions)'
|
|
|
|
$(Echo) "Compile.CXX : " '$(Compile.CXX)'
|
|
|
|
$(Echo) "Compile.C : " '$(Compile.C)'
|
|
|
|
$(Echo) "Archive : " '$(Archive)'
|
|
|
|
$(Echo) "YaccFiles : " '$(YaccFiles)'
|
|
|
|
$(Echo) "LexFiles : " '$(LexFiles)'
|
|
|
|
$(Echo) "Module : " '$(Module)'
|
|
|
|
$(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
|
|
|
|
$(Echo) "SubDirs : " '$(SubDirs)'
|
|
|
|
$(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
|
|
|
|
$(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
|
|
|
|
|
|
|
|
###
|
|
|
|
# Debugging
|
|
|
|
|
|
|
|
# General debugging rule, use 'make dbg-print-XXX' to print the
|
|
|
|
# definition, value and origin of XXX.
|
|
|
|
make-print-%:
|
|
|
|
$(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))
|