[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/Emitter.cpp Intercept.cpp JIT.cpp VM.cpp

John Criswell criswell at cs.uiuc.edu
Mon Oct 20 14:44:58 PDT 2003


Changes in directory llvm/lib/ExecutionEngine/JIT:

Emitter.cpp updated: 1.30 -> 1.31
Intercept.cpp updated: 1.8 -> 1.9
JIT.cpp updated: 1.20 -> 1.21
VM.cpp updated: 1.10 -> 1.11

---
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:  (+28 -0)

Index: llvm/lib/ExecutionEngine/JIT/Emitter.cpp
diff -u llvm/lib/ExecutionEngine/JIT/Emitter.cpp:1.30 llvm/lib/ExecutionEngine/JIT/Emitter.cpp:1.31
--- llvm/lib/ExecutionEngine/JIT/Emitter.cpp:1.30	Mon Oct 20 00:45:49 2003
+++ llvm/lib/ExecutionEngine/JIT/Emitter.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- Emitter.cpp - Write machine code to executable memory -------------===//
+// 
+//                     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 file defines a MachineCodeEmitter object that is used by Jello to write
 // machine code to memory and remember where relocatable values lie.


Index: llvm/lib/ExecutionEngine/JIT/Intercept.cpp
diff -u llvm/lib/ExecutionEngine/JIT/Intercept.cpp:1.8 llvm/lib/ExecutionEngine/JIT/Intercept.cpp:1.9
--- llvm/lib/ExecutionEngine/JIT/Intercept.cpp:1.8	Fri Oct 10 12:02:42 2003
+++ llvm/lib/ExecutionEngine/JIT/Intercept.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- Intercept.cpp - System function interception routines -------------===//
+// 
+//                     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.
+// 
+//===----------------------------------------------------------------------===//
 //
 // If a function call occurs to an external function, the JIT is designed to use
 // the dynamic loader interface to find a function to call.  This is useful for


Index: llvm/lib/ExecutionEngine/JIT/JIT.cpp
diff -u llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.20 llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.21
--- llvm/lib/ExecutionEngine/JIT/JIT.cpp:1.20	Thu Oct 16 16:19:34 2003
+++ llvm/lib/ExecutionEngine/JIT/JIT.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===//
+// 
+//                     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 file implements the top-level support for creating a Just-In-Time
 // compiler for the current architecture.


Index: llvm/lib/ExecutionEngine/JIT/VM.cpp
diff -u llvm/lib/ExecutionEngine/JIT/VM.cpp:1.10 llvm/lib/ExecutionEngine/JIT/VM.cpp:1.11
--- llvm/lib/ExecutionEngine/JIT/VM.cpp:1.10	Fri Oct 17 13:27:00 2003
+++ llvm/lib/ExecutionEngine/JIT/VM.cpp	Mon Oct 20 14:43:16 2003
@@ -1,4 +1,11 @@
 //===-- VM.cpp - LLVM Just in Time Compiler -------------------------------===//
+// 
+//                     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 tool implements a just-in-time compiler for LLVM, allowing direct
 // execution of LLVM bytecode in an efficient manner.





More information about the llvm-commits mailing list