class CleanupPadInst

Declaration

class CleanupPadInst : public FuncletPadInst { /* full declaration omitted */ };

Description

LLVM Value Representation This is a very important LLVM class. It is the base class of all values computed by a program that may be used as operands to other values. Value is the super class of other important classes such as Instruction and Function. All Values have a Type. Type is not a subclass of Value. Some values can have a name and they belong to some Module. Setting the name on the Value automatically updates the module's symbol table. Every value has a "use list" that keeps track of which other Values are using this Value. A Value can also have an arbitrary number of ValueHandle objects that watch it and listen to RAUW and Destroy events. See llvm/IR/ValueHandle.h for details.

Declared at: llvm/include/llvm/IR/Instructions.h:4457

Inherits from: FuncletPadInst

Member Variables

Inherited from Value:

protected SubclassOptionalData
protected NumUserOperands
protected IsUsedByMD
protected HasName
protected HasMetadata
protected HasHungOffUses
protected HasDescriptor
public static MaxAlignmentExponent = 32
public static MaximumAlignment = 1ULL << MaxAlignmentExponent

Method Overview

  • private CleanupPadInst(llvm::Value * ParentPad, ArrayRef<llvm::Value *> Args, unsigned int Values, const llvm::Twine & NameStr, llvm::Instruction * InsertBefore)
  • private CleanupPadInst(llvm::Value * ParentPad, ArrayRef<llvm::Value *> Args, unsigned int Values, const llvm::Twine & NameStr, llvm::BasicBlock * InsertAtEnd)
  • public static llvm::CleanupPadInst * Create(llvm::Value * ParentPad, ArrayRef<llvm::Value *> Args = None, const llvm::Twine & NameStr = "", llvm::Instruction * InsertBefore = nullptr)
  • public static llvm::CleanupPadInst * Create(llvm::Value * ParentPad, ArrayRef<llvm::Value *> Args, const llvm::Twine & NameStr, llvm::BasicBlock * InsertAtEnd)
  • public static bool classof(const llvm::Instruction * I)
  • public static bool classof(const llvm::Value * V)

Inherited from FuncletPadInst:

Inherited from Instruction:

Inherited from User:

Inherited from Value:

Methods

CleanupPadInst(llvm::Value* ParentPad,
               ArrayRef<llvm::Value*> Args,
               unsigned int Values,
               const llvm::Twine& NameStr,
               llvm::Instruction* InsertBefore)

Declared at: llvm/include/llvm/IR/Instructions.h:4459

Parameters

llvm::Value* ParentPad
ArrayRef<llvm::Value*> Args
unsigned int Values
const llvm::Twine& NameStr
llvm::Instruction* InsertBefore

CleanupPadInst(llvm::Value* ParentPad,
               ArrayRef<llvm::Value*> Args,
               unsigned int Values,
               const llvm::Twine& NameStr,
               llvm::BasicBlock* InsertAtEnd)

Declared at: llvm/include/llvm/IR/Instructions.h:4464

Parameters

llvm::Value* ParentPad
ArrayRef<llvm::Value*> Args
unsigned int Values
const llvm::Twine& NameStr
llvm::BasicBlock* InsertAtEnd

static llvm::CleanupPadInst* Create(
    llvm::Value* ParentPad,
    ArrayRef<llvm::Value*> Args = None,
    const llvm::Twine& NameStr = "",
    llvm::Instruction* InsertBefore = nullptr)

Declared at: llvm/include/llvm/IR/Instructions.h:4471

Parameters

llvm::Value* ParentPad
ArrayRef<llvm::Value*> Args = None
const llvm::Twine& NameStr = ""
llvm::Instruction* InsertBefore = nullptr

static llvm::CleanupPadInst* Create(
    llvm::Value* ParentPad,
    ArrayRef<llvm::Value*> Args,
    const llvm::Twine& NameStr,
    llvm::BasicBlock* InsertAtEnd)

Declared at: llvm/include/llvm/IR/Instructions.h:4479

Parameters

llvm::Value* ParentPad
ArrayRef<llvm::Value*> Args
const llvm::Twine& NameStr
llvm::BasicBlock* InsertAtEnd

static bool classof(const llvm::Instruction* I)

Description

Methods for support type inquiry through isa, cast, and dyn_cast:

Declared at: llvm/include/llvm/IR/Instructions.h:4487

Parameters

const llvm::Instruction* I

static bool classof(const llvm::Value* V)

Declared at: llvm/include/llvm/IR/Instructions.h:4490

Parameters

const llvm::Value* V