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

  /art/compiler/
oat_test.cc 21 #include "compiled_method.h"
48 const CompiledMethod* compiled_method = local
52 if (compiled_method == nullptr) {
61 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
62 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
63 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
66 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode();
common_compiler_test.cc 23 #include "compiled_method.h"
47 const CompiledMethod* compiled_method = nullptr; local
51 compiled_method =
55 if (compiled_method != nullptr) {
56 const SwapVector<uint8_t>* code = compiled_method->GetQuickCode();
59 const SwapVector<uint8_t>* vmap_table = compiled_method->GetVmapTable();
62 const SwapVector<uint8_t>* mapping_table = compiled_method->GetMappingTable();
67 const SwapVector<uint8_t>* gc_map = compiled_method->GetGcMap();
73 compiled_method->GetFrameSizeInBytes(),
74 compiled_method->GetCoreSpillMask()
    [all...]
oat_writer.cc 29 #include "compiled_method.h"
160 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
161 return compiled_method->GetGcMap();
182 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
183 return compiled_method->GetMappingTable();
204 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
205 return compiled_method->GetVmapTable();
316 CompiledMethod* compiled_method = local
318 compiled_methods_.push_back(compiled_method);
319 if (compiled_method != nullptr)
370 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); local
562 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); local
603 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); local
685 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); local
906 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); local
1503 CompiledMethod* compiled_method = compiled_methods_[i]; local
    [all...]
  /art/compiler/jit/
jit_compiler.cc 140 CompiledMethod* compiled_method = nullptr; local
143 compiled_method = compiler_driver_->CompileMethod(self, method);
150 if (compiled_method == nullptr) {
165 result = MakeExecutable(compiled_method, method);
178 uint8_t* JitCompiler::WriteMethodHeaderAndCode(const CompiledMethod* compiled_method,
185 compiled_method->AlignCode(reinterpret_cast<uintptr_t>(reserve_begin)));
186 const auto* quick_code = compiled_method->GetQuickCode();
192 const auto frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
193 const auto core_spill_mask = compiled_method->GetCoreSpillMask();
194 const auto fp_spill_mask = compiled_method->GetFpSpillMask()
    [all...]
  /art/compiler/driver/
compiler_driver.cc 37 #include "compiled_method.h"
607 auto* compiled_method = GetCompiledMethod(MethodReference(dex_file, method_idx)); local
609 return compiled_method;
2261 CompiledMethod* compiled_method = nullptr; local
2343 CompiledMethod* compiled_method = nullptr; local
    [all...]

Completed in 651 milliseconds