HomeSort by relevance Sort by last modified time
    Searched defs:TerminatorInst (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/
InstrTypes.h 29 // TerminatorInst Class
32 /// TerminatorInst - Subclasses of this class are all able to terminate a basic
35 class TerminatorInst : public Instruction {
37 TerminatorInst(Type *Ty, Instruction::TermOps iType,
42 TerminatorInst(Type *Ty, Instruction::TermOps iType,
47 ~TerminatorInst();
54 virtual TerminatorInst *clone_impl() const = 0;
76 static inline bool classof(const TerminatorInst *) { return true; }
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp 40 // TerminatorInst Class
44 TerminatorInst::~TerminatorInst() {
545 : TerminatorInst(II.getType(), Instruction::Invoke,
594 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
604 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
611 : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
618 : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
644 : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Resume,
650 : TerminatorInst(Type::getVoidTy(Exn->getContext()), Instruction::Resume
    [all...]

Completed in 29 milliseconds