OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CurBufferPtr
(Results
1 - 3
of
3
) sorted by null
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineCodeEmitter.h
44
/// emit machine instructions, we advance the
CurBufferPtr
to indicate the
47
///
CurBufferPtr
will saturate to BufferEnd and ignore stores. Once the entire
56
///
CurBufferPtr
- Pointer to the next byte of memory to fill when emitting
61
uint8_t *
CurBufferPtr
;
83
if (
CurBufferPtr
!= BufferEnd)
84
*
CurBufferPtr
++ = B;
91
if (4 <= BufferEnd-
CurBufferPtr
) {
92
emitWordLEInto(
CurBufferPtr
, W);
94
CurBufferPtr
= BufferEnd;
113
if (4 <= BufferEnd-
CurBufferPtr
) {
[
all
...]
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
80
if (
CurBufferPtr
!= BufferEnd)
81
*
CurBufferPtr
++ = B;
88
if (4 <= BufferEnd-
CurBufferPtr
) {
89
*
CurBufferPtr
++ = (uint8_t)(W >> 0);
90
*
CurBufferPtr
++ = (uint8_t)(W >> 8);
91
*
CurBufferPtr
++ = (uint8_t)(W >> 16);
92
*
CurBufferPtr
++ = (uint8_t)(W >> 24);
94
CurBufferPtr
= BufferEnd
[
all
...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITEmitter.cpp
283
// save BufferBegin/BufferEnd/
CurBufferPtr
here.
793
BufferBegin =
CurBufferPtr
= MemMgr->startFunctionBody(F.getFunction(),
807
TheJIT->updateGlobalMapping(F.getFunction(),
CurBufferPtr
);
808
EmittedFunctions[F.getFunction()].Code =
CurBufferPtr
;
817
if (
CurBufferPtr
== BufferEnd) {
820
MemMgr->endFunctionBody(F.getFunction(), BufferBegin,
CurBufferPtr
);
834
uint8_t *FnEnd =
CurBufferPtr
;
[
all
...]
Completed in 53 milliseconds