Home
last modified time | relevance | path

Searched refs:HasDescriptor (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DUser.h85 const unsigned HasDescriptor : 1;
90 : NumOps(0), HasHungOffUses(true), HasDescriptor(false) {} in AllocInfo()
93 : NumOps(Alloc.NumOps), HasHungOffUses(false), HasDescriptor(false) {} in AllocInfo()
97 HasDescriptor(Alloc.DescBytes != 0) {} in AllocInfo()
123 assert((!AllocInfo.HasDescriptor || !AllocInfo.HasHungOffUses) && in User()
126 HasDescriptor = AllocInfo.HasDescriptor; in User()
H A DValue.h116 unsigned HasDescriptor : 1; variable
H A DInstrTypes.h1139 bool hasDescriptor() const { return Value::HasDescriptor; }
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DUser.cpp105 assert(HasDescriptor && "Don't call otherwise!"); in getDescriptor()
151 Obj->HasDescriptor = DescBytes != 0; in allocateFixedOperandUser()
180 Obj->HasDescriptor = false; in operator new()
196 assert(!Obj->HasDescriptor && "not supported!"); in operator delete()
203 } else if (Obj->HasDescriptor) { in operator delete()