OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UseInst
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Transforms/Scalar/
Sink.cpp
83
Instruction *
UseInst
= cast<Instruction>(*I);
84
BasicBlock *UseBlock =
UseInst
->getParent();
85
if (PHINode *PN = dyn_cast<PHINode>(
UseInst
)) {
/external/llvm/lib/CodeGen/
MachineSink.cpp
187
MachineInstr *
UseInst
= &*I;
188
MachineBasicBlock *UseBlock =
UseInst
->getParent();
189
if (!(UseBlock == MBB &&
UseInst
->isPHI() &&
190
UseInst
->getOperand(I.getOperandNo()+1).getMBB() == DefMBB)) {
202
MachineInstr *
UseInst
= &*I;
203
MachineBasicBlock *UseBlock =
UseInst
->getParent();
204
if (
UseInst
->isPHI()) {
207
UseBlock =
UseInst
->getOperand(I.getOperandNo()+1).getMBB();
449
MachineInstr *
UseInst
= &*I;
450
MachineBasicBlock *UseBlock =
UseInst
->getParent()
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp
72
Value *foldIVUser(Instruction *
UseInst
, Instruction *IVOperand);
74
bool eliminateIVUser(Instruction *
UseInst
, Instruction *IVOperand);
84
/// IVOperand is guaranteed SCEVable, but
UseInst
may not be.
89
Value *SimplifyIndvar::foldIVUser(Instruction *
UseInst
, Instruction *IVOperand) {
93
switch (
UseInst
->getOpcode()) {
100
if (IVOperand !=
UseInst
->getOperand(OperIdx) ||
101
!isa<ConstantInt>(
UseInst
->getOperand(1)))
114
ConstantInt *D = cast<ConstantInt>(
UseInst
->getOperand(1));
115
if (
UseInst
->getOpcode() == Instruction::LShr) {
117
uint32_t BitWidth = cast<IntegerType>(
UseInst
->getType())->getBitWidth()
[
all
...]
/external/llvm/include/llvm/IR/
IRBuilder.h
103
Instruction *
UseInst
= cast<Instruction>(U.getUser());
104
if (PHINode *Phi = dyn_cast<PHINode>(
UseInst
)) {
110
SetInsertPoint(
UseInst
);
[
all
...]
Completed in 1283 milliseconds