/art/test/1981-structural-redef-private-method-handles/ |
D | Android.bp | 3 // 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/ |
D | handle_scope_test.cc | 100 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()
|
D | runtime_image.cc | 430 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 …]
|
D | mutator_gc_coord.md | 67 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/ |
D | Test1976.java | 127 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/ |
D | Test1981.java | 179 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/ |
D | expected-stdout.txt | 16 Running method handles 57 Running method handles using old handles 63 Running method handles using new handles
|
/art/compiler/optimizing/ |
D | reference_type_propagation_test.cc | 49 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 …]
|
D | optimizing_compiler.cc | 359 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 …]
|
D | sharpening.h | 56 VariableSizedHandleScope* handles);
|
D | optimizing_unit_test.h | 233 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);
|
D | sharpening.cc | 385 VariableSizedHandleScope* handles) { in ProcessLoadString() argument 465 load_string->SetString(handles->NewHandle(string)); in ProcessLoadString()
|
/art/test/1975-hello-structural-transformation/src/art/ |
D | Test1975.java | 170 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/ |
D | info.txt | 1 Test that the verifier handles field assignments in constructors of unresolve
|
/art/test/2240-tracing-non-invokable-method/ |
D | info.txt | 1 Tests that tracing handles non-invokable methods correctly without updating the
|
/art/test/1975-hello-structural-transformation/ |
D | expected-stdout.txt | 19 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/ |
D | info.txt | 2 the JIT'ed code handles OOM exception correctly since it cannot fall back to
|
/art/test/081-hot-exceptions/ |
D | info.txt | 1 Make a hot exception-throwing path to stress test how the trace builder handles
|
/art/test/664-aget-verifier/ |
D | info.txt | 1 Tests how the verifier handles aget on an array that was initially null.
|
/art/libnativebridge/ |
D | README.md | 15 The `libnativebridge` library handles loading of native libraries with a foreign
|
/art/build/apex/ |
D | art.rc | 15 # A service that handles dexopt. See art/artd/README.md. It's a lazy service
|
/art/openjdkjvmti/ |
D | ti_stack.cc | 548 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/ |
D | stub_test.cc | 853 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/ |
D | README.md | 47 The `test/run-test` script handles the execution of a single run-test in a given
|
/art/runtime/jit/ |
D | jit.cc | 1290 VariableSizedHandleScope handles(self); in CompileMethodsFromBootProfile() local 1294 dex_caches.push_back(handles.NewHandle(class_linker->FindDexCache(self, *dex_file))); in CompileMethodsFromBootProfile()
|