HomeSort by relevance Sort by last modified time
    Searched defs:Users (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 305 // Avoid iterator invalidation by copying users to a temporary vector.
306 SmallVector<Instruction*, 16> Users;
311 Users.push_back(User);
317 while (!Users.empty()) {
318 Instruction *U = Users.back();
319 Users.pop_back();
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 340 // Avoid iterator invalidation by copying users to a temporary vector.
341 SmallVector<Instruction*,16> Users;
346 Users.push_back(User);
357 while (!Users.empty()) {
358 Instruction *U = Users.back();
359 Users.pop_back();
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 618 // Otherwise, we can replace *all* users with the new PHI we form.
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 230 bool trackUsesOfI(DenseSet<Value *> &Users,
559 // users of the pair are also paired. This defines a (directed) forest
773 // Figure out whether or not J uses I and update the users and write-set
774 // structures associated with I. Specifically, Users represents the set of
777 // and J uses I, then Users is updated to contain J and WriteSet is updated
788 bool BBVectorize::trackUsesOfI(DenseSet<Value *> &Users,
796 if (Users.count(J))
803 if (I == V || Users.count(V)) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 297 // only question is whether or not they may be users.
446 /// argument verbatim, so if it's such a call and the return value has users,
456 "Can't delete non-forwarding instruction with users!");
    [all...]

Completed in 155 milliseconds