Home
last modified time | relevance | path

Searched refs:Leader (Results 1 – 25 of 35) sorted by relevance

12

/external/llvm/include/llvm/ADT/
DEquivalenceClasses.h71 mutable const ECValue *Leader, *Next; variable
76 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} in ECValue()
80 if (Leader->isLeader()) return Leader; in getLeader()
82 return Leader = Leader->getLeader(); in getLeader()
86 return Leader; in getEndOfList()
94 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1), in ECValue()
230 L1LV.Leader = L2LV.getEndOfList(); in unionSets()
236 L2LV.Leader = &L1LV; in unionSets()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DEquivalenceClasses.h72 mutable const ECValue *Leader, *Next; variable
78 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} in ECValue()
82 if (Leader->isLeader()) return Leader; in getLeader()
84 return Leader = Leader->getLeader(); in getLeader()
89 return Leader; in getEndOfList()
98 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1), in ECValue()
231 L1LV.Leader = L2LV.getEndOfList(); in unionSets()
237 L2LV.Leader = &L1LV; in unionSets()
/external/llvm-project/llvm/include/llvm/ADT/
DEquivalenceClasses.h72 mutable const ECValue *Leader, *Next; variable
78 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} in ECValue()
82 if (Leader->isLeader()) return Leader; in getLeader()
84 return Leader = Leader->getLeader(); in getLeader()
89 return Leader; in getEndOfList()
98 ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1), in ECValue()
231 L1LV.Leader = L2LV.getEndOfList(); in unionSets()
237 L2LV.Leader = &L1LV; in unionSets()
/external/llvm/lib/Support/
DIntEqClasses.cpp70 SmallVector<unsigned, 8> Leader; in uncompress() local
72 if (EC[i] < Leader.size()) in uncompress()
73 EC[i] = Leader[EC[i]]; in uncompress()
75 Leader.push_back(EC[i] = i); in uncompress()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DIntEqClasses.cpp69 SmallVector<unsigned, 8> Leader; in uncompress() local
71 if (EC[i] < Leader.size()) in uncompress()
72 EC[i] = Leader[EC[i]]; in uncompress()
74 Leader.push_back(EC[i] = i); in uncompress()
/external/llvm-project/llvm/lib/Support/
DIntEqClasses.cpp70 SmallVector<unsigned, 8> Leader; in uncompress() local
72 if (EC[i] < Leader.size()) in uncompress()
73 EC[i] = Leader[EC[i]]; in uncompress()
75 Leader.push_back(EC[i] = i); in uncompress()
/external/llvm/lib/Analysis/
DVectorUtils.cpp354 Value *Leader = ECs.getOrInsertLeaderValue(Val); in computeMinimumValueSizes() local
371 DBits[Leader] |= V; in computeMinimumValueSizes()
385 DBits[Leader] |= ~0ULL; in computeMinimumValueSizes()
395 if (DBits[Leader] == ~0ULL) in computeMinimumValueSizes()
400 ECs.unionSets(Leader, O); in computeMinimumValueSizes()
DLoopAccessAnalysis.cpp625 Value *Leader = DepCands.getLeaderValue(Access).getPointer(); in canCheckPtrAtRT() local
626 unsigned &LeaderId = DepSetId[Leader]; in canCheckPtrAtRT()
/external/llvm/lib/CodeGen/
DLiveDebugVariables.cpp463 UserValue *&Leader = userVarMap[Var]; in getUserValue() local
464 if (Leader) { in getUserValue()
465 UserValue *UV = Leader->getLeader(); in getUserValue()
466 Leader = UV; in getUserValue()
475 Leader = UserValue::merge(Leader, UV); in getUserValue()
481 UserValue *&Leader = virtRegToEqClass[VirtReg]; in mapVirtReg() local
482 Leader = UserValue::merge(Leader, EC); in mapVirtReg()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_bookend.cpp19 {XFA_Attribute::Leader, XFA_AttributeType::CData, nullptr},
Dcxfa_overflow.cpp20 {XFA_Attribute::Leader, XFA_AttributeType::CData, nullptr},
Dcxfa_breakbefore.cpp27 {XFA_Attribute::Leader, XFA_AttributeType::CData, nullptr},
Dcxfa_breakafter.cpp27 {XFA_Attribute::Leader, XFA_AttributeType::CData, nullptr},
Delement_attributes.inc49 ELEM_ATTR____(BreakBefore, Leader, CJX_Object::ScriptAttributeString)
364 ELEM_ATTR____(Overflow, Leader, CJX_Object::ScriptAttributeString)
451 ELEM_ATTR____(Bookend, Leader, CJX_Object::ScriptAttributeString)
483 ELEM_ATTR____(BreakAfter, Leader, CJX_Object::ScriptAttributeString)
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveDebugVariables.cpp587 UserValue *&Leader = userVarMap[Var]; in getUserValue() local
588 if (Leader) { in getUserValue()
589 UserValue *UV = Leader->getLeader(); in getUserValue()
590 Leader = UV; in getUserValue()
599 Leader = UserValue::merge(Leader, UV); in getUserValue()
605 UserValue *&Leader = virtRegToEqClass[VirtReg]; in mapVirtReg() local
606 Leader = UserValue::merge(Leader, EC); in mapVirtReg()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DNewGVN.cpp303 CongruenceClass(unsigned ID, Value *Leader, const Expression *E) in CongruenceClass() argument
304 : ID(ID), RepLeader(Leader), DefiningExpr(E) {} in CongruenceClass()
318 void setLeader(Value *Leader) { RepLeader = Leader; } in setLeader() argument
329 void setStoredValue(Value *Leader) { RepStoredValue = Leader; } in setStoredValue() argument
331 void setMemoryLeader(const MemoryAccess *Leader) { RepMemoryAccess = Leader; } in setMemoryLeader() argument
699 CongruenceClass *createCongruenceClass(Value *Leader, const Expression *E) { in createCongruenceClass() argument
700 auto *result = new CongruenceClass(NextCongruenceNum++, Leader, E); in createCongruenceClass()
3531 auto Leader = lookupOperandLeader(SI->getValueOperand()); in convertClassToDFSOrdered() local
3532 if (alwaysAvailable(Leader)) { in convertClassToDFSOrdered()
3533 VDDef.Def.setPointer(Leader); in convertClassToDFSOrdered()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DNewGVN.cpp302 CongruenceClass(unsigned ID, Value *Leader, const Expression *E) in CongruenceClass() argument
303 : ID(ID), RepLeader(Leader), DefiningExpr(E) {} in CongruenceClass()
317 void setLeader(Value *Leader) { RepLeader = Leader; } in setLeader() argument
328 void setStoredValue(Value *Leader) { RepStoredValue = Leader; } in setStoredValue() argument
330 void setMemoryLeader(const MemoryAccess *Leader) { RepMemoryAccess = Leader; } in setMemoryLeader() argument
696 CongruenceClass *createCongruenceClass(Value *Leader, const Expression *E) { in createCongruenceClass() argument
697 auto *result = new CongruenceClass(NextCongruenceNum++, Leader, E); in createCongruenceClass()
3578 auto Leader = lookupOperandLeader(SI->getValueOperand()); in convertClassToDFSOrdered() local
3579 if (alwaysAvailable(Leader)) { in convertClassToDFSOrdered()
3580 VDDef.Def.setPointer(Leader); in convertClassToDFSOrdered()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DVectorUtils.cpp413 Value *Leader = ECs.getOrInsertLeaderValue(Val); in computeMinimumValueSizes() local
430 DBits[Leader] |= V; in computeMinimumValueSizes()
444 DBits[Leader] |= ~0ULL; in computeMinimumValueSizes()
454 if (DBits[Leader] == ~0ULL) in computeMinimumValueSizes()
459 ECs.unionSets(Leader, O); in computeMinimumValueSizes()
/external/llvm-project/llvm/lib/Analysis/
DVectorUtils.cpp527 Value *Leader = ECs.getOrInsertLeaderValue(Val); in computeMinimumValueSizes() local
544 DBits[Leader] |= V; in computeMinimumValueSizes()
558 DBits[Leader] |= ~0ULL; in computeMinimumValueSizes()
568 if (DBits[Leader] == ~0ULL) in computeMinimumValueSizes()
573 ECs.unionSets(Leader, O); in computeMinimumValueSizes()
DLoopAccessAnalysis.cpp682 Value *Leader = DepCands.getLeaderValue(Access).getPointer(); in createCheckForAccess() local
683 unsigned &LeaderId = DepSetId[Leader]; in createCheckForAccess()
/external/llvm/lib/IR/
DMetadata.cpp1141 for (auto Leader = Attachments.begin(), E = Attachments.end(); Leader != E; in erase() local
1142 ++Leader) { in erase()
1143 if (Leader->MDKind != ID) { in erase()
1144 if (Follower != Leader) in erase()
1145 *Follower = std::move(*Leader); in erase()
/external/llvm-project/llvm/lib/CodeGen/
DLiveDebugVariables.cpp615 UserValue *&Leader = virtRegToEqClass[VirtReg]; in mapVirtReg() local
616 Leader = UserValue::merge(Leader, EC); in mapVirtReg()
/external/pdfium/xfa/fxfa/
Dcxfa_textparser.cpp42 Leader, enumerator
/external/pdfium/xfa/fxfa/layout/
Dcxfa_viewlayoutprocessor.cpp802 wsBreakLeader = pCurNode->JSObject()->GetCData(XFA_Attribute::Leader); in ExecuteBreakBeforeOrAfter()
1003 pOverflowNode->JSObject()->GetCData(XFA_Attribute::Leader); in BreakOverflow()
1081 bLeader ? XFA_Attribute::Leader : XFA_Attribute::Trailer); in ResolveBookendLeaderOrTrailer()
/external/llvm-project/polly/lib/Analysis/
DScopBuilder.cpp2036 Instruction *Leader = UnionFind.getLeaderValue(Inst); in joinOrderedInstructions() local
2041 bool Inserted = SeenLeaders.insert(Leader); in joinOrderedInstructions()
2055 if (Prev == Leader) in joinOrderedInstructions()
2057 UnionFind.unionSets(Prev, Leader); in joinOrderedInstructions()

12