Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/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.h812 void setLinkedTo(Variable *Var) { LinkedTo = Var; } in setLinkedTo()
813 Variable *getLinkedTo() const { return LinkedTo; } in getLinkedTo()
816 Variable *Root = LinkedTo; in getLinkedToRoot()
819 while (Root->LinkedTo != nullptr) in getLinkedToRoot()
820 Root = Root->LinkedTo; in getLinkedToRoot()
828 for (Variable *Root = LinkedTo; Root != nullptr; Root = Root->LinkedTo) { in getLinkedToStackRoot()
886 Variable *LinkedTo = nullptr; variable
DIceOperand.cpp213 V->LinkedTo = LinkedTo; in asType()