Searched refs:Gap (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp92 void setGap(bool Gap) { GapRegion = Gap; } argument
969 auto Gap = findGapAreaBetween(S->getCond(), S->getBody()); local
970 if (Gap)
971 fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount);
1036 auto Gap = findGapAreaBetween(getPreciseTokenLocEnd(S->getRParenLoc()), local
1038 if (Gap)
1039 fillGapAreaWithCount(Gap->getBegin(), Gap
1063 auto Gap = findGapAreaBetween(getPreciseTokenLocEnd(S->getRParenLoc()), local
1089 auto Gap = findGapAreaBetween(getPreciseTokenLocEnd(S->getRParenLoc()), local
1186 auto Gap = findGapAreaBetween(S->getCond(), S->getThen()); local
1237 auto Gap = local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp2181 for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) {
2183 while (Uses[Gap+1].getBoundaryIndex() < IntI.start())
2184 if (++Gap == NumGaps)
2186 if (Gap == NumGaps)
2191 for (; Gap != NumGaps; ++Gap) {
2192 GapWeight[Gap] = std::max(GapWeight[Gap], weight);
2193 if (Uses[Gap+1].getBaseIndex() >= IntI.stop())
2196 if (Gap
[all...]
H A DSwitchLoweringUtils.cpp213 uint64_t Gap = (Low - PreviousHigh).getLimitedValue() - 1; local
214 for (uint64_t J = 0; J < Gap; J++)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp297 IntRange Gap = { GapLow, GapHigh }; local
298 if (GapHigh >= GapLow && IsInRanges(Gap, UnreachableRanges))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp193 static void mapping(IO &io, LocalVariableAddrGap &Gap) { argument
194 io.mapRequired("GapStartOffset", Gap.GapStartOffset);
195 io.mapRequired("Range", Gap.Range);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolDumper.cpp92 for (auto &Gap : Gaps) {
94 W.printHex("GapStartOffset", Gap.GapStartOffset);
95 W.printHex("Range", Gap.Range);
H A DSymbolRecordMapping.cpp20 Error operator()(CodeViewRecordIO &IO, LocalVariableAddrGap &Gap) const {
21 error(IO.mapInteger(Gap.GapStartOffset));
22 error(IO.mapInteger(Gap.Range));

Completed in 178 milliseconds