[X86] AVX512: Add vmovntdqa
[oota-llvm.git] / lib / Target / X86 / X86ScheduleAtom.td
index ba72f29910fefe211940cf562f42392517c6969e..3256ee7c6e492b31a64baffa7f8db49a27230b32 100644 (file)
@@ -535,5 +535,9 @@ def AtomModel : SchedMachineModel {
   let LoadLatency = 3; // Expected cycles, may be overriden by OperandCycles.
   let HighLatency = 30;// Expected, may be overriden by OperandCycles.
 
+  // On the Atom, the throughput for taken branches is 2 cycles. For small
+  // simple loops, expand by a small factor to hide the backedge cost.
+  let LoopMicroOpBufferSize = 10;
+
   let Itineraries = AtomItineraries;
 }