LLVM 20.0.0git
Static Public Member Functions | List of all members
llvm::sandboxir::Utils Class Reference

#include "llvm/SandboxIR/Utils.h"

Static Public Member Functions

static TypegetExpectedType (const Value *V)
 \Returns the expected type of Value V.
 
static ValuegetExpectedValue (const Instruction *I)
 \Returns the expected Value for this instruction.
 
template<typename LoadOrStoreT >
static ValuegetMemInstructionBase (const LoadOrStoreT *LSI)
 \Returns the base Value for load or store instruction LSI.
 
static unsigned getNumBits (Value *V, const DataLayout &DL)
 \Returns the number of bits required to represent the operands or return value of V in DL.
 
static unsigned getNumBits (Instruction *I)
 \Returns the number of bits required to represent the operands or return value of I.
 
static std::optional< llvm::MemoryLocationmemoryLocationGetOrNone (const Instruction *I)
 Equivalent to MemoryLocation::getOrNone(I).
 
template<typename LoadOrStoreT >
static std::optional< int > getPointerDiffInBytes (LoadOrStoreT *I0, LoadOrStoreT *I1, ScalarEvolution &SE)
 \Returns the gap between the memory locations accessed by I0 and I1 in bytes.
 
template<typename LoadOrStoreT >
static bool atLowerAddress (LoadOrStoreT *I0, LoadOrStoreT *I1, ScalarEvolution &SE)
 \Returns true if I0 accesses a memory location lower than I1.
 
static ModRefInfo aliasAnalysisGetModRefInfo (BatchAAResults &BatchAA, const Instruction *I, const std::optional< MemoryLocation > &OptLoc)
 Equivalent to BatchAA::getModRefInfo().
 

Detailed Description

Definition at line 25 of file Utils.h.

Member Function Documentation

◆ aliasAnalysisGetModRefInfo()

static ModRefInfo llvm::sandboxir::Utils::aliasAnalysisGetModRefInfo ( BatchAAResults BatchAA,
const Instruction I,
const std::optional< MemoryLocation > &  OptLoc 
)
inlinestatic

Equivalent to BatchAA::getModRefInfo().

Definition at line 116 of file Utils.h.

References llvm::BatchAAResults::getModRefInfo(), and I.

◆ atLowerAddress()

template<typename LoadOrStoreT >
static bool llvm::sandboxir::Utils::atLowerAddress ( LoadOrStoreT *  I0,
LoadOrStoreT *  I1,
ScalarEvolution SE 
)
inlinestatic

\Returns true if I0 accesses a memory location lower than I1.

Returns false if the difference cannot be determined, if the memory locations are equal, or if I1 accesses a memory location greater than I0.

Definition at line 106 of file Utils.h.

References getPointerDiffInBytes().

Referenced by llvm::sandboxir::MemSeedBundle< LoadOrStoreT >::insert(), and llvm::sandboxir::MemSeedBundle< LoadOrStoreT >::MemSeedBundle().

◆ getExpectedType()

static Type * llvm::sandboxir::Utils::getExpectedType ( const Value V)
inlinestatic

\Returns the expected type of Value V.

For most Values this is equivalent to getType, but for stores returns the stored type, rather than void, and for ReturnInsts returns the returned type.

Definition at line 30 of file Utils.h.

References getExpectedValue(), llvm::sandboxir::Value::getType(), and I.

Referenced by llvm::sandboxir::VecUtils::getCommonScalarType(), getNumBits(), llvm::sandboxir::VecUtils::getNumLanes(), llvm::sandboxir::isValidMemSeed(), and llvm::sandboxir::VecUtils::tryGetCommonScalarType().

◆ getExpectedValue()

static Value * llvm::sandboxir::Utils::getExpectedValue ( const Instruction I)
inlinestatic

\Returns the expected Value for this instruction.

For most instructions, this is the instruction itself, but for stores returns the stored operand, and for ReturnInstructions returns the returned value.

Definition at line 45 of file Utils.h.

References I.

Referenced by getExpectedType().

◆ getMemInstructionBase()

template<typename LoadOrStoreT >
static Value * llvm::sandboxir::Utils::getMemInstructionBase ( const LoadOrStoreT *  LSI)
inlinestatic

\Returns the base Value for load or store instruction LSI.

Definition at line 55 of file Utils.h.

References llvm::sandboxir::Value::Ctx, llvm::sandboxir::Context::getOrCreateValue(), and llvm::getUnderlyingObject().

◆ getNumBits() [1/2]

static unsigned llvm::sandboxir::Utils::getNumBits ( Instruction I)
inlinestatic

\Returns the number of bits required to represent the operands or return value of I.

Definition at line 72 of file Utils.h.

References getExpectedType(), and I.

◆ getNumBits() [2/2]

static unsigned llvm::sandboxir::Utils::getNumBits ( Value V,
const DataLayout DL 
)
inlinestatic

◆ getPointerDiffInBytes()

template<typename LoadOrStoreT >
static std::optional< int > llvm::sandboxir::Utils::getPointerDiffInBytes ( LoadOrStoreT *  I0,
LoadOrStoreT *  I1,
ScalarEvolution SE 
)
inlinestatic

\Returns the gap between the memory locations accessed by I0 and I1 in bytes.

Definition at line 85 of file Utils.h.

References llvm::ScalarEvolution::getContext(), llvm::Type::getInt8Ty(), llvm::getPointersDiff(), and llvm::getUnderlyingObject().

Referenced by llvm::sandboxir::VecUtils::areConsecutive(), and atLowerAddress().

◆ memoryLocationGetOrNone()

static std::optional< llvm::MemoryLocation > llvm::sandboxir::Utils::memoryLocationGetOrNone ( const Instruction I)
inlinestatic

Equivalent to MemoryLocation::getOrNone(I).

Definition at line 78 of file Utils.h.

References llvm::MemoryLocation::getOrNone(), and I.


The documentation for this class was generated from the following file: