OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inline_info_encoding
(Results
1 - 7
of
7
) sorted by null
/art/compiler/optimizing/
stack_map_test.cc
240
ASSERT_EQ(2u, inline_info.GetDepth(encoding.
inline_info_encoding
));
241
ASSERT_EQ(82u, inline_info.GetMethodIndexAtDepth(encoding.
inline_info_encoding
, 0));
242
ASSERT_EQ(42u, inline_info.GetMethodIndexAtDepth(encoding.
inline_info_encoding
, 1));
243
ASSERT_EQ(3u, inline_info.GetDexPcAtDepth(encoding.
inline_info_encoding
, 0));
244
ASSERT_EQ(2u, inline_info.GetDexPcAtDepth(encoding.
inline_info_encoding
, 1));
245
ASSERT_EQ(kDirect, inline_info.GetInvokeTypeAtDepth(encoding.
inline_info_encoding
, 0));
246
ASSERT_EQ(kStatic, inline_info.GetInvokeTypeAtDepth(encoding.
inline_info_encoding
, 1));
[
all
...]
stack_map_stream.cc
165
code_info_encoding.
inline_info_encoding
= inline_info_encoding_;
537
DCHECK_EQ(inline_info.GetDepth(encoding.
inline_info_encoding
), entry.inlining_depth);
542
DCHECK_EQ(inline_info.GetDexPcAtDepth(encoding.
inline_info_encoding
, d),
544
DCHECK_EQ(inline_info.GetMethodIndexAtDepth(encoding.
inline_info_encoding
, d),
546
DCHECK_EQ(inline_info.GetInvokeTypeAtDepth(encoding.
inline_info_encoding
, d),
/art/runtime/
stack_map.cc
128
encoding.
inline_info_encoding
.Dump(vios);
224
InlineInfoEncoding
inline_info_encoding
= code_info.ExtractEncoding().
inline_info_encoding
;
local
226
<< static_cast<uint32_t>(GetDepth(
inline_info_encoding
))
229
for (size_t i = 0; i < GetDepth(
inline_info_encoding
); ++i) {
233
<< " (dex_pc=0x" << GetDexPcAtDepth(
inline_info_encoding
, i)
235
<< ", method_index=" << GetMethodIndexAtDepth(
inline_info_encoding
, i)
236
<< ", invoke_type=" << static_cast<InvokeType>(GetInvokeTypeAtDepth(
inline_info_encoding
,
239
if (HasDexRegisterMapAtDepth(
inline_info_encoding
, i) && (number_of_dex_registers != nullptr)) {
stack_map.h
1027
InlineInfoEncoding
inline_info_encoding
;
member in struct:art::DexRegisterLocation::CodeInfoEncoding
[
all
...]
stack.cc
138
encoding.
inline_info_encoding
,
142
encoding.
inline_info_encoding
,
159
return GetCurrentInlineInfo().GetDexPcAtDepth(encoding.
inline_info_encoding
,
806
for (current_inlining_depth_ = inline_info.GetDepth(encoding.
inline_info_encoding
);
[
all
...]
/art/runtime/entrypoints/
entrypoint_utils.cc
286
encoding.
inline_info_encoding
,
287
inline_info.GetDepth(encoding.
inline_info_encoding
) - 1);
/art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc
335
return inline_info.GetDexPcAtDepth(encoding.
inline_info_encoding
,
336
inline_info.GetDepth(encoding.
inline_info_encoding
)-1);
[
all
...]
Completed in 265 milliseconds