Home
last modified time | relevance | path

Searched refs:getPointerSize (Results 1 – 25 of 56) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Target/
H A DTargetMachine.h180 unsigned getPointerSize(unsigned AS) const { in getPointerSize() function
181 return DL.getPointerSize(AS); in getPointerSize()
189 return DL.getPointerSize(DL.getProgramAddressSpace()); in getProgramPointerSize()
193 return DL.getPointerSize(DL.getAllocaAddrSpace()); in getAllocaPointerSize()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp27 static const uint8_t AddrSize = Asm.getDataLayout().getPointerSize(); in emitHeader()
68 Asm.OutStreamer->emitValue(Entry, Asm.getDataLayout().getPointerSize()); in emit()
H A DAIXException.cpp49 const unsigned PointerSize = DL.getPointerSize(); in emitExceptionInfoTable()
H A DErlangGCPrinter.cpp46 unsigned IntPtrSize = M.getDataLayout().getPointerSize(); in finishAssembly()
H A DOcamlGCPrinter.cpp100 unsigned IntPtrSize = M.getDataLayout().getPointerSize(); in finishAssembly()
H A DAsmPrinter.cpp233 unsigned AsmPrinter::getPointerSize() const { in getPointerSize() function in AsmPrinter
234 return TM.getPointerSize(0); // FIXME: Default address space in getPointerSize()
1137 OutStreamer->emitSymbolValue(FunctionSymbol, getPointerSize()); in emitBBAddrMapSection()
1762 emitAlignment(Align(DL.getPointerSize())); in doFinalization()
1766 DL.getPointerSize()); in doFinalization()
1789 emitAlignment(Align(DL.getPointerSize())); in doFinalization()
1793 DL.getPointerSize()); in doFinalization()
3548 const unsigned PointerSize = getPointerSize(); in emitPatchableFunctionEntries()
H A DAsmPrinterDwarf.cpp137 return MF->getDataLayout().getPointerSize(); in GetSizeOfEncodedValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DTPCIndirectionUtils.cpp87 (TPC.getPageSize() - ABI.getPointerSize()) / TrampolineSize; in TPCTrampolinePool()
160 switch (TPCIU.getABISupport().getPointerSize()) { in createStubs()
214 switch (TPCIU.getABISupport().getPointerSize()) { in updatePointer()
354 alignTo(NumStubsToAllocate * ABI->getPointerSize(), PageSize); in getIndirectStubs()
385 PointerTargetAddr += ABI->getPointerSize(); in getIndirectStubs()
H A DMachOPlatform.cpp292 if (R.getSize() % G.getPointerSize() != 0) in getSectionExtent()
297 R.getStart(), R.getSize() / G.getPointerSize()); in getSectionExtent()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/
H A DTarget.cpp78 return unwrap(TD)->getPointerSize(0); in LLVMPointerSize()
82 return unwrap(TD)->getPointerSize(AS); in LLVMPointerSizeForAS()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DELF_x86_64.cpp170 assert(GOTBlock.getSize() == G.getPointerSize() && in optimizeELF_x86_64_GOTAndStubs()
206 assert(GOTBlock.getSize() == G.getPointerSize() && in optimizeELF_x86_64_GOTAndStubs()
302 unsigned getPointerSize(const object::ELFFile<object::ELF64LE> &Obj) { in getPointerSize() function in llvm::jitlink::ELFLinkGraphBuilder_x86_64
689 FileName.str(), Triple("x86_64-unknown-linux"), getPointerSize(Obj), in ELFLinkGraphBuilder_x86_64()
904 ".eh_frame", G->getPointerSize(), Delta64, Delta32, NegDelta32)); in link_ELF_x86_64()
H A DEHFrameSupport.cpp141 if (G.getPointerSize() != 4 && G.getPointerSize() != 8) in operator ()()
300 if (auto Err = RecordReader.skip(PC.G.getPointerSize())) in processCIE()
H A DMachOLinkGraphBuilder.cpp53 std::string(Obj.getFileName()), std::move(TT), getPointerSize(Obj), in MachOLinkGraphBuilder()
89 MachOLinkGraphBuilder::getPointerSize(const object::MachOObjectFile &Obj) { in getPointerSize() function in llvm::jitlink::MachOLinkGraphBuilder
H A DMachO_x86_64.cpp503 assert(GOTBlock.getSize() == G.getPointerSize() && in optimizeMachO_x86_64_GOTAndStubs()
542 assert(GOTBlock.getSize() == G.getPointerSize() && in optimizeMachO_x86_64_GOTAndStubs()
H A DMachOLinkGraphBuilder.h178 static unsigned getPointerSize(const object::MachOObjectFile &Obj);
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenTypeCache.h108 CharUnits getPointerSize() const { in getPointerSize() function
H A DCGBlocks.cpp490 assert(CGM.getIntSize() <= CGM.getPointerSize()); in initializeForBlockHeader()
494 info.BlockSize = 3 * CGM.getPointerSize() + 2 * CGM.getIntSize(); in initializeForBlockHeader()
584 layout.push_back(BlockLayoutChunk(align, CGM.getPointerSize(), in computeBlockInfo()
871 addHeaderField(isa, getPointerSize(), "block.isa"); in EmitBlockLiteral()
886 addHeaderField(descriptor, getPointerSize(), "block.descriptor"); in EmitBlockLiteral()
2676 size += getPointerSize(); in getBlockByrefInfo()
2680 size += getPointerSize(); in getBlockByrefInfo()
2695 size += getPointerSize(); in getBlockByrefInfo()
2699 size += getPointerSize(); in getBlockByrefInfo()
2785 storeHeaderField(V, getPointerSize(), "byref.isa"); in emitByrefStructureInit()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.h76 unsigned getPointerSize() const { return 4; } in getPointerSize() function
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DDataLayout.h373 unsigned getPointerSize(unsigned AS = 0) const;
405 return getPointerSize(AS) * 8;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86TargetMachine.cpp328 if (getPointerSize(SrcAS) != getPointerSize(DestAS)) in isNoopAddrSpaceCast()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h122 uint32_t getPointerSize();
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/target/
H A Dllvm_target.mli75 See the method [llvm::DataLayout::getPointerSize]. *)
83 See the method [llvm::DataLayout::getPointerSize]. *)
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DTPCIndirectionUtils.h48 unsigned getPointerSize() const { return PointerSize; } in getPointerSize() function
H A DOrcRemoteTargetClient.h658 K.second * Client.getPointerSize(); in getPtrAddr()
861 uint32_t getPointerSize() const { return RemotePointerSize; } in getPointerSize() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DMangler.cpp99 const unsigned PtrSize = DL.getPointerSize(); in addByteCountSuffix()

123