HomeSort by relevance Sort by last modified time
    Searched refs:BufferBegin (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 280 // save BufferBegin/BufferEnd/CurBufferPtr here.
783 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
785 BufferEnd = BufferBegin+ActualSize;
786 EmittedFunctions[F.getFunction()].FunctionBody = BufferBegin;
810 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
847 BufferBegin+MR.getMachineCodeOffset(),
851 MR.getGlobalValue(), BufferBegin+MR.getMachineCodeOffset());
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineCodeEmitter.h 44 /// BufferBegin/BufferEnd pointers to the start and end of the buffer. As we
55 /// BufferBegin/BufferEnd - Pointers to the start and end of the memory
57 uint8_t *BufferBegin, *BufferEnd;
59 /// code. This is guaranteed to be in the range [BufferBegin,BufferEnd]. If
69 /// about to be code generated. This initializes the BufferBegin/End/Ptr
236 if (Addr >= (uintptr_t*)BufferBegin && Addr < (uintptr_t*)BufferEnd)
242 if (Addr >= (uintptr_t*)BufferBegin && Addr < (uintptr_t*)BufferEnd)
290 return CurBufferPtr-BufferBegin;
JITCodeEmitter.h 45 /// BufferBegin/BufferEnd pointers to the start and end of the buffer. As we
59 /// about to be code generated. This initializes the BufferBegin/End/Ptr
239 if (Addr >= (uintptr_t*)BufferBegin && Addr < (uintptr_t*)BufferEnd)
245 if (Addr >= (uintptr_t*)BufferBegin && Addr < (uintptr_t*)BufferEnd)
293 return CurBufferPtr-BufferBegin;

Completed in 123 milliseconds