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

1234

/freebsd-9.3-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-9.3-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-9.3-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);
213 ExplodedNode *Pred, ExplodedNodeSet &Dst);
225 ExplodedNodeSet &Dst,
234 ExplodedNodeSet &Dst,
117 ExecuteWorkListWithInitialState(const LocationContext *L, unsigned Steps, ProgramStateRef InitState, ExplodedNodeSet &Dst) argument
[all...]
/freebsd-9.3-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-9.3-release/contrib/llvm/include/llvm/Target/
H A DCostTable.h51 TypeTy Dst; member in struct:llvm::TypeConversionCostTblEntry
60 unsigned len, int ISD, CompareTy Dst,
63 if (ISD == Tbl[i].ISD && Src == Tbl[i].Src && Dst == Tbl[i].Dst)
74 int ISD, CompareTy Dst, CompareTy Src) { member in namespace:llvm
75 return ConvertCostTableLookup(Tbl, N, ISD, Dst, Src);
59 ConvertCostTableLookup(const TypeConversionCostTblEntry<TypeTy> *Tbl, unsigned len, int ISD, CompareTy Dst, CompareTy Src) argument
/freebsd-9.3-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);
61 // Update reachability information for this node -> Dst
63 // Don't insert Dst -> Dst unless it was a predecessor of itself
25 isReachable(const CFGBlock *Src, const CFGBlock *Dst) argument
/freebsd-9.3-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, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/freebsd-9.3-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.h75 Dst(Destination),
108 Instruction *getDst() const { return Dst; }
204 Instruction *Src, *Dst; member in class:llvm::Dependence
221 Instruction *Dst,
284 /// depends - Tests for a dependence between the Src and Dst instructions.
288 /// if it appears that control flow can reach from Src to Dst
291 Instruction *Dst,
347 const SCEV *Dst; member in struct:llvm::DependenceAnalysis::Subscript
459 /// establishNestingLevels - Examines the loop nesting of the Src and Dst
476 /// ... - loops containing Src but not Dst
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp426 ExplodedNodeSet Dst; local
432 Dst.insert(DstI);
436 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
512 ExplodedNodeSet Dst; local
513 NodeBuilder Bldr(Tmp, Dst, *currBldrCtx);
520 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
525 ExplodedNodeSet Dst; local
528 ProcessAutomaticObjDtor(D.castAs<CFGAutomaticObjDtor>(), Pred, Dst);
531 ProcessBaseDtor(D.castAs<CFGBaseDtor>(), Pred, Dst);
534 ProcessMemberDtor(D.castAs<CFGMemberDtor>(), Pred, Dst);
550 ProcessAutomaticObjDtor(const CFGAutomaticObjDtor Dtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
569 ProcessDeleteDtor(const CFGDeleteDtor Dtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
598 ProcessBaseDtor(const CFGBaseDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
618 ProcessMemberDtor(const CFGMemberDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
635 ProcessTemporaryDtor(const CFGTemporaryDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
652 ExplodedNodeSet Dst; local
729 VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S), Pred, Dst); local
864 VisitLvalArraySubscriptExpr(cast<ArraySubscriptExpr>(S), Pred, Dst); local
870 VisitGCCAsmStmt(cast<GCCAsmStmt>(S), Pred, Dst); local
876 VisitMSAsmStmt(cast<MSAsmStmt>(S), Pred, Dst); local
882 VisitBlockExpr(cast<BlockExpr>(S), Pred, Dst); local
912 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); local
945 VisitCallExpr(cast<CallExpr>(S), Pred, Dst); local
952 VisitCXXCatchStmt(cast<CXXCatchStmt>(S), Pred, Dst); local
960 VisitCXXConstructExpr(cast<CXXConstructExpr>(S), Pred, Dst); local
1000 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); local
1006 VisitCompoundLiteralExpr(cast<CompoundLiteralExpr>(S), Pred, Dst); local
1022 VisitCXXThisExpr(cast<CXXThisExpr>(S), Pred, Dst); local
1036 VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst); local
1077 VisitInitListExpr(cast<InitListExpr>(S), Pred, Dst); local
1083 VisitMemberExpr(cast<MemberExpr>(S), Pred, Dst); local
1089 VisitLvalObjCIvarRefExpr(cast<ObjCIvarRefExpr>(S), Pred, Dst); local
1095 VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S), Pred, Dst); local
1101 VisitObjCMessage(cast<ObjCMessageExpr>(S), Pred, Dst); local
1114 VisitReturnStmt(cast<ReturnStmt>(S), Pred, Dst); local
1120 VisitOffsetOfExpr(cast<OffsetOfExpr>(S), Pred, Dst); local
1127 Pred, Dst); local
1371 processBranch(const Stmt *Condition, const Stmt *Term, NodeBuilderContext& BldCtx, ExplodedNode *Pred, ExplodedNodeSet &Dst, const CFGBlock *DstT, const CFGBlock *DstF) argument
1472 processStaticInitializer(const DeclStmt *DS, NodeBuilderContext &BuilderCtx, ExplodedNode *Pred, clang::ento::ExplodedNodeSet &Dst, const CFGBlock *DstT, const CFGBlock *DstF) argument
1547 ExplodedNodeSet Dst; local
1672 VisitCommonDeclRefExpr(const Expr *Ex, const NamedDecl *D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1727 VisitLvalArraySubscriptExpr(const ArraySubscriptExpr *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1758 ExplodedNodeSet Dst; local
1936 evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred, SVal location, SVal Val, bool atDeclInit, const ProgramPoint *PP) argument
1997 evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *LocationE, ExplodedNode *Pred, ProgramStateRef state, SVal location, SVal Val, const ProgramPointTag *tag) argument
2020 evalLoad(ExplodedNodeSet &Dst, const Expr *NodeEx, const Expr *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, QualType LoadTy) argument
2059 evalLoadCommon(ExplodedNodeSet &Dst, const Expr *NodeEx, const Expr *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, QualType LoadTy) argument
2096 evalLocation(ExplodedNodeSet &Dst, const Stmt *NodeEx, const Stmt *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, bool isLoad) argument
2141 evalEagerlyAssumeBinOpBifurcation(ExplodedNodeSet &Dst, ExplodedNodeSet &Src, const Expr *Ex) argument
2183 VisitGCCAsmStmt(const GCCAsmStmt *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
2207 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);
58 ExplodedNodeSet Dst; local
71 evalBind(Dst, CallExpr, Pred, ThisVal, V, true);
74 for (ExplodedNodeSet::iterator I = Dst.begin(), E = Dst.end();
292 ExplodedNodeSet &Dst) {
328 getCheckerManager().runCheckersForPostCall(Dst, DstInvalidated,
333 ExplodedNodeSet &Dst) {
392 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCt
25 CreateCXXTemporaryObject(const MaterializeTemporaryExpr *ME, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
287 VisitCXXDestructor(QualType ObjectType, const MemRegion *Dest, const Stmt *S, bool IsBaseDtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
332 VisitCXXNewExpr(const CXXNewExpr *CNE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
437 VisitCXXDeleteExpr(const CXXDeleteExpr *CDE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
444 VisitCXXCatchStmt(const CXXCatchStmt *CS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
463 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) {
217 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this);
221 ExplodedNode *Pred, ExplodedNodeSet &Dst) {
232 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx));
244 StmtNodeBuilder Bldr(dstPreStmt, Dst, *currBldrCtx);
404 ExplodedNodeSet &Dst) {
405 StmtNodeBuilder B(Pred, Dst, *currBldrCtx);
436 ExplodedNodeSet &Dst) {
22 VisitBinaryOperator(const BinaryOperator* B, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
180 VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
220 VisitCast(const CastExpr *CastE, const Expr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
402 VisitCompoundLiteralExpr(const CompoundLiteralExpr *CL, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
435 VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
508 VisitLogicalExpr(const BinaryOperator* B, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
577 VisitInitListExpr(const InitListExpr *IE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
626 VisitGuardedExpr(const Expr *Ex, const Expr *L, const Expr *R, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
688 VisitOffsetOfExpr(const OffsetOfExpr *OOE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
707 VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
740 VisitUnaryOperator(const UnaryOperator* U, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
872 VisitIncrementDecrementOperator(const UnaryOperator* U, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
/freebsd-9.3-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,
58 Entry.Node = Dst;
137 Dst, InFlag);
160 EVT AddrVT = Dst.getValueType();
164 DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
177 SDValue Chain, SDValue Dst, SDValue Src,
235 Dst, InFlag);
252 EVT DstVT = Dst.getValueType();
256 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
30 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
176 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/freebsd-9.3-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp34 unsigned Loop, SDValue Chain, SDValue Dst,
49 return DAG.getNode(Loop, DL, MVT::Other, Chain, Dst, Src,
52 return DAG.getNode(Sequence, DL, MVT::Other, Chain, Dst, Src,
58 SDValue Dst, SDValue Src, SDValue Size, unsigned Align,
67 Chain, Dst, Src, CSize->getZExtValue());
72 // Chain, Dst, ByteVal and Size. These cases are expected to use
75 SDValue Dst, uint64_t ByteVal, uint64_t Size,
83 Dst, DstPtrInfo, false, false, Align);
88 SDValue Dst, SDValue Byte, SDValue Size,
91 EVT PtrVT = Dst
33 emitMemMem(SelectionDAG &DAG, SDLoc DL, unsigned Sequence, unsigned Loop, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size) argument
57 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool IsVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
74 memsetStore(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dst, uint64_t ByteVal, uint64_t Size, unsigned Align, MachinePointerInfo DstPtrInfo) argument
87 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dst, SDValue Byte, SDValue Size, unsigned Align, bool IsVolatile, MachinePointerInfo DstPtrInfo) const argument
[all...]
/freebsd-9.3-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-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h214 void runCheckersForPreStmt(ExplodedNodeSet &Dst, argument
218 runCheckersForStmt(/*isPreVisit=*/true, Dst, Src, S, Eng);
227 void runCheckersForPostStmt(ExplodedNodeSet &Dst, argument
232 runCheckersForStmt(/*isPreVisit=*/false, Dst, Src, S, Eng, wasInlined);
237 ExplodedNodeSet &Dst, const ExplodedNodeSet &Src,
242 void runCheckersForPreObjCMessage(ExplodedNodeSet &Dst, argument
246 runCheckersForObjCMessage(/*isPreVisit=*/true, Dst, Src, msg, Eng);
250 void runCheckersForPostObjCMessage(ExplodedNodeSet &Dst, argument
255 runCheckersForObjCMessage(/*isPreVisit=*/false, Dst, Src, msg, Eng,
261 ExplodedNodeSet &Dst,
267 runCheckersForPreCall(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const CallEvent &Call, ExprEngine &Eng) argument
273 runCheckersForPostCall(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const CallEvent &Call, ExprEngine &Eng, bool wasInlined = false) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp195 return Src->mayReadFromMemory() && Dst->mayReadFromMemory();
201 return Src->mayWriteToMemory() && Dst->mayWriteToMemory();
207 return Src->mayWriteToMemory() && Dst->mayReadFromMemory();
213 return Src->mayReadFromMemory() && Dst->mayWriteToMemory();
665 // Examines the loop nesting of the Src and Dst
682 // ... - loops containing Src but not Dst
683 // SrcLevels - innermost loop containing Src but not Dst
684 // ... - loops containing Dst but not Src
685 // MaxLevels - innermost loops containing Dst but not Src
704 // to A (the Src) and the load from A (the Dst), w
715 establishNestingLevels(const Instruction *Src, const Instruction *Dst) argument
792 const SCEV *Dst = Pair->Dst; local
825 checkDstSubscript(const SCEV *Dst, const Loop *LoopNest, SmallBitVector &Loops) argument
844 classifyPair(const SCEV *Src, const Loop *SrcLoopNest, const SCEV *Dst, const Loop *DstLoopNest, SmallBitVector &Loops) argument
960 testZIV(const SCEV *Src, const SCEV *Dst, FullDependence &Result) const argument
2039 testSIV(const SCEV *Src, const SCEV *Dst, unsigned &Level, FullDependence &Result, Constraint &NewConstraint, const SCEV *&SplitIter) const argument
2110 testRDIV(const SCEV *Src, const SCEV *Dst, FullDependence &Result) const argument
2177 testMIV(const SCEV *Src, const SCEV *Dst, const SmallBitVector &Loops, FullDependence &Result) const argument
2219 gcdMIVtest(const SCEV *Src, const SCEV *Dst, FullDependence &Result) const argument
2433 banerjeeMIVtest(const SCEV *Src, const SCEV *Dst, const SmallBitVector &Loops, FullDependence &Result) const argument
2982 propagate(const SCEV *&Src, const SCEV *&Dst, SmallBitVector &Loops, SmallVectorImpl<Constraint> &Constraints, bool &Consistent) argument
3007 propagateDistance(const SCEV *&Src, const SCEV *&Dst, Constraint &CurConstraint, bool &Consistent) argument
3034 propagateLine(const SCEV *&Src, const SCEV *&Dst, Constraint &CurConstraint, bool &Consistent) argument
3109 propagatePoint(const SCEV *&Src, const SCEV *&Dst, Constraint &CurConstraint) argument
3256 depends(Instruction *Src, Instruction *Dst, bool PossiblyLoopIndependent) argument
3714 Instruction *Dst = Dep->getDst(); local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DConvertUTFWrapper.cpp114 UTF8 *Dst = reinterpret_cast<UTF8 *>(&Out[0]); local
115 UTF8 *DstEnd = Dst + Out.size();
118 ConvertUTF16toUTF8(&Src, SrcEnd, &Dst, DstEnd, strictConversion);
126 Out.resize(reinterpret_cast<char *>(Dst) - &Out[0]);
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.h50 SDValue Dst, SDValue Src,
/freebsd-9.3-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;
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DSILowerControlFlow.cpp215 unsigned Dst = MI.getOperand(0).getReg(); local
219 TII->get(AMDGPU::S_OR_SAVEEXEC_B64), Dst)
224 .addReg(Dst);
235 unsigned Dst = MI.getOperand(0).getReg(); local
238 BuildMI(MBB, &MI, DL, TII->get(AMDGPU::S_OR_B64), Dst)
249 unsigned Dst = MI.getOperand(0).getReg(); local
253 BuildMI(MBB, &MI, DL, TII->get(AMDGPU::S_OR_B64), Dst)
264 unsigned Dst = MI.getOperand(0).getReg(); local
268 BuildMI(MBB, &MI, DL, TII->get(AMDGPU::S_OR_B64), Dst)
398 unsigned Dst local
419 unsigned Dst = MI.getOperand(0).getReg(); local
[all...]

Completed in 165 milliseconds

1234