Searched refs:StubSize (Results 1 - 20 of 20) sorted by relevance

/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcABISupport.cpp149 const unsigned StubSize = IndirectStubsInfo::StubSize; local
153 unsigned NumPages = ((MinStubs * StubSize) + (PageSize - 1)) / PageSize;
154 unsigned NumStubs = (NumPages * PageSize) / StubSize;
231 const unsigned StubSize = IndirectStubsInfo::StubSize; local
235 unsigned NumPages = ((MinStubs * StubSize) + (PageSize - 1)) / PageSize;
236 unsigned NumStubs = (NumPages * PageSize) / StubSize;
499 const unsigned StubSize = IndirectStubsInfo::StubSize; local
[all...]
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcABISupport.h56 const static unsigned StubSize = 1; member in class:llvm::orc::OrcGenericABI::IndirectStubsInfo
73 const static unsigned StubSize = StubSizeVal; member in class:llvm::orc::GenericIndirectStubsInfo
95 return static_cast<char *>(StubsMem.base()) + Idx * StubSize;
101 char *PtrsBase = static_cast<char *>(StubsMem.base()) + NumStubs * StubSize;
H A DOrcRemoteTargetServer.h354 uint32_t IndirectStubSize = TargetT::IndirectStubsInfo::StubSize;
/external/llvm/lib/MC/
H A DMCSectionMachO.cpp176 unsigned &StubSize) { // Out.
207 StubSize = 0;
268 if (StubSizeStr.getAsInteger(0, StubSize))
171 ParseSectionSpecifier(StringRef Spec, StringRef &Segment, StringRef &Section, unsigned &TAA, bool &TAAParsed, unsigned &StubSize) argument
/external/llvm/include/llvm/MC/
H A DMCSectionMachO.h77 unsigned &StubSize); // Out.
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
H A DJITMemoryManager.h92 virtual uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize,
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCSectionMachO.h166 unsigned &StubSize); // Out.
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCSectionMachO.cpp184 unsigned &StubSize) { // Out.
217 StubSize = 0;
299 if (StubSizeStr.getAsInteger(0, StubSize))
179 ParseSectionSpecifier(StringRef Spec, StringRef &Segment, StringRef &Section, unsigned &TAA, bool &TAAParsed, unsigned &StubSize) argument
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DDarwinAsmParser.cpp36 unsigned StubSize = 0);
299 unsigned StubSize) {
307 Segment, Section, TAA, StubSize,
435 unsigned StubSize; local
440 TAA, TAAParsed, StubSize);
448 Segment, Section, TAA, StubSize,
296 ParseSectionSwitch(const char *Segment, const char *Section, unsigned TAA, unsigned Align, unsigned StubSize) argument
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp514 unsigned TAA = 0, StubSize = 0; local
518 TAA, TAAParsed, StubSize);
526 Segment, Section, TAA, StubSize, SectionKind::getData());
549 unsigned TAA = 0, StubSize = 0; local
556 TAA, TAAParsed, StubSize);
566 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
573 // Okay, now that we got the section, verify that the TAA & StubSize agree.
576 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp401 unsigned StubSize, unsigned Alignment = 1);
402 void startGVStub(void *Buffer, unsigned StubSize);
1186 unsigned StubSize, unsigned Alignment) {
1191 BufferBegin = CurBufferPtr = MemMgr->allocateStub(GV, StubSize, Alignment);
1192 BufferEnd = BufferBegin+StubSize+1;
1195 void JITEmitter::startGVStub(void *Buffer, unsigned StubSize) { argument
1201 BufferEnd = BufferBegin+StubSize+1;
1185 startGVStub(const GlobalValue* GV, unsigned StubSize, unsigned Alignment) argument
H A DJITMemoryManager.cpp434 uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize, argument
436 return (uint8_t*)StubAllocator.Allocate(StubSize, Alignment);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp354 unsigned TAA = 0, StubSize = 0; local
358 TAA, TAAParsed, StubSize);
370 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
377 // Okay, now that we got the section, verify that the TAA & StubSize agree.
380 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp42 unsigned StubSize = 0);
395 unsigned StubSize) {
403 Segment, Section, TAA, StubSize,
611 unsigned StubSize; local
616 TAA, TAAParsed, StubSize);
647 Segment, Section, TAA, StubSize,
392 parseSectionSwitch(const char *Segment, const char *Section, unsigned TAA, unsigned Align, unsigned StubSize) argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h109 void advanceStubOffset(unsigned StubSize) { argument
110 StubOffset += StubSize;
H A DRuntimeDyld.cpp506 unsigned StubSize = getMaxStubSize(); local
507 if (StubSize == 0) {
522 StubBufSize += StubSize;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.cpp261 unsigned StubSize,
263 return mgr()->allocateStub(F, StubSize, Alignment);
260 allocateStub(const llvm::GlobalValue *F, unsigned StubSize, unsigned Alignment) argument
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp94 virtual uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize, argument
97 return Base->allocateStub(F, StubSize, Alignment);
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1306 unsigned TAA = 0, StubSize = 0; local
1309 Section, ParsedSegment, ParsedSection, TAA, TAAParsed, StubSize);
/external/clang/lib/Basic/
H A DTargets.cpp258 unsigned TAA, StubSize;
261 TAA, HasTAA, StubSize);

Completed in 650 milliseconds