| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64CompressJumpTables.cpp | 122 int MaxOffset = std::numeric_limits<int>::min(), in compressJumpTable() local 129 MaxOffset = std::max(MaxOffset, BlockOffset); in compressJumpTable() 144 int Span = MaxOffset - MinOffset; in compressJumpTable()
|
| H A D | AArch64MachineFunctionInfo.h | 305 int64_t MaxOffset = std::numeric_limits<int64_t>::min(); in getCalleeSavedStackSize() local 313 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 320 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 323 unsigned Size = alignTo(MaxOffset - MinOffset, 16); in getCalleeSavedStackSize()
|
| H A D | AArch64LowerHomogeneousPrologEpilog.cpp | 224 int64_t MinOffset, MaxOffset; in emitStore() local 226 AArch64InstrInfo::getMemOpInfo(Opc, Scale, Width, MinOffset, MaxOffset); in emitStore() 265 int64_t MinOffset, MaxOffset; in emitLoad() local 267 AArch64InstrInfo::getMemOpInfo(Opc, Scale, Width, MinOffset, MaxOffset); in emitLoad()
|
| H A D | AArch64InstrInfo.cpp | 3610 MaxOffset = 63; in getMemOpInfo() 3630 MaxOffset = 63; in getMemOpInfo() 3660 MaxOffset = 63; in getMemOpInfo() 3730 MaxOffset = 63; in getMemOpInfo() 3815 MaxOffset = 7; in getMemOpInfo() 3828 MaxOffset = 7; in getMemOpInfo() 3841 MaxOffset = 7; in getMemOpInfo() 3854 MaxOffset = 7; in getMemOpInfo() 3876 MaxOffset = 7; in getMemOpInfo() 3893 MaxOffset = 7; in getMemOpInfo() [all …]
|
| H A D | AArch64LoadStoreOptimizer.cpp | 598 int &MinOffset, int &MaxOffset) { in getPrePostIndexedMemOpInfo() argument 608 MaxOffset = 63; in getPrePostIndexedMemOpInfo() 611 MaxOffset = 255; in getPrePostIndexedMemOpInfo() 2002 int Scale, MinOffset, MaxOffset; in mergeUpdateInsn() local 2003 getPrePostIndexedMemOpInfo(*I, Scale, MinOffset, MaxOffset); in mergeUpdateInsn() 2079 int Scale, MinOffset, MaxOffset; in isMatchingUpdateInsn() local 2080 getPrePostIndexedMemOpInfo(MemMI, Scale, MinOffset, MaxOffset); in isMatchingUpdateInsn() 2086 if (ScaledOffset > MaxOffset || ScaledOffset < MinOffset) in isMatchingUpdateInsn()
|
| H A D | AArch64InstrInfo.h | 179 int64_t &MinOffset, int64_t &MaxOffset);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRRegisterInfo.cpp | 237 int MaxOffset = STI.hasTinyEncoding() ? 0 : 62; in eliminateFrameIndex() local 243 if (Offset > MaxOffset) { in eliminateFrameIndex() 245 int AddOffset = Offset - MaxOffset; in eliminateFrameIndex() 248 if ((Offset - MaxOffset) > 63 || !STI.hasADDSUBIW()) { in eliminateFrameIndex() 275 .addImm(Offset - MaxOffset); in eliminateFrameIndex() 277 Offset = MaxOffset; in eliminateFrameIndex()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/xray/ |
| H A D | xray_x86_64.cpp | 121 static constexpr int64_t MaxOffset{std::numeric_limits<int32_t>::max()}; variable 150 if (TrampolineOffset < MinOffset || TrampolineOffset > MaxOffset) { in patchFunctionEntry() 197 if (TrampolineOffset < MinOffset || TrampolineOffset > MaxOffset) { in patchFunctionExit() 227 if (TrampolineOffset < MinOffset || TrampolineOffset > MaxOffset) { in patchFunctionTailExit()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | GlobalMerge.h | 23 unsigned MaxOffset = 0; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | GlobalMerge.cpp | 187 Opt.MaxOffset = GlobalMergeMaxOffset; in GlobalMerge() 194 Opt.MaxOffset = MaximalOffset; in GlobalMerge() 482 if (MergedSize > Opt.MaxOffset) { in doMerge() 674 if (DL.getTypeAllocSize(Ty) < Opt.MaxOffset) { in run()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopStrengthReduce.cpp | 1237 if (f.Offset > MaxOffset) in pushFixup() 1238 MaxOffset = f.Offset; in pushFixup() 1739 (MaxOffset > 0)) in isAMCompletelyFolded() 1741 MaxOffset = (uint64_t)BaseOffset + MaxOffset; in isAMCompletelyFolded() 2570 int64_t NewMaxOffset = LU.MaxOffset; in reconcileNewOffset() 2595 } else if (NewOffset > LU.MaxOffset) { in reconcileNewOffset() 2604 LU.MaxOffset = NewMaxOffset; in reconcileNewOffset() 2643 LU.MaxOffset = Offset; in getUse() 3966 if (LU.MaxOffset != LU.MinOffset) in GenerateConstantOffsets() 3967 Worklist.push_back(LU.MaxOffset); in GenerateConstantOffsets() [all …]
|
| H A D | GuardWidening.cpp | 899 const ConstantInt *MaxOffset = CurrentChecks.back().getOffset(); in combineRangeChecks() local 901 unsigned BitWidth = MaxOffset->getValue().getBitWidth(); in combineRangeChecks() 902 if ((MaxOffset->getValue() - MinOffset->getValue()) in combineRangeChecks() 906 APInt MaxDiff = MaxOffset->getValue() - MinOffset->getValue(); in combineRangeChecks() 907 const APInt &HighOffset = MaxOffset->getValue(); in combineRangeChecks()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderIncludes.cpp | 165 unsigned MaxOffset = SM.getFileOffset(Tok.getLocation()); in getMaxHeaderInsertionOffset() local 167 MaxOffset = SM.getFileOffset(Tok.getLocation()); in getMaxHeaderInsertionOffset() 168 return MaxOffset; in getMaxHeaderInsertionOffset()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Support/ |
| H A D | RISCVVIntrinsicUtils.h | 107 MaxOffset = 7, enumerator 215 MaxOffset = 7, enumerator
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | raw_ostream.cpp | 424 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<() local 426 if (MaxOffset > 0) in operator <<() 427 Power = llvm::Log2_64_Ceil(MaxOffset); in operator <<()
|
| /freebsd-14.2/contrib/ntp/scripts/monitoring/ |
| H A D | loopwatch.config.SAMPLE | 71 MaxOffset=none
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | combined.h | 1065 const uptr MaxOffset = in performSanityChecks() local 1067 Header.Offset = MaxOffset & Chunk::OffsetMask; in performSanityChecks() 1068 if (UNLIKELY(Header.Offset != MaxOffset)) in performSanityChecks()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | Thumb2SizeReduction.cpp | 581 unsigned MaxOffset = ((1 << ImmLimit) - 1) * Scale; in ReduceLoadStore() local 583 if ((OffsetImm & (Scale - 1)) || OffsetImm > MaxOffset) in ReduceLoadStore()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaRISCVVectorLookup.cpp | 268 TypeRangeMaskShift <= static_cast<unsigned int>(BasicType::MaxOffset); in ConstructRVVIntrinsics()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIFrameLowering.cpp | 1731 uint64_t MaxOffset = EstStackSize - 1; in allocateScavengingFrameIndexesNearIncomingSP() local 1741 if (TII->isLegalFLATOffset(MaxOffset, AMDGPUAS::PRIVATE_ADDRESS, in allocateScavengingFrameIndexesNearIncomingSP() 1745 if (TII->isLegalMUBUFImmOffset(MaxOffset)) in allocateScavengingFrameIndexesNearIncomingSP()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.cpp | 2395 uint64_t MaxOffset = 0; in layoutSegmentsForOnlyKeepDebug() local 2427 MaxOffset = std::max(MaxOffset, Offset + FileSize); in layoutSegmentsForOnlyKeepDebug() 2429 return MaxOffset; in layoutSegmentsForOnlyKeepDebug()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLink.h | 423 assert(Offset <= MaxOffset && "Offset out of range"); in Symbol() 670 static constexpr uint64_t MaxOffset = (1ULL << 59) - 1; variable
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Interp.h | 1454 T MaxOffset = T::from(MaxIndex - Index, Offset.bitWidth()); in OffsetHelper() local 1461 if (Offset.isPositive() && Offset > MaxOffset) in OffsetHelper() 1469 if (Offset.isNegative() && (Offset.isMin() || -Offset > MaxOffset)) in OffsetHelper()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 2114 uint64_t MaxOffset = End - Index; in disassembleObject() local 2118 MaxOffset = std::min(RelCur->getOffset() - RelAdjustment - Index, in disassembleObject() 2119 MaxOffset); in disassembleObject() 2122 countSkippableZeroBytes(Bytes.slice(Index, MaxOffset))) { in disassembleObject()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Support/ |
| H A D | RISCVVIntrinsicUtils.cpp | 834 TypeModifierMaskShift <= static_cast<unsigned>(TypeModifier::MaxOffset); in applyModifier()
|