HomeSort by relevance Sort by last modified time
    Searched defs:Dest (Results 1 - 25 of 32) sorted by null

1 2

  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 50 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
53 static void executeFAddInst(GenericValue &Dest, GenericValue Src1,
64 static void executeFSubInst(GenericValue &Dest, GenericValue Src1,
75 static void executeFMulInst(GenericValue &Dest, GenericValue Src1,
86 static void executeFDivInst(GenericValue &Dest, GenericValue Src1,
97 static void executeFRemInst(GenericValue &Dest, GenericValue Src1,
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.IntVal = APInt(1,(void*)(intptr_t)Src1.PointerVal OP
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 113 MachineBasicBlock *Dest = I->getOperand(0).getMBB();
116 if (Dest->getNumber() <= MBB.getNumber()) {
119 // from this block to the dest.
122 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
126 // dest to the number of bytes left in this block.
129 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i)
161 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest);
MSP430ISelLowering.cpp 751 SDValue Dest = Op.getOperand(4);
758 Chain, Dest, TargetCC, Flag);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 113 MachineBasicBlock *Dest = I->getOperand(2).getMBB();
116 if (Dest->getNumber() <= MBB.getNumber()) {
119 // from this block to the dest.
122 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i)
126 // dest to the number of bytes left in this block.
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/Transforms/Utils/
BreakCriticalEdges.cpp 96 const BasicBlock *Dest = TI->getSuccessor(SuccNum);
97 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest);
166 /// dest go to one block instead of each going to a different block, but isn't
LoopUnroll.cpp 358 BasicBlock *Dest = Headers[j];
368 Dest = LoopExit;
381 Term->setSuccessor(!ContinueOnTrue, Dest);
384 if (Dest != LoopExit) {
397 BranchInst::Create(Dest, Term);
406 BasicBlock *Dest = Term->getSuccessor(0);
407 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM))
408 std::replace(Latches.begin(), Latches.end(), Dest, Fold);
CloneFunction.cpp 312 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
313 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
314 ToClone.push_back(Dest);
327 BasicBlock *Dest = const_cast<BasicBlock*>(Case.getCaseSuccessor());
328 VMap[OldTI] = BranchInst::Create(Dest, NewBB);
329 ToClone.push_back(Dest);
538 BasicBlock *Dest = BI->getSuccessor(0);
539 if (!Dest->getSinglePredecessor()) {
545 assert(!isa<PHINode>(Dest->begin()));
551 // Make all PHI nodes that referred to Dest now refer to I as their source
    [all...]
InlineFunction.cpp 94 void addIncomingPHIValuesForInto(BasicBlock *src, BasicBlock *dest) const {
95 BasicBlock::iterator I = dest->begin();
144 BasicBlock *Dest = getInnerResumeDest();
147 BranchInst::Create(Dest, Src);
151 addIncomingPHIValuesForInto(Src, Dest);
    [all...]
PromoteMemoryToRegister.cpp     [all...]
SimplifyCFG.cpp 64 BasicBlock *Dest;
66 ValueEqualityComparisonCase(ConstantInt *Value, BasicBlock *Dest)
67 : Value(Value), Dest(Dest) {}
562 if (Cases[i].Dest == BB) {
652 ThisCases[0].Dest->removePredecessor(TI->getParent());
687 if (PredCases[i].Dest == TIBB) {
699 TheRealDest = ThisCases[i].Dest;
    [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.cpp 37 CodeGenInstruction Dest; // The destination instruction to lower to.
42 Source(s), Dest(d), OperandMap(m) {}
209 CodeGenInstruction &Dest = Expansion.Dest;
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.Operands[OpNo].MINumOperands
    [all...]
FixedLenDecoderEmitter.cpp 695 FixupScopeList::iterator Dest = Source - 1;
696 Dest->insert(Dest->end(), Source->begin(), Source->end());
    [all...]
  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 239 const BasicBlock *Dest = GetPath(BB, (*ei).first, p, GetPathToDest);
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);
379 if (Dest != *bbi) {
BasicAliasAnalysis.cpp 367 /// GetIndexDifference - Dest and Src are the variable indices from two
371 static void GetIndexDifference(SmallVectorImpl<VariableGEPIndex> &Dest,
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.erase(Dest.begin()+j)
    [all...]
ProfileInfo.cpp 238 GetPath(const BasicBlock *Src, const BasicBlock *Dest,
264 if ((Mode & GetPathToDest) && *Succ == Dest) {
747 const BasicBlock *Dest = 0;
755 if (Dest && Dest != P[0]) {
758 Dest = P[0];
776 const BasicBlock *Dest = GetPath(BB, 0, P, GetPathToValue);
816 double ow = getExecutionCount(Dest);
831 double ew = getEdgeWeight(getEdge(P[Dest],Dest));
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 278 char *Dest = new char[Size];
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),
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 36 AggValueSlot Dest;
38 /// We want to use 'dest' as the return slot except under two
44 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased());
51 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile());
55 if (!Dest.isIgnored()) return Dest;
59 if (!Dest.isIgnored()) return;
60 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured")
    [all...]
CGStmt.cpp 301 JumpDest &Dest = LabelMap[D];
302 if (Dest.isValid()) return Dest;
305 Dest = JumpDest(createBasicBlock(D->getName()),
308 return Dest;
312 JumpDest &Dest = LabelMap[D];
316 if (!Dest.isValid()) {
317 Dest = getJumpDestInCurrentScope(D->getName());
322 assert(!Dest.getScopeDepth().isValid() && "already emitted label!");
323 Dest = JumpDest(Dest.getBlock()
    [all...]
CGBuiltin.cpp 576 std::pair<llvm::Value*, unsigned> Dest =
579 Builder.CreateMemSet(Dest.first, Builder.getInt8(0), SizeVal,
580 Dest.second, false);
581 return RValue::get(Dest.first);
585 std::pair<llvm::Value*, unsigned> Dest =
590 unsigned Align = std::min(Dest.second, Src.second);
591 Builder.CreateMemCpy(Dest.first, Src.first, SizeVal, Align, false);
592 return RValue::get(Dest.first);
603 std::pair<llvm::Value*, unsigned> Dest =
608 unsigned Align = std::min(Dest.second, Src.second)
    [all...]
CGClass.cpp 436 llvm::Value *Dest = LHS.getAddress();
438 Dest = CGF.Builder.CreateInBoundsGEP(Dest, ArrayIndex, "destaddress");
444 LV.setAddress(Dest);
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 74 // dest address will be promotable. See if we can find a better type than the
112 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
115 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
144 Value *Dest = MI->getDest();
145 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
147 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
154 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
208 // then the source and dest pointers can't alias, so we can change this
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 82 const Expr *Dest,
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 189 bool ARMTryEmitSmallMemCpy(Address Dest, Address Src, uint64_t Len);
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 3317 milliseconds

1 2