2003-09-30 20:37:50 +02:00
|
|
|
//===- llvm/Support/InstVisitor.h - Define instruction visitors -*- C++ -*-===//
|
2005-04-21 22:48:15 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:48:15 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2006-05-31 17:30:18 +02:00
|
|
|
|
2002-03-18 20:07:42 +01:00
|
|
|
|
|
|
|
#ifndef LLVM_SUPPORT_INSTVISITOR_H
|
|
|
|
#define LLVM_SUPPORT_INSTVISITOR_H
|
|
|
|
|
2003-11-28 02:46:06 +01:00
|
|
|
#include "llvm/Function.h"
|
2005-03-09 06:35:16 +01:00
|
|
|
#include "llvm/Instructions.h"
|
2004-05-06 04:07:42 +02:00
|
|
|
#include "llvm/Module.h"
|
2009-07-11 22:10:48 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2003-06-11 16:01:36 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2002-03-18 20:07:42 +01:00
|
|
|
// We operate on opaque instruction classes, so forward declare all instruction
|
|
|
|
// types now...
|
|
|
|
//
|
|
|
|
#define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS;
|
|
|
|
#include "llvm/Instruction.def"
|
|
|
|
|
2002-04-18 18:16:16 +02:00
|
|
|
#define DELEGATE(CLASS_TO_VISIT) \
|
2005-03-09 06:35:16 +01:00
|
|
|
return static_cast<SubClass*>(this)-> \
|
|
|
|
visit##CLASS_TO_VISIT(static_cast<CLASS_TO_VISIT&>(I))
|
2002-04-18 18:16:16 +02:00
|
|
|
|
|
|
|
|
2006-05-31 17:30:18 +02:00
|
|
|
/// @brief Base class for instruction visitors
|
|
|
|
///
|
2009-07-16 00:43:51 +02:00
|
|
|
/// Instruction visitors are used when you want to perform different actions
|
|
|
|
/// for different kinds of instructions without having to use lots of casts
|
|
|
|
/// and a big switch statement (in your code, that is).
|
2006-05-31 17:30:18 +02:00
|
|
|
///
|
|
|
|
/// To define your own visitor, inherit from this class, specifying your
|
|
|
|
/// new type for the 'SubClass' template parameter, and "override" visitXXX
|
2009-07-16 00:43:51 +02:00
|
|
|
/// functions in your class. I say "override" because this class is defined
|
2009-02-20 23:51:36 +01:00
|
|
|
/// in terms of statically resolved overloading, not virtual functions.
|
|
|
|
///
|
|
|
|
/// For example, here is a visitor that counts the number of malloc
|
2006-05-31 17:30:18 +02:00
|
|
|
/// instructions processed:
|
|
|
|
///
|
|
|
|
/// /// Declare the class. Note that we derive from InstVisitor instantiated
|
|
|
|
/// /// with _our new subclasses_ type.
|
|
|
|
/// ///
|
2009-10-17 03:18:07 +02:00
|
|
|
/// struct CountAllocaVisitor : public InstVisitor<CountAllocaVisitor> {
|
2006-05-31 17:30:18 +02:00
|
|
|
/// unsigned Count;
|
2009-10-17 03:18:07 +02:00
|
|
|
/// CountAllocaVisitor() : Count(0) {}
|
2006-05-31 17:30:18 +02:00
|
|
|
///
|
2009-10-17 03:18:07 +02:00
|
|
|
/// void visitAllocaInst(AllocaInst &AI) { ++Count; }
|
2006-05-31 17:30:18 +02:00
|
|
|
/// };
|
|
|
|
///
|
|
|
|
/// And this class would be used like this:
|
2009-10-17 03:18:07 +02:00
|
|
|
/// CountAllocaVisitor CAV;
|
|
|
|
/// CAV.visit(function);
|
|
|
|
/// NumAllocas = CAV.Count;
|
2006-05-31 17:30:18 +02:00
|
|
|
///
|
|
|
|
/// The defined has 'visit' methods for Instruction, and also for BasicBlock,
|
2009-07-16 00:43:51 +02:00
|
|
|
/// Function, and Module, which recursively process all contained instructions.
|
2006-05-31 17:30:18 +02:00
|
|
|
///
|
|
|
|
/// Note that if you don't implement visitXXX for some instruction type,
|
|
|
|
/// the visitXXX method for instruction superclass will be invoked. So
|
|
|
|
/// if instructions are added in the future, they will be automatically
|
2009-07-16 00:43:51 +02:00
|
|
|
/// supported, if you handle one of their superclasses.
|
2006-05-31 17:30:18 +02:00
|
|
|
///
|
2009-02-20 23:51:36 +01:00
|
|
|
/// The optional second template argument specifies the type that instruction
|
|
|
|
/// visitation functions should return. If you specify this, you *MUST* provide
|
2006-05-31 17:30:18 +02:00
|
|
|
/// an implementation of visitInstruction though!.
|
|
|
|
///
|
|
|
|
/// Note that this class is specifically designed as a template to avoid
|
|
|
|
/// virtual function call overhead. Defining and using an InstVisitor is just
|
|
|
|
/// as efficient as having your own switch statement over the instruction
|
|
|
|
/// opcode.
|
2002-04-18 17:46:40 +02:00
|
|
|
template<typename SubClass, typename RetTy=void>
|
2004-11-16 07:58:55 +01:00
|
|
|
class InstVisitor {
|
2002-03-18 20:07:42 +01:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Interface code - This is the public interface of the InstVisitor that you
|
|
|
|
// use to visit instructions...
|
|
|
|
//
|
|
|
|
|
2004-11-16 07:58:55 +01:00
|
|
|
public:
|
2002-03-18 20:07:42 +01:00
|
|
|
// Generic visit method - Allow visitation to all instructions in a range
|
|
|
|
template<class Iterator>
|
|
|
|
void visit(Iterator Start, Iterator End) {
|
|
|
|
while (Start != End)
|
2005-03-09 06:35:16 +01:00
|
|
|
static_cast<SubClass*>(this)->visit(*Start++);
|
2002-03-18 20:07:42 +01:00
|
|
|
}
|
|
|
|
|
2003-08-29 16:48:21 +02:00
|
|
|
// Define visitors for functions and basic blocks...
|
2002-03-18 20:07:42 +01:00
|
|
|
//
|
2004-05-04 20:30:38 +02:00
|
|
|
void visit(Module &M) {
|
2005-03-09 06:35:16 +01:00
|
|
|
static_cast<SubClass*>(this)->visitModule(M);
|
2004-05-04 20:30:38 +02:00
|
|
|
visit(M.begin(), M.end());
|
|
|
|
}
|
2002-06-25 18:13:24 +02:00
|
|
|
void visit(Function &F) {
|
2005-03-09 06:35:16 +01:00
|
|
|
static_cast<SubClass*>(this)->visitFunction(F);
|
2002-06-25 18:13:24 +02:00
|
|
|
visit(F.begin(), F.end());
|
2002-04-15 21:32:36 +02:00
|
|
|
}
|
2002-06-25 18:13:24 +02:00
|
|
|
void visit(BasicBlock &BB) {
|
2005-03-09 06:35:16 +01:00
|
|
|
static_cast<SubClass*>(this)->visitBasicBlock(BB);
|
2002-06-25 18:13:24 +02:00
|
|
|
visit(BB.begin(), BB.end());
|
2002-04-15 21:32:36 +02:00
|
|
|
}
|
2002-03-18 20:07:42 +01:00
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
// Forwarding functions so that the user can visit with pointers AND refs.
|
|
|
|
void visit(Module *M) { visit(*M); }
|
|
|
|
void visit(Function *F) { visit(*F); }
|
|
|
|
void visit(BasicBlock *BB) { visit(*BB); }
|
|
|
|
RetTy visit(Instruction *I) { return visit(*I); }
|
|
|
|
|
2002-03-18 20:07:42 +01:00
|
|
|
// visit - Finally, code to visit an instruction...
|
|
|
|
//
|
2002-06-25 18:13:24 +02:00
|
|
|
RetTy visit(Instruction &I) {
|
|
|
|
switch (I.getOpcode()) {
|
2009-07-14 18:55:14 +02:00
|
|
|
default: llvm_unreachable("Unknown instruction type encountered!");
|
2002-03-18 20:07:42 +01:00
|
|
|
// Build the switch statement using the Instruction.def file...
|
|
|
|
#define HANDLE_INST(NUM, OPCODE, CLASS) \
|
2005-03-09 06:35:16 +01:00
|
|
|
case Instruction::OPCODE: return \
|
|
|
|
static_cast<SubClass*>(this)-> \
|
|
|
|
visit##OPCODE(static_cast<CLASS&>(I));
|
2002-03-18 20:07:42 +01:00
|
|
|
#include "llvm/Instruction.def"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Visitation functions... these functions provide default fallbacks in case
|
|
|
|
// the user does not specify what to do for a particular instruction type.
|
|
|
|
// The default behavior is to generalize the instruction type to its subtype
|
|
|
|
// and try visiting the subtype. All of this should be inlined perfectly,
|
|
|
|
// because there are no virtual functions to get in the way.
|
|
|
|
//
|
2002-04-15 21:32:36 +02:00
|
|
|
|
|
|
|
// When visiting a module, function or basic block directly, these methods get
|
|
|
|
// called to indicate when transitioning into a new unit.
|
|
|
|
//
|
2004-05-04 20:30:38 +02:00
|
|
|
void visitModule (Module &M) {}
|
2002-06-25 18:13:24 +02:00
|
|
|
void visitFunction (Function &F) {}
|
|
|
|
void visitBasicBlock(BasicBlock &BB) {}
|
2002-04-18 18:16:16 +02:00
|
|
|
|
|
|
|
// Define instruction specific visitor functions that can be overridden to
|
|
|
|
// handle SPECIFIC instructions. These functions automatically define
|
|
|
|
// visitMul to proxy to visitBinaryOperator for instance in case the user does
|
|
|
|
// not need this generality.
|
|
|
|
//
|
|
|
|
// The one problem case we have to handle here though is that the PHINode
|
|
|
|
// class and opcode name are the exact same. Because of this, we cannot
|
|
|
|
// define visitPHINode (the inst version) to forward to visitPHINode (the
|
|
|
|
// generic version) without multiply defined symbols and recursion. To handle
|
|
|
|
// this, we do not autoexpand "Other" instructions, we do it manually.
|
|
|
|
//
|
|
|
|
#define HANDLE_INST(NUM, OPCODE, CLASS) \
|
2002-06-25 18:13:24 +02:00
|
|
|
RetTy visit##OPCODE(CLASS &I) { DELEGATE(CLASS); }
|
2002-04-18 18:16:16 +02:00
|
|
|
#include "llvm/Instruction.def"
|
|
|
|
|
2002-03-18 20:07:42 +01:00
|
|
|
// Specific Instruction type classes... note that all of the casts are
|
2003-08-18 16:43:39 +02:00
|
|
|
// necessary because we use the instruction classes as opaque types...
|
2002-03-18 20:07:42 +01:00
|
|
|
//
|
2002-06-25 18:13:24 +02:00
|
|
|
RetTy visitReturnInst(ReturnInst &I) { DELEGATE(TerminatorInst);}
|
|
|
|
RetTy visitBranchInst(BranchInst &I) { DELEGATE(TerminatorInst);}
|
|
|
|
RetTy visitSwitchInst(SwitchInst &I) { DELEGATE(TerminatorInst);}
|
2009-10-28 01:19:10 +01:00
|
|
|
RetTy visitIndirectBrInst(IndirectBrInst &I) { DELEGATE(TerminatorInst);}
|
2002-06-25 18:13:24 +02:00
|
|
|
RetTy visitInvokeInst(InvokeInst &I) { DELEGATE(TerminatorInst);}
|
2003-09-08 20:54:16 +02:00
|
|
|
RetTy visitUnwindInst(UnwindInst &I) { DELEGATE(TerminatorInst);}
|
2011-07-31 08:30:59 +02:00
|
|
|
RetTy visitResumeInst(ResumeInst &I) { DELEGATE(TerminatorInst);}
|
2004-10-16 20:06:43 +02:00
|
|
|
RetTy visitUnreachableInst(UnreachableInst &I) { DELEGATE(TerminatorInst);}
|
2006-11-20 02:22:35 +01:00
|
|
|
RetTy visitICmpInst(ICmpInst &I) { DELEGATE(CmpInst);}
|
|
|
|
RetTy visitFCmpInst(FCmpInst &I) { DELEGATE(CmpInst);}
|
2009-10-23 23:09:37 +02:00
|
|
|
RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(Instruction); }
|
2003-05-08 04:43:06 +02:00
|
|
|
RetTy visitLoadInst(LoadInst &I) { DELEGATE(Instruction); }
|
|
|
|
RetTy visitStoreInst(StoreInst &I) { DELEGATE(Instruction); }
|
2011-07-28 23:48:00 +02:00
|
|
|
RetTy visitAtomicCmpXchgInst(AtomicCmpXchgInst &I){ DELEGATE(Instruction); }
|
|
|
|
RetTy visitAtomicRMWInst(AtomicRMWInst &I) { DELEGATE(Instruction); }
|
2011-07-26 01:16:38 +02:00
|
|
|
RetTy visitFenceInst(FenceInst &I) { DELEGATE(Instruction); }
|
2002-08-23 01:37:24 +02:00
|
|
|
RetTy visitGetElementPtrInst(GetElementPtrInst &I){ DELEGATE(Instruction); }
|
2003-05-08 04:43:06 +02:00
|
|
|
RetTy visitPHINode(PHINode &I) { DELEGATE(Instruction); }
|
2006-11-29 22:37:00 +01:00
|
|
|
RetTy visitTruncInst(TruncInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitZExtInst(ZExtInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitSExtInst(SExtInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitFPTruncInst(FPTruncInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitFPExtInst(FPExtInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitFPToUIInst(FPToUIInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitFPToSIInst(FPToSIInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitUIToFPInst(UIToFPInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitSIToFPInst(SIToFPInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitPtrToIntInst(PtrToIntInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitIntToPtrInst(IntToPtrInst &I) { DELEGATE(CastInst); }
|
|
|
|
RetTy visitBitCastInst(BitCastInst &I) { DELEGATE(CastInst); }
|
2004-03-12 06:51:22 +01:00
|
|
|
RetTy visitSelectInst(SelectInst &I) { DELEGATE(Instruction); }
|
2003-05-08 04:43:06 +02:00
|
|
|
RetTy visitCallInst(CallInst &I) { DELEGATE(Instruction); }
|
2003-10-18 07:53:13 +02:00
|
|
|
RetTy visitVAArgInst(VAArgInst &I) { DELEGATE(Instruction); }
|
2006-11-27 02:05:10 +01:00
|
|
|
RetTy visitExtractElementInst(ExtractElementInst &I) { DELEGATE(Instruction);}
|
2006-01-17 21:06:42 +01:00
|
|
|
RetTy visitInsertElementInst(InsertElementInst &I) { DELEGATE(Instruction); }
|
2006-04-08 03:15:18 +02:00
|
|
|
RetTy visitShuffleVectorInst(ShuffleVectorInst &I) { DELEGATE(Instruction); }
|
2008-05-15 21:50:34 +02:00
|
|
|
RetTy visitExtractValueInst(ExtractValueInst &I) { DELEGATE(Instruction);}
|
|
|
|
RetTy visitInsertValueInst(InsertValueInst &I) { DELEGATE(Instruction); }
|
2011-08-12 22:24:12 +02:00
|
|
|
RetTy visitLandingPadInst(LandingPadInst &I) { DELEGATE(Instruction); }
|
2002-03-18 20:07:42 +01:00
|
|
|
|
2009-07-16 00:43:51 +02:00
|
|
|
// Next level propagators: If the user does not overload a specific
|
2002-03-18 20:07:42 +01:00
|
|
|
// instruction type, they can overload one of these to get the whole class
|
|
|
|
// of instructions...
|
|
|
|
//
|
2002-06-25 18:13:24 +02:00
|
|
|
RetTy visitTerminatorInst(TerminatorInst &I) { DELEGATE(Instruction); }
|
|
|
|
RetTy visitBinaryOperator(BinaryOperator &I) { DELEGATE(Instruction); }
|
2006-11-20 02:22:35 +01:00
|
|
|
RetTy visitCmpInst(CmpInst &I) { DELEGATE(Instruction); }
|
2006-11-29 22:37:00 +01:00
|
|
|
RetTy visitCastInst(CastInst &I) { DELEGATE(Instruction); }
|
2002-03-18 20:07:42 +01:00
|
|
|
|
|
|
|
// If the user wants a 'default' case, they can choose to override this
|
2009-07-16 00:43:51 +02:00
|
|
|
// function. If this function is not overloaded in the user's subclass, then
|
2002-03-18 20:07:42 +01:00
|
|
|
// this instruction just gets ignored.
|
|
|
|
//
|
2002-04-18 17:46:40 +02:00
|
|
|
// Note that you MUST override this function if your return type is not void.
|
|
|
|
//
|
2002-06-25 18:13:24 +02:00
|
|
|
void visitInstruction(Instruction &I) {} // Ignore unhandled instructions
|
2002-03-18 20:07:42 +01:00
|
|
|
};
|
|
|
|
|
2002-04-18 18:16:16 +02:00
|
|
|
#undef DELEGATE
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-03-18 20:07:42 +01:00
|
|
|
#endif
|