Home | History | Annotate | Download | only in quick

Lines Matching refs:Code

292     // Push a transition back into managed code onto the linked list in thread.
408 // All naked Object*s should now be in jobjects, so its safe to go into the main invoke code
436 // Lazily resolve a method for quick. Called by stub code.
456 const DexFile::CodeItem* code;
460 code = mh.GetCodeItem();
462 CHECK_LT(dex_pc, code->insns_size_in_code_units_);
463 const Instruction* instr = Instruction::At(&code->insns_[dex_pc]);
464 Instruction::Code instr_code = instr->Opcode();
530 const void* code = NULL;
544 code = called->GetEntryPointFromCompiledCode();
547 // Class is still initializing, go to oat and grab code (trampoline must be left in place
549 code = linker->GetOatCodeFor(called);
552 code = called->GetEntryPointFromCompiledCode();
558 CHECK_EQ(code == NULL, thread->IsExceptionPending());
566 return code;