Lines Matching refs:label
202 JNIMacroLabel* label, ArrayRef<const ManagedRegister> scratch_regs) = 0;
207 virtual void TryToTransitionFromNativeToRunnable(JNIMacroLabel* label,
212 virtual void SuspendCheck(JNIMacroLabel* label) = 0;
216 virtual void ExceptionPoll(JNIMacroLabel* label) = 0;
223 virtual void Jump(JNIMacroLabel* label) = 0;
225 virtual void TestGcMarking(JNIMacroLabel* label, JNIMacroUnaryCondition cond) = 0;
228 JNIMacroLabel* label,
231 virtual void TestByteAndJumpIfNotZero(uintptr_t address, JNIMacroLabel* label) = 0;
233 virtual void Bind(JNIMacroLabel* label) = 0;
306 static Self* Cast(JNIMacroLabel* label) { in Cast() argument
307 CHECK(label != nullptr); in Cast()
308 CHECK_EQ(kIsa, label->isa_); in Cast()
310 return reinterpret_cast<Self*>(label); in Cast()