HomeSort by relevance Sort by last modified time
    Searched full:codecache (Results 1 - 25 of 42) sorted by null

1 2

  /system/core/libpixelflinger/codeflinger/
CodeCache.h 1 /* libs/pixelflinger/codeflinger/CodeCache.h
79 class CodeCache
83 CodeCache(size_t size);
84 ~CodeCache();
125 const key_value_pair_t<CodeCache::key_t, CodeCache::cache_entry_t>& lhs,
126 const key_value_pair_t<CodeCache::key_t, CodeCache::cache_entry_t>& rhs)
CodeCache.cpp 1 /* libs/pixelflinger/codeflinger/CodeCache.cpp
27 #define LOG_TAG "CodeCache"
31 #include "CodeCache.h"
153 CodeCache::CodeCache(size_t size)
159 CodeCache::~CodeCache()
164 sp<Assembly> CodeCache::lookup(const AssemblyKeyBase& keyBase) const
178 int CodeCache::cache( const AssemblyKeyBase& keyBase,
ARMAssembler.h 29 #include "CodeCache.h"
ARMAssembler.cpp 32 #include "CodeCache.h"
182 // the instruction cache is flushed by CodeCache
MIPSAssembler.h 29 #include "CodeCache.h"
  /dalvik/vm/compiler/codegen/arm/
ArchFactory.cpp 118 (int) gDvmJit.codeCache + templateEntryOffsets[opcode],
119 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]);
121 (int) gDvmJit.codeCache + templateEntryOffsets[opcode],
122 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]);
Assemble.cpp     [all...]
  /dalvik/vm/compiler/
Compiler.cpp 180 gDvmJit.codeCache = mmap(NULL, gDvmJit.codeCacheSize,
184 if (gDvmJit.codeCache == MAP_FAILED) {
192 // ALOGD("Code cache starts at %p", gDvmJit.codeCache);
198 memcpy((void *) gDvmJit.codeCache,
214 dvmCompilerCacheFlush((intptr_t) gDvmJit.codeCache,
215 (intptr_t) gDvmJit.codeCache + templateSize, 0);
218 stream = (char*)gDvmJit.codeCache + gDvmJit.codeCacheByteUsed;
219 ALOGV("codeCache = %p stream = %p before initJIT", gDvmJit.codeCache, stream);
227 int result = mprotect(gDvmJit.codeCache, gDvmJit.codeCacheSize
    [all...]
  /system/core/libpixelflinger/
Android.mk 13 codeflinger/CodeCache.cpp \
  /system/core/libpixelflinger/tests/codegen/
codegen.cpp 9 #include "codeflinger/CodeCache.h"
  /dalvik/vm/compiler/codegen/arm/Thumb/
Gen.cpp 72 (int) gDvmJit.codeCache + templateEntryOffsets[opcode],
73 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]);
75 (int) gDvmJit.codeCache + templateEntryOffsets[opcode],
76 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]);
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Gen.cpp 67 (int) gDvmJit.codeCache + templateEntryOffsets[opcode],
68 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]);
70 (int) gDvmJit.codeCache + templateEntryOffsets[opcode],
71 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]);
  /dalvik/vm/compiler/codegen/x86/
CodegenInterface.cpp 107 UNPROTECT_CODE_CACHE(gDvmJit.codeCache, gDvmJit.codeCacheByteUsed);
113 ((char *) gDvmJit.codeCache + gDvmJit.codeCacheSize);
114 maxAddr = (PredictedChainingCell *) gDvmJit.codeCache;
150 PROTECT_CODE_CACHE(gDvmJit.codeCache, gDvmJit.codeCacheByteUsed);
598 UNPROTECT_CODE_CACHE(gDvmJit.codeCache, gDvmJit.codeCacheByteUsed);
608 PROTECT_CODE_CACHE(gDvmJit.codeCache, gDvmJit.codeCacheByteUsed);
    [all...]
  /dalvik/vm/compiler/codegen/mips/
CodegenFactory.cpp 340 int targetAddr = (int) gDvmJit.codeCache + templateEntryOffsets[opCode];
341 int maxSourceAddr = (int) gDvmJit.codeCache + gDvmJit.codeCacheSize;
Assemble.cpp     [all...]
  /dalvik/vm/compiler/codegen/mips/Mips32/
Gen.cpp 71 (int) gDvmJit.codeCache + templateEntryOffsets[opcode]);
  /external/chromium_org/v8/src/
heap-snapshot-generator.h 412 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache);
objects-printer.cc 586 void CodeCache::CodeCachePrint(FILE* out) {
587 HeapObject::PrintHeader(out, "CodeCache");
    [all...]
heap-snapshot-generator.cc     [all...]
objects-debug.cc 396 void CodeCache::CodeCacheVerify() {
    [all...]
  /external/v8/src/
objects-printer.cc 546 void CodeCache::CodeCachePrint(FILE* out) {
547 HeapObject::PrintHeader(out, "CodeCache");
objects-debug.cc 317 void CodeCache::CodeCacheVerify() {
profile-generator.cc     [all...]
  /external/chromium_org/v8/tools/
grokdump.py     [all...]
  /dalvik/vm/
Globals.h 838 void* codeCache;
    [all...]

Completed in 1721 milliseconds

1 2