reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGLoopInfo.cpp
  567       new LoopInfo(Header, StagedAttrs, StartLoc, EndLoc,
  570   StagedAttrs.clear();
tools/clang/lib/CodeGen/CGLoopInfo.h
  224   void setParallel(bool Enable = true) { StagedAttrs.IsParallel = Enable; }
  228     StagedAttrs.VectorizeEnable =
  234     StagedAttrs.DistributeEnable =
  240     StagedAttrs.UnrollEnable = State;
  245     StagedAttrs.VectorizePredicateEnable = State;
  250     StagedAttrs.UnrollAndJamEnable = State;
  254   void setVectorizeWidth(unsigned W) { StagedAttrs.VectorizeWidth = W; }
  257   void setInterleaveCount(unsigned C) { StagedAttrs.InterleaveCount = C; }
  260   void setUnrollCount(unsigned C) { StagedAttrs.UnrollCount = C; }
  263   void setUnrollAndJamCount(unsigned C) { StagedAttrs.UnrollAndJamCount = C; }
  266   void setPipelineDisabled(bool S) { StagedAttrs.PipelineDisabled = S; }
  270     StagedAttrs.PipelineInitiationInterval = C;