LLVM 17.0.0git
|
#include "llvm/ADT/BitmaskEnum.h"
#include "llvm/ADT/Sequence.h"
#include "llvm/Support/raw_ostream.h"
Go to the source code of this file.
Classes | |
class | llvm::MemoryEffects |
Summary of how a function affects memory in the program. More... | |
Namespaces | |
namespace | llvm |
This is an optimization pass for GlobalISel generic memory operations. | |
Typedefs | |
using | llvm::FunctionModRefBehavior = MemoryEffects |
Enumerations | |
enum class | llvm::ModRefInfo : uint8_t { llvm::NoModRef = 0 , llvm::Ref = 1 , llvm::Mod = 2 , llvm::ModRef = Ref | Mod , llvm::LLVM_MARK_AS_BITMASK_ENUM =(ModRef) } |
Flags indicating whether a memory access modifies or references memory. More... | |
Functions | |
bool | llvm::isNoModRef (const ModRefInfo MRI) |
bool | llvm::isModOrRefSet (const ModRefInfo MRI) |
bool | llvm::isModAndRefSet (const ModRefInfo MRI) |
bool | llvm::isModSet (const ModRefInfo MRI) |
bool | llvm::isRefSet (const ModRefInfo MRI) |
raw_ostream & | llvm::operator<< (raw_ostream &OS, ModRefInfo MR) |
Debug print ModRefInfo. | |
raw_ostream & | llvm::operator<< (raw_ostream &OS, MemoryEffects RMRB) |
Debug print MemoryEffects. | |