Home
last modified time | relevance | path

Searched refs:UA (Results 1 – 25 of 379) sorted by relevance

12345678910>>...16

/external/llvm/lib/Target/Hexagon/
DRDFCopy.cpp195 auto UA = DFG.addr<UseNode*>(N); in run() local
196 NextN = UA.Addr->getSibling(); in run()
197 uint16_t F = UA.Addr->getFlags(); in run()
200 if (UA.Addr->getRegRef() != DR) in run()
203 NodeAddr<InstrNode*> IA = UA.Addr->getOwner(DFG); in run()
208 MachineOperand &Op = UA.Addr->getOp(); in run()
219 DFG.unlinkUse(UA, false); in run()
221 UA.Addr->linkToDef(UA.Id, DFG.addr<DefNode*>(RDefSR_SA)); in run()
223 UA.Addr->setReachingDef(0); in run()
224 UA.Addr->setSibling(0); in run()
DRDFLiveness.cpp293 auto UA = DFG.addr<UseNode*>(U); in getAllReachedUses() local
294 auto UR = UA.Addr->getRegRef(); in getAllReachedUses()
297 U = UA.Addr->getSibling(); in getAllReachedUses()
401 auto UA = DFG.addr<UseNode*>(*I); in computePhiInfo() local
402 NodeList RDs = getAllReachingDefs(UI->first, UA); in computePhiInfo()
427 NodeAddr<UseNode*> UA = I; in computePhiInfo() local
428 auto &UpMap = PhiUp[UA.Id]; in computePhiInfo()
430 for (NodeAddr<DefNode*> DA : getAllReachingDefs(UA)) { in computePhiInfo()
477 NodeAddr<UseNode*> UA = U; in computePhiInfo() local
478 auto &UpPhis = PhiUp[UA.Id]; in computePhiInfo()
[all …]
DRDFDeadCode.cpp86 for (NodeAddr<UseNode*> UA : IA.Addr->members_if(DFG.IsUse, DFG)) { in processDef()
87 if (!LiveNodes.count(UA.Id)) in processDef()
88 WorkQ.push_back(UA.Id); in processDef()
94 void DeadCodeElimination::processUse(NodeAddr<UseNode*> UA, in processUse() argument
96 for (NodeAddr<DefNode*> DA : LV.getAllReachingDefs(UA)) { in processUse()
DHexagonOptAddrMode.cpp150 for (NodeAddr<UseNode *> UA : AddAslSN.Addr->members_if(DFG->IsUse, *DFG)) { in canRemoveAddasl()
151 RegisterRef RR = UA.Addr->getRegRef(); in canRemoveAddasl()
154 OffsetRegRD = UA.Addr->getReachingDef(); in canRemoveAddasl()
159 NodeAddr<UseNode *> UA = *I; in canRemoveAddasl() local
160 NodeAddr<InstrNode *> IA = UA.Addr->getOwner(*DFG); in canRemoveAddasl()
161 if ((UA.Addr->getFlags() & NodeAttrs::PhiRef) || in canRemoveAddasl()
222 NodeAddr<UseNode *> UA = DFG->addr<UseNode *>(UI); in getAllRealUses() local
224 NodeAddr<StmtNode *> TempIA = UA.Addr->getOwner(*DFG); in getAllRealUses()
229 if (UA.Addr->getFlags() & NodeAttrs::PhiRef) { in getAllRealUses()
230 NodeAddr<PhiNode *> PA = UA.Addr->getOwner(*DFG); in getAllRealUses()
[all …]
DRDFGraph.cpp872 NodeAddr<UseNode*> UA = newNode(NodeAttrs::Ref | NodeAttrs::Use | Flags); in newUse() local
873 UA.Addr->setRegRef(&Op); in newUse()
874 return UA; in newUse()
1266 NodeAddr<UseNode*> UA = newUse(SA, Op, Flags); in buildStmt() local
1267 SA.Addr->addMember(UA, *this); in buildStmt()
1617 void DataFlowGraph::unlinkUseDF(NodeAddr<UseNode*> UA) { in unlinkUseDF() argument
1618 NodeId RD = UA.Addr->getReachingDef(); in unlinkUseDF()
1619 NodeId Sib = UA.Addr->getSibling(); in unlinkUseDF()
1628 if (TA.Id == UA.Id) { in unlinkUseDF()
1635 if (S == UA.Id) { in unlinkUseDF()
[all …]
DRDFDeadCode.h62 void processUse(NodeAddr<UseNode*> UA, SetQueue<NodeId> &WorkQ);
DRDFGraph.h703 void unlinkUse(NodeAddr<UseNode*> UA, bool RemoveFromOwner) { in unlinkUse()
704 unlinkUseDF(UA); in unlinkUse()
706 removeFromOwner(UA); in unlinkUse()
779 void unlinkUseDF(NodeAddr<UseNode*> UA);
/external/llvm/tools/llvm-size/
Dllvm-size.cpp596 std::unique_ptr<Archive> &UA = *AOrErr; in printFileSectionSizes() local
600 for (auto &C : UA->children(Err)) { in printFileSectionSizes()
605 error(std::move(E), UA->getFileName(), C, in printFileSectionSizes()
613 outs() << o->getFileName() << " (ex " << UA->getFileName() in printFileSectionSizes()
616 outs() << UA->getFileName() << "(" << o->getFileName() in printFileSectionSizes()
623 outs() << UA->getFileName() << "(" << o->getFileName() in printFileSectionSizes()
630 outs() << o->getFileName() << " (ex " << UA->getFileName() in printFileSectionSizes()
636 error(std::move(Err), UA->getFileName()); in printFileSectionSizes()
685 std::unique_ptr<Archive> &UA = *AOrErr; in printFileSectionSizes() local
689 for (auto &C : UA->children(Err)) { in printFileSectionSizes()
[all …]
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
Dmove_convert.runtime.pass.cpp52 using UA = std::unique_ptr<A[]>; in test_sfinae() typedef
54 static_assert(!std::is_constructible<UA, UB&&>::value, ""); in test_sfinae()
57 using UA = std::unique_ptr<A[], GenericConvertingDeleter<0> >; in test_sfinae() typedef
59 static_assert(!std::is_constructible<UA, UB&&>::value, ""); in test_sfinae()
Dmove_convert.single.pass.cpp98 using UA = std::unique_ptr<A>; in test_sfinae() typedef
103 static_assert(std::is_constructible<UA, UB&&>::value, ""); in test_sfinae()
104 static_assert(!std::is_constructible<UA, UB&>::value, ""); in test_sfinae()
105 static_assert(!std::is_constructible<UA, const UB&>::value, ""); in test_sfinae()
110 static_assert(!std::is_constructible<UA, UBD&&>::value, ""); in test_sfinae()
Dpointer.pass.cpp133 using UA = std::unique_ptr<A[]>; in test_sfinae_runtime() typedef
140 static_assert(!std::is_constructible<UA, B*>::value, ""); in test_sfinae_runtime()
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.single.pass.cpp77 using UA = std::unique_ptr<A>; in test_sfinae() typedef
82 static_assert(std::is_assignable<UA, UB&&>::value, ""); in test_sfinae()
83 static_assert(!std::is_assignable<UA, UB&>::value, ""); in test_sfinae()
84 static_assert(!std::is_assignable<UA, const UB&>::value, ""); in test_sfinae()
89 static_assert(!std::is_assignable<UA, UBD&&>::value, ""); in test_sfinae()
Dmove_convert.runtime.pass.cpp81 using UA = std::unique_ptr<A[]>; in test_sfinae() typedef
87 static_assert(std::is_assignable<UAC, UA&&>::value, ""); in test_sfinae()
88 static_assert(!std::is_assignable<UAC, UA&>::value, ""); in test_sfinae()
89 static_assert(!std::is_assignable<UAC, const UA&>::value, ""); in test_sfinae()
/external/llvm/lib/Analysis/
DObjCARCAliasAnalysis.cpp57 const Value *UA = GetUnderlyingObjCPtr(SA, DL); in alias() local
59 if (UA != SA || UB != SB) { in alias()
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB)); in alias()
/external/llvm/test/DebugInfo/COFF/
Dtypes-nested-class.ll82 @"\01?a@@3UA@@A" = global %struct.A zeroinitializer, align 1
92 …ageName: "\01?a@@3UA@@A", scope: !0, file: !1, line: 3, type: !5, isLocal: false, isDefinition: tr…
/external/icu/icu4c/source/tools/tzcode/
Dicuregions14 Europe/Simferopol UA
/external/curl/tests/data/
Dtest150238 HTTP multi with CURLOPT_RESOLVE, cleanup sequence UA
/external/icu/icu4c/source/data/region/
Dfa_AF.txt89 UA{"اکراین"}
Dckb.txt181 UA{"ئۆکرانیا"}
Dyi.txt211 UA{"אוקראַינע"}
Dshi.txt210 UA{"ⵓⴽⵔⴰⵏⵢⴰ"}
Dzgh.txt213 UA{"ⵓⴽⵔⴰⵏⵢⴰ"}
Dbrx.txt262 UA{"यूक्रेन"}
/external/libcxx/test/support/
Duses_alloc_types.hpp34 inline const char* toString(UsesAllocatorType UA) { in toString() argument
35 switch (UA) { in toString()
/external/autotest/client/tests/npb/
Denable-all-tests.patch20 +# For CG, EP, FT, MG, LU, SP, BT and UA, which are in Fortran, the following
182 +# (except that no classes C,D,E for DC and no class E for IS and UA).

12345678910>>...16