Searched refs:blk (Results 1 – 8 of 8) sorted by relevance
/art/compiler/optimizing/ |
D | block_namer.h | 34 virtual std::ostream& PrintName(std::ostream& os, HBasicBlock* blk) const; 35 NameWrapper GetName(HBasicBlock* blk) const { in GetName() 36 return NameWrapper{blk, *this}; in GetName() 40 inline std::ostream& operator<<(std::ostream& os, const BlockNamer::NameWrapper& blk) { 41 return blk.namer_.PrintName(os, blk.blk_);
|
D | reference_type_propagation_test.cc | 322 for (HBasicBlock* blk : succ_blocks) { in RunVisitListTest() 324 GetAllocator(), kNoRegNumber, blk->GetPredecessors().size(), DataType::Type::kReference); in RunVisitListTest() 325 single_value[blk] = phi_inst; in RunVisitListTest() 327 for (HBasicBlock* blk : succ_blocks) { in RunVisitListTest() 328 HInstruction* my_val = single_value[blk]; in RunVisitListTest() 329 for (const auto& [pred, index] : ZipCount(MakeIterationRange(blk->GetPredecessors()))) { in RunVisitListTest() 334 for (HBasicBlock* blk : succ_blocks) { in RunVisitListTest() 335 CHECK(single_value[blk]->IsPhi()) << blk->GetBlockId(); in RunVisitListTest() 336 blk->AddPhi(single_value[blk]->AsPhi()); in RunVisitListTest() 338 auto vals = MakeTransformRange(succ_blocks, [&](HBasicBlock* blk) { in RunVisitListTest() argument [all …]
|
D | block_namer.cc | 23 std::ostream& BlockNamer::PrintName(std::ostream& os, HBasicBlock* blk) const { in PrintName() 25 if (blk != nullptr) { in PrintName() 26 os << blk->GetBlockId(); in PrintName()
|
D | optimizing_unit_test.h | 152 HBasicBlock* blk = new (alloc) HBasicBlock(graph_); in AdjacencyListGraph() local 153 graph_->AddBlock(blk); in AdjacencyListGraph() 154 return blk; in AdjacencyListGraph() 168 for (auto [name, blk] : name_to_block_) { in AdjacencyListGraph() 169 block_to_name_.Put(blk, name); in AdjacencyListGraph() 173 bool HasBlock(const HBasicBlock* blk) const { in HasBlock() argument 174 return block_to_name_.find(blk) != block_to_name_.end(); in HasBlock() 177 std::string_view GetName(const HBasicBlock* blk) const { in GetName() argument 178 return block_to_name_.Get(blk); in GetName() 194 std::ostream& PrintName(std::ostream& os, HBasicBlock* blk) const override { in Dump() [all …]
|
D | graph_visualizer.h | 128 std::ostream& PrintName(std::ostream& os, HBasicBlock* blk) const override;
|
D | graph_visualizer.cc | 240 void PrintProperty(const char* name, HBasicBlock* blk) { in PrintProperty() argument 242 output_ << name << " \"" << namer_.GetName(blk) << "\"\n"; in PrintProperty() 973 HBasicBlock* blk) const { in PrintName() 975 return namer_->get().PrintName(os, blk); in PrintName() 977 return BlockNamer::PrintName(os, blk); in PrintName()
|
/art/test/988-method-trace/ |
D | gen_srcs.py | 205 for blk in KLASS_BLOCK_LIST: 206 if self.klass.startswith(blk):
|
/art/tools/ |
D | buildbot-vm.sh | 145 -device virtio-blk-device,drive=hd0 \
|