OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:handle_scope_offset
(Results
1 - 7
of
7
) sorted by null
/art/compiler/jni/quick/
jni_compiler.cc
132
FrameOffset
handle_scope_offset
= main_jni_conv->CurrentParamHandleScopeEntryOffset();
local
134
CHECK_LT(
handle_scope_offset
.Uint32Value(), frame_size);
138
__ StoreRef(
handle_scope_offset
, main_jni_conv->InterproceduralScratchRegister());
149
FrameOffset
handle_scope_offset
= main_jni_conv->CurrentParamHandleScopeEntryOffset();
local
151
CHECK_LT(
handle_scope_offset
.Uint32Value(), frame_size);
152
CHECK_NE(
handle_scope_offset
.Uint32Value(),
161
__ StoreRef(
handle_scope_offset
, in_reg);
165
__ CopyRef(
handle_scope_offset
, in_off,
275
FrameOffset
handle_scope_offset
= main_jni_conv->CurrentParamHandleScopeEntryOffset();
local
278
__ CreateHandleScopeEntry(out_off,
handle_scope_offset
,
[
all
...]
/art/compiler/utils/arm/
assembler_arm.cc
701
FrameOffset
handle_scope_offset
,
713
SP,
handle_scope_offset
.Int32Value());
723
AddConstant(out_reg.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value(), NE);
725
AddConstant(out_reg.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value(), AL);
730
FrameOffset
handle_scope_offset
,
737
handle_scope_offset
.Int32Value());
740
// e.g. scratch = (scratch == 0) ? 0 : (SP+
handle_scope_offset
)
743
AddConstant(scratch.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value(), NE);
745
AddConstant(scratch.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value(), AL);
/art/compiler/utils/mips/
assembler_mips.cc
831
FrameOffset
handle_scope_offset
,
844
SP,
handle_scope_offset
.Int32Value());
851
AddConstant(out_reg.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value());
854
AddConstant(out_reg.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value());
859
FrameOffset
handle_scope_offset
,
867
handle_scope_offset
.Int32Value());
870
// e.g. scratch = (scratch == 0) ? 0 : (SP+
handle_scope_offset
)
872
AddConstant(scratch.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value());
875
AddConstant(scratch.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value());
[
all
...]
/art/runtime/mirror/
art_method.h
412
constexpr size_t
handle_scope_offset
= sizeof(StackReference<mirror::ArtMethod>);
local
413
DCHECK_LT(
handle_scope_offset
, GetFrameSizeInBytes());
414
return FrameOffset(
handle_scope_offset
);
/art/compiler/utils/x86_64/
assembler_x86_64.cc
[
all
...]
/art/compiler/utils/arm64/
assembler_arm64.cc
568
void Arm64Assembler::CreateHandleScopeEntry(FrameOffset out_off, FrameOffset
handle_scope_offset
,
574
handle_scope_offset
.Int32Value());
577
// e.g. scratch = (scratch == 0) ? 0 : (SP+
handle_scope_offset
)
580
AddConstant(scratch.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value(), NE);
582
AddConstant(scratch.AsCoreRegister(), SP,
handle_scope_offset
.Int32Value(), AL);
/art/compiler/utils/x86/
assembler_x86.cc
[
all
...]
Completed in 133 milliseconds