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

  /external/llvm/include/llvm/Analysis/
IVUsers.h 126 SmallPtrSet<Instruction*,16> Processed;
169 return Processed.count(Inst);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 42 /// ReadyToProcess - All operands have been processed, so this node is ready
54 /// Processed - This is a node that has already been processed.
55 Processed = -3
115 /// processed.
177 /// GetPromotedInteger - Given a processed operand Op which was promoted to a
293 /// GetExpandedInteger - Given a processed operand Op which was expanded into
367 /// GetSoftenedFloat - Given a processed operand Op which was converted to an
437 /// GetExpandedFloat - Given a processed operand Op which was expanded into
493 /// GetScalarizedVector - Given a processed one-element vector Op which wa
    [all...]
  /external/llvm/tools/opt/
opt.cpp 386 StringSet<> Processed;
394 if (!Name.empty() && Processed.insert(Name)) {
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 250 SmallSet<unsigned, 8> Processed;
253 if (Processed.count(SubReg))
264 Processed.insert(*SS);
TwoAddressInstructionPass.cpp 73 // The current basic block being processed.
80 // Set of already processed instructions in the current block.
81 SmallPtrSet<MachineInstr*, 8> Processed;
305 /// two-address instruction which is being processed. It also returns the last
501 /// the two-address instruction that's being processed.
666 if (IsCopy && !Processed.insert(UseMI))
702 /// processCopy - If the specified instruction is not yet processed, process it
715 if (Processed.count(MI))
734 Processed.insert(MI);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 355 Processed(false) {}
369 bool isProcessed() { return Processed; }
370 void process() { Processed = true; }
383 bool Processed;
601 // Check if the node needs to be processed.
617 // It has been processed, and there are no more children to process,
LoopStrengthReduce.cpp 686 SmallPtrSet<const SCEV*, 8> &Processed,
695 Processed, SE);
698 Processed, SE);
701 Processed, SE);
704 if (!Processed.insert(S))
710 if (isHighCostExpansion(*I, Processed, SE))
720 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
    [all...]
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 780 std::set<const BasicBlock *> Processed;
783 if (Processed.insert(*NBB).second) {
802 Processed.clear();
805 if (Processed.insert(*NBB).second) {
817 Processed.clear();
820 if (Processed.insert(*NBB).second) {
870 std::set<const BasicBlock *> Processed;
873 if (Processed.insert(*NBB).second) {
936 std::set<const BasicBlock *> Processed;
939 if (Processed.insert(*NBB).second)
    [all...]

Completed in 5341 milliseconds