HomeSort by relevance Sort by last modified time
    Searched refs:use_back (Results 1 - 25 of 27) sorted by null

1 2

  /external/llvm/include/llvm/IR/
Instruction.h 47 /// use_back - Specialize the methods defined in Value, as we know that an
49 Instruction *use_back() { return cast<Instruction>(*use_begin());} function in class:llvm::Instruction
50 const Instruction *use_back() const { return cast<Instruction>(*use_begin());} function in class:llvm::Instruction
Value.h 151 User *use_back() { return *use_begin(); } function in class:llvm::Value
152 const User *use_back() const { return *use_begin(); } function in class:llvm::Value
  /external/llvm/lib/Transforms/Utils/
LCSSA.cpp 156 (I->hasOneUse() && I->use_back()->getParent() == BB &&
157 !isa<PHINode>(I->use_back())))
DemoteRegToStack.cpp 44 Instruction *U = cast<Instruction>(I.use_back());
LowerInvoke.cpp 328 cast<Instruction>(Inst->use_back())->getParent() == BB &&
329 !isa<PHINode>(Inst->use_back())) continue;
PromoteMemoryToRegister.cpp 564 StoreInst *SI = cast<StoreInst>(AI->use_back());
    [all...]
  /external/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 571 OrigLoad = cast<LoadInst>(User->use_back());
632 CallSite CS(F->use_back());
    [all...]
GlobalOpt.cpp 747 User *GEP = GV->use_back();
    [all...]
DeadArgumentElimination.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp     [all...]
TailRecursionElimination.cpp 380 if (!I->hasOneUse() || !isa<ReturnInst>(I->use_back()))
386 return getCommonReturnValue(cast<ReturnInst>(I->use_back()), CI);
ScalarReplAggregates.cpp 600 Instruction *User = cast<Instruction>(Ptr->use_back());
    [all...]
IndVarSimplify.cpp 281 !isa<BranchInst>(Compare->use_back()))
284 BranchInst *TheBr = cast<BranchInst>(Compare->use_back());
    [all...]
SCCP.cpp     [all...]
  /external/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 127 if (!PHIUser->hasOneUse() || !(PHIUser->use_back() == PN) ||
474 if (!IE.hasOneUse() || !isa<InsertElementInst>(IE.use_back())) {
    [all...]
InstCombineCasts.cpp 760 if (CI.hasOneUse() && isa<TruncInst>(CI.use_back()))
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/IR/
BasicBlock.cpp 73 BlockAddress *BA = cast<BlockAddress>(use_back());
Constants.cpp 221 Value *V = use_back();
233 assert((use_empty() || use_back() != V) && "Constant not removed!");
380 const Constant *User = dyn_cast<Constant>(C->use_back());
    [all...]
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 299 cast<Instruction>(Inst->use_back())->getParent() == BB &&
300 !isa<PHINode>(Inst->use_back())) continue;
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 269 CallInst *Resume = cast<CallInst>(EHResume->use_back());
298 cast<CallInst>(FuncStart->use_back())->eraseFromParent();
304 cast<CallInst>(StopPoint->use_back())->eraseFromParent();
310 cast<CallInst>(RegionStart->use_back())->eraseFromParent();
316 cast<CallInst>(RegionEnd->use_back())->eraseFromParent();
322 DbgDeclareInst *DDI = cast<DbgDeclareInst>(Declare->use_back());
326 CallInst *CI = cast<CallInst>(Declare->use_back());
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 56 cast<CallInst>(FuncStart->use_back())->eraseFromParent();
62 cast<CallInst>(StopPoint->use_back())->eraseFromParent();
68 cast<CallInst>(RegionStart->use_back())->eraseFromParent();
74 cast<CallInst>(RegionEnd->use_back())->eraseFromParent();
80 DbgDeclareInst *DDI = cast<DbgDeclareInst>(Declare->use_back());
84 CallInst *CI = cast<CallInst>(Declare->use_back());
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]

Completed in 1339 milliseconds

1 2