Home
last modified time | relevance | path

Searched refs:getDst (Results 1 – 25 of 360) sorted by relevance

12345678910>>...15

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/Passes/
H A DLVN.cpp171 G4_DstRegRegion* def = defInst->getDst(); in canReplaceUses()
712 auto dstTopDcl = item->inst->getDst() ? item->inst->getDst()->getTopDcl() : nullptr; in removePhysicalVarRedefs()
999 if (!inst->getDst()) in invalidateOldDstValue()
1217 inst->getDst()->isIndirect() || in addValue()
1224 G4_Operand* dst = inst->getDst(); in addValue()
1353 item->opnd = inst->getDst(); in computeValue()
1361 inst->getDst() && inst->getDst()->getTopDcl()) in computeValue()
1366 if (inst->getDst() && inst->getDst()->getTopDcl()) in computeValue()
1853 if (inst->getDst() == NULL) in doLVN()
1928 bool hasSameDstRegion = dstRegionMatch(inst->getDst(), lvnInst->getDst()); in doLVN()
[all …]
H A DMergeScalars.cpp101 G4_DstRegRegion* dst = inst[instId]->getDst(); in doMerge()
158 G4_Type dstType = newInst->getDst()->getType(); in doMerge()
171 G4_Declare* dstDcl = inst[i]->getDst()->getTopDcl(); in doMerge()
366 MUST_BE_TRUE(inst->getDst() != NULL, "dst must not be NULL"); in isMergeCandidate()
367 if (inst->getDst()->isIndirect()) in isMergeCandidate()
379 G4_VarBase* dstBase = inst->getDst()->getBase(); in isMergeCandidate()
450 G4_DstRegRegion* firstDst = inst[0]->getDst(); in canMergeDst()
451 G4_DstRegRegion* prevDst = inst[size - 1]->getDst(); in canMergeDst()
512 if (dstDcl == bundleInst->getDst()->getTopDcl()) in canMergeDst()
693 G4_DstRegRegion* dst = inst[i]->getDst(); in canMergeSource()
[all …]
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/
H A DHWConformity.cpp755 if (inst->getDst()) in hasSameSubregOffset()
1364 if (inst->getDst() && in fix3SrcInst()
1592 dst = inst->getDst(); in fixRotate()
1809 inst->getDst() && in fixPredicateIndirectInst()
1994 auto dst = inst->getDst(); in fixAcc()
2973 auto dst = inst->getDst(); in emulate64bMov()
3329 if (inst->getDst() && inst->getDst()->getTypeSize() == 8) in fix64bInst()
4130 if (!def->getDst() || (def->getDst()->getType() != src->getType())) in tryTransferSrcModifier()
5347 auto dst = inst->getDst(); in avoidInstDstSrcOverlap()
5680 dst = inst->getDst(); in conformBB()
[all …]
H A DOptimizer.cpp867 inst->getDst() && in insertDummyMovForHWRSWADPAS()
916 inst->getDst() && in insertDummyMovForHWRSWA()
1575 auto dst = movInst->getDst(); in isCopyPropProfitable()
2220 dst = inst->getDst(); in FoldAddrImmediate()
2495 if (defInst->getDst() && in checkLifetime()
6986 if (inst->getDst() && inst->getDst()->isFlag()) in clearARFDependencies()
7827 inst->getDst() && IS_TYPE_FLOAT_ALL(inst->getDst()->getType())) in HWWorkaround()
9977 auto dst = I->getDst(); in isMad()
11908 if (overlaps(SI->getDst())) in retires()
12873 (I->getDst() == nullptr || I->getDst()->isNullReg())) in doNoMaskWA_postRA()
[all …]
H A DSpillCleanup.cpp224 auto fillDst = fill->getDst(); in coalesceFills()
336 auto topdcl = (*c)->getDst()->getTopDcl(); in fillHeuristic()
942 auto dst = inst->getDst(); in replaceCoalescedOperands()
1164 inst->getDst()) in populateSendDstDcl()
1166 if (!inst->getDst()->isNullReg()) in populateSendDstDcl()
1467 inst->getDst() && in removeRedundantSplitMovs()
1468 !inst->getDst()->isNullReg() && in removeRedundantSplitMovs()
1644 auto dcl = inst->getDst()->getTopDcl(); in removeRedundantSplitMovs()
1780 if (pInst->getDst() && in spillFillCleanup()
1781 pInst->getDst()->getTopDcl()) in spillFillCleanup()
[all …]
H A DRematerialization.cpp25 auto dst = inst->getDst(); in populateRefs()
112 if (inst->getDst() && in populateSamplerHeaderMap()
113 inst->getDst()->getTopDcl() == samplerHeader) in populateSamplerHeaderMap()
336 if (inst->isMov() && inst->getDst() && inst->getExecSize() == 1) in cleanRedundantSamplerHeaders()
339 auto dstTopDcl = inst->getDst()->getTopDcl(); in cleanRedundantSamplerHeaders()
355 if (inst->getDst()->getSubRegOff() == 2 && in cleanRedundantSamplerHeaders()
394 auto currDst = currInst->getDst(); in checkLocalWAR()
932 auto dst = dstInst->getDst(); in rematerialize()
1019 auto headerDefDst = headerDefInst->getDst(); in rematerialize()
1099 auto curdst = r.first->getDst(); in findUniqueDef()
[all …]
H A DReduceExecSize.cpp82 G4_DstRegRegion *reg = inst->getDst(); in fixDstAlignmentWithVectorImm()
339 G4_DstRegRegion *dst = inst->getDst(); in reduceExecSize()
884 G4_DstRegRegion *dst = inst->getDst(); in splitSIMD32Inst()
994 G4_DstRegRegion *dst = inst->getDst(); in splitInstruction()
1250 insertMovAfter(newInstIter, inst->getDst(), inst->getDst()->getType(), bb)); in splitInstruction()
1295 G4_DstRegRegion* dst = inst->getDst(); in evenlySplitInst()
1468 if (inst->getDst() && !inst->hasNULLDst()) in checkSrcDstOverlap()
1582 G4_DstRegRegion *dst = inst->getDst(); in saveDst()
1611 G4_DstRegRegion *dst = inst->getDst(); in restoreDst()
1642 G4_DstRegRegion *dst = inst->getDst(); in insertMovAfter()
[all …]
H A DVarSplit.cpp25 if (inst->getDst()) in buildPreVerify()
27 splitVerify[inst].dst = inst->getDst(); in buildPreVerify()
28 splitVerify[inst].dstLb = inst->getDst()->getLeftBound(); in buildPreVerify()
84 splitDcls.insert(inst->getDst()->getTopDcl()); in verify()
105 auto dst = inst->getDst(); in verify()
170 auto dst = inst->getDst(); in verifyOverlap()
226 auto dstRgn = inst->getDst(); in verifyOverlap()
274 if (inst->getDst() && inst->getDst()->getTopDcl()) in findSplitCandidates()
276 auto dstDcl = inst->getDst()->getTopDcl(); in findSplitCandidates()
1040 auto dst = std::get<0>(def)->getDst(); in getWrites()
[all …]
/dports/security/fwbuilder/fwbuilder-5.3.7/src/pflib/
H A DPolicyCompiler_ipf_optimizer.cpp94 re1=r->getDst(); re1->clearChildren(); re1->setAnyElement(); in optimizeForRuleElement()
114 RuleElementDst *dstrel=rule->getDst(); in processNext()
166 RuleElementDst *dstrel=rule->getDst(); in processNext()
193 RuleElementDst *dstrel=rule->getDst(); in processNext()
220 RuleElementDst *dstrel=rule->getDst(); in processNext()
/dports/net/p5-Net-Libdnet/Net-Libdnet-0.99/lib/Net/Libdnet/
H A DIntf.pm41 sub getDst { subroutine
52 my $e = $self->getDst($dst) or return;
59 my $e = $self->getDst($dst) or return;
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/tony/
H A Dfont.cpp503 prim->getDst()._x1 = x; in writeText()
504 prim->getDst()._y1 = y; in writeText()
522 if (prim->getDst()._x1 < 5) in clipOnScreen()
523 prim->getDst()._x1 = 5; in clipOnScreen()
524 if (prim->getDst()._y1 < 5) in clipOnScreen()
525 prim->getDst()._y1 = 5; in clipOnScreen()
527 prim->getDst()._x1 = 635 - _dimx; in clipOnScreen()
529 prim->getDst()._y1 = 475 - _dimy; in clipOnScreen()
547 prim->getDst()._y1 -= _dimy / 2; in draw()
550 prim->getDst()._y1 -= _dimy; in draw()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/tony/
H A Dfont.cpp504 prim->getDst()._x1 = x; in writeText()
505 prim->getDst()._y1 = y; in writeText()
523 if (prim->getDst()._x1 < 5) in clipOnScreen()
524 prim->getDst()._x1 = 5; in clipOnScreen()
525 if (prim->getDst()._y1 < 5) in clipOnScreen()
526 prim->getDst()._y1 = 5; in clipOnScreen()
528 prim->getDst()._x1 = 635 - _dimx; in clipOnScreen()
530 prim->getDst()._y1 = 475 - _dimy; in clipOnScreen()
548 prim->getDst()._y1 -= _dimy / 2; in draw()
551 prim->getDst()._y1 -= _dimy; in draw()
[all …]
/dports/biology/ugene/ugene-40.1/src/plugins/query_designer/src/
H A DQueryViewAdapter.cpp62 moveElement(fn->getDst(), -dx); in placeElement()
64 assert(fn->getDst() == uv); in placeElement()
94 if (!needToMove(fn->getDst(), dx, res)) { in needToMove()
101 if (fn->getDst() == current) { in needToMove()
/dports/graphics/opencolorio/OpenColorIO-1.1.1/src/core/
H A DColorSpaceTransform.cpp119 const char * ColorSpaceTransform::getDst() const
134 os << "dst=" << t.getDst();
156 dst = config.getColorSpace( context->resolveStringVar( colorSpaceTransform.getDst() ) );
161 src = config.getColorSpace( context->resolveStringVar( colorSpaceTransform.getDst() ) );
H A DLookTransform.cpp127 const char * LookTransform::getDst() const
151 os << ", dst=" << t.getDst();
282 dst = config.getColorSpace( lookTransform.getDst() );
298 os << lookTransform.getDst() << "', which is not defined.";
/dports/graphics/opencolorio-tools/OpenColorIO-1.1.1/src/core/
H A DColorSpaceTransform.cpp119 const char * ColorSpaceTransform::getDst() const
134 os << "dst=" << t.getDst();
156 dst = config.getColorSpace( context->resolveStringVar( colorSpaceTransform.getDst() ) );
161 src = config.getColorSpace( context->resolveStringVar( colorSpaceTransform.getDst() ) );
H A DLookTransform.cpp127 const char * LookTransform::getDst() const
151 os << ", dst=" << t.getDst();
282 dst = config.getColorSpace( lookTransform.getDst() );
298 os << lookTransform.getDst() << "', which is not defined.";
/dports/graphics/py-opencolorio/OpenColorIO-1.1.1/src/core/
H A DColorSpaceTransform.cpp119 const char * ColorSpaceTransform::getDst() const
134 os << "dst=" << t.getDst();
156 dst = config.getColorSpace( context->resolveStringVar( colorSpaceTransform.getDst() ) );
161 src = config.getColorSpace( context->resolveStringVar( colorSpaceTransform.getDst() ) );
/dports/security/fwbuilder/fwbuilder-5.3.7/src/libfwbuilder/src/fwcompiler/
H A DPolicyCompiler.cpp323 if (r1.getDst()->getNeg()!=r2.getDst()->getNeg()) return false; in cmpRules()
326 if (r2.getDst()->getNeg()!=r2.getDst()->getNeg()) return false; in cmpRules()
421 RuleElementDst *dst=rule->getDst(); assert(dst); in processNext()
453 RuleElementDst *dst=rule->getDst(); assert(dst); in processNext()
689 if (a==NULL) a = findZeroAddress( rule->getDst() ); in processNext()
738 RuleElementDst *dst=rule->getDst(); assert(dst); in processNext()
752 s=r->getDst(); assert(s); in processNext()
794 RuleElementDst *dst=rule->getDst(); assert(dst); in processNext()
812 s=r->getDst(); assert(s); in processNext()
986 RuleElement *dst=rule->getDst(); in processNext()
[all …]
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/LocalScheduler/
H A DLocalScheduler_G4IR.h390 …if (inst->opcode() == G4_mad && inst->getExecSize() == g4::SIMD16 && inst->getDst()->getType() == … in instCanUse2xDP()
451 int dstReg = int(inst->getDst()->getLinearizedStart() / getGRFSize()); in push()
457 …instGRFSize = (inst->getDst()->getLinearizedEnd() - inst->getDst()->getLinearizedStart() + 1) / ge… in push()
463 instType = inst->getDst()->getType(); in push()
543 G4_Operand* newOpnd = node->getInstructions()->front()->getDst(); in checkGRFSize()
607 …tmpInstGRFSize = (this->instGRFSize == 0) ? int((inst->getDst()->getLinearizedEnd() - inst->getDst in hasSameOperand()
695 auto dst = inst->getDst(); in isWriteCombineCandidate()
750 auto dst = inst->getDst(); in push()
794 auto dst = inst->getDst(); in pop()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/compiler/arraycopy/
H A DTestArrayCopyWithBadOffset.java50 public static byte[] getDst() { in getDst() method in TestArrayCopyWithBadOffset
56 byte[] dst = getDst(); in test2()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/compiler/arraycopy/
H A DTestArrayCopyWithBadOffset.java50 public static byte[] getDst() { in getDst() method in TestArrayCopyWithBadOffset
56 byte[] dst = getDst(); in test2()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/compiler/arraycopy/
H A DTestArrayCopyWithBadOffset.java50 public static byte[] getDst() { in getDst() method in TestArrayCopyWithBadOffset
56 byte[] dst = getDst(); in test2()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/compiler/arraycopy/
H A DTestArrayCopyWithBadOffset.java50 public static byte[] getDst() { in getDst() method in TestArrayCopyWithBadOffset
56 byte[] dst = getDst(); in test2()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/compiler/arraycopy/
H A DTestArrayCopyWithBadOffset.java50 public static byte[] getDst() { in getDst() method in TestArrayCopyWithBadOffset
56 byte[] dst = getDst(); in test2()

12345678910>>...15