Home | History | Annotate | Download | only in jit

Lines Matching defs:memory

170              memory_use_("Memory used for compilation", 16),
171 lock_("JIT memory use lock"),
476 void** memory = nullptr;
514 // Allocate memory to put shadow frame values. The osr stub will copy that memory to
518 memory = reinterpret_cast<void**>(malloc(frame_size));
519 CHECK(memory != nullptr);
520 memset(memory, 0, frame_size);
523 memory[0] = method;
552 (reinterpret_cast<int32_t*>(memory))[slot_offset / sizeof(int32_t)] = vreg_value;
567 (*art_quick_osr_stub)(memory,
579 free(memory);