|
LLVM
8.0.1
|
#include "PPC.h"#include "PPCInstrInfo.h"#include "PPCSubtarget.h"#include "llvm/ADT/DenseMap.h"#include "llvm/ADT/Statistic.h"#include "llvm/CodeGen/LivePhysRegs.h"#include "llvm/CodeGen/MachineFunctionPass.h"#include "llvm/CodeGen/MachineInstrBuilder.h"#include "llvm/CodeGen/MachineRegisterInfo.h"#include "llvm/Support/CommandLine.h"#include "llvm/Support/Debug.h"#include "llvm/Support/raw_ostream.h"
Go to the source code of this file.
Macros | |
| #define | DEBUG_TYPE "ppc-expand-isel" |
Functions | |
| STATISTIC (NumExpanded, "Number of ISEL instructions expanded") | |
| STATISTIC (NumRemoved, "Number of ISEL instructions removed") | |
| STATISTIC (NumFolded, "Number of ISEL instructions folded") | |
Variables | |
| static cl::opt< bool > | GenerateISEL ("ppc-gen-isel", cl::desc("Enable generating the ISEL instruction."), cl::init(true), cl::Hidden) |
Definition at line 30 of file PPCExpandISEL.cpp.
| STATISTIC | ( | NumExpanded | , |
| "Number of ISEL instructions expanded" | |||
| ) |
| STATISTIC | ( | NumRemoved | , |
| "Number of ISEL instructions removed" | |||
| ) |
| STATISTIC | ( | NumFolded | , |
| "Number of ISEL instructions folded" | |||
| ) |
1.8.13