Searched defs:Dest (Results 1 - 25 of 52) sorted by relevance

123

/external/llvm/lib/VMCore/
H A DSymbolTableListTraitsImpl.h30 ::setSymTabObject(TPtr *Dest, TPtr Src) { argument
35 *Dest = Src;
/external/llvm/unittests/ADT/
H A DVariadicFunctionTest.cpp59 int StringAppendImpl(std::string *Dest, ArrayRef<const std::string *> Args) { argument
63 *Dest += *Args[i];
/external/llvm/include/llvm/Analysis/
H A DProfileDataLoader.h67 static Edge getEdge(const BType *Src, const BType *Dest) { argument
68 return Edge(Src, Dest);
H A DProfileInfo.h97 static Edge getEdge(const BType *Src, const BType *Dest) { argument
98 return std::make_pair(Src, Dest);
152 const BType *GetPath(const BType *Src, const BType *Dest,
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp50 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
53 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, argument
64 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, argument
75 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, argument
86 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, argument
97 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, argument
101 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal);
104 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
114 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \
123 Dest
129 GenericValue Dest; local
142 GenericValue Dest; local
155 GenericValue Dest; local
[all...]
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp113 MachineBasicBlock *Dest = I->getOperand(0).getMBB(); local
116 if (Dest->getNumber() <= MBB.getNumber()) {
122 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
129 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
161 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest);
H A DMSP430ISelLowering.cpp751 SDValue Dest = Op.getOperand(4); local
758 Chain, Dest, TargetCC, Flag);
/external/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp113 MachineBasicBlock *Dest = I->getOperand(2).getMBB(); local
116 if (Dest->getNumber() <= MBB.getNumber()) {
122 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
129 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
167 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
/external/llvm/lib/Analysis/
H A DSparsePropagation.cpp98 void SparseSolver::markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) { argument
99 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
103 << " -> " << Dest->getName() << "\n");
105 if (BBExecutable.count(Dest)) {
109 for (BasicBlock::iterator I = Dest->begin(); isa<PHINode>(I); ++I)
113 MarkBlockExecutable(Dest);
H A DProfileEstimatorPass.cpp239 const BasicBlock *Dest = GetPath(BB, (*ei).first, p, GetPathToDest); local
240 while (Dest != BB) {
241 const BasicBlock *Parent = p.find(Dest)->second;
242 Edge e = getEdge(Parent, Dest);
248 Dest = Parent;
378 const BasicBlock *Dest = GetPath(BB, *bbi, P, GetPathToDest); local
379 if (Dest != *bbi) {
H A DBasicAliasAnalysis.cpp367 /// GetIndexDifference - Dest and Src are the variable indices from two
371 static void GetIndexDifference(SmallVectorImpl<VariableGEPIndex> &Dest, argument
380 // Find V in Dest. This is N^2, but pointer indices almost never have more
382 for (unsigned j = 0, e = Dest.size(); j != e; ++j) {
383 if (Dest[j].V != V || Dest[j].Extension != Extension) continue;
385 // If we found it, subtract off Scale V's from the entry in Dest. If it
387 if (Dest[j].Scale != Scale)
388 Dest[j].Scale -= Scale;
390 Dest
713 Value *Dest = II->getArgOperand(0); local
732 Value *Dest = II->getArgOperand(0); local
799 const Value *Dest = CS.getArgument(0); local
[all...]
H A DProfileInfo.cpp238 GetPath(const BasicBlock *Src, const BasicBlock *Dest, argument
264 if ((Mode & GetPathToDest) && *Succ == Dest) {
747 const BasicBlock *Dest = 0; local
755 if (Dest && Dest != P[0]) {
758 Dest = P[0];
776 const BasicBlock *Dest = GetPath(BB, 0, P, GetPathToValue); local
816 double ow = getExecutionCount(Dest);
831 double ew = getEdgeWeight(getEdge(P[Dest],Dest));
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp164 const MemRegion *Dest,
177 Dest = State->getLValue(ObjectType, getSValBuilder().makeZeroArrayIndex(),
178 loc::MemRegionVal(Dest)).getAsRegion();
187 CEMgr.getCXXDestructorCall(DtorDecl, S, Dest, IsBaseDtor, State, LCtx);
163 VisitCXXDestructor(QualType ObjectType, const MemRegion *Dest, const Stmt *S, bool IsBaseDtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
/external/llvm/lib/Transforms/Utils/
H A DBreakCriticalEdges.cpp96 const BasicBlock *Dest = TI->getSuccessor(SuccNum); local
97 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest);
H A DCloneFunction.cpp312 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue()); local
313 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
314 ToClone.push_back(Dest);
327 BasicBlock *Dest = const_cast<BasicBlock*>(Case.getCaseSuccessor()); local
328 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
329 ToClone.push_back(Dest);
538 BasicBlock *Dest = BI->getSuccessor(0); local
539 if (!Dest->getSinglePredecessor()) {
545 assert(!isa<PHINode>(Dest->begin()));
551 // Make all PHI nodes that referred to Dest no
[all...]
H A DLoopUnroll.cpp358 BasicBlock *Dest = Headers[j]; local
368 Dest = LoopExit;
381 Term->setSuccessor(!ContinueOnTrue, Dest);
384 if (Dest != LoopExit) {
397 BranchInst::Create(Dest, Term);
406 BasicBlock *Dest = Term->getSuccessor(0); local
407 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
408 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
H A DInlineFunction.cpp144 BasicBlock *Dest = getInnerResumeDest(); local
147 BranchInst::Create(Dest, Src);
151 addIncomingPHIValuesForInto(Src, Dest);
/external/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp37 CodeGenInstruction Dest; // The destination instruction to lower to. member in struct:__anon9337::PseudoLoweringEmitter::PseudoExpansion
42 Source(s), Dest(d), OperandMap(m) {}
209 CodeGenInstruction &Dest = Expansion.Dest; local
214 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
215 << Dest.TheDef->getName() << ");\n";
222 for (unsigned OpNo = 0, E = Dest.Operands.size(); OpNo != E;
224 o << " // Operand: " << Dest.Operands[OpNo].Name << "\n";
225 for (unsigned i = 0, e = Dest.Operands[OpNo].MINumOperands;
252 MIOpNo += Dest
[all...]
/external/clang/include/clang/AST/
H A DASTVector.h207 /// starting with "Dest", constructing elements into it as needed.
209 static void uninitialized_copy(It1 I, It1 E, It2 Dest) { argument
210 std::uninitialized_copy(I, E, Dest);
/external/clang/include/clang/Lex/
H A DHeaderSearch.h259 void AddIncludeAlias(StringRef Source, StringRef Dest) { argument
262 (*IncludeAliases)[Source] = Dest;
/external/llvm/include/llvm/ADT/
H A DSmallVector.h177 /// objects starting with "Dest". This is just <memory>'s
180 static It2 move(It1 I, It1 E, It2 Dest) {
182 for (; I != E; ++I, ++Dest)
183 *Dest = ::std::move(*I);
184 return Dest;
186 return ::std::copy(I, E, Dest);
191 /// [I, E) onto the objects ending at "Dest", moving objects
195 static It2 move_backward(It1 I, It1 E, It2 Dest) {
198 *--Dest = ::std::move(*--E);
199 return Dest;
300 move(It1 I, It1 E, It2 Dest) argument
308 move_backward(It1 I, It1 E, It2 Dest) argument
315 uninitialized_move(It1 I, It1 E, It2 Dest) argument
323 uninitialized_copy(It1 I, It1 E, It2 Dest) argument
331 uninitialized_copy(T1 *I, T1 *E, T2 *Dest) argument
[all...]
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp278 char *Dest = new char[Size]; local
279 Values.push_back(Dest);
280 DEBUG(dbgs() << "JIT: ARGV[" << i << "] = " << (void*)Dest << "\n");
282 std::copy(InputArgv[i].begin(), InputArgv[i].end(), Dest);
283 Dest[Size-1] = 0;
285 // Endian safe: Array[i] = (PointerTy)Dest;
286 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
/external/llvm/lib/Linker/
H A DLinkModules.cpp397 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
496 bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, argument
500 assert(Dest && "Must have two globals being queried");
502 "If Src has internal linkage, Dest shouldn't be set!");
505 bool DestIsDeclaration = Dest->isDeclaration();
508 // If Src is external or if both Src & Dest are external.. Just link the
516 } else if (Dest->hasExternalWeakLinkage()) {
517 // If the Dest is weak, use the source linkage.
522 LT = Dest->getLinkage();
524 } else if (DestIsDeclaration && !Dest
883 getArrayElements(Constant *C, SmallVectorImpl<Constant*> &Dest) argument
1330 LinkModules(Module *Dest, Module *Src, unsigned Mode, std::string *ErrorMsg) argument
1345 LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, LLVMLinkerMode Mode, char **OutMessages) argument
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp948 SDValue Dest = Op.getOperand(4); local
971 return DAG.getNode(Opc, dl, MVT::Other, Chain, Dest,
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp112 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy); local
115 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
144 Value *Dest = MI->getDest(); local
145 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
147 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
154 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,

Completed in 340 milliseconds

123