| 117 | int GetEnergyCost(const Instruction& inst) const { return m_lib_name_map[inst.GetOp()].energy_cost; } |
| 118 | double GetProbFail(const Instruction& inst) const { return m_lib_name_map[inst.GetOp()].prob_fail; } |
| 119 | int GetAddlTimeCost(const Instruction& inst) const { return m_lib_name_map[inst.GetOp()].addl_time_cost; } |
| 120 | int GetInstructionCode(const Instruction& inst) const { return m_lib_name_map[inst.GetOp()].inst_code; } |
| 121 | double GetResCost(const Instruction& inst) const { return m_lib_name_map[inst.GetOp()].res_cost; } |
| 122 | double GetFemResCost(const Instruction& inst) const { return m_lib_name_map[inst.GetOp()].fem_res_cost; } |
no test coverage detected