OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:use_back
(Results
1 - 25
of
27
) sorted by null
1
2
/external/swiftshader/third_party/LLVM/include/llvm/
BasicBlock.h
113
///
use_back
- Specialize the methods defined in Value, as we know that an
116
User *
use_back
() { return cast<User>(*use_begin());}
function in class:llvm::BasicBlock
117
const User *
use_back
() const { return cast<User>(*use_begin());}
function in class:llvm::BasicBlock
Instruction.h
46
///
use_back
- Specialize the methods defined in Value, as we know that an
48
Instruction *
use_back
() { return cast<Instruction>(*use_begin());}
function in class:llvm::Instruction
49
const Instruction *
use_back
() const { return cast<Instruction>(*use_begin());}
function in class:llvm::Instruction
Value.h
161
User *
use_back
() { return *use_begin(); }
function in class:llvm::Value
162
const User *
use_back
() const { return *use_begin(); }
function in class:llvm::Value
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DemoteRegToStack.cpp
53
Instruction *U = cast<Instruction>(I.
use_back
());
LCSSA.cpp
152
(I->hasOneUse() && I->
use_back
()->getParent() == BB &&
153
!isa<PHINode>(I->
use_back
())))
LowerInvoke.cpp
346
cast<Instruction>(Inst->
use_back
())->getParent() == BB &&
347
!isa<PHINode>(Inst->
use_back
())) continue;
PromoteMemoryToRegister.cpp
460
StoreInst *SI = cast<StoreInst>(AI->
use_back
());
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
Reassociate.cpp
484
(isReassociableOp(Sub->
use_back
(), Instruction::Add) ||
485
isReassociableOp(Sub->
use_back
(), Instruction::Sub)))
526
(isReassociableOp(Shl->
use_back
(), Instruction::Mul) ||
527
isReassociableOp(Shl->
use_back
(), Instruction::Add)))) {
[
all
...]
TailRecursionElimination.cpp
344
if (!I->hasOneUse() || !isa<ReturnInst>(I->
use_back
()))
350
return getCommonReturnValue(cast<ReturnInst>(I->
use_back
()), CI);
ScalarReplAggregates.cpp
526
Instruction *User = cast<Instruction>(Ptr->
use_back
());
[
all
...]
IndVarSimplify.cpp
293
!isa<BranchInst>(Compare->
use_back
()))
296
BranchInst *TheBr = cast<BranchInst>(Compare->
use_back
());
[
all
...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
AutoUpgrade.cpp
387
cast<CallInst>(FuncStart->
use_back
())->eraseFromParent();
393
cast<CallInst>(StopPoint->
use_back
())->eraseFromParent();
399
cast<CallInst>(RegionStart->
use_back
())->eraseFromParent();
405
cast<CallInst>(RegionEnd->
use_back
())->eraseFromParent();
411
DbgDeclareInst *DDI = cast<DbgDeclareInst>(Declare->
use_back
());
415
CallInst *CI = cast<CallInst>(Declare->
use_back
());
648
CallInst *Resume = cast<CallInst>(EHResume->
use_back
());
BasicBlock.cpp
73
BlockAddress *BA = cast<BlockAddress>(
use_back
());
Constants.cpp
157
Value *V =
use_back
();
170
assert((use_empty() ||
use_back
() != V) && "Constant not removed!");
310
const Constant *User = dyn_cast<Constant>(C->
use_back
());
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
StripSymbols.cpp
245
CallInst *CI = cast<CallInst>(Declare->
use_back
());
254
CallInst *CI = cast<CallInst>(DbgVal->
use_back
());
304
CallInst *CI = cast<CallInst>(Declare->
use_back
());
ArgumentPromotion.cpp
573
OrigLoad = cast<LoadInst>(User->
use_back
());
642
CallSite CS(F->
use_back
());
[
all
...]
GlobalOpt.cpp
581
User *GEP = GV->
use_back
();
[
all
...]
DeadArgumentElimination.cpp
227
CallSite CS(Fn.
use_back
());
780
CallSite CS(F->
use_back
());
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombinePHI.cpp
521
if (PHINode *PU = dyn_cast<PHINode>(PN->
use_back
()))
674
!User->hasOneUse() || !isa<TruncInst>(User->
use_back
()) ||
679
PHIUsers.push_back(PHIUsageRecord(PHIId, Shift, User->
use_back
()));
814
Instruction *PHIUser = cast<Instruction>(PN.
use_back
());
830
PHIUser->
use_back
() == &PN) {
[
all
...]
InstCombineVectorOps.cpp
423
if (!IE.hasOneUse() || !isa<InsertElementInst>(IE.
use_back
())) {
InstCombineCasts.cpp
749
if (CI.hasOneUse() && isa<TruncInst>(CI.
use_back
()))
[
all
...]
InstructionCombining.cpp
[
all
...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
SjLjEHPrepare.cpp
309
cast<Instruction>(Inst->
use_back
())->getParent() == BB &&
310
!isa<PHINode>(Inst->
use_back
())) continue;
391
Instruction *I = cast<Instruction>(Inst->
use_back
());
[
all
...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp
756
const Instruction *TheUser = LI->
use_back
();
765
TheUser = TheUser->
use_back
();
[
all
...]
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
CBackend.cpp
250
const Instruction &User = cast<Instruction>(*I.
use_back
());
257
return I.getParent() == cast<Instruction>(I.
use_back
())->getParent();
[
all
...]
Completed in 598 milliseconds
1
2