[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp EdgeCode.cpp Graph.cpp GraphAuxiliary.cpp InstLoops.cpp ProfilePaths.cpp RetracePath.cpp
John Criswell
criswell at cs.uiuc.edu
Mon Oct 20 14:44:26 PDT 2003
Changes in directory llvm/lib/Transforms/Instrumentation/ProfilePaths:
CombineBranch.cpp updated: 1.4 -> 1.5
EdgeCode.cpp updated: 1.24 -> 1.25
Graph.cpp updated: 1.12 -> 1.13
GraphAuxiliary.cpp updated: 1.19 -> 1.20
InstLoops.cpp updated: 1.9 -> 1.10
ProfilePaths.cpp updated: 1.36 -> 1.37
RetracePath.cpp updated: 1.6 -> 1.7
---
Log message:
Added LLVM project notice to the top of every C++ source file.
Header files will be on the way.
---
Diffs of the changes: (+49 -0)
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp:1.4 llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp:1.5
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp:1.4 Sun Oct 12 22:32:08 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp Mon Oct 20 14:43:19 2003
@@ -1,4 +1,11 @@
//===-- CombineBranch.cpp -------------------------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//
// Pass to instrument loops
//
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp:1.24 llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp:1.25
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp:1.24 Fri Oct 10 13:46:28 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/EdgeCode.cpp Mon Oct 20 14:43:19 2003
@@ -1,4 +1,11 @@
//===-- EdgeCode.cpp - generate LLVM instrumentation code -----------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//It implements the class EdgeCode: which provides
//support for inserting "appropriate" instrumentation at
//designated points in the graph
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp:1.12 llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp:1.13
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp:1.12 Sun Oct 12 22:30:47 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp Mon Oct 20 14:43:19 2003
@@ -1,4 +1,11 @@
//===-- Graph.cpp - Implements Graph class --------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//
// This implements Graph for helping in trace generation This graph gets used by
// "ProfilePaths" class.
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp:1.19 llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp:1.20
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp:1.19 Sun Oct 12 22:32:08 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp Mon Oct 20 14:43:19 2003
@@ -1,4 +1,11 @@
//===- GraphAuxiliary.cpp - Auxiliary functions on graph ------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//
// auxiliary function associated with graph: they all operate on graph, and help
// in inserting instrumentation for trace generation
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp:1.9 llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp:1.10
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp:1.9 Sun Oct 12 22:32:08 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp Mon Oct 20 14:43:19 2003
@@ -1,4 +1,11 @@
//===-- InstLoops.cpp -----------------------------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//
// Pass to instrument loops
//
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.36 llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.37
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.36 Sun Oct 12 22:32:08 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp Mon Oct 20 14:43:19 2003
@@ -1,4 +1,11 @@
//===-- ProfilePaths.cpp - interface to insert instrumentation --*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//
// This inserts instrumentation for counting execution of paths though a given
// function Its implemented as a "Function" Pass, and called using opt
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp:1.6 llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp:1.7
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp:1.6 Sun Oct 12 22:32:08 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp Mon Oct 20 14:43:19 2003
@@ -1,4 +1,11 @@
//===- RetracePath.cpp ----------------------------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
//
// Retraces a path of BasicBlock, given a path number and a graph!
//
More information about the llvm-commits
mailing list