reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
57 size_t getDepth() const { return Depth; } 61 assert(Depth && !(Depth & (Depth - 1)) && 61 assert(Depth && !(Depth & (Depth - 1)) && 61 assert(Depth && !(Depth & (Depth - 1)) && 64 return Data[(Head + idx) & (Depth-1)]; 69 Depth = d; 70 Data = new unsigned[Depth]; 73 memset(Data, 0, Depth * sizeof(Data[0])); 78 Head = (Head + 1) & (Depth-1); 82 Head = (Head - 1) & (Depth-1);lib/CodeGen/ScoreboardHazardRecognizer.cpp
90 unsigned last = Depth - 1;