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

  /external/llvm/include/llvm/Analysis/
IVUsers.h 127 SmallPtrSet<Instruction*,16> Processed;
  /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.
171 /// GetPromotedInteger - Given a processed operand Op which was promoted to a
281 /// GetExpandedInteger - Given a processed operand Op which was expanded into
350 /// GetSoftenedFloat - Given a processed operand Op which was converted to an
422 /// GetExpandedFloat - Given a processed operand Op which was expanded into
478 /// GetScalarizedVector - Given a processed one-element vector Op which wa
    [all...]
  /external/llvm/tools/opt/
opt.cpp 371 StringSet<> Processed;
379 if (!Name.empty() && Processed.insert(Name)) {
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 247 SmallSet<unsigned, 8> Processed;
250 if (Processed.count(SubReg))
261 Processed.insert(*SS);
RegAllocLinearScan.cpp 156 /// active_ - Intervals that are currently being processed, and which have a
160 /// inactive_ - Intervals that are currently being processed, but which have
417 // Already processed this register. Just make sure we know that
775 SmallSet<unsigned, 4> Processed;
779 Processed.insert(reg);
782 Processed.insert(*as);
798 if (!Processed.count(*sr))
    [all...]
TwoAddressInstructionPass.cpp 128 SmallPtrSet<MachineInstr*, 8> &Processed);
131 SmallPtrSet<MachineInstr*, 8> &Processed);
134 SmallPtrSet<MachineInstr*, 8> &Processed);
331 /// two-address instruction which is being processed. It also returns the last
518 /// the two-address instruction that's being processed.
678 SmallPtrSet<MachineInstr*, 8> &Processed) {
686 if (IsCopy && !Processed.insert(UseMI))
722 /// ProcessCopy - If the specified instruction is not yet processed, process it
736 SmallPtrSet<MachineInstr*, 8> &Processed) {
737 if (Processed.count(MI)
    [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 1199 milliseconds