/external/llvm/include/llvm/ADT/ |
D | EquivalenceClasses.h | 71 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/ |
D | EquivalenceClasses.h | 72 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/ |
D | EquivalenceClasses.h | 72 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/ |
D | IntEqClasses.cpp | 70 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/ |
D | IntEqClasses.cpp | 69 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/ |
D | IntEqClasses.cpp | 70 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/ |
D | VectorUtils.cpp | 354 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()
|
D | LoopAccessAnalysis.cpp | 625 Value *Leader = DepCands.getLeaderValue(Access).getPointer(); in canCheckPtrAtRT() local 626 unsigned &LeaderId = DepSetId[Leader]; in canCheckPtrAtRT()
|
/external/llvm/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 463 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/ |
D | cxfa_bookend.cpp | 19 {XFA_Attribute::Leader, XFA_AttributeType::CData, nullptr},
|
D | cxfa_overflow.cpp | 20 {XFA_Attribute::Leader, XFA_AttributeType::CData, nullptr},
|
D | cxfa_breakbefore.cpp | 27 {XFA_Attribute::Leader, XFA_AttributeType::CData, nullptr},
|
D | cxfa_breakafter.cpp | 27 {XFA_Attribute::Leader, XFA_AttributeType::CData, nullptr},
|
D | element_attributes.inc | 49 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/ |
D | LiveDebugVariables.cpp | 587 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/ |
D | NewGVN.cpp | 303 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/ |
D | NewGVN.cpp | 302 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/ |
D | VectorUtils.cpp | 413 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/ |
D | VectorUtils.cpp | 527 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()
|
D | LoopAccessAnalysis.cpp | 682 Value *Leader = DepCands.getLeaderValue(Access).getPointer(); in createCheckForAccess() local 683 unsigned &LeaderId = DepSetId[Leader]; in createCheckForAccess()
|
/external/llvm/lib/IR/ |
D | Metadata.cpp | 1141 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/ |
D | LiveDebugVariables.cpp | 615 UserValue *&Leader = virtRegToEqClass[VirtReg]; in mapVirtReg() local 616 Leader = UserValue::merge(Leader, EC); in mapVirtReg()
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_textparser.cpp | 42 Leader, enumerator
|
/external/pdfium/xfa/fxfa/layout/ |
D | cxfa_viewlayoutprocessor.cpp | 802 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/ |
D | ScopBuilder.cpp | 2036 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()
|