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 283 static uint32_t ComputeRootTableSize(uint32_t number_of_roots) {
284 return sizeof(uint32_t) + number_of_roots * sizeof(GcRoot<mirror::Object>);
322 static uint8_t* GetRootTable(const void* code_ptr, uint32_t* number_of_roots = nullptr) {
326 if (number_of_roots != nullptr) {
327 *number_of_roots = roots;
367 uint32_t number_of_roots = 0; local
368 uint8_t* roots_data = GetRootTable(entry.first, &number_of_roots);
370 for (uint32_t i = 0; i < number_of_roots; ++i) {
765 size_t number_of_roots,
770 size_t table_size = ComputeRootTableSize(number_of_roots);
    [all...]
jit_code_cache.h 130 // for storing `number_of_roots` roots. Returns null if there is no more room.
135 size_t number_of_roots,
  /art/compiler/optimizing/
optimizing_compiler.cc 1190 size_t number_of_roots = codegen->GetNumberOfJitRoots(); local
    [all...]

Completed in 740 milliseconds