HomeSort by relevance Sort by last modified time
    Searched defs:compiled_method (Results 1 - 5 of 5) sorted by null

  /art/compiler/dex/
dex_to_dex_decompiler_test.cc 21 #include "compiler/compiled_method.h"
97 CompiledMethod* compiled_method = local
100 if (compiled_method != nullptr) {
101 table = compiled_method->GetVmapTable();
109 CompiledMethod* compiled_method = local
112 if (compiled_method != nullptr) {
113 table = compiled_method->GetVmapTable();
  /art/compiler/
common_compiler_test.cc 25 #include "compiled_method.h"
48 const CompiledMethod* compiled_method = nullptr; local
52 compiled_method =
57 if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0u) {
58 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
60 ArrayRef<const uint8_t> vmap_table = compiled_method->GetVmapTable();
64 ArrayRef<const uint8_t> method_info = compiled_method->GetMethodInfo();
70 compiled_method->GetFrameSizeInBytes(),
71 compiled_method->GetCoreSpillMask()
    [all...]
oat_test.cc 26 #include "compiled_method.h"
68 const CompiledMethod* compiled_method = local
72 if (compiled_method == nullptr) {
81 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
82 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
83 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
86 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
    [all...]
  /art/compiler/optimizing/
optimizing_compiler.cc 55 #include "compiled_method.h"
866 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod( local
    [all...]
  /art/compiler/driver/
compiler_driver.cc 40 #include "compiled_method.h"
504 CompiledMethod* compiled_method = nullptr; local
518 compiled_method = optimizer::ArtCompileDEX(
567 compiled_method = driver->GetCompiler()->JniCompile(access_flags,
571 CHECK(compiled_method != nullptr);
594 compiled_method = driver->GetCompiler()->Compile(code_item,
603 if (compiled_method == nullptr &&
618 if (compiled_method != nullptr) {
621 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
630 driver->AddCompiledMethod(method_ref, compiled_method, non_relative_linker_patch_count)
2928 CompiledMethod* compiled_method = nullptr; local
2929 compiled_methods_.Get(DexFileReference(ref.dex_file, ref.dex_method_index), &compiled_method); local
    [all...]

Completed in 2615 milliseconds