Home
last modified time | relevance | path

Searched refs:LinkedTo (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceVariableSplitting.cpp116 Variable *LinkedTo = Var->getLinkedTo(); in spliceBlockLocalLinkedToChain() local
117 assert(LinkedTo != nullptr); in spliceBlockLocalLinkedToChain()
118 assert(Var->getIndex() > LinkedTo->getIndex()); in spliceBlockLocalLinkedToChain()
119 const SizeT VarNum = getVarNum(LinkedTo); in spliceBlockLocalLinkedToChain()
DIceOperand.h834 void setLinkedTo(Variable *Var) { LinkedTo = Var; } in setLinkedTo()
835 Variable *getLinkedTo() const { return LinkedTo; } in getLinkedTo()
838 Variable *Root = LinkedTo; in getLinkedToRoot()
841 while (Root->LinkedTo != nullptr) in getLinkedToRoot()
842 Root = Root->LinkedTo; in getLinkedToRoot()
850 for (Variable *Root = LinkedTo; Root != nullptr; Root = Root->LinkedTo) { in getLinkedToStackRoot()
908 Variable *LinkedTo = nullptr; variable
DIceOperand.cpp213 V->LinkedTo = LinkedTo; in asType()