Home
last modified time | relevance | path

Searched refs:entry_ (Results 1 – 5 of 5) sorted by relevance

/art/dex2oat/linker/
Dindex_bss_mapping_encoder.h35 entry_.index_and_mask = static_cast<uint32_t>(-1); in IndexBssMappingEncoder()
36 entry_.bss_offset = static_cast<uint32_t>(-1); in IndexBssMappingEncoder()
44 DCHECK_NE(index, entry_.GetIndex(index_bits_)); in TryMerge()
45 if (entry_.bss_offset + slot_size_ != bss_offset) { in TryMerge()
48 uint32_t diff = index - entry_.GetIndex(index_bits_); in TryMerge()
52 uint32_t mask = entry_.GetMask(index_bits_); in TryMerge()
59 entry_.index_and_mask = mask | index; in TryMerge()
60 entry_.bss_offset = bss_offset; in TryMerge()
66 entry_.index_and_mask = method_index; // Mask bits set to 0. in Reset()
67 entry_.bss_offset = bss_offset; in Reset()
[all …]
/art/compiler/optimizing/
Dssa_liveness_analysis_test.cc40 entry_ = new (GetAllocator()) HBasicBlock(graph_); in SetUp()
41 graph_->AddBlock(entry_); in SetUp()
42 graph_->SetEntryBlock(entry_); in SetUp()
57 HBasicBlock* entry_; member in art::SsaLivenessAnalysisTest
63 entry_->AddInstruction(arg); in TEST_F()
65 HBasicBlock* block = CreateSuccessor(entry_); in TEST_F()
93 entry_->AddInstruction(insn); in TEST_F()
96 HBasicBlock* block = CreateSuccessor(entry_); in TEST_F()
162 entry_->AddInstruction(insn); in TEST_F()
165 HBasicBlock* block = CreateSuccessor(entry_); in TEST_F()
Dlicm_test.cc34 : entry_(nullptr), in LICMTest()
51 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
58 graph_->AddBlock(entry_); in BuildLoop()
65 graph_->SetEntryBlock(entry_); in BuildLoop()
69 entry_->AddSuccessor(loop_preheader_); in BuildLoop()
81 entry_->AddInstruction(parameter_); in BuildLoop()
103 HBasicBlock* entry_; member in art::LICMTest
Dinduction_var_analysis_test.cc35 entry_(nullptr), in InductionVarAnalysisTest()
81 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest()
82 graph_->AddBlock(entry_); in BuildLoopNest()
88 entry_->AddSuccessor(loop_preheader_[0]); in BuildLoopNest()
91 graph_->SetEntryBlock(entry_); in BuildLoopNest()
97 entry_->AddInstruction(parameter_); in BuildLoopNest()
208 HBasicBlock* entry_; member in art::InductionVarAnalysisTest
243 ASSERT_EQ(entry_->GetLoopInformation(), nullptr); in TEST_F()
/art/compiler/utils/
Dassembler.h73 Label* Entry() { return &entry_; } in Entry()
79 Label entry_;