Home
last modified time | relevance | path

Searched refs:VariableSizedHandleScope (Results 1 – 25 of 30) sorted by relevance

12

/art/runtime/
Dhandle_scope-inl.h182 inline VariableSizedHandleScope* BaseHandleScope::AsVariableSized() { in AsVariableSized()
184 return down_cast<VariableSizedHandleScope*>(this); in AsVariableSized()
192 inline const VariableSizedHandleScope* BaseHandleScope::AsVariableSized() const { in AsVariableSized()
194 return down_cast<const VariableSizedHandleScope*>(this); in AsVariableSized()
203 inline MutableHandle<T> VariableSizedHandleScope::NewHandle(T* object) { in NewHandle()
208 inline MutableHandle<MirrorType> VariableSizedHandleScope::NewHandle(ObjPtr<MirrorType> ptr) { in NewHandle()
215 inline VariableSizedHandleScope::VariableSizedHandleScope(Thread* const self) in VariableSizedHandleScope() function
227 inline VariableSizedHandleScope::~VariableSizedHandleScope() { in ~VariableSizedHandleScope()
241 inline uint32_t VariableSizedHandleScope::NumberOfReferences() const { in NumberOfReferences()
251 inline bool VariableSizedHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) in Contains()
[all …]
Dhandle_scope.h38 class VariableSizedHandleScope; variable
64 ALWAYS_INLINE VariableSizedHandleScope* AsVariableSized();
66 ALWAYS_INLINE const VariableSizedHandleScope* AsVariableSized() const;
216 friend class VariableSizedHandleScope; variable
244 class VariableSizedHandleScope : public BaseHandleScope {
246 explicit VariableSizedHandleScope(Thread* const self) REQUIRES_SHARED(Locks::mutator_lock_);
247 ~VariableSizedHandleScope() REQUIRES_SHARED(Locks::mutator_lock_);
279 DISALLOW_COPY_AND_ASSIGN(VariableSizedHandleScope);
Dcommon_runtime_test.h71 class VariableSizedHandleScope; variable
81 VariableSizedHandleScope* handle_scope)
Dhandle_scope_test.cc94 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
Dclass_table_test.cc74 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
Dmonitor_test.cc261 VariableSizedHandleScope vhs(soa.Self()); in CommonWaitSetup()
Druntime_callbacks_test.cc306 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
Dclass_loader_context.cc762 VariableSizedHandleScope& map_scope, in CreateClassLoaderInternal()
849 VariableSizedHandleScope map_scope(self); in CreateClassLoader()
Dcommon_runtime_test.cc335 VariableSizedHandleScope* handle_scope) { in FillHeap()
/art/runtime/gc/
Dheap_verification_test.cc54 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
75 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
94 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
107 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
125 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
151 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
171 VariableSizedHandleScope hs(soa.Self()); in TEST_F()
Dheap.h60 class VariableSizedHandleScope; variable
/art/compiler/optimizing/
Dsharpening.h55 VariableSizedHandleScope* handles);
Dinstruction_simplifier_test.cc87 std::pair<HLoadClass*, HLoadClass*> GetLoadClasses(VariableSizedHandleScope* vshs) { in GetLoadClasses()
131 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
224 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
314 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
401 VariableSizedHandleScope vshs(soa.Self()); in TEST_P()
491 VariableSizedHandleScope vshs(soa.Self()); in TEST_P()
Dreference_type_propagation_test.cc46 void SetupPropagation(VariableSizedHandleScope* handles) { in SetupPropagation()
177 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
186 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
218 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
266 VariableSizedHandleScope handles(soa.Self()); in RunVisitListTest()
368 VariableSizedHandleScope handles(soa.Self()); in RunVisitListTest()
Dload_store_elimination_test.cc1237 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1366 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1506 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1601 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1693 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1787 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2053 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2130 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2202 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2291 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
[all …]
Doptimizing_compiler.cc384 VariableSizedHandleScope* handles) const;
391 VariableSizedHandleScope* handles) const;
750 VariableSizedHandleScope* handles) const { in TryCompile()
915 VariableSizedHandleScope* handles) const { in TryCompileIntrinsic()
1037 VariableSizedHandleScope handles(soa.Self()); in Compile()
1163 VariableSizedHandleScope handles(soa.Self()); in JniCompile()
1330 VariableSizedHandleScope handles(self); in JitCompile()
Doptimizing_unit_test.h234 HGraph* CreateGraph(VariableSizedHandleScope* handles = nullptr) {
264 VariableSizedHandleScope* handles = nullptr) {
293 void InitGraph(VariableSizedHandleScope* handles = nullptr) {
Dsharpening.cc363 VariableSizedHandleScope* handles) { in ProcessLoadString()
Dnodes.h312 explicit HandleCache(VariableSizedHandleScope* handles) : handles_(handles) { } in HandleCache()
314 VariableSizedHandleScope* GetHandles() { return handles_; } in GetHandles()
360 static ReferenceTypeInfo::TypeHandle CreateRootHandle(VariableSizedHandleScope* handles,
363 VariableSizedHandleScope* handles_;
378 VariableSizedHandleScope* handles,
/art/runtime/native/
Ddalvik_system_VMDebug.cc268 VariableSizedHandleScope hs(soa.Self()); in VMDebug_countInstancesOfClass()
287 VariableSizedHandleScope hs(soa.Self()); in VMDebug_countInstancesOfClasses()
/art/runtime/jit/
Dprofile_saver.cc378 explicit GetClassLoadersVisitor(VariableSizedHandleScope* class_loaders) in GetClassLoadersVisitor()
388 VariableSizedHandleScope* const class_loaders_;
459 std::optional<VariableSizedHandleScope> class_loaders_;
/art/dex2oat/driver/
Dcompiler_driver.cc718 explicit CreateConflictTablesVisitor(VariableSizedHandleScope& hs) in CreateConflictTablesVisitor()
757 VariableSizedHandleScope& hs_;
842 VariableSizedHandleScope hs(soa.Self()); in PreCompile()
1260 mutable VariableSizedHandleScope hs_;
/art/openjdkjvmti/
Dti_stack.cc576 art::VariableSizedHandleScope hs(current); in GetThreadListStackTraces()
892 art::VariableSizedHandleScope hs;
/art/dex2oat/linker/
Dimage_writer.cc1497 void ProcessRoots(VariableSizedHandleScope* handles) REQUIRES_SHARED(Locks::mutator_lock_);
1919 void ImageWriter::LayoutHelper::ProcessRoots(VariableSizedHandleScope* handles) { in ProcessRoots()
2354 VariableSizedHandleScope handles(self); in CalculateNewObjectOffsets()
/art/runtime/verifier/
Dreg_type_test.cc1097 VariableSizedHandleScope hs(soa.Self()); in TEST_F()

12