LLVM 19.0.0git
Classes | Namespaces
Use.h File Reference

This defines the Use class. More...

#include "llvm-c/Types.h"
#include "llvm/Support/CBindingWrapping.h"
#include "llvm/Support/Compiler.h"

Go to the source code of this file.

Classes

class  llvm::Use
 A Use represents the edge between a Value definition and its users. More...
 
struct  llvm::simplify_type< Use >
 Allow clients to treat uses just like values when using casting operators. More...
 
struct  llvm::simplify_type< const Use >
 

Namespaces

namespace  llvm
 This is an optimization pass for GlobalISel generic memory operations.
 

Detailed Description

This defines the Use class.

The Use class represents the operand of an instruction or some other User instance which refers to a Value. The Use class keeps the "use list" of the referenced value up to date.

Pointer tagging is used to efficiently find the User corresponding to a Use without having to store a User pointer in every Use. A User is preceded in memory by all the Uses corresponding to its operands, and the low bits of one of the fields (Prev) of the Use class are used to encode offsets to be able to find that User given a pointer to any Use. For details, see:

http://www.llvm.org/docs/ProgrammersManual.html#UserLayout

Definition in file Use.h.