/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64MachineFunctionInfo.h | 337 int64_t MaxOffset = std::numeric_limits<int64_t>::min(); in getCalleeSavedStackSize() local 345 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 352 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 359 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 362 unsigned Size = alignTo(MaxOffset - MinOffset, 16); in getCalleeSavedStackSize()
|
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 | AArch64InstrInfo.cpp | 2926 int64_t MinOffset, MaxOffset; in canFoldIntoAddrMode() local 2932 MaxOffset = 252; in canFoldIntoAddrMode() 2936 MaxOffset = 504; in canFoldIntoAddrMode() 2940 MaxOffset = 1008; in canFoldIntoAddrMode() 2943 return OldOffset < MinOffset || OldOffset > MaxOffset || in canFoldIntoAddrMode() 2944 (NewOffset >= MinOffset && NewOffset <= MaxOffset); in canFoldIntoAddrMode() 3548 int64_t &MaxOffset) { in getMemOpInfo() argument 3554 MinOffset = MaxOffset = 0; in getMemOpInfo() 3562 MaxOffset = 4095; in getMemOpInfo() 3572 MaxOffset = 4095; in getMemOpInfo() [all …]
|
H A D | AArch64LowerHomogeneousPrologEpilog.cpp | 225 int64_t MinOffset, MaxOffset; in emitStore() local 227 AArch64InstrInfo::getMemOpInfo(Opc, Scale, Width, MinOffset, MaxOffset); in emitStore() 266 int64_t MinOffset, MaxOffset; in emitLoad() local 268 AArch64InstrInfo::getMemOpInfo(Opc, Scale, Width, MinOffset, MaxOffset); in emitLoad()
|
H A D | AArch64LoadStoreOptimizer.cpp | 600 int &MinOffset, int &MaxOffset) { in getPrePostIndexedMemOpInfo() argument 610 MaxOffset = 63; in getPrePostIndexedMemOpInfo() 613 MaxOffset = 255; in getPrePostIndexedMemOpInfo() 2004 int Scale, MinOffset, MaxOffset; in mergeUpdateInsn() local 2005 getPrePostIndexedMemOpInfo(*I, Scale, MinOffset, MaxOffset); in mergeUpdateInsn() 2081 int Scale, MinOffset, MaxOffset; in isMatchingUpdateInsn() local 2082 getPrePostIndexedMemOpInfo(MemMI, Scale, MinOffset, MaxOffset); in isMatchingUpdateInsn() 2088 if (ScaledOffset > MaxOffset || ScaledOffset < MinOffset) in isMatchingUpdateInsn()
|
H A D | AArch64InstrInfo.h | 322 int64_t &MinOffset, int64_t &MaxOffset);
|
/freebsd/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/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/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 | 1337 Immediate MaxOffset = Immediate::getFixedMin(); member in __anonc21373340811::LSRUse 1373 if (Immediate::isKnownGT(f.Offset, MaxOffset)) in pushFixup() 1374 MaxOffset = f.Offset; in pushFixup() 1880 Immediate MinOffset, Immediate MaxOffset, in isAMCompletelyFolded() argument 1886 BaseOffset.isScalable() != MaxOffset.isScalable())) in isAMCompletelyFolded() 1891 int64_t Max = MaxOffset.getKnownMinValue(); in isAMCompletelyFolded() 1897 MaxOffset = Immediate::get((uint64_t)Base + Max, MaxOffset.isScalable()); in isAMCompletelyFolded() 1901 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset, in isAMCompletelyFolded() 1906 Immediate MinOffset, Immediate MaxOffset, in isAMCompletelyFolded() argument 1917 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, in isAMCompletelyFolded() [all …]
|
H A D | GuardWidening.cpp | 904 const ConstantInt *MaxOffset = CurrentChecks.back().getOffset(); in combineRangeChecks() local 906 unsigned BitWidth = MaxOffset->getValue().getBitWidth(); in combineRangeChecks() 907 if ((MaxOffset->getValue() - MinOffset->getValue()) in combineRangeChecks() 911 APInt MaxDiff = MaxOffset->getValue() - MinOffset->getValue(); in combineRangeChecks() 912 const APInt &HighOffset = MaxOffset->getValue(); in combineRangeChecks()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | GlobalMerge.cpp | 194 Opt.MaxOffset = GlobalMergeMaxOffset; in GlobalMerge() 201 Opt.MaxOffset = MaximalOffset; in GlobalMerge() 501 if (MergedSize > Opt.MaxOffset) { in doMerge() 694 if (AllocSize < Opt.MaxOffset && AllocSize >= Opt.MinSize) { in run()
|
H A D | MachineInstr.cpp | 1369 int64_t MaxOffset = std::max(OffsetA, OffsetB); in MemOperandsHaveAlias() local 1373 return (MinOffset + LowWidth > MaxOffset); in MemOperandsHaveAlias()
|
/freebsd/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/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 | 418 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<() local 420 if (MaxOffset > 0) in operator <<() 421 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 | 581 unsigned MaxOffset = ((1 << ImmLimit) - 1) * Scale; in ReduceLoadStore() local 583 if ((OffsetImm & (Scale - 1)) || OffsetImm > MaxOffset) in ReduceLoadStore()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | combined.h | 1024 const uptr MaxOffset = in performSanityChecks() local 1026 Header.Offset = MaxOffset & Chunk::OffsetMask; in performSanityChecks() 1027 if (UNLIKELY(Header.Offset != MaxOffset)) in performSanityChecks()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIFrameLowering.cpp | 1744 uint64_t MaxOffset = EstStackSize - 1; in allocateScavengingFrameIndexesNearIncomingSP() local 1754 if (TII->isLegalFLATOffset(MaxOffset, AMDGPUAS::PRIVATE_ADDRESS, in allocateScavengingFrameIndexesNearIncomingSP() 1758 if (TII->isLegalMUBUFImmOffset(MaxOffset)) in allocateScavengingFrameIndexesNearIncomingSP()
|
H A D | SIRegisterInfo.cpp | 1364 int64_t MaxOffset = Offset + Size + RemSize - EltSize; in buildSpillLoadStore() local 1415 IsFlat ? TII->isLegalFLATOffset(MaxOffset, AMDGPUAS::PRIVATE_ADDRESS, in buildSpillLoadStore() 1417 : TII->isLegalMUBUFImmOffset(MaxOffset); in buildSpillLoadStore()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObject.cpp | 2443 uint64_t MaxOffset = 0; in layoutSegmentsForOnlyKeepDebug() local 2475 MaxOffset = std::max(MaxOffset, Offset + FileSize); in layoutSegmentsForOnlyKeepDebug() 2477 return MaxOffset; in layoutSegmentsForOnlyKeepDebug()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLink.h | 424 assert(Offset <= MaxOffset && "Offset out of range"); in Symbol() 671 static constexpr uint64_t MaxOffset = (1ULL << 59) - 1; variable
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.cpp | 2252 uint64_t MaxOffset = End - Index; in disassembleObject() local 2256 MaxOffset = std::min(RelCur->getOffset() - RelAdjustment - Index, in disassembleObject() 2257 MaxOffset); in disassembleObject() 2260 countSkippableZeroBytes(Bytes.slice(Index, MaxOffset))) { in disassembleObject()
|
/freebsd/contrib/llvm-project/clang/lib/Support/ |
H A D | RISCVVIntrinsicUtils.cpp | 834 TypeModifierMaskShift <= static_cast<unsigned>(TypeModifier::MaxOffset); in applyModifier()
|