blob: fc36267cb9e75a5fc27b6cd498f20e6043f01286 [file] [log] [blame]
Chris Lattner9fb30a42004-08-16 21:55:02 +00001//===-- MachineCodeForInstruction.h -----------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// FIXME: This file is SparcV9 specific. Do not rely on this class for new
11// targets, it will go away in the future.
12//
13// Representation of the sequence of machine instructions created for a single
14// VM instruction. Additionally records information about hidden and implicit
15// values used by the machine instructions: about hidden values used by the
16// machine instructions:
17//
18// "Temporary values" are intermediate values used in the machine instruction
19// sequence, but not in the VM instruction Note that such values should be
20// treated as pure SSA values with no interpretation of their operands (i.e., as
21// a TmpInstruction object which actually represents such a value).
22//
23// (2) "Implicit uses" are values used in the VM instruction but not in
24// the machine instruction sequence
25//
26//===----------------------------------------------------------------------===//
27
28#ifndef MACHINECODE_FOR_INSTRUCTION_H
29#define MACHINECODE_FOR_INSTRUCTION_H
30
31#include <vector>
32
33namespace llvm {
34
35class MachineInstr;
36class Instruction;
37class Value;
38class CallArgsDescriptor;
39
40 class MachineCodeForInstruction {
41 std::vector<Value*> tempVec; // used by m/c instr but not VM instr
42 std::vector<MachineInstr*> Contents; // the machine instr for this VM instr
43 CallArgsDescriptor* callArgsDesc; // only used for CALL instructions
44public:
45 MachineCodeForInstruction() : callArgsDesc(NULL) {}
46 ~MachineCodeForInstruction();
47
48 static MachineCodeForInstruction &get(const Instruction *I);
49 static void destroy(const Instruction *I);
50
51 // Access to underlying machine instructions...
52 typedef std::vector<MachineInstr*>::iterator iterator;
53 typedef std::vector<MachineInstr*>::const_iterator const_iterator;
54
55 unsigned size() const { return Contents.size(); }
56 bool empty() const { return Contents.empty(); }
57 MachineInstr *front() const { return Contents.front(); }
58 MachineInstr *back() const { return Contents.back(); }
59 MachineInstr *&operator[](unsigned i) { return Contents[i]; }
60 MachineInstr *operator[](unsigned i) const { return Contents[i]; }
61 void pop_back() { Contents.pop_back(); }
62
63 iterator begin() { return Contents.begin(); }
64 iterator end() { return Contents.end(); }
65 const_iterator begin() const { return Contents.begin(); }
66 const_iterator end() const { return Contents.end(); }
67
68 template<class InIt>
69 void insert(iterator where, InIt first, InIt last) {
70 Contents.insert(where, first, last);
71 }
72 iterator erase(iterator where) { return Contents.erase(where); }
73 iterator erase(iterator s, iterator e) { return Contents.erase(s, e); }
74
75
76 // dropAllReferences() - This function drops all references within
77 // temporary (hidden) instructions created in implementing the original
78 // VM intruction. This ensures there are no remaining "uses" within
79 // these hidden instructions, before the values of a method are freed.
80 //
81 void dropAllReferences();
82
83 const std::vector<Value*> &getTempValues() const { return tempVec; }
84 std::vector<Value*> &getTempValues() { return tempVec; }
85
86 MachineCodeForInstruction &addTemp(Value *tmp) {
87 tempVec.push_back(tmp);
88 return *this;
89 }
90
91 void setCallArgsDescriptor(CallArgsDescriptor* desc) { callArgsDesc = desc; }
92 CallArgsDescriptor* getCallArgsDescriptor() const { return callArgsDesc; }
93};
94
95} // End llvm namespace
96
97#endif