HomeSort by relevance Sort by last modified time
    Searched refs:handle_scope_offset (Results 1 - 8 of 8) sorted by null

  /art/compiler/jni/quick/
jni_compiler.cc 138 FrameOffset handle_scope_offset = main_jni_conv->CurrentParamHandleScopeEntryOffset(); local
140 CHECK_LT(handle_scope_offset.Uint32Value(), frame_size);
146 __ StoreRef(handle_scope_offset, main_jni_conv->InterproceduralScratchRegister());
157 FrameOffset handle_scope_offset = main_jni_conv->CurrentParamHandleScopeEntryOffset(); local
159 CHECK_LT(handle_scope_offset.Uint32Value(), frame_size);
160 CHECK_NE(handle_scope_offset.Uint32Value(),
169 __ StoreRef(handle_scope_offset, in_reg);
173 __ CopyRef(handle_scope_offset, in_off,
321 FrameOffset handle_scope_offset = main_jni_conv->CurrentParamHandleScopeEntryOffset(); local
324 __ CreateHandleScopeEntry(out_off, handle_scope_offset,
    [all...]
  /art/compiler/utils/arm/
assembler_arm.cc 729 FrameOffset handle_scope_offset,
741 SP, handle_scope_offset.Int32Value());
751 AddConstant(out_reg.AsCoreRegister(), SP, handle_scope_offset.Int32Value(), NE);
753 AddConstant(out_reg.AsCoreRegister(), SP, handle_scope_offset.Int32Value(), AL);
758 FrameOffset handle_scope_offset,
765 handle_scope_offset.Int32Value());
768 // e.g. scratch = (scratch == 0) ? 0 : (SP+handle_scope_offset)
771 AddConstant(scratch.AsCoreRegister(), SP, handle_scope_offset.Int32Value(), NE);
773 AddConstant(scratch.AsCoreRegister(), SP, handle_scope_offset.Int32Value(), AL);
    [all...]
  /art/runtime/
art_method.h 391 constexpr size_t handle_scope_offset = sizeof(ArtMethod*); local
392 DCHECK_LT(handle_scope_offset, GetFrameSizeInBytes());
393 return FrameOffset(handle_scope_offset);
  /art/compiler/utils/mips/
assembler_mips.cc 847 FrameOffset handle_scope_offset,
860 SP, handle_scope_offset.Int32Value());
867 AddConstant(out_reg.AsCoreRegister(), SP, handle_scope_offset.Int32Value());
870 AddConstant(out_reg.AsCoreRegister(), SP, handle_scope_offset.Int32Value());
875 FrameOffset handle_scope_offset,
883 handle_scope_offset.Int32Value());
886 // e.g. scratch = (scratch == 0) ? 0 : (SP+handle_scope_offset)
888 AddConstant(scratch.AsCoreRegister(), SP, handle_scope_offset.Int32Value());
891 AddConstant(scratch.AsCoreRegister(), SP, handle_scope_offset.Int32Value());
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64.cc     [all...]
  /art/compiler/utils/arm64/
assembler_arm64.cc 574 void Arm64Assembler::CreateHandleScopeEntry(FrameOffset out_off, FrameOffset handle_scope_offset,
580 handle_scope_offset.Int32Value());
583 // e.g. scratch = (scratch == 0) ? 0 : (SP+handle_scope_offset)
586 AddConstant(scratch.AsXRegister(), SP, handle_scope_offset.Int32Value(), ne);
588 AddConstant(scratch.AsXRegister(), SP, handle_scope_offset.Int32Value(), al);
  /art/compiler/utils/x86/
assembler_x86.cc     [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.cc     [all...]

Completed in 147 milliseconds