Home
last modified time | relevance | path

Searched refs:references (Results 1 – 9 of 9) sorted by relevance

/art/compiler/
Dgc_map_builder.h50 void AddEntry(uint32_t native_offset, const uint8_t* references) { in AddEntry() argument
58 SetReferences(table_index, references); in AddEntry()
82 void SetReferences(size_t table_index, const uint8_t* references) { in SetReferences() argument
84 memcpy(&table_[table_offset + native_offset_width_], references, references_width_); in SetReferences()
/art/runtime/gc/accounting/
Dmod_union_table.cc168 std::vector<mirror::HeapReference<Object>*>* references) in AddToReferenceArrayVisitor() argument
169 : mod_union_table_(mod_union_table), references_(references) { in AddToReferenceArrayVisitor()
192 std::vector<mirror::HeapReference<Object>*>* references) in ModUnionReferenceVisitor() argument
194 references_(references) { in ModUnionReferenceVisitor()
212 const std::set<const Object*>& references) in CheckReferenceVisitor() argument
214 references_(references) { in CheckReferenceVisitor()
246 const std::set<const Object*>& references) in ModUnionCheckReferences() argument
248 : mod_union_table_(mod_union_table), references_(references) { in ModUnionCheckReferences()
/art/compiler/dex/quick/
Dcodegen_util.cc794 ArenaBitVector* references = new (arena_) ArenaBitVector(arena_, mir_graph_->GetNumSSARegs(), in CreateNativeGcMap() local
805 UpdateReferenceVRegs(mir, prev_mir, references); in CreateNativeGcMap()
806 max_ref_vreg = std::max(max_ref_vreg, references->GetHighestBitSet()); in CreateNativeGcMap()
825 UpdateReferenceVRegs(mir, prev_mir, references); in CreateNativeGcMap()
828 reinterpret_cast<const uint8_t*>(references->GetRawStorage())); in CreateNativeGcMap()
837 UpdateReferenceVRegs(mir, prev_mir, references); in CreateNativeGcMap()
839 const auto* raw_storage = references->GetRawStorage(); in CreateNativeGcMap()
873 const uint8_t* references = dex_gc_map.FindBitMap(dex_pc, false); in CreateNativeGcMapWithoutRegisterPromotion() local
874 CHECK(references != nullptr) << "Missing ref for dex pc 0x" << std::hex << dex_pc << in CreateNativeGcMapWithoutRegisterPromotion()
876 native_gc_map_builder.AddEntry(native_offset, references); in CreateNativeGcMapWithoutRegisterPromotion()
[all …]
Dmir_to_lir.h1758 void InitReferenceVRegs(BasicBlock* bb, BitVector* references);
1762 bool UpdateReferenceVRegsLocal(MIR* mir, MIR* prev_mir, BitVector* references);
1765 void UpdateReferenceVRegs(MIR* mir, MIR* prev_mir, BitVector* references);
/art/test/079-phantom/
Dinfo.txt1 Exercise phantom references.
/art/test/461-get-reference-vreg/
Dinfo.txt1 Tests for inspecting DEX registers holding references.
/art/test/089-many-methods/
Dexpected.txt2 trouble writing output: Too many field references: 131000; max is 65536.
/art/build/
DAndroid.cpplint.mk20 …,-readability/function,-readability/streams,-readability/todo,-runtime/references,-runtime/sizeof,…
/art/compiler/optimizing/
Dcode_generator.cc502 const uint8_t* references = dex_gc_map.FindBitMap(dex_pc, false); in BuildNativeGCMap() local
503 CHECK(references != nullptr) << "Missing ref for dex pc 0x" << std::hex << dex_pc; in BuildNativeGCMap()
504 builder.AddEntry(native_offset, references); in BuildNativeGCMap()