Searched refs:StackIndirectReferenceTable (Results 1 - 7 of 7) sorted by relevance

/art/runtime/
H A Dstack_indirect_reference_table.h32 class StackIndirectReferenceTable { class in namespace:art
34 explicit StackIndirectReferenceTable(mirror::Object* object) : function in class:art::StackIndirectReferenceTable
39 ~StackIndirectReferenceTable() {}
47 StackIndirectReferenceTable* GetLink() const {
51 void SetLink(StackIndirectReferenceTable* sirt) {
77 return OFFSETOF_MEMBER(StackIndirectReferenceTable, number_of_references_);
82 return OFFSETOF_MEMBER(StackIndirectReferenceTable, link_);
86 StackIndirectReferenceTable() {} function in class:art::StackIndirectReferenceTable
89 StackIndirectReferenceTable* link_;
94 DISALLOW_COPY_AND_ASSIGN(StackIndirectReferenceTable);
[all...]
H A Dsirt_ref.h48 StackIndirectReferenceTable sirt_;
H A Dstack.h37 class StackIndirectReferenceTable;
544 StackIndirectReferenceTable* GetCurrentSirt() const {
547 return reinterpret_cast<StackIndirectReferenceTable*>(sp);
H A Dthread.h526 void PushSirt(StackIndirectReferenceTable* sirt) {
531 StackIndirectReferenceTable* PopSirt() {
532 StackIndirectReferenceTable* sirt = top_sirt_;
751 StackIndirectReferenceTable* top_sirt_;
H A Dstack.cc109 StackIndirectReferenceTable* sirt =
110 reinterpret_cast<StackIndirectReferenceTable*>(
H A Dthread.cc1132 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->GetLink()) {
1140 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->GetLink()) {
1150 for (StackIndirectReferenceTable* cur = top_sirt_; cur; cur = cur->GetLink()) {
/art/compiler/jni/quick/
H A Dcalling_convention.h260 StackIndirectReferenceTable::NumberOfReferencesOffset());
264 StackIndirectReferenceTable::LinkOffset());

Completed in 402 milliseconds