OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MaxLookAhead
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/CodeGen/
ScheduleHazardRecognizer.h
27
///
MaxLookAhead
- Indicate the number of cycles in the scoreboard
29
///
MaxLookAhead
=0 identifies a fake recognizer, allowing the client to
31
unsigned
MaxLookAhead
;
34
ScheduleHazardRecognizer():
MaxLookAhead
(0) {}
43
unsigned getMaxLookAhead() const { return
MaxLookAhead
; }
45
bool isEnabled() const { return
MaxLookAhead
!= 0; }
/external/llvm/lib/CodeGen/
ScoreboardHazardRecognizer.cpp
64
// Don't set
MaxLookAhead
until we find at least one nonzero stage.
65
// This way, an itinerary with no stages has
MaxLookAhead
==0, which
67
MaxLookAhead
= ScoreboardDepth;
75
// If
MaxLookAhead
is not set above, then we are not enabled.
Completed in 85 milliseconds