summaryrefslogtreecommitdiff
path: root/utils/llvm-build
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-11-03 17:56:16 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-11-03 17:56:16 +0000
commit86c119a507570144b02645dd262e7d0b8864aa2d (patch)
treea17c6403c9ba44925ff3c97bf0e001660359e51b /utils/llvm-build
parent1cf14aff1bd7aa9343262f26f39c7f10fae68c0e (diff)
downloadllvm-86c119a507570144b02645dd262e7d0b8864aa2d.tar.gz
llvm-86c119a507570144b02645dd262e7d0b8864aa2d.tar.bz2
llvm-86c119a507570144b02645dd262e7d0b8864aa2d.tar.xz
llvm-build: Fill in some details w.r.t. component's parents.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143624 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/llvm-build')
-rw-r--r--utils/llvm-build/llvmbuild/componentinfo.py9
-rw-r--r--utils/llvm-build/llvmbuild/main.py18
2 files changed, 27 insertions, 0 deletions
diff --git a/utils/llvm-build/llvmbuild/componentinfo.py b/utils/llvm-build/llvmbuild/componentinfo.py
index 22ce0b4fde..30ec23b833 100644
--- a/utils/llvm-build/llvmbuild/componentinfo.py
+++ b/utils/llvm-build/llvmbuild/componentinfo.py
@@ -37,6 +37,15 @@ class ComponentInfo(object):
# under.
self.parent = parent
+ # The parent instance, once loaded.
+ self.parent_instance = None
+ self.children = []
+
+ def set_parent_instance(self, parent):
+ assert parent.name == self.parent, "Unexpected parent!"
+ self.parent_instance = parent
+ self.parent_instance.children.append(self)
+
def get_component_references(self):
"""get_component_references() -> iter
diff --git a/utils/llvm-build/llvmbuild/main.py b/utils/llvm-build/llvmbuild/main.py
index a734ac1641..e04f0acb96 100644
--- a/utils/llvm-build/llvmbuild/main.py
+++ b/utils/llvm-build/llvmbuild/main.py
@@ -54,6 +54,12 @@ class LLVMProjectInfo(object):
ci.name, ci.subpath, existing.subpath))
self.component_info_map[ci.name] = ci
+ # Add the root component, which does not go in any list.
+ if '$ROOT' in self.component_info_map:
+ fatal("project is not allowed to define $ROOT component")
+ self.component_info_map['$ROOT'] = componentinfo.GroupComponentInfo(
+ '/', '$ROOT', None)
+
# Topologically order the component information according to their
# component references.
def visit_component_info(ci, current_stack, current_set):
@@ -73,6 +79,13 @@ class LLVMProjectInfo(object):
# Otherwise, mark the component info as visited and traverse.
components_to_visit.remove(ci)
+ # Validate the parent reference, which we treat specially.
+ parent = self.component_info_map.get(ci.parent)
+ if parent is None:
+ fatal("component %r has invalid reference %r (via %r)" % (
+ ci.name, ci.parent, 'parent'))
+ ci.set_parent_instance(parent)
+
for relation,referent_name in ci.get_component_references():
# Validate that the reference is ok.
referent = self.component_info_map.get(referent_name)
@@ -90,6 +103,11 @@ class LLVMProjectInfo(object):
# Finally, add the component info to the ordered list.
self.ordered_component_infos.append(ci)
+ # FIXME: We aren't actually correctly checking for cycles along the
+ # parent edges. Haven't decided how I want to handle this -- I thought
+ # about only checking cycles by relation type. If we do that, it falls
+ # out easily. If we don't, we should special case the check.
+
self.ordered_component_infos = []
components_to_visit = set(component_infos)
while components_to_visit: