Home
last modified time | relevance | path

Searched refs:Dest (Results 1 – 25 of 76) sorted by relevance

1234

/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp50 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
53 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, in executeFAddInst() argument
64 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, in executeFSubInst() argument
75 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, in executeFMulInst() argument
86 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, in executeFDivInst() argument
97 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, in executeFRemInst() argument
101 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal); in executeFRemInst()
104 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal); in executeFRemInst()
114 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \
120 Dest.AggregateVal.resize( Src1.AggregateVal.size() ); \
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
DCGExprAgg.cpp36 AggValueSlot Dest; member in __anon2f18c3880111::AggExprEmitter
44 return !(Dest.requiresGCollection() || Dest.isPotentiallyAliased()); in shouldUseDestForReturnSlot()
51 return ReturnValueSlot(Dest.getAddr(), Dest.isVolatile()); in getReturnValueSlot()
55 if (!Dest.isIgnored()) return Dest; in EnsureSlot()
59 if (!Dest.isIgnored()) return; in EnsureDest()
60 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured"); in EnsureDest()
64 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest) in AggExprEmitter() argument
65 : CGF(cgf), Builder(CGF.Builder), Dest(Dest) { in AggExprEmitter()
211 CGF.EmitAtomicLoad(LV, E->getExprLoc(), Dest); in EmitAggLoadOfLValue()
254 assert(Dest.getAddr() != src.getAggregateAddr()); in EmitMoveFromReturnSlot()
[all …]
DCGAtomic.cpp188 EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, llvm::Value *Dest, in EmitAtomicOp() argument
214 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType())); in EmitAtomicOp()
225 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Load, Dest); in EmitAtomicOp()
233 assert(!Dest && "Store does not return a value"); in EmitAtomicOp()
310 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Result, Dest); in EmitAtomicOp()
340 RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest) { in EmitAtomicExpr() argument
358 assert(!Dest && "Init does not return a value"); in EmitAtomicExpr()
375 Dest = EmitScalarExpr(E->getVal1()); in EmitAtomicExpr()
384 Dest = EmitScalarExpr(E->getVal2()); in EmitAtomicExpr()
442 if (!E->getType()->isVoidType() && !Dest) in EmitAtomicExpr()
[all …]
DCGCleanup.cpp889 bool CodeGenFunction::isObviouslyBranchWithoutCleanups(JumpDest Dest) const { in isObviouslyBranchWithoutCleanups()
890 assert(Dest.getScopeDepth().encloses(EHStack.stable_begin()) in isObviouslyBranchWithoutCleanups()
901 TopCleanup.encloses(Dest.getScopeDepth())) // works for invalid in isObviouslyBranchWithoutCleanups()
914 void CodeGenFunction::EmitBranchThroughCleanup(JumpDest Dest) { in EmitBranchThroughCleanup() argument
915 assert(Dest.getScopeDepth().encloses(EHStack.stable_begin()) in EmitBranchThroughCleanup()
922 llvm::BranchInst *BI = Builder.CreateBr(Dest.getBlock()); in EmitBranchThroughCleanup()
932 TopCleanup.encloses(Dest.getScopeDepth())) { // works for invalid in EmitBranchThroughCleanup()
939 if (!Dest.getScopeDepth().isValid()) { in EmitBranchThroughCleanup()
941 Fixup.Destination = Dest.getBlock(); in EmitBranchThroughCleanup()
942 Fixup.DestinationIndex = Dest.getDestIndex(); in EmitBranchThroughCleanup()
[all …]
DCGStmt.cpp329 JumpDest &Dest = LabelMap[D]; in getJumpDestForLabel() local
330 if (Dest.isValid()) return Dest; in getJumpDestForLabel()
333 Dest = JumpDest(createBasicBlock(D->getName()), in getJumpDestForLabel()
336 return Dest; in getJumpDestForLabel()
346 JumpDest &Dest = LabelMap[D]; in EmitLabel() local
350 if (!Dest.isValid()) { in EmitLabel()
351 Dest = getJumpDestInCurrentScope(D->getName()); in EmitLabel()
356 assert(!Dest.getScopeDepth().isValid() && "already emitted label!"); in EmitLabel()
357 Dest.setScopeDepth(EHStack.stable_begin()); in EmitLabel()
358 ResolveBranchFixups(Dest.getBlock()); in EmitLabel()
[all …]
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/
DPPCBranchSelector.cpp115 MachineBasicBlock *Dest = 0; in runOnMachineFunction() local
117 Dest = I->getOperand(2).getMBB(); in runOnMachineFunction()
121 Dest = I->getOperand(0).getMBB(); in runOnMachineFunction()
123 if (!Dest) { in runOnMachineFunction()
131 if (Dest->getNumber() <= MBB.getNumber()) { in runOnMachineFunction()
137 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i) in runOnMachineFunction()
144 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i) in runOnMachineFunction()
182 I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest); in runOnMachineFunction()
/freebsd-10-stable/sys/contrib/dev/acpica/components/utilities/
Dutnonansi.c190 char *Dest, in AcpiUtSafeStrcpy() argument
200 strcpy (Dest, Source); in AcpiUtSafeStrcpy()
206 char *Dest, in AcpiUtSafeStrcat() argument
211 if ((strlen (Dest) + strlen (Source)) >= DestSize) in AcpiUtSafeStrcat()
216 strcat (Dest, Source); in AcpiUtSafeStrcat()
222 char *Dest, in AcpiUtSafeStrncat() argument
232 if ((strlen (Dest) + ActualTransferLength) >= DestSize) in AcpiUtSafeStrncat()
237 strncat (Dest, Source, MaxTransferLength); in AcpiUtSafeStrncat()
/freebsd-10-stable/contrib/llvm/utils/TableGen/
DPseudoLoweringEmitter.cpp37 CodeGenInstruction Dest; // The destination instruction to lower to. member
42 Source(s), Dest(d), OperandMap(m) {} in PseudoExpansion()
209 CodeGenInstruction &Dest = Expansion.Dest; in emitLoweringEmitter() local
214 << " TmpInst.setOpcode(" << Dest.Namespace << "::" in emitLoweringEmitter()
215 << Dest.TheDef->getName() << ");\n"; in emitLoweringEmitter()
222 for (unsigned OpNo = 0, E = Dest.Operands.size(); OpNo != E; in emitLoweringEmitter()
224 o << " // Operand: " << Dest.Operands[OpNo].Name << "\n"; in emitLoweringEmitter()
225 for (unsigned i = 0, e = Dest.Operands[OpNo].MINumOperands; in emitLoweringEmitter()
252 MIOpNo += Dest.Operands[OpNo].MINumOperands; in emitLoweringEmitter()
254 if (Dest.Operands.isVariadic) { in emitLoweringEmitter()
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
DSmallVector.h185 static It2 move(It1 I, It1 E, It2 Dest) { in move() argument
187 for (; I != E; ++I, ++Dest) in move()
188 *Dest = ::std::move(*I); in move()
189 return Dest; in move()
191 return ::std::copy(I, E, Dest); in move()
200 static It2 move_backward(It1 I, It1 E, It2 Dest) { in move_backward() argument
203 *--Dest = ::std::move(*--E); in move_backward()
204 return Dest; in move_backward()
206 return ::std::copy_backward(I, E, Dest); in move_backward()
213 static void uninitialized_move(It1 I, It1 E, It2 Dest) { in uninitialized_move() argument
[all …]
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/
DMSP430BranchSelector.cpp113 MachineBasicBlock *Dest = I->getOperand(0).getMBB(); in runOnMachineFunction() local
116 if (Dest->getNumber() <= MBB.getNumber()) { in runOnMachineFunction()
122 for (unsigned i = Dest->getNumber(), e = MBB.getNumber(); i != e; ++i) in runOnMachineFunction()
129 for (unsigned i = MBB.getNumber(), e = Dest->getNumber(); i != e; ++i) in runOnMachineFunction()
161 I = BuildMI(MBB, I, dl, TII->get(MSP430::Bi)).addMBB(Dest); in runOnMachineFunction()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCallEvent.h157 virtual void cloneTo(void *Dest) const = 0;
473 virtual void cloneTo(void *Dest) const { new (Dest) FunctionCall(*this); } in cloneTo() argument
495 virtual void cloneTo(void *Dest) const { new (Dest) BlockCall(*this); } in cloneTo() argument
581 virtual void cloneTo(void *Dest) const { new (Dest) CXXMemberCall(*this); } in cloneTo() argument
623 virtual void cloneTo(void *Dest) const { in cloneTo() argument
624 new (Dest) CXXMemberOperatorCall(*this); in cloneTo()
674 virtual void cloneTo(void *Dest) const { new (Dest) CXXDestructorCall(*this); } in cloneTo() argument
718 virtual void cloneTo(void *Dest) const { new (Dest) CXXConstructorCall(*this); } in cloneTo() argument
762 virtual void cloneTo(void *Dest) const { new (Dest) CXXAllocatorCall(*this); } in cloneTo() argument
817 virtual void cloneTo(void *Dest) const { new (Dest) ObjCMethodCall(*this); } in cloneTo() argument
/freebsd-10-stable/contrib/llvm/lib/Linker/
DLinkModules.cpp426 bool getLinkageResult(GlobalValue *Dest, const GlobalValue *Src,
532 bool ModuleLinker::getLinkageResult(GlobalValue *Dest, const GlobalValue *Src, in getLinkageResult() argument
536 assert(Dest && "Must have two globals being queried"); in getLinkageResult()
541 bool DestIsDeclaration = Dest->isDeclaration(); in getLinkageResult()
552 } else if (Dest->hasExternalWeakLinkage()) { in getLinkageResult()
558 LT = Dest->getLinkage(); in getLinkageResult()
560 } else if (DestIsDeclaration && !Dest->hasDLLImportLinkage()) { in getLinkageResult()
567 if (Dest->hasExternalWeakLinkage() || in getLinkageResult()
568 Dest->hasAvailableExternallyLinkage() || in getLinkageResult()
569 (Dest->hasLinkOnceLinkage() && in getLinkageResult()
[all …]
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/
DCloneFunction.cpp315 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue()); in CloneBlock() local
316 VMap[OldTI] = BranchInst::Create(Dest, NewBB); in CloneBlock()
317 ToClone.push_back(Dest); in CloneBlock()
330 BasicBlock *Dest = const_cast<BasicBlock*>(Case.getCaseSuccessor()); in CloneBlock() local
331 VMap[OldTI] = BranchInst::Create(Dest, NewBB); in CloneBlock()
332 ToClone.push_back(Dest); in CloneBlock()
541 BasicBlock *Dest = BI->getSuccessor(0); in CloneAndPruneFunctionInto() local
542 if (!Dest->getSinglePredecessor()) { in CloneAndPruneFunctionInto()
548 assert(!isa<PHINode>(Dest->begin())); in CloneAndPruneFunctionInto()
555 Dest->replaceAllUsesWith(I); in CloneAndPruneFunctionInto()
[all …]
DLoopUnroll.cpp358 BasicBlock *Dest = Headers[j]; in UnrollLoop() local
368 Dest = LoopExit; in UnrollLoop()
381 Term->setSuccessor(!ContinueOnTrue, Dest); in UnrollLoop()
384 if (Dest != LoopExit) { in UnrollLoop()
397 BranchInst::Create(Dest, Term); in UnrollLoop()
406 BasicBlock *Dest = Term->getSuccessor(0); in UnrollLoop() local
407 if (BasicBlock *Fold = FoldBlockIntoPredecessor(Dest, LI, LPM)) in UnrollLoop()
408 std::replace(Latches.begin(), Latches.end(), Dest, Fold); in UnrollLoop()
/freebsd-10-stable/sys/contrib/dev/acpica/components/namespace/
Dnsrepair2.c588 char *Dest; in AcpiNsRepair_HID() local
645 for (Dest = NewString->String.Pointer; *Source; Dest++, Source++) in AcpiNsRepair_HID()
647 *Dest = (char) toupper ((int) *Source); in AcpiNsRepair_HID()
1046 ACPI_OPERAND_OBJECT **Dest; in AcpiNsRemoveElement() local
1059 Dest = Source; in AcpiNsRemoveElement()
1072 *Dest = *Source; in AcpiNsRemoveElement()
1073 Dest++; in AcpiNsRemoveElement()
1081 *Dest = NULL; in AcpiNsRemoveElement()
Dnsrepair.c512 ACPI_OPERAND_OBJECT **Dest; in AcpiNsRemoveNullElements() local
549 Dest = Source; in AcpiNsRemoveNullElements()
561 *Dest = *Source; in AcpiNsRemoveNullElements()
562 Dest++; in AcpiNsRemoveNullElements()
578 *Dest = NULL; in AcpiNsRemoveNullElements()
Dnsxfname.c61 ACPI_PNP_DEVICE_ID *Dest,
264 ACPI_PNP_DEVICE_ID *Dest, in ACPI_EXPORT_SYMBOL()
270 Dest->String = StringArea; in ACPI_EXPORT_SYMBOL()
271 Dest->Length = Source->Length; in ACPI_EXPORT_SYMBOL()
/freebsd-10-stable/contrib/llvm/lib/Analysis/
DSparsePropagation.cpp98 void SparseSolver::markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) { in markEdgeExecutable() argument
99 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second) in markEdgeExecutable()
103 << " -> " << Dest->getName() << "\n"); in markEdgeExecutable()
105 if (BBExecutable.count(Dest)) { in markEdgeExecutable()
109 for (BasicBlock::iterator I = Dest->begin(); isa<PHINode>(I); ++I) in markEdgeExecutable()
113 MarkBlockExecutable(Dest); in markEdgeExecutable()
DBasicAliasAnalysis.cpp539 void GetIndexDifference(SmallVectorImpl<VariableGEPIndex> &Dest,
756 Value *Dest = II->getArgOperand(0); in getModRefInfo() local
759 if (isNoAlias(Location(Dest, Len), Loc)) { in getModRefInfo()
775 Value *Dest = II->getArgOperand(0); in getModRefInfo() local
776 if (isNoAlias(Location(Dest, Len), Loc)) in getModRefInfo()
842 const Value *Dest = CS.getArgument(0); in getModRefInfo() local
845 if (isNoAlias(Location(Dest, Len), Loc)) { in getModRefInfo()
1366 SmallVectorImpl<VariableGEPIndex> &Dest, in GetIndexDifference() argument
1378 for (unsigned j = 0, e = Dest.size(); j != e; ++j) { in GetIndexDifference()
1379 if (!isValueEqualInPotentialCycles(Dest[j].V, V) || in GetIndexDifference()
[all …]
DCFG.cpp93 const BasicBlock *Dest = TI->getSuccessor(SuccNum); in isCriticalEdge() local
94 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest); in isCriticalEdge()
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/
DAliasSetTracker.h240 AliasSet *Dest = Forward->getForwardedTarget(AST);
241 if (Dest != Forward) {
242 Dest->addRef();
244 Forward = Dest;
246 return Dest;
/freebsd-10-stable/sys/contrib/dev/acpica/include/
Dacclib.h146 void *Dest,
152 void *Dest,
/freebsd-10-stable/contrib/llvm/lib/IR/
DSymbolTableListTraitsImpl.h30 ::setSymTabObject(TPtr *Dest, TPtr Src) { in setSymTabObject() argument
35 *Dest = Src; in setSymTabObject()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
DExprEngineCXX.cpp288 const MemRegion *Dest, in VisitCXXDestructor() argument
300 if (Dest) in VisitCXXDestructor()
301 DestVal = loc::MemRegionVal(Dest); in VisitCXXDestructor()
303 Dest = DestVal.getAsRegion(); in VisitCXXDestructor()
311 CEMgr.getCXXDestructorCall(DtorDecl, S, Dest, IsBaseDtor, State, LCtx); in VisitCXXDestructor()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
DCStringChecker.cpp84 const Expr *Dest,
901 const Expr *Size, const Expr *Dest, in evalCopyCommon() argument
916 SVal destVal = state->getSVal(Dest, LCtx); in evalCopyCommon()
932 state = checkNonNull(C, state, Dest, destVal); in evalCopyCommon()
948 state = CheckBufferAccess(C, state, Size, Dest, Source, in evalCopyCommon()
951 state = CheckOverlap(C, state, Size, Dest, Source); in evalCopyCommon()
967 Dest->getType()); in evalCopyCommon()
991 state = InvalidateBuffer(C, state, Dest, C.getSVal(Dest), in evalCopyCommon()
1010 const Expr *Dest = CE->getArg(0); in evalMemcpy() local
1013 evalCopyCommon(C, CE, state, CE->getArg(2), Dest, CE->getArg(1), true); in evalMemcpy()
[all …]

1234