HomeSort by relevance Sort by last modified time
    Searched refs:HEdge (Results 1 - 2 of 2) sorted by null

  /art/compiler/optimizing/
superblock_cloner.h 33 class HEdge : public ArenaObject<kArenaAllocSuperblockCloner> {
35 HEdge(HBasicBlock* from, HBasicBlock* to) : from_(from->GetBlockId()), to_(to->GetBlockId()) {
39 HEdge(uint32_t from, uint32_t to) : from_(from), to_(to) {
43 HEdge() : from_(kInvalidBlockId), to_(kInvalidBlockId) {}
48 bool operator==(const HEdge& other) const {
52 bool operator!=(const HEdge& other) const { return !operator==(other); }
66 // Returns whether a HEdge edge corresponds to an existing edge in the graph.
67 inline bool IsEdgeValid(HEdge edge, HGraph* graph) {
139 using HEdgeSet = ArenaHashSet<HEdge>;
312 struct hash<art::HEdge> {
    [all...]
superblock_cloner.cc 31 void HEdge::Dump(std::ostream& stream) const {
438 for (HEdge e : *remap_incoming_) {
458 auto orig_redir = remap_orig_internal_->Find(HEdge(orig_block_id, orig_succ_id));
459 auto copy_redir = remap_copy_internal_->Find(HEdge(orig_block_id, orig_succ_id));

Completed in 113 milliseconds