Home
last modified time | relevance | path

Searched refs:CodeSize (Results 1 – 25 of 36) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/PerfJITEvents/
DPerfJITEventListener.cpp80 uint64_t CodeSize);
145 uint64_t CodeSize; member
403 uint64_t CodeAddr, uint64_t CodeSize) { in NotifyCode() argument
407 if (CodeSize == 0) in NotifyCode()
414 CodeSize; // and code in NotifyCode()
417 rec.CodeSize = CodeSize; in NotifyCode()
430 Dumpstream->write(reinterpret_cast<const char *>(CodeAddr), CodeSize); in NotifyCode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DDebugLinesSubsection.cpp105 Header.CodeSize = CodeSize; in commit()
154 void DebugLinesSubsection::setCodeSize(uint32_t Size) { CodeSize = Size; } in setCodeSize()
DSymbolRecordMapping.cpp51 error(IO.mapInteger(Block.CodeSize)); in visitKnownRecord()
413 error(IO.mapInteger(Proc.CodeSize)); in visitKnownRecord()
DSymbolDumper.cpp124 W.printHex("CodeSize", Block.CodeSize); in visitKnownRecord()
570 W.printHex("CodeSize", Proc.CodeSize); in visitKnownRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DCodeViewYAMLDebugSections.h47 uint32_t CodeSize; member
94 uint32_t CodeSize; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugLinesSubsection.h35 support::ulittle32_t CodeSize; // Code size of this line contribution. member
141 uint32_t CodeSize = 0; variable
DCodeView.h571 support::ulittle32_t CodeSize; member
DSymbolRecord.h57 uint32_t CodeSize = 0; variable
608 uint32_t CodeSize = 0; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp309 IO.mapRequired("CodeSize", Obj.CodeSize); in mapping()
326 IO.mapRequired("CodeSize", Lines.CodeSize); in map()
418 Result->setCodeSize(Lines.CodeSize); in toCodeViewSubsection()
516 F.CodeSize = YF.CodeSize; in toCodeViewSubsection()
585 Result->Lines.CodeSize = Lines.header()->CodeSize; in fromCodeViewSubsection()
714 YF.CodeSize = F.CodeSize; in fromCodeViewSubsection()
DCodeViewYAMLSymbols.cpp325 IO.mapRequired("CodeSize", Symbol.CodeSize); in map()
423 IO.mapRequired("CodeSize", Symbol.CodeSize); in map()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetClient.h108 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
116 if (CodeSize != 0) { in reserveAllocationSpace()
118 Client.reserveMem(Id, CodeSize, CodeAlign); in reserveAllocationSpace()
123 << " (" << CodeSize << " bytes, alignment " << CodeAlign in reserveAllocationSpace()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InstrFormats.td382 let CodeSize = 3;
388 let CodeSize = 3;
394 let CodeSize = 3;
400 let CodeSize = 3;
406 let CodeSize = 3;
412 let CodeSize = 3;
418 let CodeSize = 3;
425 let CodeSize = 3;
432 let CodeSize = 3;
439 let CodeSize = 3;
[all …]
DX86InstrArithmetic.td351 let CodeSize = 2 in {
425 } // CodeSize
441 let isConvertibleToThreeAddress = 1, CodeSize = 2 in { // Can xform into LEA.
455 } // isConvertibleToThreeAddress = 1, CodeSize = 2
458 let CodeSize = 1, hasSideEffects = 0 in {
465 } // CodeSize = 1, hasSideEffects = 0
468 let CodeSize = 2, SchedRW = [WriteALURMW] in {
485 } // CodeSize = 2, SchedRW
488 let isConvertibleToThreeAddress = 1, CodeSize = 2 in { // Can xform into LEA.
502 } // isConvertibleToThreeAddress = 1, CodeSize = 2
[all …]
/third_party/node/deps/v8/src/diagnostics/
Dgdb-jit.cc936 uintptr_t CodeSize() const { return code_region_.size(); } in CodeSize() function in v8::internal::GDBJITInterface::CodeDescription
1002 symtab->Add(ELFSymbol(desc->name(), 0, desc->CodeSize(), in CreateSymbolsTable()
1070 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize()); in WriteBodyInternal()
1083 w->Write<intptr_t>(desc_->CodeStart() + desc_->CodeSize()); in WriteBodyInternal()
1461 w->WriteSLEB128(desc_->CodeSize() - pc); in WriteBodyInternal()
1609 w->Write<uintptr_t>(desc_->CodeSize()); in WriteFDE()
1810 code_alignment, desc->CodeStart(), desc->CodeSize())); in CreateELFObject()
1814 mach_o.Write(&w, desc->CodeStart(), desc->CodeSize()); in CreateELFObject()
1822 desc->CodeSize(), ELFSection::FLAG_ALLOC | ELFSection::FLAG_EXEC)); in CreateELFObject()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUAsmPrinter.h86 uint64_t CodeSize,
DAMDGPUAsmPrinter.cpp348 uint64_t CodeSize, in emitCommonFunctionComments() argument
350 OutStreamer->emitRawComment(" codeLenInByte = " + Twine(CodeSize), false); in emitCommonFunctionComments()
573 uint64_t CodeSize = 0; in getFunctionCodeSize() local
583 CodeSize += TII->getInstSizeInBytes(MI); in getFunctionCodeSize()
587 return CodeSize; in getFunctionCodeSize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp191 uint64_t CodeSize = 0, RODataSize = 0, RWDataSize = 0; in loadObjectImpl() local
194 CodeSize, CodeAlign, in loadObjectImpl()
198 MemMgr.reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign, in loadObjectImpl()
516 uint64_t &CodeSize, in computeTotalAllocSize() argument
617 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, CodeAlign); in computeTotalAllocSize()
DRuntimeDyldImpl.h436 uint64_t &CodeSize, uint32_t &CodeAlign,
/third_party/node/deps/v8/src/objects/
Dcode-inl.h355 CodeSize() - Code::kHeaderSize - raw_body_size(); in clear_padding()
445 int size = CodeSize(); in SizeIncludingMetadata()
523 (inner_pointer < address() + CodeSize()); in contains()
534 int Code::CodeSize() const { return SizeFor(raw_body_size()); } in CodeSize() function
536 DEF_GETTER(Code, Size, int) { return CodeSize(); } in DEF_GETTER()
Dcode.h574 inline int CodeSize() const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h124 virtual void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcMCJITReplacement.h86 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign, in reserveAllocationSpace() argument
90 return ClientMM->reserveAllocationSpace(CodeSize, CodeAlign, in reserveAllocationSpace()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCInstrVSX.td158 let CodeSize = 3 in
165 let CodeSize = 3 in
189 let CodeSize = 3 in
196 let CodeSize = 3 in
1383 let CodeSize = 3 in
1392 let CodeSize = 3 in
1408 let CodeSize = 3 in
1415 let CodeSize = 3 in
/third_party/node/deps/v8/src/snapshot/
Dserializer.cc401 int size = code.CodeSize(); in CopyCode()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/
Dassembler_arm.h385 intptr_t CodeSize() const { return buffer_.Size(); } in CodeSize() function

12