/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
D | JITLinkMemoryManager.cpp | 86 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/ |
D | HexagonStoreWidening.cpp | 105 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/ |
D | CachePruning.cpp | 205 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/ |
D | PerfJITEventListener.cpp | 123 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/ |
D | SkTBlockListTest.cpp | 48 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/ |
D | ARMUnwindOpAsm.cpp | 162 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/ |
D | MSP430BranchSelector.cpp | 95 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/ |
D | InstrProf.cpp | 850 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()
|
D | InstrProfReader.cpp | 526 D += VDataPtrOrErr.get()->TotalSize; in readValueProfilingData()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
D | InstrProfData.inc | 341 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;
|
D | InstrProf.h | 1077 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/ |
D | AMDGPUPrintfRuntimeBinding.cpp | 485 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()
|
D | AMDGPUSubtarget.cpp | 520 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/ |
D | StackColoring.cpp | 1184 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/ |
D | RuntimeDyldELF.cpp | 1861 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()
|
D | RuntimeDyld.cpp | 449 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/ |
D | COFF.h | 365 uint32_t TotalSize; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | COFF.h | 418 uint32_t TotalSize; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceCfg.cpp | 862 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()
|
D | IceTargetLoweringARM32.cpp | 2053 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()
|
D | IceTargetLoweringX8664.cpp | 1226 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/ |
D | COFFYAML.cpp | 503 IO.mapRequired("TotalSize", AFD.TotalSize); in mapping()
|
D | COFFEmitter.cpp | 547 << binary_le(i->FunctionDefinition->TotalSize) in writeCOFF()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | LegalizerHelper.cpp | 631 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/ |
D | COFF.h | 482 support::ulittle32_t TotalSize; member
|