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

  /art/runtime/jit/
jit_code_cache.cc 664 static uint32_t ComputeRootTableSize(uint32_t number_of_roots) {
665 return sizeof(uint32_t) + number_of_roots * sizeof(GcRoot<mirror::Object>);
711 static uint8_t* GetRootTable(const void* code_ptr, uint32_t* number_of_roots = nullptr) {
715 if (number_of_roots != nullptr) {
716 *number_of_roots = roots;
757 uint32_t number_of_roots = 0; local
758 uint8_t* roots_data = GetRootTable(entry.first, &number_of_roots);
760 for (uint32_t i = 0; i < number_of_roots; ++i) {
    [all...]
jit_code_cache.h 161 // for storing `number_of_roots` roots. Returns null if there is no more room.
165 size_t number_of_roots,
  /art/compiler/optimizing/
optimizing_compiler.cc 1378 size_t number_of_roots = codegen->GetNumberOfJitRoots(); local
    [all...]

Completed in 89 milliseconds