|
LLVM 22.0.0git
|
#include "llvm-c/Types.h"#include "llvm/ADT/ArrayRef.h"#include "llvm/ADT/STLExtras.h"#include "llvm/ADT/StringRef.h"#include "llvm/ADT/Twine.h"#include "llvm/IR/BasicBlock.h"#include "llvm/IR/Constant.h"#include "llvm/IR/ConstantFolder.h"#include "llvm/IR/Constants.h"#include "llvm/IR/DataLayout.h"#include "llvm/IR/DebugLoc.h"#include "llvm/IR/DerivedTypes.h"#include "llvm/IR/FPEnv.h"#include "llvm/IR/Function.h"#include "llvm/IR/GlobalVariable.h"#include "llvm/IR/InstrTypes.h"#include "llvm/IR/Instruction.h"#include "llvm/IR/Instructions.h"#include "llvm/IR/Intrinsics.h"#include "llvm/IR/LLVMContext.h"#include "llvm/IR/Operator.h"#include "llvm/IR/Type.h"#include "llvm/IR/Value.h"#include "llvm/IR/ValueHandle.h"#include "llvm/Support/AtomicOrdering.h"#include "llvm/Support/CBindingWrapping.h"#include "llvm/Support/Casting.h"#include "llvm/Support/Compiler.h"#include <cassert>#include <cstdint>#include <functional>#include <optional>#include <utility>Go to the source code of this file.
Classes | |
| class | llvm::IRBuilderDefaultInserter |
| This provides the default implementation of the IRBuilder 'InsertHelper' method that is called whenever an instruction is created by IRBuilder and needs to be inserted. More... | |
| class | llvm::IRBuilderCallbackInserter |
| Provides an 'InsertHelper' that calls a user-provided callback after performing the default insertion. More... | |
| class | llvm::FMFSource |
| This provides a helper for copying FMF from an instruction or setting specified flags. More... | |
| class | llvm::IRBuilderBase |
| Common base class shared among various IRBuilders. More... | |
| class | llvm::IRBuilderBase::InsertPoint |
| InsertPoint - A saved insertion point. More... | |
| class | llvm::IRBuilderBase::InsertPointGuard |
| class | llvm::IRBuilderBase::FastMathFlagGuard |
| class | llvm::IRBuilderBase::OperandBundlesGuard |
| class | llvm::IRBuilder< FolderTy, InserterTy > |
| This provides a uniform API for creating instructions and inserting them into a basic block: either at the end of a BasicBlock, or at a specific iterator location in a block. More... | |
Namespaces | |
| namespace | llvm |
| This is an optimization pass for GlobalISel generic memory operations. | |
Functions | |
| template<typename FolderTy, typename InserterTy> | |
| llvm::IRBuilder (LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy > | |
| llvm::IRBuilder (LLVMContext &, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder<> | |
| template<typename FolderTy> | |
| llvm::IRBuilder (BasicBlock *, FolderTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy > | |
| llvm::IRBuilder (BasicBlock *, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder<> | |
| llvm::IRBuilder (Instruction *, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder<> | |
| template<typename FolderTy> | |
| llvm::IRBuilder (BasicBlock *, BasicBlock::iterator, FolderTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy > | |
| llvm::IRBuilder (BasicBlock *, BasicBlock::iterator, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder<> | |