Searched defs:compiled_method (Results 1 - 6 of 6) sorted by relevance

/art/compiler/sea_ir/
H A Dfrontend.cc60 CompiledMethod* compiled_method = local
64 return compiled_method;
/art/compiler/
H A Doat_test.cc35 const CompiledMethod* compiled_method = local
39 if (compiled_method == NULL) {
53 const std::vector<uint8_t>& code = compiled_method->GetCode();
59 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
60 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
61 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
H A Delf_writer_mclinker.cc244 const CompiledMethod* compiled_method = local
246 if (compiled_method != NULL) {
247 AddCompiledCodeInput(*compiled_method);
365 const CompiledMethod* compiled_method = local
367 if (compiled_method != NULL) {
368 uint32_t offset = FixupCompiledCodeOffset(*elf_file.get(), oatdata_address, *compiled_method);
H A Doat_writer.cc295 CompiledMethod* compiled_method = local
297 if (compiled_method != NULL) {
299 compiled_method->AddOatdataOffsetToCompliledCodeOffset(
302 const std::vector<uint8_t>& code = compiled_method->GetCode();
303 offset = compiled_method->AlignCode(offset);
307 uint32_t thumb_offset = compiled_method->CodeDelta();
321 frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
322 core_spill_mask = compiled_method->GetCoreSpillMask();
323 fp_spill_mask = compiled_method->GetFpSpillMask();
325 const std::vector<uint8_t>& mapping_table = compiled_method
667 const CompiledMethod* compiled_method = local
[all...]
/art/runtime/
H A Dcommon_test.h189 const CompiledMethod* compiled_method = NULL; local
193 compiled_method =
197 if (compiled_method != NULL) {
198 const std::vector<uint8_t>& code = compiled_method->GetCode();
201 compiled_method->GetInstructionSet());
204 compiled_method->GetFrameSizeInBytes(),
205 compiled_method->GetCoreSpillMask(),
206 compiled_method->GetFpSpillMask(),
207 &compiled_method->GetMappingTable()[0],
208 &compiled_method
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc2308 CompiledMethod* compiled_method = NULL; local
2312 compiled_method = (*jni_compiler_)(*this, access_flags, method_idx, dex_file);
2313 CHECK(compiled_method != NULL);
2331 compiled_method = (*compiler)(*this, code_item, access_flags, invoke_type, class_def_idx,
2353 if (compiled_method != NULL) {
2358 compiled_methods_.Put(ref, compiled_method);

Completed in 154 milliseconds