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

  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 46 /// emit machine instructions, we advance the CurBufferPtr to indicate the
49 /// CurBufferPtr will saturate to BufferEnd and ignore stores. Once the entire
81 if (CurBufferPtr != BufferEnd)
82 *CurBufferPtr++ = B;
89 if (4 <= BufferEnd-CurBufferPtr) {
90 *CurBufferPtr++ = (uint8_t)(W >> 0);
91 *CurBufferPtr++ = (uint8_t)(W >> 8);
92 *CurBufferPtr++ = (uint8_t)(W >> 16);
93 *CurBufferPtr++ = (uint8_t)(W >> 24);
95 CurBufferPtr = BufferEnd
    [all...]
MachineCodeEmitter.h 45 /// emit machine instructions, we advance the CurBufferPtr to indicate the
48 /// CurBufferPtr will saturate to BufferEnd and ignore stores. Once the entire
58 /// CurBufferPtr - Pointer to the next byte of memory to fill when emitting
63 uint8_t *CurBufferPtr;
85 if (CurBufferPtr != BufferEnd)
86 *CurBufferPtr++ = B;
93 if (4 <= BufferEnd-CurBufferPtr) {
94 emitWordLEInto(CurBufferPtr, W);
96 CurBufferPtr = BufferEnd;
115 if (4 <= BufferEnd-CurBufferPtr) {
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 280 // save BufferBegin/BufferEnd/CurBufferPtr here.
783 BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
797 TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
798 EmittedFunctions[F.getFunction()].Code = CurBufferPtr;
807 if (CurBufferPtr == BufferEnd) {
810 MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
824 uint8_t *FnEnd = CurBufferPtr;
    [all...]

Completed in 226 milliseconds