|
LLVM
4.0.0
|
#include "llvm/Analysis/DemandedBits.h"#include "llvm/ADT/DepthFirstIterator.h"#include "llvm/ADT/SmallPtrSet.h"#include "llvm/ADT/SmallVector.h"#include "llvm/ADT/StringExtras.h"#include "llvm/Analysis/AssumptionCache.h"#include "llvm/Analysis/ValueTracking.h"#include "llvm/IR/BasicBlock.h"#include "llvm/IR/CFG.h"#include "llvm/IR/DataLayout.h"#include "llvm/IR/Dominators.h"#include "llvm/IR/InstIterator.h"#include "llvm/IR/Instructions.h"#include "llvm/IR/IntrinsicInst.h"#include "llvm/IR/Module.h"#include "llvm/IR/Operator.h"#include "llvm/Pass.h"#include "llvm/Support/Debug.h"#include "llvm/Support/raw_ostream.h"Go to the source code of this file.
Macros | |
| #define | DEBUG_TYPE "demanded-bits" |
Functions | |
| INITIALIZE_PASS_BEGIN (DemandedBitsWrapperPass,"demanded-bits","Demanded bits analysis", false, false) INITIALIZE_PASS_END(DemandedBitsWrapperPass | |
| static bool | isAlwaysLive (Instruction *I) |
Variables | |
| demanded | bits |
| demanded Demanded bits | analysis |
| demanded Demanded bits | false |
| #define DEBUG_TYPE "demanded-bits" |
Definition at line 43 of file DemandedBits.cpp.
| INITIALIZE_PASS_BEGIN | ( | DemandedBitsWrapperPass | , |
| "demanded-bits" | , | ||
| "Demanded bits analysis" | , | ||
| false | , | ||
| false | |||
| ) |
|
static |
Definition at line 68 of file DemandedBits.cpp.
References I, llvm::Instruction::isEHPad(), and llvm::Instruction::mayHaveSideEffects().
Referenced by llvm::DemandedBits::isInstructionDead().
| demanded Demanded bits analysis |
Definition at line 50 of file DemandedBits.cpp.
| demanded bits |
Definition at line 50 of file DemandedBits.cpp.
Referenced by llvm::HexagonMCInstrInfo::getMaxValue(), llvm::HexagonInstrInfo::getMaxValue(), llvm::HexagonMCInstrInfo::getMinValue(), llvm::HexagonInstrInfo::getMinValue(), LLVMFuzzerTestOneInput(), llvm::APInt::sext(), and llvm::APInt::trunc().
| demanded Demanded bits false |
Definition at line 50 of file DemandedBits.cpp.
1.8.6