Home
last modified time | relevance | path

Searched refs:entrypoint_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dnodes.h4609 entrypoint_(entrypoint) {
4634 return entrypoint_ == kQuickAllocObjectWithChecks;
4645 QuickEntrypointEnum GetEntrypoint() const { return entrypoint_; }
4648 entrypoint_ = entrypoint;
4676 QuickEntrypointEnum entrypoint_;
Dcode_generator_riscv64.cc693 : SlowPathCodeRISCV64(instruction), ref_(ref), entrypoint_(entrypoint) { in ReadBarrierMarkSlowPathRISCV64()
739 DCHECK_NE(entrypoint_.AsRegister<XRegister>(), TMP); // A taken branch can clobber `TMP`. in EmitNativeCode()
740 __ Jalr(entrypoint_.AsRegister<XRegister>()); // Clobbers `RA` (used as the `entrypoint_`). in EmitNativeCode()
749 const Location entrypoint_; member in art::riscv64::ReadBarrierMarkSlowPathRISCV64