| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64CompressJumpTables.cpp | 117 int MaxOffset = std::numeric_limits<int>::min(), in compressJumpTable() local 124 MaxOffset = std::max(MaxOffset, BlockOffset); in compressJumpTable() 139 int Span = MaxOffset - MinOffset; in compressJumpTable()
|
| H A D | AArch64MachineFunctionInfo.h | 364 int64_t MaxOffset = std::numeric_limits<int64_t>::min(); in getCalleeSavedStackSize() local 372 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 379 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 386 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 389 unsigned Size = alignTo(MaxOffset - MinOffset, 16); in getCalleeSavedStackSize()
|
| H A D | AArch64LowerHomogeneousPrologEpilog.cpp | 215 int64_t MinOffset, MaxOffset; in emitStore() local 217 AArch64InstrInfo::getMemOpInfo(Opc, Scale, Width, MinOffset, MaxOffset); in emitStore() 256 int64_t MinOffset, MaxOffset; in emitLoad() local 258 AArch64InstrInfo::getMemOpInfo(Opc, Scale, Width, MinOffset, MaxOffset); in emitLoad()
|
| H A D | AArch64InstrInfo.cpp | 3206 int64_t MinOffset, MaxOffset; in canFoldIntoAddrMode() local 3212 MaxOffset = 252; in canFoldIntoAddrMode() 3216 MaxOffset = 504; in canFoldIntoAddrMode() 3220 MaxOffset = 1008; in canFoldIntoAddrMode() 3223 return OldOffset < MinOffset || OldOffset > MaxOffset || in canFoldIntoAddrMode() 3224 (NewOffset >= MinOffset && NewOffset <= MaxOffset); in canFoldIntoAddrMode() 4053 int64_t &MaxOffset) { in getMemOpInfo() argument 4059 MinOffset = MaxOffset = 0; in getMemOpInfo() 4067 MaxOffset = 4095; in getMemOpInfo() 4077 MaxOffset = 4095; in getMemOpInfo() [all …]
|
| H A D | AArch64LoadStoreOptimizer.cpp | 666 int &MinOffset, int &MaxOffset) { in getPrePostIndexedMemOpInfo() argument 676 MaxOffset = 63; in getPrePostIndexedMemOpInfo() 679 MaxOffset = 255; in getPrePostIndexedMemOpInfo() 2303 int Scale, MinOffset, MaxOffset; in mergeUpdateInsn() local 2304 getPrePostIndexedMemOpInfo(*I, Scale, MinOffset, MaxOffset); in mergeUpdateInsn() 2435 int Scale, MinOffset, MaxOffset; in isMatchingUpdateInsn() local 2436 getPrePostIndexedMemOpInfo(MemMI, Scale, MinOffset, MaxOffset); in isMatchingUpdateInsn() 2442 if (ScaledOffset > MaxOffset || ScaledOffset < MinOffset) in isMatchingUpdateInsn()
|
| H A D | AArch64InstrInfo.h | 328 int64_t &MinOffset, int64_t &MaxOffset);
|
| H A D | AArch64ISelLowering.h | 249 int64_t MaxOffset) const override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRRegisterInfo.cpp | 232 int MaxOffset = STI.hasTinyEncoding() ? 0 : 62; in eliminateFrameIndex() local 238 if (Offset > MaxOffset) { in eliminateFrameIndex() 240 int AddOffset = Offset - MaxOffset; in eliminateFrameIndex() 243 if ((Offset - MaxOffset) > 63 || !STI.hasADDSUBIW()) { in eliminateFrameIndex() 270 .addImm(Offset - MaxOffset); in eliminateFrameIndex() 272 Offset = MaxOffset; in eliminateFrameIndex()
|
| /freebsd/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 153 if (TrampolineOffset < MinOffset || TrampolineOffset > MaxOffset) { in patchFunctionEntry() 202 if (TrampolineOffset < MinOffset || TrampolineOffset > MaxOffset) { in patchFunctionExit() 233 if (TrampolineOffset < MinOffset || TrampolineOffset > MaxOffset) { in patchFunctionTailExit()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | IntrinsicEmitter.cpp | 370 unsigned MaxOffset = 0; in EmitGenerator() local 383 MaxOffset = std::max(MaxOffset, Offset); in EmitGenerator() 393 if ((MaxOffset & Mask) != MaxOffset) in EmitGenerator()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | GlobalMerge.h | 23 unsigned MaxOffset = 0; member
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopStrengthReduce.cpp | 1317 Immediate MaxOffset = Immediate::getFixedMin(); member in __anonc21373340811::LSRUse 1353 if (Immediate::isKnownGT(f.Offset, MaxOffset)) in pushFixup() 1354 MaxOffset = f.Offset; in pushFixup() 1862 Immediate MinOffset, Immediate MaxOffset, in isAMCompletelyFolded() argument 1868 BaseOffset.isScalable() != MaxOffset.isScalable())) in isAMCompletelyFolded() 1873 int64_t Max = MaxOffset.getKnownMinValue(); in isAMCompletelyFolded() 1879 MaxOffset = Immediate::get((uint64_t)Base + Max, MaxOffset.isScalable()); in isAMCompletelyFolded() 1883 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset, in isAMCompletelyFolded() 1888 Immediate MinOffset, Immediate MaxOffset, in isAMCompletelyFolded() argument 1899 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, in isAMCompletelyFolded() [all …]
|
| H A D | GuardWidening.cpp | 903 const ConstantInt *MaxOffset = CurrentChecks.back().getOffset(); in combineRangeChecks() local 905 unsigned BitWidth = MaxOffset->getValue().getBitWidth(); in combineRangeChecks() 906 if ((MaxOffset->getValue() - MinOffset->getValue()) in combineRangeChecks() 910 APInt MaxDiff = MaxOffset->getValue() - MinOffset->getValue(); in combineRangeChecks() 911 const APInt &HighOffset = MaxOffset->getValue(); in combineRangeChecks()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | GlobalMerge.cpp | 200 Opt.MaxOffset = GlobalMergeMaxOffset; in GlobalMerge() 210 Opt.MaxOffset = MaximalOffset; in GlobalMerge() 513 if (MergedSize > Opt.MaxOffset) { in doMerge() 734 bool CanMerge = AllocSize < Opt.MaxOffset && AllocSize >= Opt.MinSize; in run()
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderIncludes.cpp | 164 unsigned MaxOffset = SM.getFileOffset(Tok.getLocation()); in getMaxHeaderInsertionOffset() local 166 MaxOffset = SM.getFileOffset(Tok.getLocation()); in getMaxHeaderInsertionOffset() 167 return MaxOffset; in getMaxHeaderInsertionOffset()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Support/ |
| H A D | RISCVVIntrinsicUtils.h | 107 MaxOffset = 7, enumerator 215 MaxOffset = 7, enumerator
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | raw_ostream.cpp | 416 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<() local 418 if (MaxOffset > 0) in operator <<() 419 Power = llvm::Log2_64_Ceil(MaxOffset); in operator <<()
|
| /freebsd/contrib/ntp/scripts/monitoring/ |
| H A D | loopwatch.config.SAMPLE | 71 MaxOffset=none
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | Thumb2SizeReduction.cpp | 578 unsigned MaxOffset = ((1 << ImmLimit) - 1) * Scale; in ReduceLoadStore() local 580 if ((OffsetImm & (Scale - 1)) || OffsetImm > MaxOffset) in ReduceLoadStore()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | combined.h | 1035 const uptr MaxOffset = in performSanityChecks() local 1037 Header.Offset = MaxOffset & Chunk::OffsetMask; in performSanityChecks() 1038 if (UNLIKELY(Header.Offset != MaxOffset)) in performSanityChecks()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIFrameLowering.cpp | 1891 uint64_t MaxOffset = EstStackSize - 1; in allocateScavengingFrameIndexesNearIncomingSP() local 1901 if (TII->isLegalFLATOffset(MaxOffset, AMDGPUAS::PRIVATE_ADDRESS, in allocateScavengingFrameIndexesNearIncomingSP() 1905 if (TII->isLegalMUBUFImmOffset(MaxOffset)) in allocateScavengingFrameIndexesNearIncomingSP()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.cpp | 2449 uint64_t MaxOffset = 0; in layoutSegmentsForOnlyKeepDebug() local 2481 MaxOffset = std::max(MaxOffset, Offset + FileSize); in layoutSegmentsForOnlyKeepDebug() 2483 return MaxOffset; in layoutSegmentsForOnlyKeepDebug()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLink.h | 442 assert(Offset <= MaxOffset && "Offset out of range"); in Symbol() 698 static constexpr uint64_t MaxOffset = (1ULL << 59) - 1; variable
|
| /freebsd/contrib/llvm-project/clang/lib/Support/ |
| H A D | RISCVVIntrinsicUtils.cpp | 831 TypeModifierMaskShift <= static_cast<unsigned>(TypeModifier::MaxOffset); in applyModifier()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 2325 uint64_t MaxOffset = End - Index; in disassembleObject() local 2329 MaxOffset = std::min(RelCur->getOffset() - RelAdjustment - Index, in disassembleObject() 2330 MaxOffset); in disassembleObject() 2333 countSkippableZeroBytes(Bytes.slice(Index, MaxOffset))) { in disassembleObject()
|