blob: bc457f39579e851256a094a2f8934f4e73c50db5 [file] [log] [blame]
Chris Lattner919c4f82002-08-09 20:04:28 +00001//===-- llvm/CodeGen/MachineCodeForInstruction.h ----------------*- C++ -*-===//
John Criswell6fbcc262003-10-20 20:19:47 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattnerf2868ce2002-02-03 07:54:50 +00009//
Chris Lattner919c4f82002-08-09 20:04:28 +000010// Representation of the sequence of machine instructions created for a single
11// VM instruction. Additionally records information about hidden and implicit
12// values used by the machine instructions: about hidden values used by the
13// machine instructions:
Chris Lattnerf2868ce2002-02-03 07:54:50 +000014//
Chris Lattner919c4f82002-08-09 20:04:28 +000015// "Temporary values" are intermediate values used in the machine instruction
16// sequence, but not in the VM instruction Note that such values should be
17// treated as pure SSA values with no interpretation of their operands (i.e., as
18// a TmpInstruction object which actually represents such a value).
Chris Lattnerf2868ce2002-02-03 07:54:50 +000019//
Chris Lattner919c4f82002-08-09 20:04:28 +000020// (2) "Implicit uses" are values used in the VM instruction but not in
21// the machine instruction sequence
Chris Lattnerf2868ce2002-02-03 07:54:50 +000022//
23//===----------------------------------------------------------------------===//
24
25#ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
26#define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H
27
Chris Lattnercb09cc22003-01-14 21:29:58 +000028#include "Support/Annotation.h"
Chris Lattnerf2868ce2002-02-03 07:54:50 +000029#include <vector>
John Criswellbe583b92003-06-11 14:01:36 +000030
Brian Gaeked0fde302003-11-11 22:41:34 +000031namespace llvm {
32
Chris Lattnerf2868ce2002-02-03 07:54:50 +000033class MachineInstr;
34class Instruction;
35class Value;
Vikram S. Advee68a3432002-10-29 19:38:46 +000036class CallArgsDescriptor;
Chris Lattnerf2868ce2002-02-03 07:54:50 +000037
Chris Lattner51a8d852002-10-28 01:21:55 +000038extern AnnotationID MCFI_AID;
39
Chris Lattner919c4f82002-08-09 20:04:28 +000040class MachineCodeForInstruction : public Annotation {
Vikram S. Advee68a3432002-10-29 19:38:46 +000041 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
Chris Lattnerf2868ce2002-02-03 07:54:50 +000044public:
Vikram S. Adve601899d2002-10-30 20:38:49 +000045 MachineCodeForInstruction() : Annotation(MCFI_AID), callArgsDesc(NULL) {}
Chris Lattnerf2868ce2002-02-03 07:54:50 +000046 ~MachineCodeForInstruction();
47
Chris Lattnere85f2342004-02-29 19:02:26 +000048 static MachineCodeForInstruction &get(const Instruction *I);
49 static void destroy(const Instruction *I);
Chris Lattnerf2868ce2002-02-03 07:54:50 +000050
Chris Lattner919c4f82002-08-09 20:04:28 +000051 // 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
Vikram S. Advedfe412d2002-03-24 03:58:02 +000076 // 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
Chris Lattnerf2868ce2002-02-03 07:54:50 +000083 const std::vector<Value*> &getTempValues() const { return tempVec; }
84 std::vector<Value*> &getTempValues() { return tempVec; }
85
Chris Lattner919c4f82002-08-09 20:04:28 +000086 MachineCodeForInstruction &addTemp(Value *tmp) {
Chris Lattnerf2868ce2002-02-03 07:54:50 +000087 tempVec.push_back(tmp);
88 return *this;
89 }
Vikram S. Advee68a3432002-10-29 19:38:46 +000090
91 void setCallArgsDescriptor(CallArgsDescriptor* desc) { callArgsDesc = desc; }
92 CallArgsDescriptor* getCallArgsDescriptor() const { return callArgsDesc; }
Chris Lattnerf2868ce2002-02-03 07:54:50 +000093};
94
Brian Gaeked0fde302003-11-11 22:41:34 +000095} // End llvm namespace
96
Chris Lattnerf2868ce2002-02-03 07:54:50 +000097#endif