Home
last modified time | relevance | path

Searched refs:Gap (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DGOFFObjectWriter.cpp82 size_t Gap = 0; member in __anonc8770be50111::GOFFOstream
160 size_t Gap; in newRecord() local
162 Gap = (RemainingSize % GOFF::RecordContentLength); in newRecord()
163 if (Gap) { in newRecord()
164 Gap = GOFF::RecordContentLength - Gap; in newRecord()
165 RemainingSize += Gap; in newRecord()
176 assert(Remains == Gap && "Wrong size of fill gap"); in fillRecord()
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dahci-ceva.txt13 CIBGN : COMINIT Burst Gap Nominal.
14 CIBGMX: COMINIT Burst Gap Maximum.
15 CIBGMN: COMINIT Burst Gap Minimum.
20 CWBGMN: COMWAKE Burst Gap Minimum.
21 CWBGMX: COMWAKE Burst Gap Maximum.
22 CWBGN: COMWAKE Burst Gap Nominal.
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSymbol.cpp107 LVLocation *Gap = getReader().createLocationSymbol(); in addLocationGap() local
108 Gap->setParent(this); in addLocationGap()
109 Gap->setAttr(dwarf::DW_AT_location); in addLocationGap()
110 Gap->addObject(LowPC, HighPC, in addLocationGap()
114 LVLocations::iterator Iter = Locations->insert(Pos, Gap); in addLocationGap()
117 Gap->addObject(dwarf::DW_OP_hi_user, {}); in addLocationGap()
120 Gap->setIsGapEntry(); in addLocationGap()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp188 void setGap(bool Gap) { GapRegion = Gap; } in setGap() argument
1457 auto Gap = findGapAreaBetween(getEnd(LastStmt), getStart(Child)); in VisitStmt() local
1458 if (Gap) in VisitStmt()
1459 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), in VisitStmt()
1599 auto Gap = findGapAreaBetween(S->getRParenLoc(), getStart(S->getBody())); in VisitWhileStmt() local
1600 if (Gap) in VisitWhileStmt()
1601 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitWhileStmt()
1719 auto Gap = findGapAreaBetween(S->getRParenLoc(), getStart(S->getBody())); in VisitForStmt() local
1720 if (Gap) in VisitForStmt()
1721 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount); in VisitForStmt()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1519 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) { in calcGapWeights() local
1521 while (Uses[Gap+1].getBoundaryIndex() < IntI.start()) in calcGapWeights()
1522 if (++Gap == NumGaps) in calcGapWeights()
1524 if (Gap == NumGaps) in calcGapWeights()
1529 for (; Gap != NumGaps; ++Gap) { in calcGapWeights()
1530 GapWeight[Gap] = std::max(GapWeight[Gap], weight); in calcGapWeights()
1531 if (Uses[Gap+1].getBaseIndex() >= IntI.stop()) in calcGapWeights()
1534 if (Gap == NumGaps) in calcGapWeights()
1546 for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) { in calcGapWeights() local
1547 while (Uses[Gap+1].getBoundaryIndex() < I->start) in calcGapWeights()
[all …]
H A DSwitchLoweringUtils.cpp219 uint64_t Gap = (Low - PreviousHigh).getLimitedValue() - 1; in buildJumpTable() local
220 for (uint64_t J = 0; J < Gap; J++) in buildJumpTable()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp20 Error operator()(CodeViewRecordIO &IO, LocalVariableAddrGap &Gap) const { in operator ()()
21 error(IO.mapInteger(Gap.GapStartOffset)); in operator ()()
22 error(IO.mapInteger(Gap.Range)); in operator ()()
H A DSymbolDumper.cpp90 for (auto &Gap : Gaps) { in printLocalVariableAddrGap() local
92 W.printHex("GapStartOffset", Gap.GapStartOffset); in printLocalVariableAddrGap()
93 W.printHex("Range", Gap.Range); in printLocalVariableAddrGap()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp230 static void mapping(IO &io, LocalVariableAddrGap &Gap) { in mapping()
231 io.mapRequired("GapStartOffset", Gap.GapStartOffset); in mapping()
232 io.mapRequired("Range", Gap.Range); in mapping()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp275 IntRange Gap = {GapLow, GapHigh}; in SwitchConvert() local
276 if (GapHigh.sge(GapLow) && IsInRanges(Gap, UnreachableRanges)) in SwitchConvert()
/freebsd/share/misc/
H A Dscsi_modes391 {Gap Size} i1
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp720 for (const LocalVariableAddrGap &Gap : Gaps) { in printLocalVariableAddrGap() local
722 W.printHex("GapStartOffset", Gap.GapStartOffset); in printLocalVariableAddrGap()
723 W.printHex("Range", Gap.Range); in printLocalVariableAddrGap()