From f2868ce228ca20f72d1c6fbe241de01975cfe609 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 3 Feb 2002 07:54:50 +0000 Subject: Code pulled out of MAchineInstr.(h|cpp) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1660 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineCodeForInstruction.h | 48 ++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 include/llvm/CodeGen/MachineCodeForInstruction.h (limited to 'include/llvm/CodeGen/MachineCodeForInstruction.h') diff --git a/include/llvm/CodeGen/MachineCodeForInstruction.h b/include/llvm/CodeGen/MachineCodeForInstruction.h new file mode 100644 index 0000000000..5d0cdd9133 --- /dev/null +++ b/include/llvm/CodeGen/MachineCodeForInstruction.h @@ -0,0 +1,48 @@ +//===-- llvm/CodeGen/MachineCodeForInstruction.h -----------------*- C++ -*--=// +// +// Representation of the sequence of machine instructions created +// for a single VM instruction. Additionally records information +// about hidden and implicit values used by the machine instructions: +// about hidden values used by the machine instructions: +// +// "Temporary values" are intermediate values used in the machine +// instruction sequence, but not in the VM instruction +// Note that such values should be treated as pure SSA values with +// no interpretation of their operands (i.e., as a TmpInstruction +// object which actually represents such a value). +// +// (2) "Implicit uses" are values used in the VM instruction but not in +// the machine instruction sequence +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H +#define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H + +#include "llvm/Annotation.h" +#include +class MachineInstr; +class Instruction; +class Value; + +class MachineCodeForInstruction + : public Annotation, public std::vector { + std::vector tempVec; // used by m/c instr but not VM instr + +public: + MachineCodeForInstruction(); + ~MachineCodeForInstruction(); + + static MachineCodeForInstruction &get(const Instruction *I); + static void destroy(const Instruction *I); + + const std::vector &getTempValues() const { return tempVec; } + std::vector &getTempValues() { return tempVec; } + + inline MachineCodeForInstruction &addTemp(Value *tmp) { + tempVec.push_back(tmp); + return *this; + } +}; + +#endif -- cgit v1.2.3-18-g5258