Searched refs:Src (Results 51 - 75 of 293) sorted by relevance

1234567891011>>

/external/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) an
715 establishNestingLevels(const Instruction *Src, const Instruction *Dst) argument
791 const SCEV *Src = Pair->Src; local
807 checkSrcSubscript(const SCEV *Src, 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
3280 depends(Instruction *Src, Instruction *Dst, bool PossiblyLoopIndependent) argument
3737 Instruction *Src = Dep->getSrc(); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc_translate.c419 uint unit = inst->Src[1].Register.Index;
422 uint coord = src_vector( p, &inst->Src[0], fs);
449 arg1 = (numArgs < 1) ? 0 : src_vector( p, &inst->Src[0], fs );
450 arg2 = (numArgs < 2) ? 0 : src_vector( p, &inst->Src[1], fs );
451 arg3 = (numArgs < 3) ? 0 : src_vector( p, &inst->Src[2], fs );
476 inst2.Src[0] = inst->Src[1];
477 inst2.Src[1] = inst->Src[0];
503 src0 = src_vector(p, &inst->Src[
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_translate.c419 uint unit = inst->Src[1].Register.Index;
422 uint coord = src_vector( p, &inst->Src[0], fs);
449 arg1 = (numArgs < 1) ? 0 : src_vector( p, &inst->Src[0], fs );
450 arg2 = (numArgs < 2) ? 0 : src_vector( p, &inst->Src[1], fs );
451 arg3 = (numArgs < 3) ? 0 : src_vector( p, &inst->Src[2], fs );
476 inst2.Src[0] = inst->Src[1];
477 inst2.Src[1] = inst->Src[0];
503 src0 = src_vector(p, &inst->Src[
[all...]
/external/clang/lib/Analysis/
H A DCFGReachabilityAnalysis.cpp25 bool CFGReverseBlockReachabilityAnalysis::isReachable(const CFGBlock *Src, argument
37 return reachable[DstBlockID][Src->getBlockID()];
/external/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp25 SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src,
29 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
24 EmitTargetCodeForMemset( SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/Target/XCore/
H A DXCoreSelectionDAGInfo.cpp27 SDValue Dst, SDValue Src, SDValue Size, unsigned Align,
41 Entry.Node = Src; Args.push_back(Entry);
26 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
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h237 const ExplodedNodeSet &Src,
240 runCheckersForStmt(/*isPreVisit=*/true, Dst, Src, S, Eng);
250 const ExplodedNodeSet &Src,
254 runCheckersForStmt(/*isPreVisit=*/false, Dst, Src, S, Eng, wasInlined);
259 ExplodedNodeSet &Dst, const ExplodedNodeSet &Src,
265 const ExplodedNodeSet &Src,
268 runCheckersForObjCMessage(/*isPreVisit=*/true, Dst, Src, msg, Eng);
273 const ExplodedNodeSet &Src,
277 runCheckersForObjCMessage(/*isPreVisit=*/false, Dst, Src, msg, Eng,
284 const ExplodedNodeSet &Src,
236 runCheckersForPreStmt(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const Stmt *S, ExprEngine &Eng) argument
249 runCheckersForPostStmt(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const Stmt *S, ExprEngine &Eng, bool wasInlined = false) argument
264 runCheckersForPreObjCMessage(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const ObjCMethodCall &msg, ExprEngine &Eng) argument
272 runCheckersForPostObjCMessage(ExplodedNodeSet &Dst, const ExplodedNodeSet &Src, const ObjCMethodCall &msg, ExprEngine &Eng, bool wasInlined = false) argument
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/chromium_org/base/numerics/
H A Dsafe_math_impl.h355 template <typename Src, NumericRepresentation type>
360 template <typename Src>
361 CheckedNumericState(Src value, RangeConstraint validity)
365 COMPILE_ASSERT(std::numeric_limits<Src>::is_specialized,
370 template <typename Src>
371 CheckedNumericState(const CheckedNumericState<Src>& rhs)
376 template <typename Src>
378 Src value,
379 typename enable_if<std::numeric_limits<Src>::is_specialized, int>::type =
395 template <typename Src, NumericRepresentatio
[all...]
/external/chromium_org/v8/src/base/
H A Dsafe_math_impl.h386 template <typename Src, NumericRepresentation type>
391 template <typename Src>
392 CheckedNumericState(Src value, RangeConstraint validity)
397 STATIC_ASSERT(std::numeric_limits<Src>::is_specialized);
401 template <typename Src>
402 CheckedNumericState(const CheckedNumericState<Src>& rhs)
407 template <typename Src>
409 Src value,
410 typename enable_if<std::numeric_limits<Src>::is_specialized, int>::type =
426 template <typename Src, NumericRepresentatio
[all...]
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp35 SDValue Dst, SDValue Src,
52 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
85 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
129 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
166 Src,
177 SDValue Chain, SDValue Dst, SDValue Src,
240 Src, InFlag);
253 EVT SrcVT = Src.getValueType();
258 DAG.getNode(ISD::ADD, dl, SrcVT, Src,
33 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
/external/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp29 std::error_code copyToRoot(StringRef Src);
87 std::error_code ModuleDependencyListener::copyToRoot(StringRef Src) { argument
91 SmallString<256> AbsoluteSrc = Src;
/external/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp234 /// Move NumOps operands from Src to Dst, updating use-def lists as needed.
240 /// The Src and Dst ranges may overlap.
242 MachineOperand *Src,
244 assert(Src != Dst && NumOps && "Noop moveOperands");
246 // Copy backwards if Dst is within the Src range.
248 if (Dst >= Src && Dst < Src + NumOps) {
251 Src += NumOps - 1;
256 new (Dst) MachineOperand(*Src);
258 // Dst takes Src'
241 moveOperands(MachineOperand *Dst, MachineOperand *Src, unsigned NumOps) argument
[all...]
H A DBasicTargetTransformInfo.cpp109 Type *Src) const override;
115 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
359 Type *Src) const {
364 std::pair<unsigned, MVT> SrcLT = TLI->getTypeLegalizationCost(Src);
390 if (!Src->isVectorTy() && !Dst->isVectorTy()) {
405 if (Dst->isVectorTy() && Src->isVectorTy()) {
430 Src->getScalarType());
442 return (Src->isVectorTy()? getScalarizationOverhead(Src, false, true):0) +
498 unsigned BasicTTI::getMemoryOpCost(unsigned Opcode, Type *Src, argument
[all...]
/external/llvm/lib/Target/R600/
H A DR600InstrInfo.cpp390 Swizzle(std::vector<std::pair<int, unsigned> > Src,
392 if (Src[0] == Src[1])
393 Src[1].first = -1;
398 std::swap(Src[1], Src[2]);
401 std::swap(Src[0], Src[1]);
404 std::swap(Src[0], Src[
[all...]
/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h119 SDValue Src, SDValue Char, SDValue Length,
132 SDValue Dest, SDValue Src,
155 SDValue Src, MachinePointerInfo SrcPtrInfo) const {
161 SDValue Src, SDValue MaxLength,
118 EmitTargetCodeForMemchr(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Src, SDValue Char, SDValue Length, MachinePointerInfo SrcPtrInfo) const argument
131 EmitTargetCodeForStrcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dest, SDValue Src, MachinePointerInfo DestPtrInfo, MachinePointerInfo SrcPtrInfo, bool isStpcpy) const argument
154 EmitTargetCodeForStrlen(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Src, MachinePointerInfo SrcPtrInfo) const argument
160 EmitTargetCodeForStrnlen(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Src, SDValue MaxLength, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.h45 SDValue Dst, SDValue Src,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_pstipple.c363 newInst.Src[0].Register.File = TGSI_FILE_INPUT;
364 newInst.Src[0].Register.Index = wincoordInput;
365 newInst.Src[1].Register.File = TGSI_FILE_IMMEDIATE;
366 newInst.Src[1].Register.Index = pctx->numImmed;
378 newInst.Src[0].Register.File = TGSI_FILE_TEMPORARY;
379 newInst.Src[0].Register.Index = pctx->texTemp;
380 newInst.Src[1].Register.File = TGSI_FILE_SAMPLER;
381 newInst.Src[1].Register.Index = pctx->freeSampler;
389 newInst.Src[0].Register.File = TGSI_FILE_TEMPORARY;
390 newInst.Src[
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c363 newInst.Src[0].Register.File = TGSI_FILE_INPUT;
364 newInst.Src[0].Register.Index = wincoordInput;
365 newInst.Src[1].Register.File = TGSI_FILE_IMMEDIATE;
366 newInst.Src[1].Register.Index = pctx->numImmed;
378 newInst.Src[0].Register.File = TGSI_FILE_TEMPORARY;
379 newInst.Src[0].Register.Index = pctx->texTemp;
380 newInst.Src[1].Register.File = TGSI_FILE_SAMPLER;
381 newInst.Src[1].Register.Index = pctx->freeSampler;
389 newInst.Src[0].Register.File = TGSI_FILE_TEMPORARY;
390 newInst.Src[
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsopt.c551 cmsPipeline* Src = NULL; local
576 Src = *Lut;
579 for (mpe = cmsPipelineGetPtrToFirstStage(Src);
586 Dest = cmsPipelineAlloc(Src ->ContextID, Src ->InputChannels, Src ->OutputChannels);
593 cmsStage* PreLin = cmsPipelineGetPtrToFirstStage(Src);
608 cmsPipelineUnlinkStage(Src, cmsAT_BEGIN, &KeepPreLin);
614 CLUT = cmsStageAllocCLut16bit(Src ->ContextID, nGridPoints, Src
1272 cmsPipeline* Src = *Lut; local
1547 cmsPipeline* Dest, *Src; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow.h79 struct rc_src_register * Src; member in struct:rc_reader::__anon13876::__anon13877
83 struct rc_pair_instruction_source * Src; member in struct:rc_reader::__anon13876::__anon13878
H A Dradeon_dataflow.c76 inst->RGB.Src[src].Index);
90 inst->Alpha.Src[src].Index);
123 if (inst->RGB.Src[src].Used && (refmasks[src] & RC_MASK_XYZ))
124 cb(userdata, fullinst, inst->RGB.Src[src].File, inst->RGB.Src[src].Index,
127 if (inst->Alpha.Src[src].Used && (refmasks[src] & RC_MASK_W))
128 cb(userdata, fullinst, inst->Alpha.Src[src].File, inst->Alpha.Src[src].Index, RC_MASK_W);
157 U.P.RGB.Src[RC_PAIR_PRESUB_SRC].Index;
158 src_array = fullinst->U.P.RGB.Src;
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow.h79 struct rc_src_register * Src; member in struct:rc_reader::__anon27287::__anon27288
83 struct rc_pair_instruction_source * Src; member in struct:rc_reader::__anon27287::__anon27289
H A Dradeon_dataflow.c76 inst->RGB.Src[src].Index);
90 inst->Alpha.Src[src].Index);
123 if (inst->RGB.Src[src].Used && (refmasks[src] & RC_MASK_XYZ))
124 cb(userdata, fullinst, inst->RGB.Src[src].File, inst->RGB.Src[src].Index,
127 if (inst->Alpha.Src[src].Used && (refmasks[src] & RC_MASK_W))
128 cb(userdata, fullinst, inst->Alpha.Src[src].File, inst->Alpha.Src[src].Index, RC_MASK_W);
157 U.P.RGB.Src[RC_PAIR_PRESUB_SRC].Index;
158 src_array = fullinst->U.P.RGB.Src;
[all...]
/external/llvm/lib/Linker/
H A DLinkModules.cpp387 /// ValueMap - Mapping of values from what they used to be in Src, to what
433 Comdat::SelectionKind Src,
444 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
480 void linkFunctionBody(Function *Dst, Function *Src);
571 Comdat::SelectionKind Src,
579 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
580 Src == Comdat::SelectionKind::Largest;
583 Src == Comdat::SelectionKind::Largest)
587 } else if (Src == Dst) {
665 bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, argument
570 computeResultingSelectionKind(StringRef ComdatName, Comdat::SelectionKind Src, Comdat::SelectionKind Dst, Comdat::SelectionKind &Result, bool &LinkFromSrc) argument
1167 linkFunctionBody(Function *Dst, Function *Src) argument
1584 linkInModule(Module *Src, unsigned Mode, std::string *ErrorMsg) argument
1604 LinkModules(Module *Dest, Module *Src, unsigned Mode, std::string *ErrorMsg) argument
1614 LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, LLVMLinkerMode Mode, char **OutMessages) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp295 Value *Src = CI.getOperand(0); local
299 if (CastInst *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast
309 if (SelectInst *SI = dyn_cast<SelectInst>(Src))
314 if (isa<PHINode>(Src)) {
317 if (!Src->getType()->isIntegerTy() ||
319 ShouldChangeType(CI.getType(), Src->getType()))
448 Value *Src = CI.getOperand(0);
449 Type *DestTy = CI.getType(), *SrcTy = Src->getType();
456 CanEvaluateTruncated(Src, DestTy)) {
462 Value *Res = EvaluateInDifferentType(Src, DestT
1432 Value *Src = CI.getOperand(0); local
1786 Value *Src = CI.getOperand(0); local
1915 Value *Src = CI.getOperand(0); local
[all...]

Completed in 4777 milliseconds

1234567891011>>