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

/external/llvm/lib/MC/
H A DMCSectionMachO.cpp185 unsigned &StubSize) { // Out.
218 StubSize = 0;
300 if (StubSizeStr.getAsInteger(0, StubSize))
180 ParseSectionSpecifier(StringRef Spec, StringRef &Segment, StringRef &Section, unsigned &TAA, bool &TAAParsed, unsigned &StubSize) argument
/external/llvm/tools/lli/
H A DRecordingMemoryManager.cpp81 uint8_t *RecordingMemoryManager::allocateStub(const GlobalValue* F, unsigned StubSize, argument
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp462 unsigned TAA = 0, StubSize = 0; local
466 TAA, TAAParsed, StubSize);
474 getContext().getMachOSection(Segment, Section, TAA, StubSize,
489 unsigned TAA = 0, StubSize = 0; local
493 TAA, TAAParsed, StubSize);
503 getContext().getMachOSection(Segment, Section, TAA, StubSize, Kind);
510 // Okay, now that we got the section, verify that the TAA & StubSize agree.
513 if (S->getTypeAndAttributes() != TAA || S->getStubSize() != StubSize) {
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp218 StubSize = getMaxStubSize(); local
224 if (StubSize > 0) {
234 StubBufSize += StubSize;
257 if (StubSize > 0) {
/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp38 unsigned StubSize = 0);
363 unsigned StubSize) {
371 Segment, Section, TAA, StubSize,
526 unsigned StubSize; local
531 TAA, TAAParsed, StubSize);
539 Segment, Section, TAA, StubSize,
360 ParseSectionSwitch(const char *Segment, const char *Section, unsigned TAA, unsigned Align, unsigned StubSize) argument
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp455 uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize, argument
457 return (uint8_t*)StubAllocator.Allocate(StubSize, Alignment);
H A DJITEmitter.cpp387 unsigned StubSize, unsigned Alignment = 1);
388 void startGVStub(void *Buffer, unsigned StubSize);
1131 unsigned StubSize, unsigned Alignment) {
1136 BufferBegin = CurBufferPtr = MemMgr->allocateStub(GV, StubSize, Alignment);
1137 BufferEnd = BufferBegin+StubSize+1;
1140 void JITEmitter::startGVStub(void *Buffer, unsigned StubSize) { argument
1146 BufferEnd = BufferBegin+StubSize+1;
1130 startGVStub(const GlobalValue* GV, unsigned StubSize, unsigned Alignment) argument
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp116 virtual uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize, argument
119 return Base->allocateStub(F, StubSize, Alignment);

Completed in 169 milliseconds