aboutsummaryrefslogtreecommitdiffstats
path: root/utils/llvm-build
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-11-11 00:23:56 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-11-11 00:23:56 +0000
commit5ed5506f18fcc0a277c863f7a21b39f58e892ca5 (patch)
treeabac29f7ffd00891e2f533c07d2cc448ea5ffa87 /utils/llvm-build
parent0352b4679e9289ded6b2d73a76a017e0d97fe70d (diff)
downloadexternal_llvm-5ed5506f18fcc0a277c863f7a21b39f58e892ca5.zip
external_llvm-5ed5506f18fcc0a277c863f7a21b39f58e892ca5.tar.gz
external_llvm-5ed5506f18fcc0a277c863f7a21b39f58e892ca5.tar.bz2
LLVMBuild: Add explicit information on whether targets define an assembly printer, assembly parser, or disassembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144344 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/llvm-build')
-rw-r--r--utils/llvm-build/llvmbuild/componentinfo.py26
1 files changed, 22 insertions, 4 deletions
diff --git a/utils/llvm-build/llvmbuild/componentinfo.py b/utils/llvm-build/llvmbuild/componentinfo.py
index 6897d10..b9a2d4f 100644
--- a/utils/llvm-build/llvmbuild/componentinfo.py
+++ b/utils/llvm-build/llvmbuild/componentinfo.py
@@ -198,10 +198,18 @@ class TargetGroupComponentInfo(ComponentInfo):
kwargs['add_to_library_groups'] = items.get_list(
'add_to_library_groups')
kwargs['has_jit'] = items.get_optional_bool('has_jit', False)
+ kwargs['has_asmprinter'] = items.get_optional_bool('has_asmprinter',
+ False)
+ kwargs['has_asmparser'] = items.get_optional_bool('has_asmparser',
+ False)
+ kwargs['has_disassembler'] = items.get_optional_bool('has_disassembler',
+ False)
return TargetGroupComponentInfo(subpath, **kwargs)
def __init__(self, subpath, name, parent, required_libraries = [],
- add_to_library_groups = [], has_jit = False):
+ add_to_library_groups = [], has_jit = False,
+ has_asmprinter = False, has_asmparser = False,
+ has_disassembler = False):
ComponentInfo.__init__(self, subpath, name, [], parent)
# The names of the library components which are required when linking
@@ -215,6 +223,15 @@ class TargetGroupComponentInfo(ComponentInfo):
# Whether or not this target supports the JIT.
self.has_jit = bool(has_jit)
+ # Whether or not this target defines an assembly printer.
+ self.has_asmprinter = bool(has_asmprinter)
+
+ # Whether or not this target defines an assembly parser.
+ self.has_asmparser = bool(has_asmparser)
+
+ # Whether or not this target defines an disassembler.
+ self.has_disassembler = bool(has_disassembler)
+
# Whether or not this target is enabled. This is set in response to
# configuration parameters.
self.enabled = False
@@ -238,9 +255,10 @@ class TargetGroupComponentInfo(ComponentInfo):
if self.add_to_library_groups:
print >>result, 'add_to_library_groups = %s' % ' '.join(
self.add_to_library_groups)
- if self.has_jit:
- print >>result, 'has_jit = %s' % ' '.join(
- int(self.has_jit))
+ for bool_key in ('has_asmparser', 'has_asmprinter', 'has_disassembler',
+ 'has_jit'):
+ if getattr(self, bool_key):
+ print >>result, '%s = 1' % (bool_key,)
return result.getvalue()
def get_llvmconfig_component_name(self):