aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2014-01-22 00:37:34 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-01-22 00:37:34 +0000
commitc27b99f0804db5fcecebe3d1f795f0ac2f781454 (patch)
treedbe9bd31eb74d02aae4158323df8e88fd4460e04
parent6562c95b5280bc16c4db31d58a6cae8e5cdfde6d (diff)
parent95015e5c45e0faca137acd16f8032f6ae09cdb6f (diff)
downloadexternal_llvm-c27b99f0804db5fcecebe3d1f795f0ac2f781454.zip
external_llvm-c27b99f0804db5fcecebe3d1f795f0ac2f781454.tar.gz
external_llvm-c27b99f0804db5fcecebe3d1f795f0ac2f781454.tar.bz2
am 95015e5c: Merge "Remove unused files."
* commit '95015e5c45e0faca137acd16f8032f6ae09cdb6f': Remove unused files.
-rwxr-xr-xcopy-diff.py76
-rw-r--r--tblgen-rules.mk142
2 files changed, 0 insertions, 218 deletions
diff --git a/copy-diff.py b/copy-diff.py
deleted file mode 100755
index 076f2da..0000000
--- a/copy-diff.py
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/usr/bin/env python
-
-import os
-import shutil
-import sys
-
-BUFFER_SIZE = 1024
-
-def is_file_different(a, b):
- if os.path.getsize(a) != os.path.getsize(b):
- # If the file size is different, the content must be different.
- return True
-
- # Read the content of the files, and compare them.
- result = False
-
- fa = open(a, 'rb')
- fb = open(b, 'rb')
-
- while True:
- buff_a = fa.read(BUFFER_SIZE)
- buff_b = fb.read(BUFFER_SIZE)
-
- if buff_a != buff_b:
- # File is different in this block.
- result = True
- break
-
- if len(buff_a) < BUFFER_SIZE:
- # Finished
- break
-
- fa.close()
- fb.close()
-
- # File is the same.
- return result
-
-def copyfile(src, dest):
- if not os.path.exists(src):
- raise ValueError('Source file not found')
-
- # Make parent directory (if necessary)
- destdir = os.path.dirname(dest)
- if not os.path.exists(destdir):
- try:
- os.makedirs(destdir)
- except os.error, e:
- raise ValueError('Unable to create directory ' + destdir)
- elif not os.path.isdir(destdir):
- raise ValueError(destdir + ' is not a directory')
-
- if not os.path.exists(dest) or is_file_different(src, dest):
- # If the destination file does not exist or the source file is
- # different from the destination file, then we copy the file.
- shutil.copyfile(src, dest)
-
-def main():
- if len(sys.argv) < 3:
- print >> sys.stderr, 'USAGE:', sys.argv[0], '<srcfile> <destfile>'
- sys.exit(1)
-
- srcfile = os.path.abspath(sys.argv[1])
- destfile = os.path.abspath(sys.argv[2])
-
- if srcfile == destfile:
- print >> sys.stderr, 'WARNING: <srcfile> is equal to <destfile>'
- else:
- try:
- copyfile(srcfile, destfile)
- except ValueError, e:
- print >> sys.stderr, 'ERROR: ', e
- sys.exit(1)
-
-if __name__ == '__main__':
- main()
diff --git a/tblgen-rules.mk b/tblgen-rules.mk
deleted file mode 100644
index f2ae041..0000000
--- a/tblgen-rules.mk
+++ /dev/null
@@ -1,142 +0,0 @@
-###########################################################
-## Commands for running tblgen to compile a td file
-##########################################################
-define transform-td-to-out
-$(if $(LOCAL_IS_HOST_MODULE), \
- $(call transform-host-td-to-out,$(1)), \
- $(call transform-device-td-to-out,$(1)))
-endef
-
-###########################################################
-## TableGen: Compile .td files to .inc.
-###########################################################
-ifeq ($(LOCAL_MODULE_CLASS),)
- LOCAL_MODULE_CLASS := STATIC_LIBRARIES
-endif
-
-ifneq ($(strip $(TBLGEN_TABLES)),)
-
-intermediates := $(call local-intermediates-dir)
-tblgen_gen_tables := $(addprefix $(intermediates)/,$(TBLGEN_TABLES))
-LOCAL_GENERATED_SOURCES += $(tblgen_gen_tables)
-
-tblgen_source_dir := $(LOCAL_PATH)
-ifneq ($(TBLGEN_TD_DIR),)
-tblgen_source_dir := $(TBLGEN_TD_DIR)
-endif
-
-ifneq ($(filter %GenRegisterNames.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenRegisterNames.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenRegisterNames.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,register-enums)
-endif
-
-ifneq ($(filter %GenRegisterInfo.h.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenRegisterInfo.h.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenRegisterInfo.h.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,register-desc-header)
-endif
-
-ifneq ($(filter %GenRegisterInfo.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenRegisterInfo.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenRegisterInfo.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,register-desc)
-endif
-
-ifneq ($(filter %GenInstrNames.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenInstrNames.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenInstrNames.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,instr-enums)
-endif
-
-ifneq ($(filter %GenInstrInfo.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenInstrInfo.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenInstrInfo.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,instr-desc)
-endif
-
-ifneq ($(filter %GenAsmWriter.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenAsmWriter.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenAsmWriter.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,asm-writer)
-endif
-
-ifneq ($(filter %GenAsmWriter1.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenAsmWriter1.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenAsmWriter1.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,asm-writer -asmwriternum=1)
-endif
-
-ifneq ($(filter %GenAsmMatcher.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenAsmMatcher.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenAsmMatcher.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,asm-matcher)
-endif
-
-ifneq ($(filter %GenCodeEmitter.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenCodeEmitter.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenCodeEmitter.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,emitter)
-endif
-
-ifneq ($(filter %GenMCCodeEmitter.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenMCCodeEmitter.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenMCCodeEmitter.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,emitter -mc-emitter)
-endif
-
-ifneq ($(filter %GenMCPseudoLowering.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenMCPseudoLowering.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenMCPseudoLowering.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,pseudo-lowering)
-endif
-
-ifneq ($(filter %GenDAGISel.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenDAGISel.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenDAGISel.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,dag-isel)
-endif
-
-ifneq ($(filter %GenDisassemblerTables.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenDisassemblerTables.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenDisassemblerTables.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,disassembler)
-endif
-
-ifneq ($(filter %GenEDInfo.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenEDInfo.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenEDInfo.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,enhanced-disassembly-info)
-endif
-
-ifneq ($(filter %GenFastISel.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenFastISel.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenFastISel.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,fast-isel)
-endif
-
-ifneq ($(filter %GenSubtargetInfo.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenSubtargetInfo.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenSubtargetInfo.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,subtarget)
-endif
-
-ifneq ($(filter %GenCallingConv.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenCallingConv.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenCallingConv.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,callingconv)
-endif
-
-ifneq ($(filter %GenIntrinsics.inc,$(tblgen_gen_tables)),)
-$(intermediates)/%GenIntrinsics.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/%GenIntrinsics.inc: $(tblgen_source_dir)/%.td $(TBLGEN)
- $(call transform-td-to-out,tgt_intrinsics)
-endif
-
-ifneq ($(findstring ARMGenDecoderTables.inc,$(tblgen_gen_tables)),)
-$(intermediates)/ARMGenDecoderTables.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
-$(intermediates)/ARMGenDecoderTables.inc: $(tblgen_source_dir)/ARM.td $(TBLGEN)
- $(call transform-td-to-out,arm-decoder)
-endif
-
-endif