Home
last modified time | relevance | path

Searched refs:quick_code_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/
Dcompiled_method.cc25 owns_code_array_(owns_code_array), quick_code_(nullptr) { in CompiledCode()
34 CHECK(quick_code_ == nullptr); 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()
45 delete quick_code_; in ~CompiledCode()
50 if (quick_code_ != nullptr) { in operator ==()
51 if (rhs.quick_code_ == nullptr) { in operator ==()
53 } else if (quick_code_->size() != rhs.quick_code_->size()) { in operator ==()
56 return std::equal(quick_code_->begin(), quick_code_->end(), rhs.quick_code_->begin()); in operator ==()
59 return (rhs.quick_code_ == nullptr); in operator ==()
Dcompiled_method.h47 return quick_code_; in GetQuickCode()
83 SwapVector<uint8_t>* quick_code_; variable