Home | History | Annotate | Download | only in optimizing

Lines Matching defs:entrypoint

171     QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt()
174 mips_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this);
249 QuickEntrypointEnum entrypoint = do_clinit_ ? kQuickInitializeStaticStorage
251 mips_codegen->InvokeRuntime(entrypoint, instruction_, dex_pc_, this);
598 // If `entrypoint` is a valid location it is assumed to already be
599 // holding the entrypoint. The case where the entrypoint is passed in
605 Location entrypoint = Location::NoLocation())
606 : SlowPathCodeMIPS(instruction), ref_(ref), entrypoint_(entrypoint) {
632 // entrypoint. Also, there is no need to update the stack mask,
648 // of a dedicated entrypoint:
673 // The location of the entrypoint if already loaded.
732 // entrypoint. Also, there is no need to update the stack mask,
748 // of a dedicated entrypoint:
1928 void CodeGeneratorMIPS::InvokeRuntime(QuickEntrypointEnum entrypoint,
1932 ValidateInvokeRuntime(entrypoint, instruction, slow_path);
1933 GenerateInvokeRuntime(GetThreadOffset<kMipsPointerSize>(entrypoint).Int32Value(),
1934 IsDirectEntrypoint(entrypoint));
1935 if (EntrypointRequiresStackMap(entrypoint)) {
3158 // Always false for read barriers since we may need to go to the entrypoint for non-fatal cases
6495 /*entrypoint*/ temp);
6501 // Loading the entrypoint does not require a load acquire since it is only changed when
6504 // The entrypoint is null when the GC is not marking, this prevents one load compared to
6597 // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path.
7862 QuickEntrypointEnum entrypoint =
7864 codegen_->InvokeRuntime(entrypoint, instruction, instruction->GetDexPc());
8403 QuickEntrypointEnum entrypoint = (result_type == Primitive::kPrimFloat) ? kQuickL2f
8405 codegen_->InvokeRuntime(entrypoint, conversion, conversion->GetDexPc());
8457 QuickEntrypointEnum entrypoint = (input_type == Primitive::kPrimFloat) ? kQuickF2l
8459 codegen_->InvokeRuntime(entrypoint, conversion, conversion->GetDexPc());