Home
last modified time | relevance | path

Searched refs:slot (Results 1 – 25 of 58) sorted by relevance

123

/art/test/1966-get-set-local-objects-no-table/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
DTest1966.java92 public void invoke(Thread thread, Method target, int slot, int depth) throws Exception; in invoke() argument
96 public void SetVar(Thread t, int depth, int slot, Object v); in SetVar() argument
99 public static interface GetterFunction { public Object GetVar(Thread t, int depth, int slot); } in GetVar() argument
104 public void invoke(Thread t, Method method, int slot, int depth) { in NamedSet()
106 get.SetVar(t, depth, slot, v); in NamedSet()
121 public void invoke(Thread t, Method method, int slot, int depth) {
123 Object res = get.GetVar(t, depth, slot);
145 public int slot = -1;
154 slot = i;
186 safepoint.invoke(remote, target, pause.slot, frame.depth);
/art/test/1967-get-set-local-bad-slot/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1923-frame-pop/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1916-get-set-current-frame/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
DTest1916.java86 int slot = FindSlot(frame); in runGet() local
87 int value = Locals.GetLocalVariableInt(target_get, depth, slot); in runGet()
116 int slot = FindSlot(frame); in runSet() local
118 Locals.SetLocalVariableInt(target_set, depth, slot, SET_VALUE); in runSet()
132 return var.slot; in FindSlot()
/art/test/1939-proxy-frames/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1915-get-set-local-current-thread/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
DTest1915.java58 int slot = FindSlot(frame); in run() local
59 int value = Locals.GetLocalVariableInt(Thread.currentThread(), depth, slot); in run()
67 int slot = FindSlot(frame); in run() local
68 Locals.SetLocalVariableInt(Thread.currentThread(), depth, slot, SET_VALUE); in run() local
78 return var.slot; in FindSlot()
/art/test/1925-self-frame-pop/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/jvmti-common/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1913-get-set-local-objects/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1926-missed-frame-pop/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1924-frame-pop-toggle/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1914-get-local-instance/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1965-get-set-local-primitive-no-tables/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
DTest1965.java47 public void invoke(Thread thread, Method target, int slot, int depth) throws Exception; in invoke() argument
51 public void SetVar(Thread t, int depth, int slot, Object v); in SetVar() argument
54 public static interface GetterFunction { public Object GetVar(Thread t, int depth, int slot); } in GetVar() argument
59 public void invoke(Thread t, Method method, int slot, int depth) { in NamedSet()
61 get.SetVar(t, depth, slot, v); in NamedSet()
76 public void invoke(Thread t, Method method, int slot, int depth) {
78 Object res = get.GetVar(t, depth, slot);
100 public int slot = -1;
109 slot = v;
142 safepoint.invoke(remote, target, pause.slot, frame.depth);
/art/test/1911-get-local-var-table/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1912-get-set-local-primitive/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/1935-get-set-current-frame-jit/src/art/
DLocals.java31 public final int slot; field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
[all …]
/art/test/ti-agent/
Dlocals_helper.cc50 jint slot, in Java_art_Locals_SetLocalVariableObject() argument
52 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalObject(t, depth, slot, val)); in Java_art_Locals_SetLocalVariableObject()
59 jint slot, in Java_art_Locals_SetLocalVariableDouble() argument
61 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalDouble(t, depth, slot, val)); in Java_art_Locals_SetLocalVariableDouble()
68 jint slot, in Java_art_Locals_SetLocalVariableFloat() argument
70 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalFloat(t, depth, slot, val)); in Java_art_Locals_SetLocalVariableFloat()
77 jint slot, in Java_art_Locals_SetLocalVariableLong() argument
79 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalLong(t, depth, slot, val)); in Java_art_Locals_SetLocalVariableLong()
86 jint slot, in Java_art_Locals_SetLocalVariableInt() argument
88 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalInt(t, depth, slot, val)); in Java_art_Locals_SetLocalVariableInt()
[all …]
/art/runtime/gc/allocator/
Drosalloc.h157 Slot* slot; in Remove() local
176 slot = old_head; in Remove()
183 slot->Clear(); in Remove()
188 return slot; in Remove()
190 void Add(Slot* slot) { in Add() argument
194 DCHECK(slot != nullptr); in Add()
195 DCHECK(slot->Next() == nullptr); in Add()
204 *headp = slot; in Add()
206 *tailp = slot; in Add()
213 *headp = slot; in Add()
[all …]
Drosalloc-inl.h112 Slot* slot = free_list_.Remove(); in AllocSlot() local
113 if (kTraceRosAlloc && slot != nullptr) { in AllocSlot()
115 LOG(INFO) << "RosAlloc::Run::AllocSlot() : " << slot in AllocSlot()
117 << ", slot_idx=" << SlotIndex(slot); in AllocSlot()
119 return slot; in AllocSlot()
/art/openjdkjvmti/
Dti_method.h90 static jvmtiError SetLocalVariable(jvmtiEnv* env, jthread thread, jint depth, jint slot, T data);
93 static jvmtiError GetLocalVariable(jvmtiEnv* env, jthread thread, jint depth, jint slot, T* data);
101 jint slot,
107 jint slot,
/art/runtime/entrypoints/quick/
Dquick_dexcache_entrypoints.cc50 GcRoot<mirror::Object>* slot = reinterpret_cast<GcRoot<mirror::Object>*>( in StoreObjectInBss() local
52 DCHECK_GE(slot, oat_file->GetBssGcRoots().data()); in StoreObjectInBss()
53 DCHECK_LT(slot, oat_file->GetBssGcRoots().data() + oat_file->GetBssGcRoots().size()); in StoreObjectInBss()
54 if (slot->IsNull()) { in StoreObjectInBss()
57 reinterpret_cast<std::atomic<GcRoot<mirror::Object>>*>(slot); in StoreObjectInBss()
58 static_assert(sizeof(*slot) == sizeof(*atomic_slot), "Size check"); in StoreObjectInBss()
76 DCHECK_EQ(object, slot->Read()); in StoreObjectInBss()

123