[llvm-commits] CVS: reopt/include/reopt/ScratchMemory.h
Brian Gaeke
gaeke at cs.uiuc.edu
Mon Oct 27 13:01:01 PST 2003
Changes in directory reopt/include/reopt:
ScratchMemory.h added (r1.1)
---
Log message:
New header file with declarations of scratch memory functions.
---
Diffs of the changes: (+21 -0)
Index: reopt/include/reopt/ScratchMemory.h
diff -c /dev/null reopt/include/reopt/ScratchMemory.h:1.1
*** /dev/null Mon Oct 27 13:00:30 2003
--- reopt/include/reopt/ScratchMemory.h Mon Oct 27 13:00:19 2003
***************
*** 0 ****
--- 1,21 ----
+ //===-- reopt/ScratchMemory.h ----------------------------------*- C++ -*--===//
+ //
+ // Prototypes for functions that contain only skip directives, used by
+ // the trace cache code. See lib/ScratchMemory/ScratchMemory.cpp.
+ //
+ //===----------------------------------------------------------------------===//
+
+ #ifndef REOPT_SCRATCHMEMORY_H
+ #define REOPT_SCRATCHMEMORY_H
+
+ extern "C" {
+ /// MemoryManager uses this symbol's address by default for trace layout:
+ ///
+ void FirstTraceFunction ();
+
+ /// Function used as space for the second-level instrumentation trace cache:
+ ///
+ void dummyFunction2 ();
+ }
+
+ #endif // REOPT_SCRATCHMEMORY_H
More information about the llvm-commits
mailing list