HomeSort by relevance Sort by last modified time
    Searched refs:Uses (Results 1 - 25 of 42) sorted by null

1 2

  /external/clang/lib/Sema/
ScopeInfo.cpp 128 WeakUseVector &Uses =
130 Uses.push_back(WeakUseTy(Msg, Msg->getNumArgs() == 0));
155 FunctionScopeInfo::WeakObjectUseMap::iterator Uses;
157 Uses = WeakObjectUses.find(WeakObjectProfileTy(RefExpr));
159 Uses = WeakObjectUses.find(WeakObjectProfileTy(IvarE));
161 Uses = WeakObjectUses.find(WeakObjectProfileTy(DRE));
163 Uses = WeakObjectUses.end();
166 Uses =
175 if (Uses == WeakObjectUses.end())
180 std::find(Uses->second.rbegin(), Uses->second.rend(), WeakUseTy(E, true))
    [all...]
AnalysisBasedWarnings.cpp 628 /// DiagnoseUninitializedUse -- Helper function for diagnosing uses of an
630 /// emitted for particular types of uses. Returns true if the use was diagnosed
1162 UsesMap *uses; member in class:__anon17729::UninitValsDiagReporter
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 45 SmallSet<unsigned, 4> &Uses);
52 /// instructions in the IT block. This also tracks "dependencies", i.e. uses
56 SmallSet<unsigned, 4> &Uses,
78 Uses.insert(*Subreg);
107 SmallSet<unsigned, 4> &Uses) {
121 if (Uses.count(DstReg) || Defs.count(SrcReg))
164 SmallSet<unsigned, 4> Uses;
177 Uses.clear();
178 TrackDefUses(MI, Defs, Uses, TRI);
215 MoveCopyOutOfITBlock(NMI, CC, OCC, Defs, Uses)) {
    [all...]
A15SDOptimizer.cpp 217 // Check if all the uses of this instruction are marked as
646 // Collect all the uses of this MI's DPR def for updating later.
647 SmallVector<MachineOperand*, 8> Uses;
651 Uses.push_back(&I.getOperand());
658 for (SmallVectorImpl<MachineOperand *>::const_iterator I = Uses.begin(),
659 E = Uses.end(); I != E; ++I) {
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 179 /// All basic blocks where the current register has uses.
    [all...]
PeepholeOptimizer.cpp 19 // will replace some uses of the pre-extension value with uses of the
31 // same flag that the "cmp" instruction sets and that "bz" uses, then we can
141 /// result, then replace all reachable uses of the source with the subreg of the
146 /// debug uses.
159 // No other uses.
172 // If UseSrcSubIdx is Set, SubIdx also applies to SrcReg, and only uses of
177 // The source has other uses. See if we can replace the other uses with use of
185 // Uses that are in the same BB of uses of the result of the instruction
    [all...]
RegisterPressure.cpp 344 /// Collect this instruction's unique uses and defs into SmallVectors for
345 /// processing defs and uses in order.
351 SmallVector<unsigned, 8> Uses;
363 pushRegUnits(MO.getReg(), Uses);
480 // Generate liveness for uses.
481 for (unsigned i = 0, e = RegOpers.Uses.size(); i < e; ++i) {
482 unsigned Reg = RegOpers.Uses[i];
531 for (unsigned i = 0, e = RegOpers.Uses.size(); i < e; ++i) {
532 unsigned Reg = RegOpers.Uses[i];
537 // Kill liveness at last uses
    [all...]
ScheduleDAGInstrs.cpp 147 // because the code that uses this function has no way to cope with
211 // If it's a call or a barrier, add dependencies on the defs and uses of
220 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
229 // uses all the registers that are livein to the successor blocks.
230 assert(Uses.empty() && "Uses in set before adding deps?");
236 if (!Uses.contains(Reg))
237 Uses.insert(PhysRegSUOper(&ExitSU, -1, Reg));
243 /// data dependencies from SU to any uses of the physical register.
253 if (!Uses.contains(*Alias)
    [all...]
BranchFolding.cpp 150 // See if it uses any of the implicitly defined registers.
    [all...]
TwoAddressInstructionPass.cpp 282 // One of the uses is killed before the destination.
310 /// noUseAfterLastDef - Return true if there are no intervening uses between the
409 // All uses of physical registers are likely to be kills.
433 /// isTwoAddrUse - Return true if the specified MI uses the specified register
514 // general, we want no uses between this instruction and the definition of
566 // Since there are no intervening uses for both registers, then commute
641 // uses RegB, convertToThreeAddress must have created more
659 /// scanUses - Scan forward recursively for only uses, update maps if the use
797 SmallSet<unsigned, 2> Uses;
810 Uses.insert(MOReg)
    [all...]
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 93 /// Set bits in Uses corresponding to MBB's live-out registers except for
108 BitVector Defs, Uses;
151 /// This subclass uses memory dependence information to determine whether a
160 /// Update Defs and Uses. Return true if there exist dependences that
161 /// disqualify the delay slot candidate between V and values in Uses and
170 SmallPtrSet<const Value*, 4> Uses, Defs;
293 Uses(TRI.getNumRegs(), false) {}
348 Uses.set(*LI);
363 Uses |= NewUses;
373 return (isRegInSet(Defs, Reg) || isRegInSet(Uses, Reg))
    [all...]
  /ndk/
find-win-host.cmd 30 rem Uses "endlocal &&" hack to allow env. vars to survive setlocal/endlocal
  /external/chromium_org/v8/test/mjsunit/regress/
regress-877615.js 36 assertEquals([1].toLocaleString(), 'invalid'); // Uses ToObject on elements.
37 assertEquals([1].toString(), '1'); // Uses ToString directly on elements.
  /external/v8/test/mjsunit/regress/
regress-877615.js 36 assertEquals([1].toLocaleString(), 'invalid'); // Uses ToObject on elements.
37 assertEquals([1].toString(), '1'); // Uses ToString directly on elements.
  /external/llvm/utils/TableGen/
InstrInfoEmitter.cpp 74 static void PrintDefList(const std::vector<Record*> &Uses,
77 for (unsigned i = 0, e = Uses.size(); i != e; ++i)
78 OS << getQualifiedName(Uses[i]) << ", ";
338 // Emit all of the instruction's implicit uses and defs.
342 std::vector<Record*> Uses = Inst->getValueAsListOfDefs("Uses");
343 if (!Uses.empty()) {
344 unsigned &IL = EmittedLists[Uses];
345 if (!IL) PrintDefList(Uses, IL = ++ListNumber, OS);
497 // Emit the implicit uses and defs lists..
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 302 SmallVector<ArgumentGraphNode*, 4> Uses;
316 // uses every node. Because the graph is directed and nothing points into
325 iterator begin() { return SyntheticRoot.Uses.begin(); }
326 iterator end() { return SyntheticRoot.Uses.end(); }
332 SyntheticRoot.Uses.push_back(&Node);
338 // consider that a capture, instead adding it to the "Uses" list and
363 Uses.push_back(AI);
373 SmallVector<Argument*, 4> Uses; // Uses within our SCC.
386 return N->Uses.begin()
    [all...]
DeadArgumentElimination.cpp 87 /// with no registered uses (in Uses) will never be marked alive and will
102 /// arguments it uses. This allows the MaybeLive values to be marked live
105 /// - Uses[ret F] = ret G
107 /// - Uses[arg F] = ret G
110 /// - Uses[ret F] = arg F
112 /// - Uses[arg F] = arg G
115 UseMap Uses;
137 // DAH uses this to specify a different ID.
321 // Loop over the argument list, transferring uses of the old arguments over t
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 30 // it's useful to think about these as the same register, with some uses using
32 // example, the icmp is a post-increment user, since it uses %i.next, which is
351 /// formula. This does not include register uses implied by non-constant
379 /// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
380 /// which are used by uses other than the use with the given index.
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 45 /// For non data-dependent uses, OpIdx == -1.
121 /// Defs, Uses - Remember where defs and uses of each register are as we
126 Reg2SUnitsMap Uses;
132 /// unknown store, as we iterate. As with Defs and Uses, this is here
MachineRegisterInfo.h 85 /// for other target specific uses.
172 /// and uses of a register within the MachineFunction that corresponds to this
174 template<bool Uses, bool Defs, bool SkipDebug>
180 /// reg_iterator/reg_begin/reg_end - Walk all defs and uses of the specified
192 /// reg_nodbg_iterator/reg_nodbg_begin/reg_nodbg_end - Walk all defs and uses
226 /// use_iterator/use_begin/use_end - Walk all uses of the specified register.
246 /// use_nodbg_iterator/use_nodbg_begin/use_nodbg_end - Walk all uses of the
287 /// clearKillFlags - Iterate over all the uses of the given register and
517 /// ReturnUses is true it returns uses of registers, if ReturnDefs is true it
519 /// returns end(). If SkipDebug is true it skips uses marked Debu
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 248 /// Used to collect uses of a particular weak object in a function body.
253 /// Used to collect all uses of weak objects in a function body.
261 /// Used to collect all uses of weak objects in this function body.
648 WeakUseVector &Uses = WeakObjectUses[WeakObjectProfileTy(E)];
649 Uses.push_back(WeakUseTy(E, IsRead));
  /external/llvm/test/MC/ARM/
thumb-shift-encoding.s 3 @ Uses printT2SOOperand(), used by t2ADCrs t2ADDrs t2ANDrs t2BICrs t2EORrs
arm-shift-encoding.s 63 @ Uses printAddrMode2OffsetOperand(), used by LDRBT_POST_IMM LDRBT_POST_REG
78 @ Uses printSORegImmOperand(), used by ADCrsi ADDrsi ANDrsi BICrsi EORrsi
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
scroll.js 50 * Uses smooth scroll capabilities provided by the platform, if available.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover.py 273 children of <origin> into <destination>. Uses relative paths.

Completed in 773 milliseconds

1 2