HomeSort by relevance Sort by last modified time
    Searched refs:CodeSize (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/llvm/tools/llvm-readobj/
CodeView.h 35 ulittle32_t CodeSize;
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp 125 uintptr_t CodeSize = i % 16 + 1;
131 code[i] = MemMgr->allocateCodeSection(CodeSize, Align, i, "");
135 for (unsigned j = 0; j < CodeSize; j++) {
154 uintptr_t CodeSize = i % 16 + 1;
157 for (unsigned j = 0; j < CodeSize; j++) {
  /art/compiler/trampolines/
trampoline_compiler.cc 85 size_t cs = __ CodeSize();
127 size_t cs = __ CodeSize();
159 size_t cs = __ CodeSize();
191 size_t cs = __ CodeSize();
212 size_t cs = __ CodeSize();
233 size_t cs = __ CodeSize();
  /external/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstream.h 33 support::ulittle32_t CodeSize; // Code size of this line contribution.
  /external/llvm/test/MC/COFF/
cv-empty-linetable.s 81 # CHECK: CodeSize: 0x5
cv-loc.s 47 # CHECK: CodeSize: 0x9
  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 39 size_t CodeSize() const {
73 if (next_thunk.MaxNextOffset() - CodeSize() < MaxNextOffset()) {
74 max_next_offset_ = RoundDown(next_thunk.MaxNextOffset() - CodeSize(), alignment);
86 return offset + CodeSize();
190 offset = aligned_offset + pending_thunks_.front()->CodeSize();
426 unreserved_thunks_.back()->MaxNextOffset() + unreserved_thunks_.back()->CodeSize()) {
  /external/llvm/tools/lli/
RemoteJITUtils.h 103 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign,
107 MemMgr->reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign,
  /art/compiler/utils/
assembler.cc 114 uint32_t pc = dchecked_integral_cast<uint32_t>(assembler_->CodeSize());
jni_macro_assembler.h 57 virtual size_t CodeSize() const = 0;
252 size_t CodeSize() const OVERRIDE {
253 return asm_.CodeSize();
jni_macro_assembler_test.h 133 size_t cs = assembler_->CodeSize();
assembler.h 363 virtual size_t CodeSize() const { return buffer_.Size(); }
365 // CodePosition() is a non-const method similar to CodeSize(), which is used to
369 // On most architectures CodePosition() should be equivalent to CodeSize(), but
374 virtual size_t CodePosition() { return CodeSize(); }
  /external/syslinux/gpxe/src/arch/i386/include/
pxe.h 123 UINT16_t CodeSize;
  /art/compiler/jni/
jni_cfi_test.cc 88 std::vector<uint8_t> actual_asm(jni_asm->CodeSize());
  /art/compiler/utils/arm64/
assembler_arm64.h 74 size_t CodeSize() const OVERRIDE;
assembler_arm64.cc 38 size_t Arm64Assembler::CodeSize() const {
48 MemoryRegion from(vixl_masm_.GetBuffer()->GetStartAddress<void*>(), CodeSize());
  /external/llvm/include/llvm/ExecutionEngine/
RuntimeDyld.h 136 /// \p CodeSize - the total size of all code sections
142 virtual void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign,
  /external/syslinux/gpxe/src/arch/i386/drivers/net/
undirom.c 71 undirom->code_size = undi_rom_id.CodeSize;
  /external/giflib/
dgif_lib.c 702 DGifGetCode(GifFileType *GifFile, int *CodeSize, GifByteType **CodeBlock)
712 *CodeSize = Private->BitsPerPixel;
760 GifByteType CodeSize;
765 if (READ(GifFile, &CodeSize, 1) < 1) { /* Read Code size from file. */
768 BitsPerPixel = CodeSize;
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 185 uint64_t CodeSize = 0, RODataSize = 0, RWDataSize = 0;
188 CodeSize, CodeAlign,
192 MemMgr.reserveAllocationSpace(CodeSize, CodeAlign, RODataSize, RODataAlign,
411 uint64_t &CodeSize,
496 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, CodeAlign);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUAsmPrinter.cpp 313 uint64_t CodeSize = 0;
323 // TODO: CodeSize should account for multiple functions.
329 CodeSize += TII->getInstSizeInBytes(MI);
511 ProgInfo.CodeLen = CodeSize;
  /art/compiler/optimizing/
code_generator.cc 192 start_offset_ = codegen_.GetAssembler().CodeSize();
200 instruction_, start_offset_, codegen_.GetAssembler().CodeSize());
217 code_start = GetAssembler()->CodeSize();
223 disasm_info_->AddSlowPathInterval(slow_path, code_start, GetAssembler()->CodeSize());
238 size_t frame_start = GetAssembler()->CodeSize();
242 disasm_info_->SetFrameEntryInterval(frame_start, GetAssembler()->CodeSize());
283 size_t code_size = GetAssembler()->CodeSize();
    [all...]
  /art/compiler/utils/arm/
assembler_arm_vixl.cc 44 size_t ArmVIXLAssembler::CodeSize() const {
54 MemoryRegion from(vixl_masm_.GetBuffer()->GetStartAddress<void*>(), CodeSize());
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/
Pxe.h 133 UINT16 CodeSize; ///< segment sizes.
149 UINT16 CodeSize; ///< segment sizes.
  /external/llvm/lib/ExecutionEngine/Orc/
OrcMCJITReplacement.h 57 void reserveAllocationSpace(uintptr_t CodeSize, uint32_t CodeAlign,
61 return ClientMM->reserveAllocationSpace(CodeSize, CodeAlign,

Completed in 316 milliseconds

1 2 3