Searched defs:Dst (Results 1 - 25 of 86) sorted by path

1234

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h99 struct tgsi_full_dst_register Dst[TGSI_FULL_MAX_DST_REGISTERS]; member in struct:tgsi_full_instruction
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc.h303 struct i915_full_dst_register Dst[1]; member in struct:i915_full_instruction
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_variable.h46 struct rc_dst_register Dst; member in struct:rc_variable
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
H A Drc_test_helpers.c287 DBG("Dst Reg File=%u Index=%d Writemask=%d\n",
299 struct match_info Dst; member in struct:inst_tokens
353 tokens.Dst.String = inst_str + matches[3].rm_so;
354 tokens.Dst.Length = match_length(matches, 3);
357 dst_str = malloc(sizeof(char) * (tokens.Dst.Length + 1));
358 strncpy(dst_str, tokens.Dst.String, tokens.Dst.Length);
359 dst_str[tokens.Dst.Length] = '\0';
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h236 void runCheckersForPreStmt(ExplodedNodeSet &Dst, argument
240 runCheckersForStmt(/*isPreVisit=*/true, Dst, Src, S, Eng);
249 void runCheckersForPostStmt(ExplodedNodeSet &Dst, argument
254 runCheckersForStmt(/*isPreVisit=*/false, Dst, Src, S, Eng, wasInlined);
259 ExplodedNodeSet &Dst, const ExplodedNodeSet &Src,
264 void runCheckersForPreObjCMessage(ExplodedNodeSet &Dst, argument
268 runCheckersForObjCMessage(/*isPreVisit=*/true, Dst, Src, msg, Eng);
272 void runCheckersForPostObjCMessage(ExplodedNodeSet &Dst, argument
277 runCheckersForObjCMessage(/*isPreVisit=*/false, Dst, Src, msg, Eng,
283 ExplodedNodeSet &Dst,
289 runCheckersForPreCall(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const CallEvent &Call, ExprEngine &Eng) argument
295 runCheckersForPostCall(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const CallEvent &Call, ExprEngine &Eng, bool wasInlined = false) argument
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h113 /// of the function are added into the Dst set, which represent the exit
118 ExplodedNodeSet &Dst) {
119 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst);
206 ExplodedNode *Pred, ExplodedNodeSet &Dst);
208 ExplodedNode *Pred, ExplodedNodeSet &Dst);
210 ExplodedNode *Pred, ExplodedNodeSet &Dst);
212 ExplodedNode *Pred, ExplodedNodeSet &Dst);
214 ExplodedNode *Pred, ExplodedNodeSet &Dst);
226 ExplodedNodeSet &Dst,
235 ExplodedNodeSet &Dst,
116 ExecuteWorkListWithInitialState(const LocationContext *L, unsigned Steps, ProgramStateRef InitState, ExplodedNodeSet &Dst) argument
[all...]
/external/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
/external/clang/lib/CodeGen/
H A DCGCall.cpp1437 llvm::Value *Dst = Builder.CreateBitCast(AlignedTemp, I8PtrTy); local
1439 Builder.CreateMemCpy(Dst,
2584 LValue Dst) {
2586 CGF.EmitStoreOfScalar(Src.getScalarVal(), Dst, /*init=*/true);
2588 CGF.EmitStoreOfComplex(Src.getComplexVal(), Dst, /*init=*/true);
2583 EmitInitStoreOfNonAggregate(CodeGenFunction &CGF, RValue Src, LValue Dst) argument
H A DCGExpr.cpp1381 void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst, argument
1383 if (!Dst.isSimple()) {
1384 if (Dst.isVectorElt()) {
1386 llvm::LoadInst *Load = Builder.CreateLoad(Dst.getVectorAddr(),
1387 Dst.isVolatileQualified());
1388 Load->setAlignment(Dst.getAlignment().getQuantity());
1391 Dst.getVectorIdx(), "vecins");
1392 llvm::StoreInst *Store = Builder.CreateStore(Vec, Dst.getVectorAddr(),
1393 Dst.isVolatileQualified());
1394 Store->setAlignment(Dst
1472 EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst, llvm::Value **Result) argument
1543 EmitStoreThroughExtVectorComponentLValue(RValue Src, LValue Dst) argument
1618 EmitStoreThroughGlobalRegLValue(RValue Src, LValue Dst) argument
[all...]
H A DItaniumCXXABI.cpp892 const CXXRecordDecl *Dst) {
896 // If Dst is not derived from Src we can skip the whole computation below and
897 // return that Src is not a public base of Dst. Record all inheritance paths.
898 if (!Dst->isDerivedFrom(Src, Paths))
927 // -2: Src is not a public base of Dst.
935 // Otherwise, the Src type is a unique public nonvirtual base type of Dst.
936 // Return the offset of Src from the origin of Dst.
890 computeOffsetHint(ASTContext &Context, const CXXRecordDecl *Src, const CXXRecordDecl *Dst) argument
H A DMicrosoftCXXABI.cpp2338 llvm::Value *Dst; local
2340 Dst = FirstField;
2342 Dst = llvm::UndefValue::get(DstNull->getType());
2344 Dst = Builder.CreateInsertValue(Dst, FirstField, Idx++);
2346 Dst = Builder.CreateInsertValue(
2347 Dst, getValueOrZeroInt(NonVirtualBaseAdjustment), Idx++);
2349 Dst = Builder.CreateInsertValue(
2350 Dst, getValueOrZeroInt(VBPtrOffset), Idx++);
2352 Dst
[all...]
H A DTargetInfo.cpp4598 llvm::Value *Dst = Builder.CreateBitCast(AlignedTemp, I8PtrTy); local
4600 Builder.CreateMemCpy(Dst, Src,
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp1333 const Expr *Dst = CE->getArg(0); local
1334 SVal DstVal = state->getSVal(Dst, LCtx);
1336 state = checkNonNull(C, state, Dst, DstVal);
1410 SVal dstStrLength = getCStringLength(C, state, Dst, DstVal);
1509 SVal dstStrLength = getCStringLength(C, state, Dst, DstVal);
1578 QualType ptrTy = Dst->getType();
1602 state = CheckLocation(C, state, Dst, lastElement, warningMsg);
1619 state = InvalidateBuffer(C, state, Dst, *dstRegVal,
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp621 const CFGBlock *Dst = BE->getDst(); local
658 if (const Stmt *S = Dst->getLabel()) {
730 if (*(Src->succ_begin()+1) == Dst)
758 if (*(Src->succ_begin()+1) == Dst) {
778 if (*(Src->succ_begin()+1) == Dst) {
799 if (*(Src->succ_begin()) == Dst) {
827 if (*(Src->succ_begin()+1) == Dst) {
857 if (*(Src->succ_begin()+1) == Dst)
2004 const Stmt *Dst = getLocStmt(Piece->getEndLocation()); local
2009 getEnclosingStmtLocation(Dst, S
[all...]
H A DCheckerManager.cpp95 ExplodedNodeSet &Dst,
104 Dst.insert(Src);
114 CurrSet = &Dst;
167 ExplodedNodeSet &Dst,
174 expandGraphWithCheckers(C, Dst, Src);
206 ExplodedNodeSet &Dst,
215 expandGraphWithCheckers(C, Dst, Src);
249 ExplodedNodeSet &Dst,
258 expandGraphWithCheckers(C, Dst, Src);
297 void CheckerManager::runCheckersForLocation(ExplodedNodeSet &Dst, argument
94 expandGraphWithCheckers(CHECK_CTX checkCtx, ExplodedNodeSet &Dst, const ExplodedNodeSet &Src) argument
166 runCheckersForStmt(bool isPreVisit, ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const Stmt *S, ExprEngine &Eng, bool WasInlined) argument
205 runCheckersForObjCMessage(bool isPreVisit, ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const ObjCMethodCall &msg, ExprEngine &Eng, bool WasInlined) argument
248 runCheckersForCallEvent(bool isPreVisit, ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const CallEvent &Call, ExprEngine &Eng, bool WasInlined) argument
337 runCheckersForBind(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, SVal location, SVal val, const Stmt *S, ExprEngine &Eng, const ProgramPoint &PP) argument
356 runCheckersForEndFunction(NodeBuilderContext &BC, ExplodedNodeSet &Dst, ExplodedNode *Pred, ExprEngine &Eng) argument
401 runCheckersForBranchCondition(const Stmt *Condition, ExplodedNodeSet &Dst, ExplodedNode *Pred, ExprEngine &Eng) argument
450 runCheckersForDeadSymbols(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, SymbolReaper &SymReaper, const Stmt *S, ExprEngine &Eng, ProgramPoint::Kind K) argument
524 runCheckersForEvalCall(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const CallEvent &Call, ExprEngine &Eng) argument
[all...]
H A DCoreEngine.cpp274 ExplodedNodeSet &Dst) {
278 Dst.Add(*I);
457 ExplodedNodeSet Dst; local
458 SubEng.processBranch(Cond, Term, Ctx, Pred, Dst,
461 enqueue(Dst);
469 ExplodedNodeSet Dst; local
470 SubEng.processStaticInitializer(DS, Ctx, Pred, Dst,
473 enqueue(Dst);
271 ExecuteWorkListWithInitialState(const LocationContext *L, unsigned Steps, ProgramStateRef InitState, ExplodedNodeSet &Dst) argument
H A DExprEngine.cpp432 ExplodedNodeSet Dst; local
438 Dst.insert(DstI);
442 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
518 ExplodedNodeSet Dst; local
519 NodeBuilder Bldr(Tmp, Dst, *currBldrCtx);
526 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx);
531 ExplodedNodeSet Dst; local
534 ProcessAutomaticObjDtor(D.castAs<CFGAutomaticObjDtor>(), Pred, Dst);
537 ProcessBaseDtor(D.castAs<CFGBaseDtor>(), Pred, Dst);
540 ProcessMemberDtor(D.castAs<CFGMemberDtor>(), Pred, Dst);
558 ExplodedNodeSet Dst; local
575 ProcessAutomaticObjDtor(const CFGAutomaticObjDtor Dtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
594 ProcessDeleteDtor(const CFGDeleteDtor Dtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
623 ProcessBaseDtor(const CFGBaseDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
642 ProcessMemberDtor(const CFGMemberDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
659 ProcessTemporaryDtor(const CFGTemporaryDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
676 ExplodedNodeSet Dst; local
759 VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S), Pred, Dst); local
895 VisitLvalArraySubscriptExpr(cast<ArraySubscriptExpr>(S), Pred, Dst); local
901 VisitGCCAsmStmt(cast<GCCAsmStmt>(S), Pred, Dst); local
907 VisitMSAsmStmt(cast<MSAsmStmt>(S), Pred, Dst); local
913 VisitBlockExpr(cast<BlockExpr>(S), Pred, Dst); local
943 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); local
976 VisitCallExpr(cast<CallExpr>(S), Pred, Dst); local
983 VisitCXXCatchStmt(cast<CXXCatchStmt>(S), Pred, Dst); local
991 VisitCXXConstructExpr(cast<CXXConstructExpr>(S), Pred, Dst); local
1031 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); local
1037 VisitCompoundLiteralExpr(cast<CompoundLiteralExpr>(S), Pred, Dst); local
1053 VisitCXXThisExpr(cast<CXXThisExpr>(S), Pred, Dst); local
1067 VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst); local
1108 VisitInitListExpr(cast<InitListExpr>(S), Pred, Dst); local
1114 VisitMemberExpr(cast<MemberExpr>(S), Pred, Dst); local
1120 VisitLvalObjCIvarRefExpr(cast<ObjCIvarRefExpr>(S), Pred, Dst); local
1126 VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S), Pred, Dst); local
1132 VisitObjCMessage(cast<ObjCMessageExpr>(S), Pred, Dst); local
1145 VisitReturnStmt(cast<ReturnStmt>(S), Pred, Dst); local
1151 VisitOffsetOfExpr(cast<OffsetOfExpr>(S), Pred, Dst); local
1158 Pred, Dst); local
1426 processBranch(const Stmt *Condition, const Stmt *Term, NodeBuilderContext& BldCtx, ExplodedNode *Pred, ExplodedNodeSet &Dst, const CFGBlock *DstT, const CFGBlock *DstF) argument
1527 processStaticInitializer(const DeclStmt *DS, NodeBuilderContext &BuilderCtx, ExplodedNode *Pred, clang::ento::ExplodedNodeSet &Dst, const CFGBlock *DstT, const CFGBlock *DstF) argument
1602 ExplodedNodeSet Dst; local
1727 VisitCommonDeclRefExpr(const Expr *Ex, const NamedDecl *D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1782 VisitLvalArraySubscriptExpr(const ArraySubscriptExpr *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1809 VisitMemberExpr(const MemberExpr *M, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1822 ExplodedNodeSet Dst; local
2000 evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred, SVal location, SVal Val, bool atDeclInit, const ProgramPoint *PP) argument
2062 evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *LocationE, ExplodedNode *Pred, ProgramStateRef state, SVal location, SVal Val, const ProgramPointTag *tag) argument
2085 evalLoad(ExplodedNodeSet &Dst, const Expr *NodeEx, const Expr *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, QualType LoadTy) argument
2124 evalLoadCommon(ExplodedNodeSet &Dst, const Expr *NodeEx, const Expr *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, QualType LoadTy) argument
2161 evalLocation(ExplodedNodeSet &Dst, const Stmt *NodeEx, const Stmt *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, bool isLoad) argument
2208 evalEagerlyAssumeBinOpBifurcation(ExplodedNodeSet &Dst, ExplodedNodeSet &Src, const Expr *Ex) argument
2250 VisitGCCAsmStmt(const GCCAsmStmt *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
2273 VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DExprEngineC.cpp24 ExplodedNodeSet &Dst) {
184 getCheckerManager().runCheckersForPostStmt(Dst, Tmp2, B, *this);
188 ExplodedNodeSet &Dst) {
224 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this);
228 ExplodedNode *Pred, ExplodedNodeSet &Dst) {
239 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx));
251 StmtNodeBuilder Bldr(dstPreStmt, Dst, *currBldrCtx);
412 ExplodedNodeSet &Dst) {
413 StmtNodeBuilder B(Pred, Dst, *currBldrCtx);
444 ExplodedNodeSet &Dst) {
22 VisitBinaryOperator(const BinaryOperator* B, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
187 VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
227 VisitCast(const CastExpr *CastE, const Expr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
410 VisitCompoundLiteralExpr(const CompoundLiteralExpr *CL, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
443 VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
516 VisitLogicalExpr(const BinaryOperator* B, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
585 VisitInitListExpr(const InitListExpr *IE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
634 VisitGuardedExpr(const Expr *Ex, const Expr *L, const Expr *R, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
697 VisitOffsetOfExpr(const OffsetOfExpr *OOE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
716 VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
758 VisitUnaryOperator(const UnaryOperator* U, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
890 VisitIncrementDecrementOperator(const UnaryOperator* U, 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();
304 ExplodedNodeSet &Dst) {
340 getCheckerManager().runCheckersForPostCall(Dst, DstInvalidated,
346 ExplodedNodeSet &Dst) {
365 getCheckerManager().runCheckersForPostCall(Dst, DstInvalidate
25 CreateCXXTemporaryObject(const MaterializeTemporaryExpr *ME, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
299 VisitCXXDestructor(QualType ObjectType, const MemRegion *Dest, const Stmt *S, bool IsBaseDtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
344 VisitCXXNewAllocatorCall(const CXXNewExpr *CNE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
370 VisitCXXNewExpr(const CXXNewExpr *CNE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
475 VisitCXXDeleteExpr(const CXXDeleteExpr *CDE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
482 VisitCXXCatchStmt(const CXXCatchStmt *CS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
501 VisitCXXThisExpr(const CXXThisExpr *TE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DExprEngineCallAndReturn.cpp161 ExplodedNodeSet &Dst) {
167 Dst.Add(Pred);
178 removeDead(Pred, Dst, dyn_cast<ReturnStmt>(LastSt), LCtx,
322 // CEENode -> Dst -> WorkList
335 ExplodedNodeSet Dst; local
337 getCheckerManager().runCheckersForPostObjCMessage(Dst, DstPostCall, *Msg,
341 getCheckerManager().runCheckersForPostStmt(Dst, DstPostCall, CE,
344 Dst.insert(DstPostCall);
348 for (ExplodedNodeSet::iterator PSI = Dst.begin(), PSE = Dst
159 removeDeadOnEndOfFunction(NodeBuilderContext& BC, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
510 evalCall(ExplodedNodeSet &Dst, ExplodedNode *Pred, const CallEvent &Call) argument
991 VisitReturnStmt(const ReturnStmt *RS, 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...]
/external/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp719 void AddEdge(ExplodedNode *Src, ExplodedNode *Dst) override;
736 void UbigraphViz::AddEdge(ExplodedNode *Src, ExplodedNode *Dst) { argument
738 assert (Src != Dst && "Self-edges are not allowed.");
751 // Lookup the Dst.
752 VMap::iterator DstI= M.find(Dst);
756 M[Dst] = DstID = Cntr++;
/external/eigen/test/
H A Dvectorization_logic.cpp31 template<typename Dst, typename Src>
32 bool test_assign(const Dst&, const Src&, int traversal, int unrolling) argument
34 internal::assign_traits<Dst,Src>::debug();
35 bool res = internal::assign_traits<Dst,Src>::Traversal==traversal
36 && internal::assign_traits<Dst,Src>::Unrolling==unrolling;
40 << " got " << demangle_traversal(internal::assign_traits<Dst,Src>::Traversal) << "\n";
42 << " got " << demangle_unrolling(internal::assign_traits<Dst,Src>::Unrolling) << "\n";
47 template<typename Dst, typename Src>
50 internal::assign_traits<Dst,Src>::debug();
51 bool res = internal::assign_traits<Dst,Sr
[all...]
/external/llvm/bindings/ocaml/linker/
H A Dlinker_ocaml.c47 CAMLprim value llvm_link_modules(LLVMModuleRef Dst, LLVMModuleRef Src, value Mode) { argument
50 if (LLVMLinkModules(Dst, Src, Int_val(Mode), &Message))
/external/llvm/include/llvm/Analysis/
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...]

Completed in 2170 milliseconds

1234