Format file header.

llvm-svn: 611
This commit is contained in:
Vikram S. Adve 2001-09-18 12:52:03 +00:00
parent 703297cf24
commit 8656a80661
1 changed files with 19 additions and 19 deletions

View File

@ -1,22 +1,22 @@
/* -*-C++-*-
****************************************************************************
* File:
* SchedPriorities.h
*
* Purpose:
* Encapsulate heuristics for instruction scheduling.
*
* Strategy:
* Priority ordering rules:
* (1) Max delay, which is the order of the heap S.candsAsHeap.
* (2) Instruction that frees up a register.
* (3) Instruction that has the maximum number of dependent instructions.
* Note that rules 2 and 3 are only used if issue conflicts prevent
* choosing a higher priority instruction by rule 1.
*
* History:
* 7/30/01 - Vikram Adve - Created
***************************************************************************/
// $Id$ -*-C++-*-
//***************************************************************************
// File:
// SchedPriorities.h
//
// Purpose:
// Encapsulate heuristics for instruction scheduling.
//
// Strategy:
// Priority ordering rules:
// (1) Max delay, which is the order of the heap S.candsAsHeap.
// (2) Instruction that frees up a register.
// (3) Instruction that has the maximum number of dependent instructions.
// Note that rules 2 and 3 are only used if issue conflicts prevent
// choosing a higher priority instruction by rule 1.
//
// History:
// 7/30/01 - Vikram Adve - Created
//**************************************************************************/
#include "SchedPriorities.h"