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

  /external/llvm/tools/opt/
BreakpointPrinter.cpp 52 StringSet<> Processed;
61 if (!Name.empty() && Processed.insert(Name).second) {
  /external/lzma/CPP/7zip/Archive/7z/
7zFolderInStream.h 37 CRecordVector<bool> Processed;
  /external/lzma/CPP/7zip/Common/
CWrappers.h 38 UInt64 Processed;
52 UInt64 Processed;
63 Processed = 0;
67 UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
85 UInt64 Processed;
96 Processed = 0;
99 UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
  /external/llvm/include/llvm/Analysis/
IVUsers.h 125 SmallPtrSet<Instruction*,16> Processed;
168 return Processed.count(Inst);
ScalarEvolutionExpander.h 121 SmallPtrSet<const SCEV *, 8> Processed;
122 return isHighCostExpansionHelper(Expr, L, Processed);
201 SmallPtrSetImpl<const SCEV *> &Processed);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 41 /// ReadyToProcess - All operands have been processed, so this node is ready
53 /// Processed - This is a node that has already been processed.
54 Processed = -3
123 /// processed.
185 /// GetPromotedInteger - Given a processed operand Op which was promoted to a
303 /// GetExpandedInteger - Given a processed operand Op which was expanded into
377 /// GetSoftenedFloat - Given a processed operand Op which was converted to an
450 /// GetExpandedFloat - Given a processed operand Op which was expanded into
549 /// GetScalarizedVector - Given a processed one-element vector Op which wa
    [all...]
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 250 SmallSet<unsigned, 8> Processed;
253 if (Processed.count(SubReg))
264 Processed.insert(*SS);
TwoAddressInstructionPass.cpp 83 // The current basic block being processed.
90 // Set of already processed instructions in the current block.
91 SmallPtrSet<MachineInstr*, 8> Processed;
356 /// two-address instruction which is being processed. It also returns the last
547 /// the two-address instruction that's being processed.
744 if (IsCopy && !Processed.insert(UseMI).second)
780 /// processCopy - If the specified instruction is not yet processed, process it
793 if (Processed.count(MI))
812 Processed.insert(MI);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 349 Processed(false) {}
363 bool isProcessed() { return Processed; }
364 void process() { Processed = true; }
377 bool Processed;
659 // Check if the node needs to be processed.
673 // It has been processed, and there are no more children to process,
LoopStrengthReduce.cpp 746 SmallPtrSetImpl<const SCEV*> &Processed,
755 Processed, SE);
758 Processed, SE);
761 Processed, SE);
764 if (!Processed.insert(S).second)
770 if (isHighCostExpansion(*I, Processed, SE))
780 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
    [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 323 SmallPtrSet<MachineBasicBlock*, 8> Processed;
327 for (MachineBasicBlock *BB : depth_first_ext(Entry, Processed))
331 if (MF.size() != Processed.size())
333 if (Processed.insert(BB).second)
    [all...]

Completed in 364 milliseconds