HomeSort by relevance Sort by last modified time
    Searched refs:DexFileMethodInliner (Results 1 - 12 of 12) sorted by null

  /art/compiler/dex/quick/
dex_file_to_method_inliner_map.h 33 * Map each DexFile to its DexFileMethodInliner.
43 DexFileMethodInliner* GetMethodInliner(const DexFile* dex_file) NO_THREAD_SAFETY_ANALYSIS;
49 std::map<const DexFile*, DexFileMethodInliner*> inliners_ GUARDED_BY(lock_);
dex_file_to_method_inliner_map.cc 40 DexFileMethodInliner* DexFileToMethodInlinerMap::GetMethodInliner(const DexFile* dex_file) {
56 DexFileMethodInliner* locked_inliner;
59 DexFileMethodInliner** inliner = &inliners_[dex_file]; // inserts new entry if not found
63 *inliner = new DexFileMethodInliner;
dex_file_method_inliner.cc 140 const uint32_t DexFileMethodInliner::kIndexUnresolved;
141 const char* const DexFileMethodInliner::kClassCacheNames[] = {
174 const char* const DexFileMethodInliner::kNameCacheNames[] = {
230 const DexFileMethodInliner::ProtoDef DexFileMethodInliner::kProtoCacheDefs[] = {
356 const DexFileMethodInliner::IntrinsicDef DexFileMethodInliner::kIntrinsicMethods[] = {
483 DexFileMethodInliner::DexFileMethodInliner()
484 : lock_("DexFileMethodInliner lock", kDexFileMethodInlinerLock)
    [all...]
dex_file_method_inliner.h 52 class DexFileMethodInliner {
54 DexFileMethodInliner();
55 ~DexFileMethodInliner();
376 DISALLOW_COPY_AND_ASSIGN(DexFileMethodInliner);
mir_to_lir.h 145 class DexFileMethodInliner;
    [all...]
gen_invoke.cc     [all...]
  /art/compiler/dex/
mir_method_info.cc 71 DexFileMethodInliner* default_inliner =
mir_graph.h 39 class DexFileMethodInliner;
    [all...]
mir_optimization.cc     [all...]
  /art/compiler/optimizing/
intrinsics.cc 303 // The DexFileMethodInliner should have checked whether the methods are agreeing with
328 // TODO: Refactor DexFileMethodInliner and have something nicer than InlineMethod.
330 DexFileMethodInliner* inliner = driver_->GetMethodInlinerMap()->GetMethodInliner(dex_file_);
  /art/compiler/dex/quick/x86/
utility_x86.cc     [all...]
  /art/compiler/driver/
compiler_driver.cc     [all...]

Completed in 135 milliseconds