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 127 SmallPtrSet<Instruction*,16> Processed;
170 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.
178 /// GetPromotedInteger - Given a processed operand Op which was promoted to a
294 /// GetExpandedInteger - Given a processed operand Op which was expanded into
368 /// GetSoftenedFloat - Given a processed operand Op which was converted to an
441 /// GetExpandedFloat - Given a processed operand Op which was expanded into
497 /// GetScalarizedVector - Given a processed one-element vector Op which wa
    [all...]
  /external/llvm/tools/opt/
opt.cpp 374 StringSet<> Processed;
382 if (!Name.empty() && Processed.insert(Name)) {
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 249 SmallSet<unsigned, 8> Processed;
252 if (Processed.count(SubReg))
263 Processed.insert(*SS);
TwoAddressInstructionPass.cpp 145 SmallPtrSet<MachineInstr*, 8> &Processed);
148 SmallPtrSet<MachineInstr*, 8> &Processed);
151 SmallPtrSet<MachineInstr*, 8> &Processed);
355 /// two-address instruction which is being processed. It also returns the last
568 /// the two-address instruction that's being processed.
731 SmallPtrSet<MachineInstr*, 8> &Processed) {
739 if (IsCopy && !Processed.insert(UseMI))
775 /// ProcessCopy - If the specified instruction is not yet processed, process it
789 SmallPtrSet<MachineInstr*, 8> &Processed) {
790 if (Processed.count(MI)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 298 Processed(false) {}
312 bool isProcessed() { return Processed; }
313 void process() { Processed = true; }
325 bool Processed;
543 // Check if the node needs to be processed.
559 // It has been processed, and there are no more children to process,
LoopStrengthReduce.cpp 671 SmallPtrSet<const SCEV*, 8> &Processed,
680 Processed, SE);
683 Processed, SE);
686 Processed, SE);
689 if (!Processed.insert(S))
695 if (isHighCostExpansion(*I, Processed, SE))
705 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 126 milliseconds