OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shadow_frame
(Results
1 - 13
of
13
) sorted by null
/art/runtime/interpreter/
interpreter.cc
70
const DexFile::CodeItem* code_item, ShadowFrame*
shadow_frame
,
75
std::string name(PrettyMethod(
shadow_frame
->GetMethod()));
77
std::string descriptor(DotToDescriptor(
shadow_frame
->GetVRegReference(arg_offset)->AsString()->ToModifiedUtf8().c_str()));
78
ClassLoader* class_loader = NULL; //
shadow_frame
.GetMethod()->GetDeclaringClass()->GetClassLoader();
85
Class* klass =
shadow_frame
->GetVRegReference(arg_offset)->AsClass();
95
Class* klass =
shadow_frame
->GetVRegReference(arg_offset)->AsClass();
96
String* name =
shadow_frame
->GetVRegReference(arg_offset + 1)->AsString();
133
Class* ctype =
shadow_frame
->GetVRegReference(arg_offset)->GetClass()->GetComponentType();
134
jint srcPos =
shadow_frame
->GetVReg(arg_offset + 1);
135
jint dstPos =
shadow_frame
->GetVReg(arg_offset + 3)
[
all
...]
interpreter.h
41
extern void EnterInterpreterFromDeoptimize(Thread* self, ShadowFrame*
shadow_frame
,
47
ShadowFrame&
shadow_frame
)
52
ShadowFrame*
shadow_frame
, JValue* result)
59
ShadowFrame*
shadow_frame
, JValue* result)
/art/runtime/entrypoints/interpreter/
interpreter_entrypoints.cc
30
ShadowFrame*
shadow_frame
, JValue* result) {
31
mirror::ArtMethod* method =
shadow_frame
->GetMethod();
39
arg_array.BuildArgArrayFromFrame(
shadow_frame
, arg_offset);
42
method->Invoke(self,
shadow_frame
->GetVRegArgs(arg_offset),
43
(
shadow_frame
->NumberOfVRegs() - arg_offset) * 4,
interpreter_entrypoints.h
39
ShadowFrame*
shadow_frame
, JValue* result);
42
ShadowFrame*
shadow_frame
, JValue* result);
/art/runtime/
invoke_arg_array_builder.h
167
void BuildArgArrayFromFrame(ShadowFrame*
shadow_frame
, uint32_t arg_offset)
171
if (!
shadow_frame
->GetMethod()->IsStatic()) {
172
Append(
shadow_frame
->GetVReg(cur_arg));
184
Append(
shadow_frame
->GetVReg(cur_arg));
189
AppendWide(
shadow_frame
->GetVRegLong(cur_arg));
thread.cc
2019
ShadowFrame*
shadow_frame
= GetCurrentShadowFrame();
local
[
all
...]
/art/runtime/mirror/
art_method.cc
280
ShadowFrame*
shadow_frame
= self->GetAndClearDeoptimizationShadowFrame(result);
local
282
self->SetTopOfShadowStack(
shadow_frame
);
283
interpreter::EnterInterpreterFromDeoptimize(self,
shadow_frame
, result);
art_method.h
42
const DexFile::CodeItem* code_item, ShadowFrame*
shadow_frame
, JValue* result);
/art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc
197
ShadowFrame*
shadow_frame
(ShadowFrame::Create(num_regs, NULL, // No last shadow coming from quick.
201
*
shadow_frame
, first_arg_reg);
206
self->PushShadowFrame(
shadow_frame
);
219
JValue result = interpreter::EnterInterpreterFromStub(self, mh, code_item, *
shadow_frame
);
/art/runtime/arch/arm/
entrypoints_init_arm.cc
28
ShadowFrame*
shadow_frame
, JValue* result);
31
ShadowFrame*
shadow_frame
, JValue* result);
/art/runtime/arch/mips/
entrypoints_init_mips.cc
27
ShadowFrame*
shadow_frame
, JValue* result);
30
ShadowFrame*
shadow_frame
, JValue* result);
/art/runtime/arch/x86/
entrypoints_init_x86.cc
26
ShadowFrame*
shadow_frame
, JValue* result);
29
ShadowFrame*
shadow_frame
, JValue* result);
/art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc
285
ShadowFrame*
shadow_frame
(ShadowFrame::Create(num_regs, NULL, // No last shadow coming from quick.
290
*
shadow_frame
, first_arg_reg);
295
self->PushShadowFrame(
shadow_frame
);
308
JValue result = interpreter::EnterInterpreterFromStub(self, mh, code_item, *
shadow_frame
);
Completed in 2162 milliseconds