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

/external/llvm/lib/MC/
H A DMCSectionMachO.cpp174 unsigned &StubSize) { // Out.
205 StubSize = 0;
266 if (StubSizeStr.getAsInteger(0, StubSize))
169 ParseSectionSpecifier(StringRef Spec, StringRef &Segment, StringRef &Section, unsigned &TAA, bool &TAAParsed, unsigned &StubSize) argument
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectSymbolizer.cpp33 uint64_t StubSize; member in class:__anon25876::MCMachObjectSymbolizer
52 StubsStart(0), StubsCount(0), StubSize(0), StubsIndSymIndex(0) {
62 StubSize = S.reserved2;
66 StubSize = S.reserved2;
68 assert(StubSize && "Mach-O stub entry size can't be zero!");
71 StubsCount /= StubSize;
80 if (!StubSize)
82 uint64_t StubIdx = (Addr - StubsStart) / StubSize;
/external/llvm/tools/lli/
H A DRemoteMemoryManager.cpp188 uint8_t *RemoteMemoryManager::allocateStub(const GlobalValue* F, unsigned StubSize, argument
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp483 unsigned TAA = 0, StubSize = 0; local
487 TAA, TAAParsed, StubSize);
495 getContext().getMachOSection(Segment, Section, TAA, StubSize,
519 unsigned TAA = 0, StubSize = 0; local
526 TAA, TAAParsed, StubSize);
536 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
543 // Okay, now that we got the section, verify that the TAA & StubSize agree.
546 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
/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 DRuntimeDyld.cpp322 unsigned StubSize = getMaxStubSize(); local
323 if (StubSize == 0) {
338 StubBufSize += StubSize;
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp39 unsigned StubSize = 0);
376 unsigned StubSize) {
384 Segment, Section, TAA, StubSize,
572 unsigned StubSize; local
577 TAA, TAAParsed, StubSize);
585 Segment, Section, TAA, StubSize,
373 parseSectionSwitch(const char *Segment, const char *Section, unsigned TAA, unsigned Align, unsigned StubSize) argument
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp382 unsigned StubSize, unsigned Alignment = 1);
383 void startGVStub(void *Buffer, unsigned StubSize);
1136 unsigned StubSize, unsigned Alignment) {
1141 BufferBegin = CurBufferPtr = MemMgr->allocateStub(GV, StubSize, Alignment);
1142 BufferEnd = BufferBegin+StubSize+1;
1145 void JITEmitter::startGVStub(void *Buffer, unsigned StubSize) { argument
1151 BufferEnd = BufferBegin+StubSize+1;
1135 startGVStub(const GlobalValue* GV, unsigned StubSize, unsigned Alignment) argument

Completed in 8111 milliseconds