Home
last modified time | relevance | path

Searched refs:DomainValue (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DExecutionDomainFix.h51 struct DomainValue { struct
63 DomainValue *Next; argument
68 DomainValue() { clear(); } in DomainValue() argument
117 SpecificBumpPtrAllocator<DomainValue> Allocator; argument
118 SmallVector<DomainValue *, 16> Avail;
162 DomainValue *alloc(int domain = -1);
165 DomainValue *retain(DomainValue *DV) { in retain()
173 void release(DomainValue *);
177 DomainValue *resolve(DomainValue *&);
180 void setLiveReg(int rx, DomainValue *DV);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DExecutionDomainFix.cpp25 DomainValue *ExecutionDomainFix::alloc(int domain) { in alloc()
26 DomainValue *dv = Avail.empty() ? new (Allocator.Allocate()) DomainValue in alloc()
45 DomainValue *Next = DV->Next; in release()
53 DomainValue *ExecutionDomainFix::resolve(DomainValue *&DVRef) { in resolve()
54 DomainValue *DV = DVRef; in resolve()
94 if (DomainValue *dv = LiveRegs[rx]) { in force()
127 bool ExecutionDomainFix::merge(DomainValue *A, DomainValue *B) { in merge()
179 DomainValue *pdv = resolve(Incoming[rx]); in enterBasicBlock()
297 DomainValue *dv = LiveRegs[rx]; in visitSoftInstr()
332 DomainValue *&LR = LiveRegs[rx]; in visitSoftInstr()
[all …]