Home
last modified time | relevance | path

Searched refs:DA (Results 1 – 25 of 151) sorted by relevance

1234567

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp67 const DWARFDebugAbbrev *DA, const DWARFSection *RS, in addUnitsImpl() argument
109 U = std::make_unique<DWARFTypeUnit>(Context, InfoSection, Header, DA, in addUnitsImpl()
114 DA, RS, LocSection, SS, SOS, in addUnitsImpl()
195 const DWARFUnitHeader &Header, const DWARFDebugAbbrev *DA, in DWARFUnit() argument
200 : Context(DC), InfoSection(Section), Header(Header), Abbrev(DA), in DWARFUnit()
231 DWARFDataExtractor DA(Context.getDWARFObj(), *AddrOffsetSection, in getAddrOffsetSectionItem() local
234 uint64_t Address = DA.getRelocatedAddress(&Offset, &Section); in getAddrOffsetSectionItem()
249 DWARFDataExtractor DA(Context.getDWARFObj(), StringOffsetSection, in getStringOffsetSectionItem() local
251 return DA.getRelocatedValue(ItemSize, &Offset); in getStringOffsetSectionItem()
536 DWARFDataExtractor DA(Context.getDWARFObj(), StringOffsetSection, in tryExtractDIEsIfNeeded() local
[all …]
H A DDWARFVerifier.cpp1918 DWARFDataExtractor DA(DObj, Section, DCtx.isLittleEndian(), 0); in verifyDebugStrOffsets() local
1922 while (C.seek(NextUnit), C.tell() < DA.getData().size()) { in verifyDebugStrOffsets()
1928 Length = DA.getData().size(); in verifyDebugStrOffsets()
1931 std::tie(Length, Format) = DA.getInitialLength(C); in verifyDebugStrOffsets()
1934 if (C.tell() + Length > DA.getData().size()) { in verifyDebugStrOffsets()
1944 C.tell() + Length, DA.getData().size()); in verifyDebugStrOffsets()
1951 uint8_t Version = DA.getU16(C); in verifyDebugStrOffsets()
1962 (void)DA.getU16(C); // padding in verifyDebugStrOffsets()
1965 DA.setAddressSize(OffsetByteSize); in verifyDebugStrOffsets()
1978 uint64_t StrOff = DA.getAddress(C); in verifyDebugStrOffsets()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp271 for (NodeAddr<DefNode *> DA : TA.Addr->members_if(DefInSet, DFG)) { in getAllReachingDefs()
272 RegisterRef QR = DA.Addr->getRegRef(DFG); in getAllReachingDefs()
282 Ds.push_back(DA); in getAllReachingDefs()
285 for (NodeAddr<DefNode *> DA : Ds) { in getAllReachingDefs()
288 uint16_t Flags = DA.Addr->getFlags(); in getAllReachingDefs()
291 RRs.insert(DA.Addr->getRegRef(DFG)); in getAllReachingDefs()
295 auto DeadP = [](const NodeAddr<DefNode *> DA) -> bool { in getAllReachingDefs() argument
296 return DA.Addr->getFlags() & NodeAttrs::Dead; in getAllReachingDefs()
319 const auto DA = DFG.addr<const DefNode *>(D); in getAllReachingDefsRecImpl() local
320 if (!(DA.Addr->getFlags() & NodeAttrs::PhiRef)) in getAllReachingDefsRecImpl()
[all …]
H A DRDFGraph.cpp440 void DefNode::linkToDef(NodeId Self, Def DA) { in linkToDef() argument
441 RefData.RD = DA.Id; in linkToDef()
442 RefData.Sib = DA.Addr->getReachedDef(); in linkToDef()
443 DA.Addr->setReachedDef(Self); in linkToDef()
447 void UseNode::linkToDef(NodeId Self, Def DA) { in linkToDef() argument
448 RefData.RD = DA.Id; in linkToDef()
449 RefData.Sib = DA.Addr->getReachedUse(); in linkToDef()
450 DA.Addr->setReachedUse(Self); in linkToDef()
793 Def DA = NA; in cloneNode() local
794 DA.Addr->setReachedDef(0); in cloneNode()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DRDFDeadCode.cpp95 void DeadCodeElimination::processDef(NodeAddr<DefNode*> DA, in processDef() argument
97 NodeAddr<InstrNode*> IA = DA.Addr->getOwner(DFG); in processDef()
102 for (NodeAddr<DefNode*> TA : DFG.getRelatedRefs(IA, DA)) in processDef()
108 for (NodeAddr<DefNode*> DA : LV.getAllReachingDefs(UA)) { in processUse()
109 if (!LiveNodes.count(DA.Id)) in processUse()
110 WorkQ.push_back(DA.Id); in processUse()
152 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) in collect()
153 if (LiveNodes.count(DA.Id)) in collect()
H A DHexagonRDFOpt.cpp258 auto IsDead = [this] (NodeAddr<DefNode*> DA) -> bool { in rewrite() argument
259 return getDeadNodes().count(DA.Id); in rewrite()
263 for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG)) { in rewrite()
264 if (&DA.Addr->getOp() != &Op) in rewrite()
266 Defs = DFG.getRelatedRefs(IA, DA); in rewrite()
H A DRDFCopy.cpp184 for (NodeAddr<DefNode*> DA : SA.Addr->members_if(DFG.IsDef, DFG)) { in run()
185 RegisterRef DR = DA.Addr->getRegRef(DFG); in run()
196 for (NodeId N = DA.Addr->getReachedUse(), NextN; N; N = NextN) { in run()
H A DHexagonOptAddrMode.cpp236 NodeAddr<UseNode *> DA = DFG->addr<UseNode *>(DI); in allValidCandidates()
237 NodeAddr<StmtNode *> TempIA = DA.Addr->getOwner(*DFG); in allValidCandidates()
250 for (NodeAddr<DefNode *> DA : SA.Addr->members_if(DFG->IsDef, *DFG)) { in getAllRealUses()
252 << Print<NodeAddr<DefNode *>>(DA, *DFG) << "\n"); in getAllRealUses()
253 RegisterRef DR = DA.Addr->getRegRef(*DFG); in getAllRealUses()
255 auto UseSet = LV->getAllReachedUses(DR, DA); in getAllRealUses()
H A DRDFDeadCode.h60 void processDef(NodeAddr<DefNode*> DA, SetQueue<NodeId> &WorkQ);
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DGenericUniformityInfo.h50 DA->initialize(); in compute()
51 DA->compute(); in compute()
84 std::unique_ptr<ImplT, GenericUniformityAnalysisImplDeleter<ImplT>> DA;
86 std::unique_ptr<ImplT, GenericUniformityAnalysisImplDeleter<ImplT>> DA; global() variable
H A DGenericUniformityImpl.h1142 DA.reset(new ImplT{DT, CI, TTI}); in GenericUniformityInfo()
1215 return DA->hasDivergence(); in hasDivergence()
1221 return DA->getFunction(); in getFunction()
1227 return DA->isDivergent(V); in isDivergent()
1232 return DA->isDivergent(*I); in isDivergent()
1237 return DA->isDivergentUse(U); in isDivergentUse()
1242 return DA->hasDivergentTerminator(B); in hasDivergentTerminator()
1248 DA->print(out); in print()
/freebsd/contrib/arm-optimized-routines/math/
H A Derf.c18 #define DA __erf_data.erf_ratio_D_A macro
83 r1d = fma (x2, DA[0], 1.0); in erf()
84 r2d = fma (x2, DA[2], DA[1]); in erf()
85 r3d = fma (x2, DA[4], DA[3]); in erf()
/freebsd/contrib/ntp/ntpd/
H A Drefclock_wwv.c311 #define DA 4 /* day digits (3) */ macro
349 {DECIM9, DA}, /* 34 */
354 {DECIM9, DA + 1}, /* 39 p4 */
359 {DECIM3, DA + 2}, /* 44 */
705 up->decvec[DA].radix = 10; /* days */ in wwv_start()
706 up->decvec[DA + 1].radix = 10; in wwv_start()
707 up->decvec[DA + 2].radix = 4; in wwv_start()
2075 pp->day = up->decvec[DA].digit + up->decvec[DA + in wwv_clock()
2076 1].digit * 10 + up->decvec[DA in wwv_clock()
[all...]
/freebsd/contrib/file/magic/Magdir/
H A Dasf14 >0 guid D6E229D3-35DA-11D1-9034-00A0C90349BE ASF_Index_Object
60 >0 guid D6E229DC-35DA-11D1-9034-00A0C90349BE ASF_Bitrate_Mutual_Exclusion_Object
85 >0 guid D6E229DF-35DA-11D1-9034-00A0C90349BE ASF_Index_Parameters_Object
105 >0 guid D6E22A00-35DA-11D1-9034-00A0C90349BE ASF_Mutex_Language
106 >0 guid D6E22A01-35DA-11D1-9034-00A0C90349BE ASF_Mutex_Bitrate
107 >0 guid D6E22A02-35DA-11D1-9034-00A0C90349BE ASF_Mutex_Unknown
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFCompileUnit.h25 const DWARFUnitHeader &Header, const DWARFDebugAbbrev *DA, in DWARFCompileUnit() argument
30 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS, in DWARFCompileUnit()
H A DDWARFTypeUnit.h27 const DWARFUnitHeader &Header, const DWARFDebugAbbrev *DA, in DWARFTypeUnit() argument
32 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS, in DWARFTypeUnit()
H A DDWARFUnit.h178 const DWARFSection &Section, const DWARFDebugAbbrev *DA,
208 validateContributionSize(DWARFDataExtractor &DA);
298 determineStringOffsetsTableContribution(DWARFDataExtractor &DA);
305 determineStringOffsetsTableContributionDWO(DWARFDataExtractor &DA);
309 const DWARFUnitHeader &Header, const DWARFDebugAbbrev *DA,
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h594 void linkToDef(NodeId Self, Def DA);
598 void linkToDef(NodeId Self, Def DA);
750 void push(Def DA) { Stack.push_back(DA); } in push()
807 void unlinkDef(Def DA, bool RemoveFromOwner) { in unlinkDef()
808 unlinkDefDF(DA); in unlinkDef()
810 removeFromOwner(DA); in unlinkDef()
840 static bool IsPreservingDef(const Def DA) { in IsPreservingDef()
841 uint16_t Flags = DA.Addr->getFlags(); in IsPreservingDef()
880 void unlinkDefDF(Def DA);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp20 DwarfFile::DwarfFile(AsmPrinter *AP, StringRef Pref, BumpPtrAllocator &DA) in DwarfFile() argument
21 : Asm(AP), Abbrevs(AbbrevAllocator), StrPool(DA, *Asm, Pref) {} in DwarfFile()
/freebsd/share/msgdef/
H A Dsl_SI.ISO8859-2.src6 da:d:DA:D:yes:y:YES:Y
H A Dro_RO.ISO8859-2.src13 da:d:DA:D:yes:y:YES:Y
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Deverest,es7134.txt1 ES7134 i2s DA converter
/freebsd/share/msgdef_unicode/
H A Dsr_RS.UTF-8@latin.src13 da:d:DA:D:yes:y:YES:Y
H A Dro_RO.UTF-8.src13 da:d:DA:D:yes:y:YES:Y
/freebsd/contrib/libxo/tests/gettext/
H A Dldns.pot11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

1234567