Searched defs:StubSize (Results 1 - 8 of 8) sorted by relevance
/external/llvm/lib/MC/ |
H A D | MCSectionMachO.cpp | 185 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 D | RecordingMemoryManager.cpp | 81 uint8_t *RecordingMemoryManager::allocateStub(const GlobalValue* F, unsigned StubSize, argument
|
/external/llvm/lib/CodeGen/ |
H A D | TargetLoweringObjectFileImpl.cpp | 462 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 D | RuntimeDyld.cpp | 218 StubSize = getMaxStubSize(); local 224 if (StubSize > 0) { 234 StubBufSize += StubSize; 257 if (StubSize > 0) {
|
/external/llvm/lib/MC/MCParser/ |
H A D | DarwinAsmParser.cpp | 38 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 D | JITMemoryManager.cpp | 455 uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize, argument 457 return (uint8_t*)StubAllocator.Allocate(StubSize, Alignment);
|
H A D | JITEmitter.cpp | 387 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 D | JITTest.cpp | 116 virtual uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize, argument 119 return Base->allocateStub(F, StubSize, Alignment);
|
Completed in 228 milliseconds