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_);
282 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()
Dcommon_runtime_test.cc351 VariableSizedHandleScope* handle_scope) { in FillHeap()
Dclass_loader_context.cc804 VariableSizedHandleScope& map_scope, in CreateClassLoaderInternal()
914 VariableSizedHandleScope map_scope(self); in CreateClassLoader()
/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.cc91 std::pair<HLoadClass*, HLoadClass*> GetLoadClasses(VariableSizedHandleScope* vshs) { in GetLoadClasses()
135 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
228 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
318 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
405 VariableSizedHandleScope vshs(soa.Self()); in TEST_P()
495 VariableSizedHandleScope vshs(soa.Self()); in TEST_P()
Dreference_type_propagation_test.cc48 void SetupPropagation(VariableSizedHandleScope* handles) { in SetupPropagation()
179 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
188 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
220 VariableSizedHandleScope handles(soa.Self()); in TEST_F()
268 VariableSizedHandleScope handles(soa.Self()); in RunVisitListTest()
370 VariableSizedHandleScope handles(soa.Self()); in RunVisitListTest()
Dload_store_elimination_test.cc1241 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1370 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1510 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1605 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1697 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
1791 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2057 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2134 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2206 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
2295 VariableSizedHandleScope vshs(soa.Self()); in TEST_F()
[all …]
Doptimizing_compiler.cc382 VariableSizedHandleScope* handles) const;
389 VariableSizedHandleScope* handles) const;
745 VariableSizedHandleScope* handles) const { in TryCompile()
917 VariableSizedHandleScope* handles) const { in TryCompileIntrinsic()
1033 VariableSizedHandleScope handles(soa.Self()); in Compile()
1150 VariableSizedHandleScope handles(soa.Self()); in JniCompile()
1312 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.cc382 VariableSizedHandleScope* handles) { in ProcessLoadString()
Dnodes.h314 explicit HandleCache(VariableSizedHandleScope* handles) : handles_(handles) { } in HandleCache()
316 VariableSizedHandleScope* GetHandles() { return handles_; } in GetHandles()
362 static ReferenceTypeInfo::TypeHandle CreateRootHandle(VariableSizedHandleScope* handles,
365 VariableSizedHandleScope* handles_;
380 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_;
Djit.cc1359 VariableSizedHandleScope handles(self); in CompileMethodsFromBootProfile()
/art/dex2oat/driver/
Dcompiler_driver.cc766 explicit CreateConflictTablesVisitor(VariableSizedHandleScope& hs) in CreateConflictTablesVisitor()
805 VariableSizedHandleScope& hs_;
889 VariableSizedHandleScope hs(soa.Self()); in PreCompile()
1262 mutable VariableSizedHandleScope hs_;
/art/openjdkjvmti/
Dti_stack.cc576 art::VariableSizedHandleScope hs(current); in GetThreadListStackTraces()
892 art::VariableSizedHandleScope hs;
/art/runtime/verifier/
Dreg_type_test.cc1102 VariableSizedHandleScope hs(soa.Self()); in TEST_F()

12