OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UserInst
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/Transforms/Scalar/
LoopRotation.cpp
126
Instruction *
UserInst
= cast<Instruction>(U.getUser());
127
if (!isa<PHINode>(
UserInst
)) {
128
BasicBlock *UserBB =
UserInst
->getParent();
LoopStrengthReduce.cpp
851
///
UserInst
- The instruction which will be updated.
852
Instruction *
UserInst
;
884
:
UserInst
(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
890
if (const PHINode *PN = dyn_cast<PHINode>(
UserInst
)) {
898
return !L->contains(
UserInst
);
902
OS << "
UserInst
=";
904
if (StoreInst *Store = dyn_cast<StoreInst>(
UserInst
)) {
907
} else if (
UserInst
->getType()->isVoidTy())
908
OS <<
UserInst
->getOpcodeName();
910
WriteAsOperand(OS,
UserInst
, /*PrintType=*/false)
[
all
...]
ObjCARC.cpp
[
all
...]
/external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp
839
Instruction *
UserInst
= cast<Instruction>(*UI++);
840
if (!isa<LoadInst>(
UserInst
)) {
841
assert(
UserInst
== OnlyStore && "Should only have load/stores");
844
LoadInst *LI = cast<LoadInst>(
UserInst
);
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp
[
all
...]
Completed in 45 milliseconds