blob: cca1233ea3e7e488e6f6d8f5803ca030b9602c94 [file] [log] [blame]
Chris Lattner92101ac2001-08-23 17:05:04 +00001//===-- ExecutionAnnotations.h ---------------------------------*- C++ -*--===//
2//
3// This header file defines annotations used by the execution engine.
4//
5//===----------------------------------------------------------------------===//
6
7#ifndef LLI_EXECUTION_ANNOTATIONS_H
8#define LLI_EXECUTION_ANNOTATIONS_H
9
10//===----------------------------------------------------------------------===//
Chris Lattnerda82ed52003-05-08 16:18:31 +000011// Support for FunctionInfo annotations
Chris Lattner92101ac2001-08-23 17:05:04 +000012//===----------------------------------------------------------------------===//
13
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000014// This annotation (attached only to Function objects) is used to cache useful
15// information about the function, including the number of types present in the
16// function, and the number of values for each type.
Chris Lattner92101ac2001-08-23 17:05:04 +000017//
Chris Lattner63bd6132003-09-17 17:26:22 +000018struct FunctionInfo {
Chris Lattnerda82ed52003-05-08 16:18:31 +000019 FunctionInfo(Function *F);
Chris Lattner697954c2002-01-20 22:54:45 +000020 std::vector<unsigned> NumPlaneElements;
Chris Lattner92101ac2001-08-23 17:05:04 +000021
22private:
23 unsigned getValueSlot(const Value *V);
24};
25
Chris Lattner92101ac2001-08-23 17:05:04 +000026//===----------------------------------------------------------------------===//
27// Support for the SlotNumber annotation
28//===----------------------------------------------------------------------===//
29
Chris Lattnerb972f952002-04-09 19:40:40 +000030// This annotation (attached only to Argument & Instruction objects) is used to
31// hold the the slot number for the value in its type plane.
Chris Lattner92101ac2001-08-23 17:05:04 +000032//
33// Entities have this annotation attached to them when the containing
Chris Lattnerda82ed52003-05-08 16:18:31 +000034// function has it's FunctionInfo created (by the FunctionInfo ctor).
Chris Lattner92101ac2001-08-23 17:05:04 +000035//
36static AnnotationID SlotNumberAID(
37 AnnotationManager::getID("Interpreter::SlotNumber"));
38
39struct SlotNumber : public Annotation {
40 unsigned SlotNum; // Ranges from 0->
41
42 SlotNumber(unsigned sn) : Annotation(SlotNumberAID),
43 SlotNum(sn) {}
44};
45
Chris Lattner92101ac2001-08-23 17:05:04 +000046//===----------------------------------------------------------------------===//
47// Support for the InstNumber annotation
48//===----------------------------------------------------------------------===//
49
50// This annotation (attached only to Instruction objects) is used to hold the
51// instruction number of the instruction, and the slot number for the value in
52// its type plane. InstNumber's are used for user interaction, and for
53// calculating which value slot to store the result of the instruction in.
54//
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000055// Instructions have this annotation attached to them when the containing
Chris Lattnerda82ed52003-05-08 16:18:31 +000056// function has it's FunctionInfo created (by the FunctionInfo ctor).
Chris Lattner92101ac2001-08-23 17:05:04 +000057//
58struct InstNumber : public SlotNumber {
59 unsigned InstNum; // Ranges from 1->
60
61 InstNumber(unsigned in, unsigned sn) : SlotNumber(sn), InstNum(in) {}
62};
63
Chris Lattner92101ac2001-08-23 17:05:04 +000064#endif