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 290 static uint32_t ComputeRootTableSize(uint32_t number_of_roots) {
291 return sizeof(uint32_t) + number_of_roots * sizeof(GcRoot<mirror::Object>);
329 static uint8_t* GetRootTable(const void* code_ptr, uint32_t* number_of_roots = nullptr) {
333 if (number_of_roots != nullptr) {
334 *number_of_roots = roots;
375 uint32_t number_of_roots = 0; local
376 uint8_t* roots_data = GetRootTable(entry.first, &number_of_roots);
378 for (uint32_t i = 0; i < number_of_roots; ++i) {
    [all...]
jit_code_cache.h 131 // for storing `number_of_roots` roots. Returns null if there is no more room.
136 size_t number_of_roots,
  /art/compiler/optimizing/
optimizing_compiler.cc 1196 size_t number_of_roots = codegen->GetNumberOfJitRoots(); local
    [all...]

Completed in 41 milliseconds