Searched refs:Dst (Results 1 - 25 of 99) sorted by relevance

1234

/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineBranchProbabilityInfo.h50 const MachineBasicBlock *Dst) const;
55 MachineBasicBlock::const_succ_iterator Dst) const;
63 bool isEdgeHot(MachineBasicBlock *Src, MachineBasicBlock *Dst) const;
76 MachineBasicBlock *Dst) const;
82 MachineBasicBlock *Dst) const;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachineBranchProbabilityInfo.cpp65 MachineBasicBlock::const_succ_iterator Dst) const {
66 uint32_t Weight = Src->getSuccWeight(Dst);
74 const MachineBasicBlock *Dst) const {
77 return getEdgeWeight(Src, std::find(Src->succ_begin(), Src->succ_end(), Dst));
81 MachineBasicBlock *Dst) const {
84 return getEdgeProbability(Src, Dst) > BranchProbability(4, 5);
108 MachineBasicBlock *Dst) const {
111 uint32_t N = getEdgeWeight(Src, Dst) / Scale;
118 MachineBasicBlock *Dst) const {
120 const BranchProbability Prob = getEdgeProbability(Src, Dst);
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h114 /// of the function are added into the Dst set, which represent the exit
119 ExplodedNodeSet &Dst) {
120 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst);
205 ExplodedNode *Pred, ExplodedNodeSet &Dst);
207 ExplodedNode *Pred, ExplodedNodeSet &Dst);
209 ExplodedNode *Pred, ExplodedNodeSet &Dst);
211 ExplodedNode *Pred, ExplodedNodeSet &Dst);
223 ExplodedNodeSet &Dst,
232 ExplodedNodeSet &Dst,
252 ExplodedNodeSet &Dst);
117 ExecuteWorkListWithInitialState(const LocationContext *L, unsigned Steps, ProgramStateRef InitState, ExplodedNodeSet &Dst) argument
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Target/
H A DCostTable.h44 TypeTy Dst; member in struct:llvm::TypeConversionCostTblEntry
52 unsigned len, int ISD, TypeTy Dst, TypeTy Src) {
54 if (Tbl[i].ISD == ISD && Tbl[i].Src == Src && Tbl[i].Dst == Dst)
51 ConvertCostTableLookup(const TypeConversionCostTblEntry<TypeTy> *Tbl, unsigned len, int ISD, TypeTy Dst, TypeTy Src) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DCFGReachabilityAnalysis.h40 /// Returns true if the block 'Dst' can be reached from block 'Src'.
41 bool isReachable(const CFGBlock *Src, const CFGBlock *Dst);
44 void mapReachability(const CFGBlock *Dst);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFGReachabilityAnalysis.cpp26 const CFGBlock *Dst) {
28 const unsigned DstBlockID = Dst->getBlockID();
32 mapReachability(Dst);
42 void CFGReverseBlockReachabilityAnalysis::mapReachability(const CFGBlock *Dst) { argument
46 ReachableSet &DstReachability = reachable[Dst->getBlockID()];
51 worklist.push_back(Dst);
62 // Update reachability information for this node -> Dst
64 // Don't insert Dst -> Dst unless it was a predecessor of itself
25 isReachable(const CFGBlock *Src, const CFGBlock *Dst) argument
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp103 void ChangeOpInto(MachineOperand &Dst, MachineOperand &Src);
139 MachineOperand &Dst = MI->getOperand(0); local
141 unsigned DstReg = Dst.getReg();
158 MachineOperand &Dst = MI->getOperand(0); local
163 unsigned DstReg = Dst.getReg();
175 MachineOperand &Dst = MI->getOperand(0); local
180 unsigned DstReg = Dst.getReg();
190 MachineOperand &Dst = MI->getOperand(0); local
192 unsigned DstReg = Dst.getReg();
208 MachineOperand &Dst local
313 ChangeOpInto(MachineOperand &Dst, MachineOperand &Src) argument
[all...]
H A DHexagonSelectionDAGInfo.h31 SDValue Dst, SDValue Src,
H A DHexagonSelectionDAGInfo.cpp31 SDValue Dst, SDValue Src, SDValue Size, unsigned Align,
30 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DBranchProbabilityInfo.h36 /// identify an edge, since we can have multiple edges from Src to Dst.
37 /// As an example, we can have a switch which jumps to Dst with value 0 and
60 /// \brief Get the probability of going from Src to Dst.
62 /// It returns the sum of all probabilities for edges from Src to Dst.
64 const BasicBlock *Dst) const;
70 bool isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const;
84 const BasicBlock *Dst) const;
97 /// This returns the sum of all raw edge weights from Src to Dst.
99 uint32_t getEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst) const;
H A DDependenceAnalysis.h68 Src(Source), Dst(Destination) {}
99 Instruction *getDst() const { return Dst; }
171 Instruction *Src, *Dst; member in class:llvm::Dependence
187 Instruction *Dst,
250 /// depends - Tests for a dependence between the Src and Dst instructions.
254 /// if it appears that control flow can reach from Src to Dst
257 Instruction *Dst,
313 const SCEV *Dst; member in struct:llvm::DependenceAnalysis::Subscript
425 /// establishNestingLevels - Examines the loop nesting of the Src and Dst
442 /// ... - loops containing Src but not Dst
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.h39 SDValue Dst, SDValue Src,
47 SDValue Dst, SDValue Src,
H A DX86SelectionDAGInfo.cpp32 SDValue Dst, SDValue Src,
60 Entry.Node = Dst;
139 Dst, InFlag);
162 EVT AddrVT = Dst.getValueType();
166 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
179 SDValue Chain, SDValue Dst, SDValue Src,
237 Dst, InFlag);
254 EVT DstVT = Dst.getValueType();
258 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
30 EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
178 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp413 ExplodedNodeSet Dst; local
419 Dst.insert(DstI);
423 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
499 ExplodedNodeSet Dst; local
500 NodeBuilder Bldr(Tmp, Dst, *currBldrCtx);
507 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
512 ExplodedNodeSet Dst; local
515 ProcessAutomaticObjDtor(D.castAs<CFGAutomaticObjDtor>(), Pred, Dst);
518 ProcessBaseDtor(D.castAs<CFGBaseDtor>(), Pred, Dst);
521 ProcessMemberDtor(D.castAs<CFGMemberDtor>(), Pred, Dst);
534 ProcessAutomaticObjDtor(const CFGAutomaticObjDtor Dtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
553 ProcessBaseDtor(const CFGBaseDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
573 ProcessMemberDtor(const CFGMemberDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
590 ProcessTemporaryDtor(const CFGTemporaryDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
599 ExplodedNodeSet Dst; local
678 VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S), Pred, Dst); local
803 VisitLvalArraySubscriptExpr(cast<ArraySubscriptExpr>(S), Pred, Dst); local
809 VisitGCCAsmStmt(cast<GCCAsmStmt>(S), Pred, Dst); local
815 VisitMSAsmStmt(cast<MSAsmStmt>(S), Pred, Dst); local
821 VisitBlockExpr(cast<BlockExpr>(S), Pred, Dst); local
851 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); local
884 VisitCallExpr(cast<CallExpr>(S), Pred, Dst); local
891 VisitCXXCatchStmt(cast<CXXCatchStmt>(S), Pred, Dst); local
899 VisitCXXConstructExpr(cast<CXXConstructExpr>(S), Pred, Dst); local
939 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); local
945 VisitCompoundLiteralExpr(cast<CompoundLiteralExpr>(S), Pred, Dst); local
961 VisitCXXThisExpr(cast<CXXThisExpr>(S), Pred, Dst); local
975 VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst); local
1016 VisitInitListExpr(cast<InitListExpr>(S), Pred, Dst); local
1022 VisitMemberExpr(cast<MemberExpr>(S), Pred, Dst); local
1028 VisitLvalObjCIvarRefExpr(cast<ObjCIvarRefExpr>(S), Pred, Dst); local
1034 VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S), Pred, Dst); local
1040 VisitObjCMessage(cast<ObjCMessageExpr>(S), Pred, Dst); local
1053 VisitReturnStmt(cast<ReturnStmt>(S), Pred, Dst); local
1059 VisitOffsetOfExpr(cast<OffsetOfExpr>(S), Pred, Dst); local
1066 Pred, Dst); local
1309 processBranch(const Stmt *Condition, const Stmt *Term, NodeBuilderContext& BldCtx, ExplodedNode *Pred, ExplodedNodeSet &Dst, const CFGBlock *DstT, const CFGBlock *DstF) argument
1409 processStaticInitializer(const DeclStmt *DS, NodeBuilderContext &BuilderCtx, ExplodedNode *Pred, clang::ento::ExplodedNodeSet &Dst, const CFGBlock *DstT, const CFGBlock *DstF) argument
1482 ExplodedNodeSet Dst; local
1607 VisitCommonDeclRefExpr(const Expr *Ex, const NamedDecl *D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1660 VisitLvalArraySubscriptExpr(const ArraySubscriptExpr *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1691 ExplodedNodeSet Dst; local
1861 evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred, SVal location, SVal Val, bool atDeclInit, const ProgramPoint *PP) argument
1922 evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *LocationE, ExplodedNode *Pred, ProgramStateRef state, SVal location, SVal Val, const ProgramPointTag *tag) argument
1945 evalLoad(ExplodedNodeSet &Dst, const Expr *NodeEx, const Expr *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, QualType LoadTy) argument
1984 evalLoadCommon(ExplodedNodeSet &Dst, const Expr *NodeEx, const Expr *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, QualType LoadTy) argument
2021 evalLocation(ExplodedNodeSet &Dst, const Stmt *NodeEx, const Stmt *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, bool isLoad) argument
2066 evalEagerlyAssumeBinOpBifurcation(ExplodedNodeSet &Dst, ExplodedNodeSet &Src, const Expr *Ex) argument
2108 VisitGCCAsmStmt(const GCCAsmStmt *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
2132 VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DExprEngineObjC.cpp24 ExplodedNodeSet &Dst) {
35 // the created nodes in 'Dst'.
36 getCheckerManager().runCheckersForPostStmt(Dst, dstIvar, Ex, *this);
41 ExplodedNodeSet &Dst) {
42 getCheckerManager().runCheckersForPreStmt(Dst, Pred, S, *this);
47 ExplodedNodeSet &Dst) {
132 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, S, *this);
137 ExplodedNodeSet &Dst) {
212 // the created nodes in 'Dst'.
213 getCheckerManager().runCheckersForPostObjCMessage(Dst, dstPostvisi
22 VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
39 VisitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt *S, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
45 VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
135 VisitObjCMessage(const ObjCMessageExpr *ME, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DExprEngineCXX.cpp27 ExplodedNodeSet &Dst) {
28 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
72 ExplodedNodeSet Dst; local
85 evalBind(Dst, CallExpr, Pred, ThisVal, V, true);
88 for (ExplodedNodeSet::iterator I = Dst.begin(), E = Dst.end();
251 ExplodedNodeSet &Dst) {
285 getCheckerManager().runCheckersForPostCall(Dst, DstInvalidated,
290 ExplodedNodeSet &Dst) {
346 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCt
25 CreateCXXTemporaryObject(const MaterializeTemporaryExpr *ME, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
246 VisitCXXDestructor(QualType ObjectType, const MemRegion *Dest, const Stmt *S, bool IsBaseDtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
289 VisitCXXNewExpr(const CXXNewExpr *CNE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
393 VisitCXXDeleteExpr(const CXXDeleteExpr *CDE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
400 VisitCXXCatchStmt(const CXXCatchStmt *CS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
419 VisitCXXThisExpr(const CXXThisExpr *TE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DExprEngineC.cpp24 ExplodedNodeSet &Dst) {
177 getCheckerManager().runCheckersForPostStmt(Dst, Tmp2, B, *this);
181 ExplodedNodeSet &Dst) {
216 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this);
220 ExplodedNode *Pred, ExplodedNodeSet &Dst) {
231 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx));
243 StmtNodeBuilder Bldr(dstPreStmt, Dst, *currBldrCtx);
403 ExplodedNodeSet &Dst) {
404 StmtNodeBuilder B(Pred, Dst, *currBldrCtx);
435 ExplodedNodeSet &Dst) {
22 VisitBinaryOperator(const BinaryOperator* B, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
180 VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
219 VisitCast(const CastExpr *CastE, const Expr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
401 VisitCompoundLiteralExpr(const CompoundLiteralExpr *CL, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
434 VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
504 VisitLogicalExpr(const BinaryOperator* B, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
573 VisitInitListExpr(const InitListExpr *IE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
621 VisitGuardedExpr(const Expr *Ex, const Expr *L, const Expr *R, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
683 VisitOffsetOfExpr(const OffsetOfExpr *OOE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
702 VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
735 VisitUnaryOperator(const UnaryOperator* U, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
857 VisitIncrementDecrementOperator(const UnaryOperator* U, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp176 const MachineLocation &Dst = Move.getDestination(); local
180 if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
189 assert(Dst.isReg() && "Machine move not supported yet.");
190 OutStreamer.EmitCFIDefCfaRegister(RI->getDwarfRegNum(Dst.getReg(), true));
192 assert(!Dst.isReg() && "Machine move not supported yet.");
194 Dst.getOffset());
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DIRBuilder.cpp82 CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, argument
84 Dst = getCastedInt8PtrValue(Dst);
87 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
88 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
106 CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align, argument
108 Dst = getCastedInt8PtrValue(Dst);
111 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
112 Type *Tys[] = { Dst
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h215 void runCheckersForPreStmt(ExplodedNodeSet &Dst, argument
219 runCheckersForStmt(/*isPreVisit=*/true, Dst, Src, S, Eng);
228 void runCheckersForPostStmt(ExplodedNodeSet &Dst, argument
233 runCheckersForStmt(/*isPreVisit=*/false, Dst, Src, S, Eng, wasInlined);
238 ExplodedNodeSet &Dst, const ExplodedNodeSet &Src,
243 void runCheckersForPreObjCMessage(ExplodedNodeSet &Dst, argument
247 runCheckersForObjCMessage(/*isPreVisit=*/true, Dst, Src, msg, Eng);
251 void runCheckersForPostObjCMessage(ExplodedNodeSet &Dst, argument
256 runCheckersForObjCMessage(/*isPreVisit=*/false, Dst, Src, msg, Eng,
262 ExplodedNodeSet &Dst,
268 runCheckersForPreCall(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const CallEvent &Call, ExprEngine &Eng) argument
274 runCheckersForPostCall(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const CallEvent &Call, ExprEngine &Eng, bool wasInlined = false) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp61 MachineLocation Dst(MachineLocation::VirtualFP);
63 MAI->addInitialFrameState(0, Dst, Src);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Analysis/Support/
H A DBlkExprDeclBitVector.h162 struct Union { void operator()(ValTy& Dst, ValTy& Src) { Dst |= Src; } }; argument
163 struct Intersect { void operator()(ValTy& Dst, ValTy& Src) { Dst &= Src; } }; argument
301 struct Union { void operator()(ValTy& Dst, ValTy& Src) { Dst |= Src; } }; argument
302 struct Intersect { void operator()(ValTy& Dst, ValTy& Src) { Dst &= Src; } }; argument
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp190 return Src->mayReadFromMemory() && Dst->mayReadFromMemory();
196 return Src->mayWriteToMemory() && Dst->mayWriteToMemory();
202 return Src->mayWriteToMemory() && Dst->mayReadFromMemory();
208 return Src->mayReadFromMemory() && Dst->mayWriteToMemory();
660 // Examines the loop nesting of the Src and Dst
677 // ... - loops containing Src but not Dst
678 // SrcLevels - innermost loop containing Src but not Dst
679 // ... - loops containing Dst but not Src
680 // MaxLevels - innermost loops containing Dst but not Src
699 // to A (the Src) and the load from A (the Dst), w
710 establishNestingLevels(const Instruction *Src, const Instruction *Dst) argument
787 const SCEV *Dst = Pair->Dst; local
820 checkDstSubscript(const SCEV *Dst, const Loop *LoopNest, SmallBitVector &Loops) argument
839 classifyPair(const SCEV *Src, const Loop *SrcLoopNest, const SCEV *Dst, const Loop *DstLoopNest, SmallBitVector &Loops) argument
955 testZIV(const SCEV *Src, const SCEV *Dst, FullDependence &Result) const argument
2034 testSIV(const SCEV *Src, const SCEV *Dst, unsigned &Level, FullDependence &Result, Constraint &NewConstraint, const SCEV *&SplitIter) const argument
2105 testRDIV(const SCEV *Src, const SCEV *Dst, FullDependence &Result) const argument
2172 testMIV(const SCEV *Src, const SCEV *Dst, const SmallBitVector &Loops, FullDependence &Result) const argument
2214 gcdMIVtest(const SCEV *Src, const SCEV *Dst, FullDependence &Result) const argument
2428 banerjeeMIVtest(const SCEV *Src, const SCEV *Dst, const SmallBitVector &Loops, FullDependence &Result) const argument
2972 propagate(const SCEV *&Src, const SCEV *&Dst, SmallBitVector &Loops, SmallVector<Constraint, 4> &Constraints, bool &Consistent) argument
2997 propagateDistance(const SCEV *&Src, const SCEV *&Dst, Constraint &CurConstraint, bool &Consistent) argument
3024 propagateLine(const SCEV *&Src, const SCEV *&Dst, Constraint &CurConstraint, bool &Consistent) argument
3099 propagatePoint(const SCEV *&Src, const SCEV *&Dst, Constraint &CurConstraint) argument
3197 depends(Instruction *Src, Instruction *Dst, bool PossiblyLoopIndependent) argument
3649 Instruction *Dst = Dep->getDst(); local
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.h50 SDValue Dst, SDValue Src,
/freebsd-10.0-release/contrib/llvm/lib/Target/R600/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp76 uint16_t *Dst = (uint16_t*)(Data + Fixup.getOffset()); local
78 *Dst = (Value - 4) / 4;

Completed in 635 milliseconds

1234