Home | History | Annotate | Download | only in x86

Lines Matching full:stream

266     stream = instAddr;
274 stream = instAddr;
284 stream = instAddr;
475 //can't use stream here since it is used by the compilation thread
620 int rem = (uint)stream % 4;
643 cUnit->method->name, blockId, offset, stream - streamMethodStart);
646 offset, stream - streamMethodStart, stream);
665 cUnit->method->name, blockId, offset, stream - streamMethodStart);
668 offset, stream - streamMethodStart, stream);
684 cUnit->method->name, blockId, offset, stream - streamMethodStart);
687 offset, stream - streamMethodStart, stream);
703 cUnit->method->name, blockId, callee->name, stream - streamMethodStart);
706 blockId, stream - streamMethodStart, stream);
723 blockId, stream - streamMethodStart, stream);
736 //int padding = (4 - ((u4)stream & 3)) & 3;
737 //stream += padding;
738 int* streamData = (int*)stream;
752 ALOGI("--- DATA @ %p: %x %x %x %x", stream, *((int*)stream), *((int*)(stream+4)),
753 *((int*)(stream+8)), *((int*)(stream+12)));
755 stream += 20; //5 *4
805 condJumpToBasicBlock(stream, Condition_E, cUnit->exceptionBlockId);
822 condJumpToBasicBlock(stream, Condition_NC, cUnit->exceptionBlockId);
844 condJumpToBasicBlock(stream, Condition_E, cUnit->exceptionBlockId);
853 condJumpToBasicBlock(stream, Condition_NC, cUnit->exceptionBlockId);
871 condJumpToBasicBlock(stream, Condition_C, cUnit->exceptionBlockId);
896 streamMisPred = stream;
944 //LowOp* branchToBody = jumpToBasicBlock(stream, bodyId);
1087 stream = (char*)gDvmJit.codeCache + gDvmJit.codeCacheByteUsed;
1088 streamStart = stream; /* trace start before alignment */
1096 stream += EXTRA_BYTES_FOR_CHAINING; /* This is needed for chaining. Add the bytes before the alignment */
1097 stream = (char*)(((unsigned int)stream + 0xF) & ~0xF); /* Align trace to 16-bytes */
1098 streamMethodStart = stream; /* code start */
1154 labelList[i].lop.generic.offset = (stream - streamMethodStart);
1208 labelList[i].lop.generic.offset = (stream - streamMethodStart);
1214 labelList[i].lop.generic.offset = (stream - streamMethodStart);
1238 labelList[i].lop.generic.offset = (stream - streamMethodStart);
1290 if(gDvmJit.codeCacheByteUsed + (stream - streamStart) +
1292 ALOGI("JIT code cache full after lowerByteCodeJit (trace uses %uB)", (stream - streamStart));
1324 jumpToBasicBlock(stream, bb->fallThrough->id);
1329 char* streamChainingStart = (char*)stream;
1349 labelList[blockId].lop.generic.offset = (stream - streamMethodStart);
1385 if (gDvmJit.codeCacheByteUsed + (stream - streamStart) + CODE_CACHE_PADDING > gDvmJit.codeCacheSize) {
1386 ALOGI("JIT code cache full after ChainingCell (trace uses %uB)", (stream - streamStart));
1404 ALOGI("JIT code cache full after endOfTrace (trace uses %uB)", (stream - streamStart));
1411 padding = (4 - ((u4)stream & 3)) & 3;
1412 stream += padding;
1418 char* streamCountStart = (char*)stream;
1419 memcpy((char*)stream, &chainCellCounts, sizeof(chainCellCounts));
1420 stream += sizeof(chainCellCounts);
1423 cUnit->totalSize = (stream - streamStart);
1425 ALOGI("JIT code cache full after ChainingCellCounts (trace uses %uB)", (stream - streamStart));
1439 gDvmJit.codeCacheByteUsed += (stream - streamStart);
1479 //can't use stream here since it is used by the compilation thread