Home
last modified time | relevance | path

Searched refs:TotalSize (Results 1 – 25 of 28) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLinkMemoryManager.cpp86 size_t TotalSize = 0; in allocate() local
95 TotalSize = alignTo(TotalSize, sys::Process::getPageSizeEstimate()); in allocate()
96 TotalSize += Seg.getContentSize(); in allocate()
97 TotalSize += Seg.getZeroFillSize(); in allocate()
103 sys::Memory::allocateMappedMemory(TotalSize, nullptr, ReadWrite, EC); in allocate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonStoreWidening.cpp105 InstrGroup &OG, unsigned &TotalSize, unsigned MaxSize);
106 bool createWideStores(InstrGroup &OG, InstrGroup &NG, unsigned TotalSize);
306 InstrGroup::iterator End, InstrGroup &OG, unsigned &TotalSize, in selectStores() argument
384 TotalSize = Pow2Size; in selectStores()
392 unsigned TotalSize) { in createWideStores() argument
397 if (TotalSize > 4) in createWideStores()
421 TotalSize, OldM.getAlignment(), in createWideStores()
426 unsigned WOpc = (TotalSize == 2) ? Hexagon::S4_storeirh_io : in createWideStores()
427 (TotalSize == 4) ? Hexagon::S4_storeiri_io : 0; in createWideStores()
430 int Val = (TotalSize == 2) ? int16_t(Acc) : int(Acc); in createWideStores()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DCachePruning.cpp205 uint64_t TotalSize = 0; in pruneCache() local
241 TotalSize += StatusOrErr->getSize(); in pruneCache()
252 TotalSize -= FileInfo->Size; in pruneCache()
255 << FileInfo->Size << "), new occupancy is " << TotalSize in pruneCache()
272 auto AvailableSpace = TotalSize + SpaceInfo.free; in pruneCache()
282 LLVM_DEBUG(dbgs() << "Occupancy: " << ((100 * TotalSize) / AvailableSpace) in pruneCache()
288 while (TotalSize > TotalSizeTarget && FileInfo != FileInfos.end()) in pruneCache()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/PerfJITEvents/
DPerfJITEventListener.cpp123 uint32_t TotalSize; // total size of header member
134 uint32_t TotalSize; member
220 Header.TotalSize = sizeof(Header); in PerfJITEventListener()
412 rec.Prefix.TotalSize = sizeof(rec) + // debug record itself in NotifyCode()
443 rec.Prefix.TotalSize = sizeof(rec); // will be increased further in NotifyDebug()
453 rec.Prefix.TotalSize += sizeof(LLVMPerfJitDebugEntry); in NotifyDebug()
454 rec.Prefix.TotalSize += line.FileName.size() + 1; in NotifyDebug()
/third_party/skia/tests/
DSkTBlockListTest.cpp48 static size_t TotalSize(SkTBlockList<C, N>& list) { in TotalSize() function in TBlockListTestAccess
252 size_t initialSize = TBlockListTestAccess::TotalSize(list); in run_reserve_test()
257 REPORTER_ASSERT(reporter, initialSize == TBlockListTestAccess::TotalSize(list)); in run_reserve_test()
263 size_t reservedSize = TBlockListTestAccess::TotalSize(list); in run_reserve_test()
268 REPORTER_ASSERT(reporter, reservedSize == TBlockListTestAccess::TotalSize(list)); in run_reserve_test()
284 reservedSize = TBlockListTestAccess::TotalSize(list); in run_reserve_test()
288 REPORTER_ASSERT(reporter, reservedSize == TBlockListTestAccess::TotalSize(list)); in run_reserve_test()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMUnwindOpAsm.cpp162 size_t TotalSize = Ops.size() + 1; in Finalize() local
163 size_t RoundUpSize = (TotalSize + 3) / 4 * 4; in Finalize()
178 size_t TotalSize = Ops.size() + 2; in Finalize() local
179 size_t RoundUpSize = (TotalSize + 3) / 4 * 4; in Finalize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
DMSP430BranchSelector.cpp95 unsigned TotalSize = BlockOffsets[Begin->getNumber()]; in measureFunction() local
97 BlockOffsets[MBB.getNumber()] = TotalSize; in measureFunction()
99 TotalSize += TII->getInstSizeInBytes(MI); in measureFunction()
102 return TotalSize; in measureFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DInstrProf.cpp850 static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) { in allocValueProfData() argument
851 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize)) in allocValueProfData()
859 if (TotalSize % sizeof(uint64_t)) in checkIntegrity()
867 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize) in checkIntegrity()
883 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness); in getValueProfData() local
884 if (D + TotalSize > BufferEnd) in getValueProfData()
887 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize); in getValueProfData()
888 memcpy(VPD.get(), D, TotalSize); in getValueProfData()
905 sys::swapByteOrder<uint32_t>(TotalSize); in swapBytesToHost()
927 sys::swapByteOrder<uint32_t>(TotalSize); in swapBytesFromHost()
DInstrProfReader.cpp526 D += VDataPtrOrErr.get()->TotalSize; in readValueProfilingData()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DInstrProfData.inc341 uint32_t TotalSize;
395 uint32_t getSize() const { return TotalSize; }
537 uint32_t TotalSize = sizeof(ValueProfData);
544 TotalSize += getValueProfRecordSize(NumValueSites,
547 return TotalSize;
576 * DstData is not null, the caller is expected to set the TotalSize
583 uint32_t TotalSize =
584 DstData ? DstData->TotalSize : getValueProfDataSize(Closure);
587 DstData ? DstData : Closure->AllocValueProfData(TotalSize);
589 VPD->TotalSize = TotalSize;
DInstrProf.h1077 inline std::unique_ptr<Summary> allocSummary(uint32_t TotalSize) { in allocSummary() argument
1078 return std::unique_ptr<Summary>(new (::operator new(TotalSize)) in allocSummary()
1079 Summary(TotalSize)); in allocSummary()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUPrintfRuntimeBinding.cpp485 uint32_t TotalSize = EleCount * EleSize; in lowerPrintfForGpu() local
496 TotalSize += EleSize; in lowerPrintfForGpu()
500 EleCount = TotalSize / 64; in lowerPrintfForGpu()
505 EleCount = TotalSize / 64; in lowerPrintfForGpu()
517 EleCount = TotalSize / 64; in lowerPrintfForGpu()
DAMDGPUSubtarget.cpp520 uint64_t TotalSize = ExplicitOffset + ExplicitArgBytes; in getKernArgSegmentSize() local
524 TotalSize = alignTo(ExplicitArgBytes, Alignment) + ImplicitBytes; in getKernArgSegmentSize()
528 return alignTo(TotalSize, 4); in getKernArgSegmentSize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DStackColoring.cpp1184 unsigned TotalSize = 0; in runOnMachineFunction() local
1192 TotalSize += MFI->getObjectSize(i); in runOnMachineFunction()
1195 LLVM_DEBUG(dbgs() << "Total Stack size: " << TotalSize << " bytes\n\n"); in runOnMachineFunction()
1199 if (NumMarkers < 2 || TotalSize < 16 || DisableColoring || in runOnMachineFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp1861 size_t TotalSize = CurrentGOTIndex * getGOTEntrySize(); in finalizeLoad() local
1862 uint8_t *Addr = MemMgr.allocateDataSection(TotalSize, getGOTEntrySize(), in finalizeLoad()
1868 SectionEntry(".got", Addr, TotalSize, TotalSize, 0); in finalizeLoad()
1872 memset(Addr, 0, TotalSize); in finalizeLoad()
DRuntimeDyld.cpp449 uint64_t TotalSize = 0; in computeAllocationSizeForSections() local
453 TotalSize += AlignedSize; in computeAllocationSizeForSections()
455 return TotalSize; in computeAllocationSizeForSections()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DCOFF.h365 uint32_t TotalSize; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DCOFF.h418 uint32_t TotalSize; member
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceCfg.cpp862 uint32_t TotalSize = Utils::applyAlignment(CurrentOffset, CombinedAlignment); in sortAndCombineAllocas() local
879 Operand *AllocaSize = Ctx->getConstantInt32(TotalSize); in sortAndCombineAllocas()
900 getTarget()->reserveFixedAllocaArea(TotalSize, CombinedAlignment); in sortAndCombineAllocas()
DIceTargetLoweringARM32.cpp2053 Operand *TotalSize = Instr->getSizeInBytes(); in lowerAlloca() local
2056 llvm::dyn_cast<ConstantInteger32>(TotalSize)) { in lowerAlloca()
2078 TotalSize = legalize(TotalSize, Legal_Reg | Legal_Flex); in lowerAlloca()
2080 _mov(T, TotalSize); in lowerAlloca()
DIceTargetLoweringX8664.cpp1226 Operand *TotalSize = legalize(Instr->getSizeInBytes()); in lowerAlloca() local
1229 llvm::dyn_cast<ConstantInteger32>(TotalSize)) { in lowerAlloca()
1246 if (TotalSize->getType() != IceType_i64) { in lowerAlloca()
1248 _movzx(T, TotalSize); in lowerAlloca()
1251 _mov(T, TotalSize); in lowerAlloca()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCOFFYAML.cpp503 IO.mapRequired("TotalSize", AFD.TotalSize); in mapping()
DCOFFEmitter.cpp547 << binary_le(i->FunctionDefinition->TotalSize) in writeCOFF()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DLegalizerHelper.cpp631 unsigned TotalSize = Ty.getSizeInBits(); in narrowScalar() local
633 int NumParts = TotalSize / NarrowSize; in narrowScalar()
644 unsigned LeftoverBits = TotalSize - NumParts * NarrowSize; in narrowScalar()
2935 unsigned TotalSize = ValTy.getSizeInBits(); in reduceLoadStoreWidth() local
2945 for (unsigned Idx = 0, E = NumParts; Idx != E && Offset < TotalSize; in reduceLoadStoreWidth()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DCOFF.h482 support::ulittle32_t TotalSize; member

12