HomeSort by relevance Sort by last modified time
    Searched full:iscopy (Results 51 - 75 of 90) sorted by null

1 23 4

  /external/llvm/lib/CodeGen/
TwoAddressInstructionPass.cpp 337 if (MI.isCopy()) {
451 bool &IsCopy,
462 IsCopy = true;
661 bool IsCopy = false;
664 while (MachineInstr *UseMI = findOnlyInterestingUse(Reg, MBB, MRI, TII,IsCopy,
666 if (IsCopy && !Processed.insert(UseMI))
772 if (!KillMI || MI == KillMI || KillMI->isCopy() || KillMI->isCopyLike())
818 while (End->isCopy() && Defs.count(End->getOperand(1).getReg())) {
    [all...]
CalcSpillWeights.cpp 160 if (noHint || !mi->isCopy())
OptimizePHIs.cpp 105 if (SrcMI && SrcMI->isCopy() &&
TargetInstrInfo.cpp 308 assert(MI->isCopy() && "MI must be a COPY instruction");
341 return MI->isCopy() && Ops.size() == 1 && canFoldCopy(MI, Ops[0]);
387 if (!MI->isCopy() || Ops.size() != 1)
MachineCopyPropagation.cpp 150 if (MI->isCopy()) {
MachineSink.cpp 125 if (!MI->isCopy())
303 if (!MI->isCopy() && !MI->isAsCheapAsAMove())
LiveRangeEdit.cpp 270 (MI->isCopy() || MOI->isDef() || MRI.hasOneNonDBGUse(Reg) ||
InlineSpiller.cpp 650 if (VNI->isPHIDef() || DefMI->isCopy()) {
762 if (!MI->isCopy() && !MI->mayStore())
    [all...]
LiveDebugVariables.cpp 567 if (UI.getOperand().getSubReg() || !UI->isCopy())
614 assert(CopyMI && CopyMI->isCopy() && "Bad copy value");
    [all...]
MachineCSE.cpp 129 if (!DefMI->isCopy())
RegisterCoalescer.cpp 218 if (MI->isCopy()) {
694 if (!UseMI->isCopy())
    [all...]
  /dalvik/vm/
Jni.cpp     [all...]
  /external/llvm/lib/Target/ARM/
MLxExpansionPass.cpp 127 while (UseMI->isCopy() || UseMI->isInsertSubreg()) {
338 if (MI->isLabel() || MI->isImplicitDef() || MI->isCopy()) {
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 662 bool isCopy() const {
666 return isCopy() && !getOperand(0).getSubReg() && !getOperand(1).getSubReg();
672 return isCopy() || isSubregToReg();
677 return isCopy() && getOperand(0).getReg() == getOperand(1).getReg() &&
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonPeephole.cpp 183 if (!DisableOptSZExt && MI->isCopy()) {
  /libnativehelper/
JNIHelp.cpp 402 * Normally the "isCopy" parameter is for a return value only, so the
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
AbsoluteLayoutRule.java 161 feedback.isCopy || !feedback.sameCanvas);
RelativeLayoutRule.java 189 feedback.isCopy || !feedback.sameCanvas);
GridLayoutRule.java 324 feedback.isCopy || !feedback.sameCanvas);
  /external/clang/lib/CodeGen/
CGObjC.cpp 564 bool isCopy() const { return IsCopy; }
575 unsigned IsCopy : 1;
589 IsCopy = (setterKind == ObjCPropertyDecl::Copy);
601 if (IsCopy) {
    [all...]
  /frameworks/base/docs/html/training/articles/
perf-jni.jd 260 non-NULL pointer for the <code>isCopy</code> argument. This is rarely
287 <p>One reason for checking the <code>isCopy</code> flag is to know if
300 <code>*isCopy</code> is false. This is not the case. If no copy buffer was
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrPattern.cpp 641 m_alternative->lastTerm().parentheses.isCopy = true;
698 if (term.quantityCount == 1 && !term.parentheses.isCopy) {
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.cpp 58 ApplicationCacheGroup::ApplicationCacheGroup(const KURL& manifestURL, bool isCopy)
69 , m_isCopy(isCopy)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 533 * Updates the {@link DropFeedback#isCopy} and {@link DropFeedback#sameCanvas} fields
542 df.isCopy = event.detail == DND.DROP_COPY;
    [all...]

Completed in 3361 milliseconds

1 23 4