HomeSort by relevance Sort by last modified time
    Searched refs:Defs (Results 26 - 50 of 55) sorted by null

12 3

  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 407 SmallVector<unsigned, 8> Defs;
418 Defs.push_back(MO.getReg());
420 return Defs;
614 SmallVector<unsigned, 8> Defs = getReadDPRs(MI);
617 for (SmallVectorImpl<unsigned>::iterator I = Defs.begin(), E = Defs.end();
621 // we can end up with multiple defs of this DPR.
Thumb2SizeReduction.cpp 187 // When CPSRDef is null, this refers to CPSR defs in predecessors.
258 SmallSet<unsigned, 2> Defs;
265 Defs.insert(Reg);
272 if (Defs.count(Reg))
    [all...]
  /frameworks/compile/mclinker/lib/Core/
GeneralOptions.cpp 90 case ZOption::Defs:
  /packages/apps/Music/src/com/android/music/
VideoBrowserActivity.java 33 public class VideoBrowserActivity extends ListActivity implements MusicUtils.Defs
MusicUtils.java 76 public interface Defs {
280 MenuItem item = menu.findItem(Defs.PARTY_SHUFFLE);
427 sub.add(1, Defs.QUEUE, 0, R.string.queue);
428 sub.add(1, Defs.NEW_PLAYLIST, 0, R.string.new_playlist);
438 sub.add(1, Defs.PLAYLIST_SELECTED, 0, cur.getString(1)).setIntent(intent);
694 a.startActivityForResult(intent, Defs.SCAN_DONE);
    [all...]
MediaPickerActivity.java 39 public class MediaPickerActivity extends ListActivity implements MusicUtils.Defs
MusicPicker.java 67 MusicUtils.Defs {
PlaylistBrowserActivity.java 61 implements View.OnCreateContextMenuListener, MusicUtils.Defs
  /external/llvm/lib/CodeGen/
MachineLICM.cpp 462 // FIXME: For now, avoid instructions with multiple defs, unless
470 // register, then this is not safe. Two defs is indicated by setting a
507 // Walk the entire region, count number of defs for each register, and
805 // defs as well. This happens whenever the preheader is created by splitting
848 SmallVector<unsigned, 4> Defs;
859 Defs.push_back(Reg);
    [all...]
LiveDebugVariables.cpp 239 /// points, and add defs if possible.
243 /// @param NewDefs Append (Idx, LocNo) of inserted defs here.
609 // Try to add defs of the copied values for each kill point.
639 SmallVector<std::pair<SlotIndex, unsigned>, 16> Defs;
641 // Collect all defs to be extended (Skipping undefs).
644 Defs.push_back(std::make_pair(I.start(), I.value()));
646 // Extend all defs, and possibly add new ones along the way.
647 for (unsigned i = 0; i != Defs.size(); ++i) {
648 SlotIndex Idx = Defs[i].first;
649 unsigned LocNo = Defs[i].second
    [all...]
ScheduleDAGInstrs.cpp 207 /// the exit SU to the register defs and use list. This is because we want to
219 // If it's a call or a barrier, add dependencies on the defs and uses of
276 // Set the hasPhysRegDefs only for physreg defs that have a use within
308 if (!Defs.contains(*Alias))
310 for (Reg2SUnitsMap::iterator I = Defs.find(*Alias); I != Defs.end(); ++I) {
347 Defs.eraseAll(Reg);
354 Reg2SUnitsMap::RangePair P = Defs.equal_range(Reg);
361 I = Defs.erase(I);
365 // Defs are pushed in the order they are visited and never reordered
    [all...]
TwoAddressInstructionPass.cpp 417 // If there are multiple defs, we can't do a simple analysis, so just
798 SmallSet<unsigned, 2> Defs;
807 Defs.insert(MOReg);
821 while (End->isCopy() && Defs.count(End->getOperand(1).getReg())) {
822 Defs.insert(End->getOperand(0).getReg());
853 if (!MO.isDead() && Defs.count(MOReg))
859 if (Defs.count(MOReg))
    [all...]
BranchFolding.cpp     [all...]
RegAllocFast.cpp     [all...]
IfConversion.cpp     [all...]
  /external/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 246 void ReadTentativeDefinitions(SmallVectorImpl<VarDecl*> &Defs) override;
  /external/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 82 /// Live Intervals provides reaching defs in preRA scheduling.
129 /// Defs, Uses - Remember where defs and uses of each register are as we
133 Reg2SUnitsMap Defs;
140 /// unknown store, as we iterate. As with Defs and Uses, this is here
MachineRegisterInfo.h 50 /// Basic block live-in lists, kill flags, and implicit defs may not be
158 // function out of SSA form when they introduce multiple defs per virtual
204 template<bool Uses, bool Defs, bool SkipDebug,
207 template<bool Uses, bool Defs, bool SkipDebug,
219 /// reg_iterator/reg_begin/reg_end - Walk all defs and uses of the specified
232 /// reg_instr_iterator/reg_instr_begin/reg_instr_end - Walk all defs and uses
249 /// reg_bundle_iterator/reg_bundle_begin/reg_bundle_end - Walk all defs and uses
269 /// reg_nodbg_iterator/reg_nodbg_begin/reg_nodbg_end - Walk all defs and uses
287 /// all defs and uses of the specified register, stepping by MachineInstr,
305 /// all defs and uses of the specified register, stepping by bundle
    [all...]
  /external/llvm/utils/TableGen/
InstrInfoEmitter.cpp 360 // Emit all of the instruction's implicit uses and defs.
368 std::vector<Record*> Defs = Inst->getValueAsListOfDefs("Defs");
369 if (!Defs.empty()) {
370 unsigned &IL = EmittedLists[Defs];
371 if (!IL) PrintDefList(Defs, IL = ++ListNumber, OS);
523 // Emit the implicit uses and defs lists...
530 std::vector<Record*> DefList = Inst.TheDef->getValueAsListOfDefs("Defs");
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
  /frameworks/compile/mclinker/lib/Support/
CommandLine.cpp 106 else if (0 == Arg.compare("defs"))
107 Val.setKind(ZOption::Defs);
  /external/llvm/include/llvm/TableGen/
Record.h 779 /// ListInit - [AL, AH, CL] - Represent a list of defs
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp     [all...]
  /external/chromium_org/third_party/skia/src/svg/
SkSVGParser.cpp 88 // generate defs
363 CASE_NEW(Defs);
411 {"defs", SkSVGType_Defs},
  /external/skia/src/svg/
SkSVGParser.cpp 88 // generate defs
363 CASE_NEW(Defs);
411 {"defs", SkSVGType_Defs},

Completed in 1601 milliseconds

12 3