Rename EntityMap to SecondaryMap (#528)

* Rename `EntityMap` to `SecondaryMap`
This commit is contained in:
Muhammad Mominul Huque
2018-09-27 01:03:44 +06:00
committed by Dan Gohman
parent 7ff71fcfd9
commit d266b1a42d
18 changed files with 91 additions and 91 deletions

View File

@@ -3,7 +3,7 @@
//! The order of extended basic blocks in a function and the order of instructions in an EBB is
//! determined by the `Layout` data structure defined in this module.
use entity::EntityMap;
use entity::SecondaryMap;
use ir::progpoint::{ExpandedProgramPoint, ProgramOrder};
use ir::{Ebb, Inst};
use packed_option::PackedOption;
@@ -28,11 +28,11 @@ use timing;
pub struct Layout {
/// Linked list nodes for the layout order of EBBs Forms a doubly linked list, terminated in
/// both ends by `None`.
ebbs: EntityMap<Ebb, EbbNode>,
ebbs: SecondaryMap<Ebb, EbbNode>,
/// Linked list nodes for the layout order of instructions. Forms a double linked list per EBB,
/// terminated in both ends by `None`.
insts: EntityMap<Inst, InstNode>,
insts: SecondaryMap<Inst, InstNode>,
/// First EBB in the layout order, or `None` when no EBBs have been laid out.
first_ebb: Option<Ebb>,
@@ -45,8 +45,8 @@ impl Layout {
/// Create a new empty `Layout`.
pub fn new() -> Self {
Self {
ebbs: EntityMap::new(),
insts: EntityMap::new(),
ebbs: SecondaryMap::new(),
insts: SecondaryMap::new(),
first_ebb: None,
last_ebb: None,
}