Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 1 | //===----------------------- Dispatch.h -------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// \file |
| 10 | /// |
| 11 | /// This file implements classes that are used to model register files, |
| 12 | /// reorder buffers and the hardware dispatch logic. |
| 13 | /// |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #ifndef LLVM_TOOLS_LLVM_MCA_DISPATCH_H |
| 17 | #define LLVM_TOOLS_LLVM_MCA_DISPATCH_H |
| 18 | |
| 19 | #include "Instruction.h" |
| 20 | #include "llvm/MC/MCRegisterInfo.h" |
Andrea Di Biagio | 4732d43ca | 2018-03-14 14:57:23 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCSubtargetInfo.h" |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 22 | #include <map> |
| 23 | |
| 24 | namespace mca { |
| 25 | |
| 26 | class WriteState; |
| 27 | class DispatchUnit; |
| 28 | class Scheduler; |
| 29 | class Backend; |
| 30 | |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 31 | /// \brief Manages hardware register files, and tracks data dependencies |
| 32 | /// between registers. |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 33 | class RegisterFile { |
| 34 | const llvm::MCRegisterInfo &MRI; |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 35 | |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 36 | // Each register file is described by an instance of RegisterMappingTracker. |
| 37 | // RegisterMappingTracker tracks the number of register mappings dynamically |
| 38 | // allocated during the execution. |
| 39 | struct RegisterMappingTracker { |
| 40 | // Total number of register mappings that are available for register |
| 41 | // renaming. A value of zero for this field means: this register file has |
| 42 | // an unbounded number of registers. |
| 43 | const unsigned TotalMappings; |
| 44 | // Number of mappings that are currently in use. |
| 45 | unsigned NumUsedMappings; |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 46 | |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 47 | RegisterMappingTracker(unsigned NumMappings) |
Andrea Di Biagio | 12ef526 | 2018-03-21 18:11:05 +0000 | [diff] [blame] | 48 | : TotalMappings(NumMappings), NumUsedMappings(0) {} |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 49 | }; |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 50 | |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 51 | // This is where information related to the various register files is kept. |
| 52 | // This set always contains at least one register file at index #0. That |
| 53 | // register file "sees" all the physical registers declared by the target, and |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 54 | // (by default) it allows an unbounded number of mappings. |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 55 | // Users can limit the number of mappings that can be created by register file |
| 56 | // #0 through the command line flag `-register-file-size`. |
| 57 | llvm::SmallVector<RegisterMappingTracker, 4> RegisterFiles; |
| 58 | |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 59 | // This pair is used to identify the owner of a physical register, as well as |
| 60 | // the cost of using that register file. |
| 61 | using IndexPlusCostPairTy = std::pair<unsigned, unsigned>; |
| 62 | |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 63 | // RegisterMapping objects are mainly used to track physical register |
| 64 | // definitions. A WriteState object describes a register definition, and it is |
| 65 | // used to track RAW dependencies (see Instruction.h). A RegisterMapping |
| 66 | // object also specifies the set of register files. The mapping between |
| 67 | // physreg and register files is done using a "register file mask". |
| 68 | // |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 69 | // A register file index identifies a user defined register file. |
| 70 | // There is one index per RegisterMappingTracker, and index #0 is reserved to |
| 71 | // the default unified register file. |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 72 | // |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 73 | // This implementation does not allow overlapping register files. The only |
| 74 | // register file that is allowed to overlap with other register files is |
| 75 | // register file #0. |
| 76 | using RegisterMapping = std::pair<WriteState *, IndexPlusCostPairTy>; |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 77 | |
| 78 | // This map contains one entry for each physical register defined by the |
| 79 | // processor scheduling model. |
| 80 | std::vector<RegisterMapping> RegisterMappings; |
| 81 | |
| 82 | // This method creates a new RegisterMappingTracker for a register file that |
| 83 | // contains all the physical registers specified by the register classes in |
| 84 | // the 'RegisterClasses' set. |
| 85 | // |
| 86 | // The long term goal is to let scheduling models optionally describe register |
| 87 | // files via tablegen definitions. This is still a work in progress. |
| 88 | // For example, here is how a tablegen definition for a x86 FP register file |
| 89 | // that features AVX might look like: |
| 90 | // |
| 91 | // def FPRegisterFile : RegisterFile<[VR128RegClass, VR256RegClass], 60> |
| 92 | // |
| 93 | // Here FPRegisterFile contains all the registers defined by register class |
| 94 | // VR128RegClass and VR256RegClass. FPRegisterFile implements 60 |
| 95 | // registers which can be used for register renaming purpose. |
| 96 | // |
| 97 | // The list of register classes is then converted by the tablegen backend into |
| 98 | // a list of register class indices. That list, along with the number of |
| 99 | // available mappings, is then used to create a new RegisterMappingTracker. |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 100 | void |
| 101 | addRegisterFile(llvm::ArrayRef<llvm::MCRegisterCostEntry> RegisterClasses, |
| 102 | unsigned NumPhysRegs); |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 103 | |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 104 | // Allocates register mappings in register file specified by the |
| 105 | // IndexPlusCostPairTy object. This method is called from addRegisterMapping. |
| 106 | void createNewMappings(IndexPlusCostPairTy IPC, |
Andrea Di Biagio | 12ef526 | 2018-03-21 18:11:05 +0000 | [diff] [blame] | 107 | llvm::MutableArrayRef<unsigned> UsedPhysRegs); |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 108 | |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 109 | // Removes a previously allocated mapping from the register file referenced |
| 110 | // by the IndexPlusCostPairTy object. This method is called from |
| 111 | // invalidateRegisterMapping. |
| 112 | void removeMappings(IndexPlusCostPairTy IPC, |
Andrea Di Biagio | 12ef526 | 2018-03-21 18:11:05 +0000 | [diff] [blame] | 113 | llvm::MutableArrayRef<unsigned> FreedPhysRegs); |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 114 | |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 115 | // Create an instance of RegisterMappingTracker for every register file |
| 116 | // specified by the processor model. |
| 117 | // If no register file is specified, then this method creates a single |
| 118 | // register file with an unbounded number of registers. |
| 119 | void initialize(const llvm::MCSchedModel &SM, unsigned NumRegs); |
| 120 | |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 121 | public: |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 122 | RegisterFile(const llvm::MCSchedModel &SM, const llvm::MCRegisterInfo &mri, |
| 123 | unsigned NumRegs = 0) |
| 124 | : MRI(mri), RegisterMappings(mri.getNumRegs(), {nullptr, {0, 0}}) { |
| 125 | initialize(SM, NumRegs); |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 126 | } |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 127 | |
| 128 | // Creates a new register mapping for RegID. |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 129 | // This reserves a microarchitectural register in every register file that |
| 130 | // contains RegID. |
Andrea Di Biagio | 12ef526 | 2018-03-21 18:11:05 +0000 | [diff] [blame] | 131 | void addRegisterMapping(WriteState &WS, |
| 132 | llvm::MutableArrayRef<unsigned> UsedPhysRegs); |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 133 | |
| 134 | // Invalidates register mappings associated to the input WriteState object. |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 135 | // This releases previously allocated mappings for the physical register |
| 136 | // associated to the WriteState. |
Andrea Di Biagio | 12ef526 | 2018-03-21 18:11:05 +0000 | [diff] [blame] | 137 | void invalidateRegisterMapping(const WriteState &WS, |
| 138 | llvm::MutableArrayRef<unsigned> FreedPhysRegs); |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 139 | |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 140 | // Checks if there are enough microarchitectural registers in the register |
| 141 | // files. Returns a "response mask" where each bit is the response from a |
| 142 | // RegisterMappingTracker. |
| 143 | // For example: if all register files are available, then the response mask |
| 144 | // is a bitmask of all zeroes. If Instead register file #1 is not available, |
| 145 | // then the response mask is 0b10. |
Andrea Di Biagio | 847accd | 2018-03-20 19:06:34 +0000 | [diff] [blame] | 146 | unsigned isAvailable(llvm::ArrayRef<unsigned> Regs) const; |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 147 | void collectWrites(llvm::SmallVectorImpl<WriteState *> &Writes, |
| 148 | unsigned RegID) const; |
| 149 | void updateOnRead(ReadState &RS, unsigned RegID); |
Andrea Di Biagio | 12ef526 | 2018-03-21 18:11:05 +0000 | [diff] [blame] | 150 | |
Andrea Di Biagio | e64f3b1 | 2018-03-18 15:33:27 +0000 | [diff] [blame] | 151 | unsigned getNumRegisterFiles() const { return RegisterFiles.size(); } |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 152 | |
| 153 | #ifndef NDEBUG |
| 154 | void dump() const; |
| 155 | #endif |
| 156 | }; |
| 157 | |
| 158 | /// \brief tracks which instructions are in-flight (i.e. dispatched but not |
| 159 | /// retired) in the OoO backend. |
| 160 | /// |
| 161 | /// This class checks on every cycle if/which instructions can be retired. |
| 162 | /// Instructions are retired in program order. |
| 163 | /// In the event of instruction retired, the DispatchUnit object that owns |
| 164 | /// this RetireControlUnit gets notified. |
| 165 | /// On instruction retired, register updates are all architecturally |
| 166 | /// committed, and any temporary registers originally allocated for the |
| 167 | /// retired instruction are freed. |
| 168 | struct RetireControlUnit { |
| 169 | // A "token" (object of class RUToken) is created by the retire unit for every |
| 170 | // instruction dispatched to the schedulers. Flag 'Executed' is used to |
| 171 | // quickly check if an instruction has reached the write-back stage. A token |
| 172 | // also carries information related to the number of entries consumed by the |
| 173 | // instruction in the reorder buffer. The idea is that those entries will |
| 174 | // become available again once the instruction is retired. On every cycle, |
| 175 | // the RCU (Retire Control Unit) scans every token starting to search for |
| 176 | // instructions that are ready to retire. retired. Instructions are retired |
| 177 | // in program order. Only 'Executed' instructions are eligible for retire. |
| 178 | // Note that the size of the reorder buffer is defined by the scheduling model |
| 179 | // via field 'NumMicroOpBufferSize'. |
| 180 | struct RUToken { |
| 181 | unsigned Index; // Instruction index. |
| 182 | unsigned NumSlots; // Slots reserved to this instruction. |
| 183 | bool Executed; // True if the instruction is past the WB stage. |
| 184 | }; |
| 185 | |
| 186 | private: |
| 187 | unsigned NextAvailableSlotIdx; |
| 188 | unsigned CurrentInstructionSlotIdx; |
| 189 | unsigned AvailableSlots; |
| 190 | unsigned MaxRetirePerCycle; // 0 means no limit. |
| 191 | std::vector<RUToken> Queue; |
| 192 | DispatchUnit *Owner; |
| 193 | |
| 194 | public: |
| 195 | RetireControlUnit(unsigned NumSlots, unsigned RPC, DispatchUnit *DU) |
| 196 | : NextAvailableSlotIdx(0), CurrentInstructionSlotIdx(0), |
| 197 | AvailableSlots(NumSlots), MaxRetirePerCycle(RPC), Owner(DU) { |
| 198 | assert(NumSlots && "Expected at least one slot!"); |
| 199 | Queue.resize(NumSlots); |
| 200 | } |
| 201 | |
| 202 | bool isFull() const { return !AvailableSlots; } |
| 203 | bool isEmpty() const { return AvailableSlots == Queue.size(); } |
| 204 | bool isAvailable(unsigned Quantity = 1) const { |
| 205 | // Some instructions may declare a number of uOps which exceedes the size |
| 206 | // of the reorder buffer. To avoid problems, cap the amount of slots to |
| 207 | // the size of the reorder buffer. |
| 208 | Quantity = std::min(Quantity, static_cast<unsigned>(Queue.size())); |
| 209 | return AvailableSlots >= Quantity; |
| 210 | } |
| 211 | |
| 212 | // Reserves a number of slots, and returns a new token. |
| 213 | unsigned reserveSlot(unsigned Index, unsigned NumMicroOps); |
| 214 | |
| 215 | /// Retires instructions in program order. |
| 216 | void cycleEvent(); |
| 217 | |
| 218 | void onInstructionExecuted(unsigned TokenID); |
| 219 | |
| 220 | #ifndef NDEBUG |
| 221 | void dump() const; |
| 222 | #endif |
| 223 | }; |
| 224 | |
| 225 | // \brief Implements the hardware dispatch logic. |
| 226 | // |
| 227 | // This class is responsible for the dispatch stage, in which instructions are |
| 228 | // dispatched in groups to the Scheduler. An instruction can be dispatched if |
| 229 | // functional units are available. |
| 230 | // To be more specific, an instruction can be dispatched to the Scheduler if: |
| 231 | // 1) There are enough entries in the reorder buffer (implemented by class |
| 232 | // RetireControlUnit) to accomodate all opcodes. |
| 233 | // 2) There are enough temporaries to rename output register operands. |
| 234 | // 3) There are enough entries available in the used buffered resource(s). |
| 235 | // |
| 236 | // The number of micro opcodes that can be dispatched in one cycle is limited by |
| 237 | // the value of field 'DispatchWidth'. A "dynamic dispatch stall" occurs when |
| 238 | // processor resources are not available (i.e. at least one of the |
| 239 | // abovementioned checks fails). Dispatch stall events are counted during the |
| 240 | // entire execution of the code, and displayed by the performance report when |
| 241 | // flag '-verbose' is specified. |
| 242 | // |
| 243 | // If the number of micro opcodes of an instruction is bigger than |
| 244 | // DispatchWidth, then it can only be dispatched at the beginning of one cycle. |
| 245 | // The DispatchUnit will still have to wait for a number of cycles (depending on |
| 246 | // the DispatchWidth and the number of micro opcodes) before it can serve other |
| 247 | // instructions. |
| 248 | class DispatchUnit { |
| 249 | unsigned DispatchWidth; |
| 250 | unsigned AvailableEntries; |
| 251 | unsigned CarryOver; |
| 252 | Scheduler *SC; |
| 253 | |
| 254 | std::unique_ptr<RegisterFile> RAT; |
| 255 | std::unique_ptr<RetireControlUnit> RCU; |
| 256 | Backend *Owner; |
| 257 | |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 258 | bool checkRAT(unsigned Index, const Instruction &Inst); |
Andrea Di Biagio | 91ab2ee | 2018-03-19 13:23:07 +0000 | [diff] [blame] | 259 | bool checkRCU(unsigned Index, const InstrDesc &Desc); |
| 260 | bool checkScheduler(unsigned Index, const InstrDesc &Desc); |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 261 | |
Andrea Di Biagio | 4732d43ca | 2018-03-14 14:57:23 +0000 | [diff] [blame] | 262 | void updateRAWDependencies(ReadState &RS, const llvm::MCSubtargetInfo &STI); |
Andrea Di Biagio | 09ea09e | 2018-03-22 11:39:34 +0000 | [diff] [blame] | 263 | void notifyInstructionDispatched(unsigned IID, |
| 264 | llvm::ArrayRef<unsigned> UsedPhysRegs); |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 265 | |
| 266 | public: |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 267 | DispatchUnit(Backend *B, const llvm::MCSubtargetInfo &STI, |
| 268 | const llvm::MCRegisterInfo &MRI, unsigned MicroOpBufferSize, |
| 269 | unsigned RegisterFileSize, unsigned MaxRetirePerCycle, |
| 270 | unsigned MaxDispatchWidth, Scheduler *Sched) |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 271 | : DispatchWidth(MaxDispatchWidth), AvailableEntries(MaxDispatchWidth), |
| 272 | CarryOver(0U), SC(Sched), |
Andrea Di Biagio | 9da4d6d | 2018-04-03 13:36:24 +0000 | [diff] [blame^] | 273 | RAT(llvm::make_unique<RegisterFile>(STI.getSchedModel(), MRI, |
| 274 | RegisterFileSize)), |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 275 | RCU(llvm::make_unique<RetireControlUnit>(MicroOpBufferSize, |
| 276 | MaxRetirePerCycle, this)), |
Andrea Di Biagio | 91ab2ee | 2018-03-19 13:23:07 +0000 | [diff] [blame] | 277 | Owner(B) {} |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 278 | |
| 279 | unsigned getDispatchWidth() const { return DispatchWidth; } |
| 280 | |
| 281 | bool isAvailable(unsigned NumEntries) const { |
| 282 | return NumEntries <= AvailableEntries || AvailableEntries == DispatchWidth; |
| 283 | } |
| 284 | |
| 285 | bool isRCUEmpty() const { return RCU->isEmpty(); } |
| 286 | |
Andrea Di Biagio | 91ab2ee | 2018-03-19 13:23:07 +0000 | [diff] [blame] | 287 | bool canDispatch(unsigned Index, const Instruction &Inst) { |
Andrea Di Biagio | af904b9 | 2018-03-15 16:13:12 +0000 | [diff] [blame] | 288 | const InstrDesc &Desc = Inst.getDesc(); |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 289 | assert(isAvailable(Desc.NumMicroOps)); |
Andrea Di Biagio | 91ab2ee | 2018-03-19 13:23:07 +0000 | [diff] [blame] | 290 | return checkRCU(Index, Desc) && checkRAT(Index, Inst) && |
| 291 | checkScheduler(Index, Desc); |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Andrea Di Biagio | 09ea09e | 2018-03-22 11:39:34 +0000 | [diff] [blame] | 294 | void dispatch(unsigned IID, Instruction *I, const llvm::MCSubtargetInfo &STI); |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 295 | |
| 296 | void collectWrites(llvm::SmallVectorImpl<WriteState *> &Vec, |
| 297 | unsigned RegID) const { |
| 298 | return RAT->collectWrites(Vec, RegID); |
| 299 | } |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 300 | |
| 301 | void cycleEvent(unsigned Cycle) { |
| 302 | RCU->cycleEvent(); |
| 303 | AvailableEntries = |
| 304 | CarryOver >= DispatchWidth ? 0 : DispatchWidth - CarryOver; |
| 305 | CarryOver = CarryOver >= DispatchWidth ? CarryOver - DispatchWidth : 0U; |
| 306 | } |
| 307 | |
| 308 | void notifyInstructionRetired(unsigned Index); |
| 309 | |
Andrea Di Biagio | 91ab2ee | 2018-03-19 13:23:07 +0000 | [diff] [blame] | 310 | void notifyDispatchStall(unsigned Index, unsigned EventType); |
| 311 | |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 312 | void onInstructionExecuted(unsigned TokenID) { |
| 313 | RCU->onInstructionExecuted(TokenID); |
| 314 | } |
| 315 | |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 316 | #ifndef NDEBUG |
| 317 | void dump() const; |
| 318 | #endif |
| 319 | }; |
Andrea Di Biagio | 3a6b092 | 2018-03-08 13:05:02 +0000 | [diff] [blame] | 320 | } // namespace mca |
| 321 | |
| 322 | #endif |