Searched defs:StubSize (Results 1 - 9 of 9) sorted by relevance

/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcTargetSupport.h53 const static unsigned StubSize = 8; member in class:llvm::orc::OrcX86_64::IndirectStubsInfo
81 static_cast<char*>(StubsMem.base()) + NumStubs * StubSize;
/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcTargetSupport.cpp122 const unsigned StubSize = IndirectStubsInfo::StubSize; local
126 unsigned NumPages = ((MinStubs * StubSize) + (PageSize - 1)) / PageSize;
127 unsigned NumStubs = (NumPages * PageSize) / 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/lldb/source/Expression/
H A DIRExecutionUnit.cpp440 unsigned StubSize,
445 uint8_t *return_value = m_default_mm_ap->allocateStub(F, StubSize, Alignment);
449 StubSize,
454 log->Printf("IRExecutionUnit::allocateStub (F=%p, StubSize=%u, Alignment=%u) = %p",
455 F, StubSize, Alignment, return_value);
439 allocateStub(const llvm::GlobalValue* F, unsigned StubSize, unsigned Alignment) argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h115 void advanceStubOffset(unsigned StubSize) { argument
116 StubOffset += StubSize;
H A DRuntimeDyld.cpp421 unsigned StubSize = getMaxStubSize(); local
422 if (StubSize == 0) {
437 StubBufSize += StubSize;
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp491 unsigned TAA = 0, StubSize = 0; local
495 TAA, TAAParsed, StubSize);
503 Segment, Section, TAA, StubSize, SectionKind::getData());
526 unsigned TAA = 0, StubSize = 0; local
533 TAA, TAAParsed, StubSize);
543 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
550 // Okay, now that we got the section, verify that the TAA & StubSize agree.
553 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp42 unsigned StubSize = 0);
386 unsigned StubSize) {
394 Segment, Section, TAA, StubSize,
581 unsigned StubSize; local
586 TAA, TAAParsed, StubSize);
617 Segment, Section, TAA, StubSize,
383 parseSectionSwitch(const char *Segment, const char *Section, unsigned TAA, unsigned Align, unsigned StubSize) argument
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1236 unsigned TAA = 0, StubSize = 0; local
1239 Section, ParsedSegment, ParsedSection, TAA, TAAParsed, StubSize);

Completed in 171 milliseconds