Searched refs:CodeSize (Results 1 - 17 of 17) sorted by relevance

/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMemoryManagerTest.cpp125 uintptr_t CodeSize = i % 16 + 1; local
131 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, "");
135 for (unsigned j = 0; j < CodeSize; j++) {
154 uintptr_t CodeSize = i % 16 + 1; local
157 for (unsigned j = 0; j < CodeSize; j++) {
H A DMCJITCAPITest.cpp91 void reserveAllocationSpace(uintptr_t CodeSize, uintptr_t DataSizeRO,
93 ReservedCodeSize = CodeSize;
/external/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h119 /// \p CodeSize - the total size of all code sections
125 virtual void reserveAllocationSpace(uintptr_t CodeSize, argument
/external/giflib/
H A Ddgif_lib.c698 DGifGetCode(GifFileType *GifFile, int *CodeSize, GifByteType **CodeBlock) argument
708 *CodeSize = Private->BitsPerPixel;
756 GifByteType CodeSize; local
761 if (READ(GifFile, &CodeSize, 1) < 1) { /* Read Code size from file. */
764 BitsPerPixel = CodeSize;
H A Degif_lib.c702 EGifPutCode(GifFileType *GifFile, int CodeSize, const GifByteType *CodeBlock) argument
714 * Buf = CodeSize;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp149 uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0; local
150 computeTotalAllocSize(Obj, CodeSize, DataSizeRO, DataSizeRW);
151 MemMgr.reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW);
337 uint64_t &CodeSize,
413 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
336 computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize, uint64_t &DataSizeRO, uint64_t &DataSizeRW) argument
H A DRuntimeDyldImpl.h414 void computeTotalAllocSize(const ObjectFile &Obj, uint64_t &CodeSize,
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUAsmPrinter.cpp322 uint64_t CodeSize = 0; local
332 // TODO: CodeSize should account for multiple functions.
339 CodeSize += MI.getDesc().Size;
466 ProgInfo.CodeLen = CodeSize;
/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h57 void reserveAllocationSpace(uintptr_t CodeSize, uintptr_t DataSizeRO,
59 return ClientMM->reserveAllocationSpace(CodeSize, DataSizeRO,
/external/v8/src/
H A Druntime-profiler.cc187 if (shared_code->CodeSize() > allowance &&
H A Dgdb-jit.cc978 uintptr_t CodeSize() const { function in class:v8::internal::BASE_EMBEDDED
1045 desc->CodeSize(),
1120 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize());
1133 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize());
1561 w->WriteSLEB128(desc_->CodeSize() - pc);
1717 w->Write<uintptr_t>(desc_->CodeSize());
1936 desc->CodeSize()));
1940 mach_o.Write(&w, desc->CodeStart(), desc->CodeSize());
1953 desc->CodeSize(),
2126 range.end = code->address() + code->CodeSize();
[all...]
H A Dobjects-body-descriptors-inl.h417 return reinterpret_cast<Code*>(object)->CodeSize();
H A Dlog.cc908 msg.Append("code-deopt,%ld,%d", since_epoch, code->CodeSize());
H A Dobjects-inl.h4407 return reinterpret_cast<Code*>(this)->CodeSize();
6458 int Code::CodeSize() { return SizeFor(body_size()); }
H A Dobjects.h5105 inline int CodeSize();
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp600 W.printHex("CodeSize", FunctionSize);
701 uint32_t CodeSize = DE.getU32(&Offset); local
715 W.printHex("CodeSize", CodeSize);
/external/v8/src/snapshot/
H A Dserialize.cc2322 int size = code->CodeSize();
2341 SnapshotByteSink sink(info->code()->CodeSize() * 2);

Completed in 533 milliseconds