Home
last modified time | relevance | path

Searched refs:handles (Results 1 – 25 of 33) sorted by relevance

12

/art/test/1981-structural-redef-private-method-handles/
DAndroid.bp3 // Build rules for ART run-test `1981-structural-redef-private-method-handles`.
16 name: "art-run-test-1981-structural-redef-private-method-handles",
21 ":art-run-test-1981-structural-redef-private-method-handles-expected-stdout",
22 ":art-run-test-1981-structural-redef-private-method-handles-expected-stderr",
28 name: "art-run-test-1981-structural-redef-private-method-handles-expected-stdout",
29 out: ["art-run-test-1981-structural-redef-private-method-handles-expected-stdout.txt"],
36 name: "art-run-test-1981-structural-redef-private-method-handles-expected-stderr",
37 out: ["art-run-test-1981-structural-redef-private-method-handles-expected-stderr.txt"],
/art/runtime/
Dhandle_scope_test.cc100 std::vector<Handle<mirror::Object>> handles; in TEST_F() local
104 handles.push_back(c); in TEST_F()
113 handles.push_back(hs.NewHandle(o)); in TEST_F()
114 EXPECT_OBJ_PTR_EQ(o, handles.back().Get()); in TEST_F()
115 EXPECT_TRUE(hs.Contains(handles.back().GetReference())); in TEST_F()
116 EXPECT_TRUE(base->Contains(handles.back().GetReference())); in TEST_F()
121 handles.push_back(null_handle); in TEST_F()
131 for (size_t i = 0, size = handles.size(); i != size; ++i) { in TEST_F()
132 EXPECT_EQ(handles[i].GetReference(), hs.GetHandle<mirror::Object>(i).GetReference()); in TEST_F()
Druntime_image.cc430 ClassTableVisitor(Handle<mirror::ClassLoader> loader, VariableSizedHandleScope& handles) in ClassTableVisitor() argument
431 : loader_(loader), handles_(handles) {} in ClassTableVisitor()
593 VariableSizedHandleScope handles(self); in EmitClasses() local
595 ClassTableVisitor class_table_visitor(loader, handles); in EmitClasses()
603 handles.VisitHandles(prune_visitor); in EmitClasses()
1069 VariableSizedHandleScope handles(soa.Self()); in WriteObjects() local
1071 Handle<mirror::Class> object_array_class = handles.NewHandle( in WriteObjects()
1074 Handle<mirror::ObjectArray<mirror::Object>> image_roots = handles.NewHandle( in WriteObjects()
1087 FindDexCaches(soa.Self(), dex_caches, handles); in WriteObjects()
1102 Handle<mirror::ClassLoader> loader = handles.NewHandle(dex_caches[0]->GetClassLoader()); in WriteObjects()
[all …]
Dmutator_gc_coord.md67 and promising to no longer touch Java data structures. It also handles any
118 addition waits for the thread to complete running the closure, and handles
/art/test/1976-hello-structural-static-methods/src/art/
DTest1976.java127 public static void runMethodHandles(MethodHandleWrapper[] handles) throws Exception { in runMethodHandles() argument
128 for (MethodHandleWrapper h : handles) { in runMethodHandles()
161 MethodHandleWrapper[] handles = getMethodHandles(methods); in doTest() local
163 runMethodHandles(handles); in doTest()
195 runMethodHandles(handles); in doTest()
/art/test/1981-structural-redef-private-method-handles/src/art/
DTest1981.java179 MethodHandle[] handles = in doTest() local
195 + printGeneric(vh, handles[i]) in doTest()
197 + printGeneric(vh, handles[i].invoke())); in doTest()
237 + printGeneric(vh, handles[i]) in doTest()
239 + printGeneric(vh, handles[i].invoke())); in doTest()
306 + printGeneric(vh, handles[i]) in doTest()
308 + printGeneric(vh, handles[i].invoke())); in doTest()
/art/test/1976-hello-structural-static-methods/
Dexpected-stdout.txt16 Running method handles
57 Running method handles using old handles
63 Running method handles using new handles
/art/compiler/optimizing/
Dreference_type_propagation_test.cc49 void SetupPropagation(VariableSizedHandleScope* handles) { in SetupPropagation() argument
50 graph_ = CreateGraph(handles); in SetupPropagation()
177 VariableSizedHandleScope handles(soa.Self()); in TEST_F() local
178 SetupPropagation(&handles); in TEST_F()
186 VariableSizedHandleScope handles(soa.Self()); in TEST_F() local
187 SetupPropagation(&handles); in TEST_F()
218 VariableSizedHandleScope handles(soa.Self()); in TEST_F() local
219 SetupPropagation(&handles); in TEST_F()
266 VariableSizedHandleScope handles(soa.Self()); in RunVisitListTest() local
267 SetupPropagation(&handles); in RunVisitListTest()
[all …]
Doptimizing_compiler.cc359 VariableSizedHandleScope* handles) const;
365 VariableSizedHandleScope* handles) const;
765 VariableSizedHandleScope* handles) const { in TryCompile()
826 handles, in TryCompile()
966 VariableSizedHandleScope* handles) const { in TryCompileIntrinsic()
985 handles, in TryCompileIntrinsic()
1085 VariableSizedHandleScope handles(soa.Self()); in Compile() local
1087 handles.NewHandle(method != nullptr ? method->GetDeclaringClass() : nullptr); in Compile()
1111 &handles)); in Compile()
1125 &handles)); in Compile()
[all …]
Dsharpening.h56 VariableSizedHandleScope* handles);
Doptimizing_unit_test.h233 HGraph* CreateGraph(VariableSizedHandleScope* handles = nullptr) {
253 handles,
264 VariableSizedHandleScope handles(soa.Self());
265 HGraph* graph = CreateGraph(&handles);
293 void InitGraph(VariableSizedHandleScope* handles = nullptr) {
294 CreateGraph(handles);
Dsharpening.cc385 VariableSizedHandleScope* handles) { in ProcessLoadString() argument
465 load_string->SetString(handles->NewHandle(string)); in ProcessLoadString()
/art/test/1975-hello-structural-transformation/src/art/
DTest1975.java170 public static void readMethodHandles(MethodHandleWrapper[] handles) throws Exception { in readMethodHandles() argument
171 for (MethodHandleWrapper h : handles) { in readMethodHandles()
197 MethodHandleWrapper[] handles = getMethodHandles(Transform1975.class.getFields()); in doTest() local
198 for (MethodHandleWrapper h : handles) { in doTest()
243 readMethodHandles(handles); in doTest()
/art/test/831-unresolved-field/
Dinfo.txt1 Test that the verifier handles field assignments in constructors of unresolve
/art/test/2240-tracing-non-invokable-method/
Dinfo.txt1 Tests that tracing handles non-invokable methods correctly without updating the
/art/test/1975-hello-structural-transformation/
Dexpected-stdout.txt19 Reading using method handles.
36 Reading using method handles.
56 Reading using method handles.
78 Reading using method handles.
89 Reading with old method handles
92 Reading with new method handles
/art/test/080-oom-throw/
Dinfo.txt2 the JIT'ed code handles OOM exception correctly since it cannot fall back to
/art/test/081-hot-exceptions/
Dinfo.txt1 Make a hot exception-throwing path to stress test how the trace builder handles
/art/test/664-aget-verifier/
Dinfo.txt1 Tests how the verifier handles aget on an array that was initially null.
/art/libnativebridge/
DREADME.md15 The `libnativebridge` library handles loading of native libraries with a foreign
/art/build/apex/
Dart.rc15 # A service that handles dexopt. See art/artd/README.md. It's a lazy service
/art/openjdkjvmti/
Dti_stack.cc548 for (size_t index = 0; index != handles.size(); ++index) { in GetThreadListStackTraces()
549 if (peer == handles[index].Get()) { in GetThreadListStackTraces()
566 std::vector<art::Handle<art::mirror::Object>> handles; in GetThreadListStackTraces() member
587 data.handles.push_back(hs.NewHandle(thread)); in GetThreadListStackTraces()
/art/runtime/arch/
Dstub_test.cc853 std::vector<Handle<mirror::Object>> handles; in TEST_F() local
870 handles.push_back(h); in TEST_F()
873 LOG(INFO) << "Used " << handles.size() << " arrays to fill space."; in TEST_F()
879 handles.push_back(h); in TEST_F()
/art/test/
DREADME.md47 The `test/run-test` script handles the execution of a single run-test in a given
/art/runtime/jit/
Djit.cc1290 VariableSizedHandleScope handles(self); in CompileMethodsFromBootProfile() local
1294 dex_caches.push_back(handles.NewHandle(class_linker->FindDexCache(self, *dex_file))); in CompileMethodsFromBootProfile()

12