/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCELFExtras.h | 34 auto CR = ToCrel(R); in encodeCrel() local 35 auto DeltaOffset = static_cast<uint>((CR.r_offset - Offset) >> Shift); in encodeCrel() 36 Offset = CR.r_offset; in encodeCrel() 37 uint8_t B = (DeltaOffset << 3) + (SymIdx != CR.r_symidx) + in encodeCrel() 38 (Type != CR.r_type ? 2 : 0) + in encodeCrel() 39 (Addend != uint(CR.r_addend) ? 4 : 0); in encodeCrel() 48 encodeSLEB128(static_cast<int32_t>(CR.r_symidx - SymIdx), OS); in encodeCrel() 49 SymIdx = CR.r_symidx; in encodeCrel() 52 encodeSLEB128(static_cast<int32_t>(CR.r_type - Type), OS); in encodeCrel() 53 Type = CR.r_type; in encodeCrel() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | ConstantRange.cpp | 98 const ConstantRange &CR) { in makeAllowedICmpRegion() argument 99 if (CR.isEmptySet()) in makeAllowedICmpRegion() 100 return CR; in makeAllowedICmpRegion() 102 uint32_t W = CR.getBitWidth(); in makeAllowedICmpRegion() 107 return CR; in makeAllowedICmpRegion() 109 if (CR.isSingleElement()) in makeAllowedICmpRegion() 110 return ConstantRange(CR.getUpper(), CR.getLower()); in makeAllowedICmpRegion() 113 APInt UMax(CR.getUnsignedMax()); in makeAllowedICmpRegion() 119 APInt SMax(CR.getSignedMax()); in makeAllowedICmpRegion() 125 return getNonEmpty(APInt::getMinValue(W), CR.getUnsignedMax() + 1); in makeAllowedICmpRegion() [all …]
|
H A D | AttributeImpl.h | 131 const ConstantRange &CR) { in Profile() argument 133 CR.getLower().Profile(ID); in Profile() 134 CR.getUpper().Profile(ID); in Profile() 141 for (auto &CR : Val) { in Profile() 142 CR.getLower().Profile(ID); in Profile() 143 CR.getUpper().Profile(ID); in Profile() 235 ConstantRange CR; variable 238 ConstantRangeAttributeImpl(Attribute::AttrKind Kind, const ConstantRange &CR) in ConstantRangeAttributeImpl() argument 239 : EnumAttributeImpl(ConstantRangeAttrEntry, Kind), CR(CR) {} in ConstantRangeAttributeImpl() 241 const ConstantRange &getConstantRangeValue() const { return CR; } in getConstantRangeValue()
|
H A D | ConstantRangeList.cpp | 169 &Result](const ConstantRange &CR) { in unionWith() argument 170 if (PreviousRange.getUpper().slt(CR.getLower())) { in unionWith() 172 PreviousRange = CR; in unionWith() 176 APIntOps::smax(PreviousRange.getUpper(), CR.getUpper())); in unionWith() 233 interleaveComma(Ranges, OS, [&](ConstantRange CR) { in print() argument 234 OS << "(" << CR.getLower() << ", " << CR.getUpper() << ")"; in print()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVMergeRegionExitTargets.cpp | 136 const SPIRV::ConvergenceRegion *CR) { in runOnConvergenceRegionNoRecurse() argument 139 for (BasicBlock *Exit : CR->Exits) { in runOnConvergenceRegionNoRecurse() 141 if (CR->Blocks.count(Target) == 0) in runOnConvergenceRegionNoRecurse() 151 auto F = CR->Entry->getParent(); in runOnConvergenceRegionNoRecurse() 163 if (CR->Exits.count(&BB) != 0) in runOnConvergenceRegionNoRecurse() 198 for (auto Exit : CR->Exits) in runOnConvergenceRegionNoRecurse() 208 const SPIRV::ConvergenceRegion *CR) { in runOnConvergenceRegion() argument 209 for (auto *Child : CR->Children) in runOnConvergenceRegion() 213 return runOnConvergenceRegionNoRecurse(LI, CR); in runOnConvergenceRegion() 219 void validateRegionExits(const SPIRV::ConvergenceRegion *CR) { in validateRegionExits() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ConstantRange.h | 248 bool contains(const ConstantRange &CR) const; 269 bool isSizeStrictlySmallerThan(const ConstantRange &CR) const; 296 bool operator==(const ConstantRange &CR) const { 297 return Lower == CR.Lower && Upper == CR.Upper; 299 bool operator!=(const ConstantRange &CR) const { 300 return !operator==(CR); 316 ConstantRange difference(const ConstantRange &CR) const; 332 ConstantRange intersectWith(const ConstantRange &CR, 340 ConstantRange unionWith(const ConstantRange &CR, 346 exactIntersectWith(const ConstantRange &CR) const; [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/Analysis/ |
H A D | SPIRVConvergenceRegionAnalysis.h | 70 ConvergenceRegion(ConvergenceRegion &&CR) in ConvergenceRegion() argument 71 : DT(CR.DT), LI(CR.LI), Parent(std::move(CR.Parent)), in ConvergenceRegion() 72 Children(std::move(CR.Children)), in ConvergenceRegion() 73 ConvergenceToken(std::move(CR.ConvergenceToken)), in ConvergenceRegion() 74 Entry(std::move(CR.Entry)), Exits(std::move(CR.Exits)), in ConvergenceRegion() 75 Blocks(std::move(CR.Blocks)) {} in ConvergenceRegion()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
H A D | CoverageMapping.cpp | 1201 for (const auto &CR : enumerate(Regions)) { in buildSegmentsImpl() local 1202 auto CurStartLoc = CR.value().startLoc(); in buildSegmentsImpl() 1216 bool GapRegion = CR.value().Kind == CounterMappingRegion::GapRegion; in buildSegmentsImpl() 1219 if (CurStartLoc == CR.value().endLoc()) { in buildSegmentsImpl() 1223 (CR.index() + 1) == Regions.size() || in buildSegmentsImpl() 1224 CR.value().Kind == CounterMappingRegion::SkippedRegion; in buildSegmentsImpl() 1225 startSegment(ActiveRegions.empty() ? CR.value() : *ActiveRegions.back(), in buildSegmentsImpl() 1233 if (CR.index() + 1 == Regions.size() || in buildSegmentsImpl() 1234 CurStartLoc != Regions[CR.index() + 1].startLoc()) { in buildSegmentsImpl() 1237 startSegment(CR.value(), CurStartLoc, !GapRegion); in buildSegmentsImpl() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | ConvertUTFWrapper.cpp | 70 ConversionResult CR = ConvertUTF32toUTF8( in ConvertCodePointToUTF8() local 72 if (CR != conversionOK) in ConvertCodePointToUTF8() 120 ConversionResult CR = in convertUTF16ToUTF8String() local 122 assert(CR != targetExhausted); in convertUTF16ToUTF8String() 124 if (CR != conversionOK) { in convertUTF16ToUTF8String() 178 ConversionResult CR = in convertUTF32ToUTF8String() local 180 assert(CR != targetExhausted); in convertUTF32ToUTF8String() 182 if (CR != conversionOK) { in convertUTF32ToUTF8String() 223 ConversionResult CR = in convertUTF8ToUTF16String() local 225 assert(CR != targetExhausted); in convertUTF8ToUTF16String() [all …]
|
H A D | DJB.cpp | 43 ConversionResult CR = ConvertUTF32toUTF8(&Begin32, &C + 1, &Begin8, in toUTF8() local 45 assert(CR == conversionOK && "Case folding produced invalid char?"); in toUTF8() 46 (void)CR; in toUTF8()
|
/freebsd/contrib/ntp/scripts/stats/ |
H A D | README.timecodes | 18 <CR> ASCII carriage return (hex 0d) 31 Special characters other than <LF>, <CR> and <SP> are preceded by ^. 35 "<CR><LF>i ddd hh:mm:ss TZ=zz<CR><LF>" 53 "<CR><LF>iqyy ddd hh:mm:ss.fff ld" 78 "<CR><LF><^A>ddd:hh:mm:ssq<CR>" 95 "<CR>hh:mm:ss.f dd/mm/yy<CR>" 113 "frdzycchhSSFTttttuuxx<CR>" "ahh:mm:ss.fffs<CR>" "yy/dd/mm/ddd<CR>"
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | CallGraph.cpp | 143 for (auto &CR : ExternalCallingNode->CalledFunctions) in ReplaceExternalCallEdge() local 144 if (CR.second == Old) { in ReplaceExternalCallEdge() 145 CR.second->DropRef(); in ReplaceExternalCallEdge() 146 CR.second = New; in ReplaceExternalCallEdge() 147 CR.second->AddRef(); in ReplaceExternalCallEdge() 244 CallRecord &CR = *I; in removeOneAbstractEdgeTo() local 245 if (CR.second == Callee && !CR.first) { in removeOneAbstractEdgeTo()
|
H A D | ValueLattice.cpp | 45 const auto &CR = getConstantRange(); in getCompare() local 47 if (CR.icmp(Pred, OtherCR)) in getCompare() 49 if (CR.icmp(CmpInst::getInversePredicate(Pred), OtherCR)) in getCompare()
|
H A D | BasicAliasAnalysis.cpp | 1196 ConstantRange CR = getVScaleRange(&F, Off.getBitWidth()); in aliasGEP() local 1198 APInt UpperRange = CR.getUnsignedMax().umul_ov( in aliasGEP() 1222 ConstantRange CR = getVScaleRange(&F, Scale.getBitWidth()); in aliasGEP() local 1223 (void)CR.getSignedMax().smul_ov(Scale, Overflows); in aliasGEP() 1259 ConstantRange CR = computeConstantRange(Index.Val.V, /* ForSigned */ false, in aliasGEP() local 1263 CR = CR.intersectWith( in aliasGEP() 1266 CR = Index.Val.evaluateWith(CR).sextOrTrunc(OffsetRange.getBitWidth()); in aliasGEP() 1271 CR = CR.smul_sat(ConstantRange(Scale)); in aliasGEP() 1273 CR = CR.smul_fast(ConstantRange(Scale)); in aliasGEP() 1276 OffsetRange = OffsetRange.sub(CR); in aliasGEP() [all …]
|
H A D | LazyValueInfo.cpp | 1155 if (auto CR = Fn(RHS)) in getRangeViaSLT() local 1156 return Invert ? CR->inverse() : CR; in getRangeViaSLT() 1218 ConstantRange CR = ConstantRange::makeExactICmpRegion(EdgePred, *C); in getValueFromICmpCondition() local 1219 if (!CR.isEmptySet()) in getValueFromICmpCondition() 1221 CR.getUnsignedMin().zext(BitWidth), APInt(BitWidth, 0))); in getValueFromICmpCondition() 1231 auto CR = getRangeViaSLT( in getValueFromICmpCondition() local 1239 if (CR) in getValueFromICmpCondition() 1240 return ValueLatticeElement::getRange(*CR); in getValueFromICmpCondition() 1735 const ConstantRange &CR = Result.getConstantRange(); in getConstant() local 1736 if (const APInt *SingleVal = CR.getSingleElement()) in getConstant() [all …]
|
/freebsd/lib/libc/net/ |
H A D | nslexer.l | 53 CR \n 62 \\{CR} ; /* allow continuation */ 64 {CR} return NL;
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageSummaryInfo.cpp | 67 for (auto &CR : Function.CountedRegions) { in get() 68 if (CR.Kind != CounterMappingRegion::CodeRegion) in get() 71 if (CR.ExecutionCount != 0) in get() 52 for (auto &CR : Function.CountedRegions) { get() local
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | ContinuationRecordBuilder.cpp | 163 ContinuationRecord *CR = in createSegmentRecord() local 165 assert(CR->Kind == TypeLeafKind::LF_INDEX); in createSegmentRecord() 166 assert(CR->IndexRef == 0xB0C0B0C0); in createSegmentRecord() 167 CR->IndexRef = RefersTo->getIndex(); in createSegmentRecord()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | TpiHashing.h | 21 explicit TagRecordHash(codeview::ClassRecord CR, uint32_t Full, in TagRecordHash() 23 : FullRecordHash(Full), ForwardDeclHash(Forward), Class(std::move(CR)) { in TagRecordHash()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | TypeLoc.h | 2180 ConceptReference *CR = nullptr; member 2201 void setConceptReference(ConceptReference *CR) { getLocalData()->CR = CR; } in setConceptReference() argument 2203 ConceptReference *getConceptReference() const { return getLocalData()->CR; } in getConceptReference() 2208 if (const auto *CR = getConceptReference()) in getNestedNameSpecifierLoc() local 2209 return CR->getNestedNameSpecifierLoc(); in getNestedNameSpecifierLoc() 2214 if (const auto *CR = getConceptReference()) in getTemplateKWLoc() local 2215 return CR->getTemplateKWLoc(); in getTemplateKWLoc() 2220 if (const auto *CR = getConceptReference()) in getConceptNameLoc() local 2221 return CR->getConceptNameLoc(); in getConceptNameLoc() 2226 if (const auto *CR = getConceptReference()) in getFoundDecl() local [all …]
|
/freebsd/sys/contrib/edk2/Include/Library/ |
H A D | DebugLib.h | 568 #define CR(Record, TYPE, Field, TestSignature) \ macro 570 (TYPE *) (_ASSERT (CR has Bad Signature), Record) : \ 573 #define CR(Record, TYPE, Field, TestSignature) \ macro
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ValueLattice.h | 214 static ValueLatticeElement getRange(ConstantRange CR, 216 if (CR.isFullSet()) 219 if (CR.isEmptySet()) { 227 Res.markConstantRange(std::move(CR),
|
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/ |
H A D | SystemZ.cpp | 112 llvm::find_if(ISARevisions, [Name](const ISANameRevision &CR) { in getISARevision() argument 113 return CR.Name == Name; in getISARevision()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | GISelKnownBits.cpp | 638 ConstantRange CR = getConstantRangeFromMetadata(*Ranges); in computeNumSignBitsFromRangeMetadata() local 639 if (TyBits > CR.getBitWidth()) { in computeNumSignBitsFromRangeMetadata() 642 CR = CR.signExtend(TyBits); in computeNumSignBitsFromRangeMetadata() 645 CR = CR.zeroExtend(TyBits); in computeNumSignBitsFromRangeMetadata() 652 return std::min(CR.getSignedMin().getNumSignBits(), in computeNumSignBitsFromRangeMetadata() 653 CR.getSignedMax().getNumSignBits()); in computeNumSignBitsFromRangeMetadata()
|
/freebsd/tools/tools/nanobsd/dhcpd/ |
H A D | common | 152 CR env ASSUME_ALWAYS_YES=YES SIGNATURE_TYPE=none /usr/sbin/pkg add /usr/ports/packages/All/$1.txz 186 CR ldconfig /lib /usr/lib /usr/local/lib 187 CR ldconfig -R 188 CR ldconfig -r 190 CR "env UNAME_p=${NANO_ARCH} TARGET=${NANO_ARCH} \
|