| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64MachineFunctionInfo.h | 250 int64_t MaxOffset = std::numeric_limits<int64_t>::min(); in getCalleeSavedStackSize() local 258 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 265 MaxOffset = std::max<int64_t>(Offset + ObjSize, MaxOffset); in getCalleeSavedStackSize() 268 unsigned Size = alignTo(MaxOffset - MinOffset, 16); in getCalleeSavedStackSize()
|
| H A D | AArch64CompressJumpTables.cpp | 121 int MaxOffset = std::numeric_limits<int>::min(), in compressJumpTable() local 128 MaxOffset = std::max(MaxOffset, BlockOffset); in compressJumpTable() 143 int Span = MaxOffset - MinOffset; in compressJumpTable()
|
| H A D | AArch64InstrInfo.cpp | 2696 MaxOffset = 63; in getMemOpInfo() 2716 MaxOffset = 63; in getMemOpInfo() 2746 MaxOffset = 63; in getMemOpInfo() 2816 MaxOffset = 63; in getMemOpInfo() 2824 MaxOffset = 63; in getMemOpInfo() 2882 MaxOffset = 7; in getMemOpInfo() 2898 MaxOffset = 7; in getMemOpInfo() 2911 MaxOffset = 7; in getMemOpInfo() 2921 MaxOffset = 7; in getMemOpInfo() 2934 MaxOffset = 63; in getMemOpInfo() [all …]
|
| H A D | AArch64LoadStoreOptimizer.cpp | 605 int &MinOffset, int &MaxOffset) { in getPrePostIndexedMemOpInfo() argument 615 MaxOffset = 63; in getPrePostIndexedMemOpInfo() 618 MaxOffset = 255; in getPrePostIndexedMemOpInfo() 1787 int Scale, MinOffset, MaxOffset; in mergeUpdateInsn() local 1788 getPrePostIndexedMemOpInfo(*I, Scale, MinOffset, MaxOffset); in mergeUpdateInsn() 1861 int Scale, MinOffset, MaxOffset; in isMatchingUpdateInsn() local 1862 getPrePostIndexedMemOpInfo(MemMI, Scale, MinOffset, MaxOffset); in isMatchingUpdateInsn() 1868 if (ScaledOffset > MaxOffset || ScaledOffset < MinOffset) in isMatchingUpdateInsn()
|
| H A D | AArch64InstrInfo.h | 150 int64_t &MinOffset, int64_t &MaxOffset);
|
| H A D | AArch64FrameLowering.cpp | 944 int64_t MinOffset, MaxOffset; in convertCalleeSaveRestoreToSPPrePostIncDec() local 946 NewOpc, Scale, Width, MinOffset, MaxOffset); in convertCalleeSaveRestoreToSPPrePostIncDec() 953 CSStackSizeInc < MinOffset || CSStackSizeInc > MaxOffset) { in convertCalleeSaveRestoreToSPPrePostIncDec()
|
| /freebsd-13.1/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() 196 if (TrampolineOffset < MinOffset || TrampolineOffset > MaxOffset) { in patchFunctionExit() 225 if (TrampolineOffset < MinOffset || TrampolineOffset > MaxOffset) { in patchFunctionTailExit()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | GlobalMerge.cpp | 147 unsigned MaxOffset; member in __anon27355f490111::GlobalMerge 190 : FunctionPass(ID), MaxOffset(GlobalMergeMaxOffset) { in GlobalMerge() 196 : FunctionPass(ID), TM(TM), MaxOffset(MaximalOffset), in GlobalMerge() 472 if (MergedSize > MaxOffset) { in doMerge() 644 if (DL.getTypeAllocSize(Ty) < MaxOffset) { in doInitialization()
|
| H A D | StackProtector.cpp | 210 APInt MaxOffset(TypeSize, AllocSize); in HasAddressTaken() local 211 if (!GEP->accumulateConstantOffset(DL, Offset) || Offset.ugt(MaxOffset)) in HasAddressTaken()
|
| H A D | MachineInstr.cpp | 1303 int64_t MaxOffset = std::max(OffsetA, OffsetB); in MemOperandsHaveAlias() local 1305 return (MinOffset + LowWidth > MaxOffset); in MemOperandsHaveAlias()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopStrengthReduce.cpp | 1221 if (f.Offset > MaxOffset) in pushFixup() 1222 MaxOffset = f.Offset; in pushFixup() 1721 (MaxOffset > 0)) in isAMCompletelyFolded() 1723 MaxOffset = (uint64_t)BaseOffset + MaxOffset; in isAMCompletelyFolded() 2559 int64_t NewMaxOffset = LU.MaxOffset; in reconcileNewOffset() 2584 } else if (NewOffset > LU.MaxOffset) { in reconcileNewOffset() 2593 LU.MaxOffset = NewMaxOffset; in reconcileNewOffset() 2632 LU.MaxOffset = Offset; in getUse() 3903 if (LU.MaxOffset != LU.MinOffset) in GenerateConstantOffsets() 3904 Worklist.push_back(LU.MaxOffset); in GenerateConstantOffsets() [all …]
|
| H A D | GuardWidening.cpp | 688 const ConstantInt *MaxOffset = CurrentChecks.back().getOffset(); in combineRangeChecks() local 690 unsigned BitWidth = MaxOffset->getValue().getBitWidth(); in combineRangeChecks() 691 if ((MaxOffset->getValue() - MinOffset->getValue()) in combineRangeChecks() 695 APInt MaxDiff = MaxOffset->getValue() - MinOffset->getValue(); in combineRangeChecks() 696 const APInt &HighOffset = MaxOffset->getValue(); in combineRangeChecks()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | ArchiveWriter.cpp | 595 uint64_t MaxOffset = 8; // For the file signature. in writeArchiveToStream() local 596 uint64_t LastOffset = MaxOffset; in writeArchiveToStream() 600 LastOffset = MaxOffset; in writeArchiveToStream() 602 MaxOffset += M.Header.size() + M.Data.size() + M.Padding.size(); in writeArchiveToStream()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/ |
| H A D | scudo_allocator.cpp | 616 const uptr MaxOffset = in performSanityChecks() local 618 Header.Offset = MaxOffset; in performSanityChecks() 619 if (Header.Offset != MaxOffset) in performSanityChecks()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | raw_ostream.cpp | 417 uint64_t MaxOffset = *FB.FirstByteOffset + Lines * FB.NumPerLine; in operator <<() local 419 if (MaxOffset > 0) in operator <<() 420 Power = llvm::Log2_64_Ceil(MaxOffset); in operator <<()
|
| /freebsd-13.1/contrib/ntp/scripts/monitoring/ |
| H A D | loopwatch.config.SAMPLE | 71 MaxOffset=none
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | combined.h | 1028 const uptr MaxOffset = in performSanityChecks() local 1030 Header.Offset = MaxOffset & Chunk::OffsetMask; in performSanityChecks() 1031 if (UNLIKELY(Header.Offset != MaxOffset)) in performSanityChecks()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Interp.h | 763 unsigned MaxOffset = MaxIndex - Ptr.getIndex(); in OffsetHelper() local 764 if (Add && Offset.isPositive() && Offset > MaxOffset) in OffsetHelper() 766 if (!Add && Offset.isNegative() && (Offset.isMin() || -Offset > MaxOffset)) in OffsetHelper()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLink.h | 388 assert(Offset <= MaxOffset && "Offset out of range"); in Symbol() 616 assert(NewOffset <= MaxOffset && "Offset out of range"); in setOffset() 620 static constexpr uint64_t MaxOffset = (1ULL << 59) - 1; variable
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | Thumb2SizeReduction.cpp | 583 unsigned MaxOffset = ((1 << ImmLimit) - 1) * Scale; in ReduceLoadStore() local 585 if ((OffsetImm & (Scale - 1)) || OffsetImm > MaxOffset) in ReduceLoadStore()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | llvm-objdump.cpp | 1435 uint64_t MaxOffset = End - Index; in disassembleObject() local 1439 MaxOffset = std::min(RelCur->getOffset() - RelAdjustment - Index, in disassembleObject() 1440 MaxOffset); in disassembleObject() 1443 countSkippableZeroBytes(Bytes.slice(Index, MaxOffset))) { in disassembleObject()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
| H A D | Object.cpp | 2325 uint64_t MaxOffset = 0; in layoutSegmentsForOnlyKeepDebug() local 2357 MaxOffset = std::max(MaxOffset, Offset + FileSize); in layoutSegmentsForOnlyKeepDebug() 2359 return MaxOffset; in layoutSegmentsForOnlyKeepDebug()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIRegisterInfo.cpp | 1072 int64_t MaxOffset = Offset + Size + RemSize - EltSize; in buildSpillLoadStore() local 1087 IsFlat ? TII->isLegalFLATOffset(MaxOffset, AMDGPUAS::PRIVATE_ADDRESS, in buildSpillLoadStore() 1089 : SIInstrInfo::isLegalMUBUFImmOffset(MaxOffset); in buildSpillLoadStore()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 32340 unsigned MaxOffset = TotalNumIntRegs * 8 + in EmitVAARGWithCustomInserter() local 32420 .addImm(MaxOffset + 8 - ArgSizeA8); in EmitVAARGWithCustomInserter()
|