Lines Matching refs:quick_code
23 const ArrayRef<const uint8_t>& quick_code, bool owns_code_array) in CompiledCode() argument
26 SetCode(&quick_code); in CompiledCode()
29 void CompiledCode::SetCode(const ArrayRef<const uint8_t>* quick_code) { in SetCode() argument
30 if (quick_code != nullptr) { in SetCode()
31 CHECK(!quick_code->empty()); in SetCode()
35 quick_code_ = new SwapVector<uint8_t>(quick_code->begin(), quick_code->end(), in SetCode()
38 quick_code_ = compiler_driver_->DeduplicateCode(*quick_code); in SetCode()
126 const ArrayRef<const uint8_t>& quick_code, in CompiledMethod() argument
136 : CompiledCode(driver, instruction_set, quick_code, !driver->DedupeEnabled()), in CompiledMethod()
173 const ArrayRef<const uint8_t>& quick_code, in SwapAllocCompiledMethod() argument
185 alloc.construct(ret, driver, instruction_set, quick_code, frame_size_in_bytes, core_spill_mask, in SwapAllocCompiledMethod()