The kind of instruction‐scheduling heuristic the target prefers.
Synopsis
Declared in <llvm/CodeGen/TargetLowering.h>
enum Preference : uint8_t;
Members
Name |
Description |
|
No preference. |
|
Follow source order. |
|
Schedule for lowest register pressure. |
|
Schedule for both latency and register pressure. |
|
Schedule for ILP in low register pressure mode. |
|
Schedule for VLIW targets. |
|
Fast suboptimal list scheduling. |
|
Linearize the DAG without scheduling. |
|
Marker for the last Sched::Preference. |
Created with MrDocs