/openbsd/gnu/llvm/llvm/lib/MC/ |
H A D | MCAssembler.cpp | 1024 encodeSLEB128(Value, OSE, OldSize); in relaxLEB() 1026 encodeULEB128(Value, OSE, OldSize); in relaxLEB() 1027 return OldSize != LF.getContents().size(); in relaxLEB() 1113 return OldSize != Data.size(); in relaxDwarfLineAddr() 1134 return OldSize != Data.size(); in relaxDwarfCallFrameFragment() 1139 unsigned OldSize = F.getContents().size(); in relaxCVInlineLineTable() local 1141 return OldSize != F.getContents().size(); in relaxCVInlineLineTable() 1146 unsigned OldSize = F.getContents().size(); in relaxCVDefRange() local 1148 return OldSize != F.getContents().size(); in relaxCVDefRange() 1164 encodeSLEB128(AddrDelta, OSE, OldSize); in relaxPseudoProbeAddr() [all …]
|
/openbsd/gnu/llvm/llvm/tools/bugpoint/ |
H A D | CrashDebugger.cpp | 1075 unsigned OldSize = GVs.size(); in ReduceGlobalInitializers() local 1081 if (GVs.size() < OldSize) in ReduceGlobalInitializers() 1212 if (Functions.size() < OldSize) in DebugACrash() 1226 unsigned OldSize = 0; in DebugACrash() local 1236 OldSize += Attrs.size(); in DebugACrash() 1245 if (OldSize < NewSize) in DebugACrash() 1257 unsigned OldSize = Blocks.size(); in DebugACrash() local 1265 if (Blocks.size() < OldSize) in DebugACrash() 1279 unsigned OldSize = Blocks.size(); in DebugACrash() local 1283 if (Blocks.size() < OldSize) in DebugACrash() [all …]
|
H A D | Miscompilation.cpp | 553 unsigned OldSize = Blocks.size(); in ExtractBlocks() local 568 if (Blocks.size() == OldSize) in ExtractBlocks()
|
/openbsd/gnu/llvm/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVAsmBackend.cpp | 195 size_t OldSize = Data.size(); in relaxDwarfLineAddr() local 252 WasRelaxed = OldSize != Data.size(); in relaxDwarfLineAddr() 263 size_t OldSize = Data.size(); in relaxDwarfCFA() local 279 WasRelaxed = OldSize != Data.size(); in relaxDwarfCFA() 311 WasRelaxed = OldSize != Data.size(); in relaxDwarfCFA()
|
/openbsd/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
H A D | combined.h | 609 uptr OldSize = GuardedAlloc.getSize(OldPtr); 612 memcpy(NewPtr, OldPtr, (NewSize < OldSize) ? NewSize : OldSize); 646 uptr OldSize; variable 651 OldSize = OldHeader.SizeOrUnusedBytes; 654 OldSize = BlockEnd - (reinterpret_cast<uptr>(OldTaggedPtr) + 661 if (NewSize > OldSize || (OldSize - NewSize) < getPageSizeCached()) { 671 resizeTaggedChunk(reinterpret_cast<uptr>(OldTaggedPtr) + OldSize, 689 memcpy(NewPtr, OldTaggedPtr, Min(NewSize, OldSize)); 690 quarantineOrDeallocateChunk(Options, OldTaggedPtr, &OldHeader, OldSize);
|
/openbsd/gnu/llvm/compiler-rt/lib/fuzzer/ |
H A D | FuzzerCorpus.h | 418 uint32_t OldSize = GetFeature(Idx); in AddFeature() local 419 if (OldSize == 0 || (Shrink && OldSize > NewSize)) { in AddFeature() 420 if (OldSize > 0) { in AddFeature()
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/MSF/ |
H A D | MSFBuilder.cpp | 193 uint32_t OldSize = getStreamSize(Idx); in setStreamSize() local 194 if (OldSize == Size) in setStreamSize() 198 uint32_t OldBlocks = bytesToBlocks(OldSize, BlockSize); in setStreamSize()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86AsmBackend.cpp | 792 const unsigned OldSize = RF.getContents().size(); in padInstructionViaPrefix() local 793 if (OldSize == 15) in padInstructionViaPrefix() 796 const unsigned MaxPossiblePad = std::min(15 - OldSize, RemainingSize); in padInstructionViaPrefix() 849 const unsigned OldSize = RF.getContents().size(); in padInstructionViaRelaxation() local 851 assert(NewSize >= OldSize && "size decrease during relaxation?"); in padInstructionViaRelaxation() 852 unsigned Delta = NewSize - OldSize; in padInstructionViaRelaxation()
|
/openbsd/gnu/llvm/llvm/tools/llvm-objdump/ |
H A D | SourcePrinter.cpp | 131 size_t OldSize = ActiveCols.size(); in findFreeColumn() local 132 ActiveCols.grow(std::max<size_t>(OldSize * 2, 1)); in findFreeColumn() 133 return OldSize; in findFreeColumn()
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | AliasSetTracker.h | 81 LocationSize OldSize = Size; in updateSizeAndAAInfo() local 83 SizeChanged = OldSize != Size; in updateSizeAndAAInfo()
|
/openbsd/gnu/llvm/llvm/lib/Analysis/ |
H A D | DependenceGraphBuilder.cpp | 500 size_t OldSize = Graph.Nodes.size(); in sortNodesTopologically() local 503 if (Graph.Nodes.size() != OldSize) in sortNodesTopologically()
|
H A D | LazyCallGraph.cpp | 842 int OldSize = OldSCC.size(); in switchInternalEdgeToRef() local 848 for (Node &N : drop_begin(OldSCC, OldSize)) { in switchInternalEdgeToRef()
|
/openbsd/gnu/llvm/compiler-rt/lib/xray/ |
H A D | xray_segmented_array.h | 459 auto OldSize = Size; in trim() local 503 auto PS = F(OldSize); in trim()
|
/openbsd/gnu/llvm/llvm/include/llvm/ADT/ |
H A D | BitVector.h | 460 unsigned OldSize = Size; in push_back() local 472 set(OldSize); in push_back()
|
H A D | DenseMap.h | 1097 unsigned OldSize = this->size(); in shrink_and_clear() local 1102 if (OldSize) { in shrink_and_clear() 1103 NewNumBuckets = 1 << (Log2_32_Ceil(OldSize) + 1); in shrink_and_clear()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/ |
H A D | StackColoring.cpp | 1341 int OldSize = FirstS.size(); in runOnMachineFunction() local 1343 auto Mid = FirstS.begin() + OldSize; in runOnMachineFunction()
|
H A D | InterleavedLoadCombinePass.cpp | 746 unsigned OldSize = DL.getTypeAllocSize(VTy->getElementType()); in computeFromBCI() local 748 if (NewSize * Factor != OldSize) in computeFromBCI()
|
H A D | CodeGenPrepare.cpp | 4632 unsigned OldSize = AddrModeInsts.size(); in matchOperationAddr() local 4647 AddrModeInsts.resize(OldSize); in matchOperationAddr() 4657 AddrModeInsts.resize(OldSize); in matchOperationAddr() 4756 unsigned OldSize = AddrModeInsts.size(); in matchOperationAddr() local 4768 AddrModeInsts.resize(OldSize); in matchOperationAddr() 4781 AddrModeInsts.resize(OldSize); in matchOperationAddr() 4791 AddrModeInsts.resize(OldSize); in matchOperationAddr() 4835 unsigned OldSize = AddrModeInsts.size(); in matchOperationAddr() local 4846 AddrModeInsts.resize(OldSize); in matchOperationAddr() 4885 unsigned OldSize = AddrModeInsts.size(); in matchAddr() local [all …]
|
/openbsd/gnu/llvm/lld/ELF/ |
H A D | Writer.cpp | 1727 const size_t OldSize = inputSec->content().size(); in fixSymbolsAfterShrinking() local 1728 const size_t NewSize = OldSize - inputSec->bytesDropped; in fixSymbolsAfterShrinking() 1730 if (def->value > NewSize && def->value <= OldSize) { in fixSymbolsAfterShrinking() 1739 if (def->value + def->size > NewSize && def->value <= OldSize && in fixSymbolsAfterShrinking() 1740 def->value + def->size <= OldSize) { in fixSymbolsAfterShrinking()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Scalar/ |
H A D | SROA.cpp | 363 int OldSize = Slices.size(); in insert() local 365 auto SliceI = Slices.begin() + OldSize; in insert() 3658 unsigned OldSize = Indices.size(); in emitSplitOps() local 3659 (void)OldSize; in emitSplitOps() 3662 assert(Indices.size() == OldSize && "Did not return to the old size"); in emitSplitOps() 3673 unsigned OldSize = Indices.size(); in emitSplitOps() local 3674 (void)OldSize; in emitSplitOps() 3677 assert(Indices.size() == OldSize && "Did not return to the old size"); in emitSplitOps()
|
H A D | RewriteStatepointsForGC.cpp | 1041 const size_t OldSize = States.size(); in findBasePointer() local 1071 assert(OldSize == States.size() && in findBasePointer()
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | Metadata.cpp | 1282 auto OldSize = Attachments.size(); in erase() local 1285 return OldSize != Attachments.size(); in erase()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
H A D | AddressSanitizer.cpp | 3436 Value *OldSize = in handleDynamicAllocaCall() local 3441 Value *PartialSize = IRB.CreateAnd(OldSize, AllocaRzMask); in handleDynamicAllocaCall() 3457 Value *NewSize = IRB.CreateAdd(OldSize, AdditionalChunkSize); in handleDynamicAllocaCall() 3469 IRB.CreateCall(AsanAllocaPoisonFunc, {NewAddress, OldSize}); in handleDynamicAllocaCall()
|
/openbsd/gnu/llvm/llvm/lib/Demangle/ |
H A D | MicrosoftDemangle.cpp | 2135 size_t OldSize = MangledName.size(); in demangleFunctionParameterList() local 2144 size_t CharsConsumed = OldSize - MangledName.size(); in demangleFunctionParameterList()
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CodeGenFunction.h | 811 size_t OldSize = LifetimeExtendedCleanupStack.size(); 818 char *Buffer = &LifetimeExtendedCleanupStack[OldSize];
|