Home
last modified time | relevance | path

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

123456789

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/
H A DCOFFObject.h163 void copySymbol(Symbol1Ty &Dest, const Symbol2Ty &Src) { in copySymbol() argument
164 static_assert(sizeof(Dest.Name.ShortName) == sizeof(Src.Name.ShortName), in copySymbol()
166 memcpy(Dest.Name.ShortName, Src.Name.ShortName, sizeof(Dest.Name.ShortName)); in copySymbol()
167 Dest.Value = Src.Value; in copySymbol()
168 Dest.SectionNumber = Src.SectionNumber; in copySymbol()
169 Dest.Type = Src.Type; in copySymbol()
170 Dest.StorageClass = Src.StorageClass; in copySymbol()
171 Dest.NumberOfAuxSymbols = Src.NumberOfAuxSymbols; in copySymbol()
177 void copyPeHeader(PeHeader1Ty &Dest, const PeHeader2Ty &Src) { in copyPeHeader() argument
178 Dest.Magic = Src.Magic; in copyPeHeader()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp49 static void executeFNegInst(GenericValue &Dest, GenericValue Src, Type *Ty) { in executeFNegInst() argument
52 Dest.FloatVal = -Src.FloatVal; in executeFNegInst()
55 Dest.DoubleVal = -Src.DoubleVal; in executeFNegInst()
105 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
108 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, in executeFAddInst() argument
119 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, in executeFSubInst() argument
130 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, in executeFMulInst() argument
141 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, in executeFDivInst() argument
152 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, in executeFRemInst() argument
156 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal); in executeFRemInst()
[all …]
/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Dutnonansi.c297 char *Dest, in AcpiUtSafeStrcpy() argument
307 strcpy (Dest, Source); in AcpiUtSafeStrcpy()
313 char *Dest, in AcpiUtSafeStrcat() argument
318 if ((strlen (Dest) + strlen (Source)) >= DestSize) in AcpiUtSafeStrcat()
323 strcat (Dest, Source); in AcpiUtSafeStrcat()
329 char *Dest, in AcpiUtSafeStrncat() argument
339 if ((strlen (Dest) + ActualTransferLength) >= DestSize) in AcpiUtSafeStrncat()
344 strncat (Dest, Source, MaxTransferLength); in AcpiUtSafeStrncat()
350 char *Dest, in AcpiUtSafeStrncpy() argument
356 strncpy (Dest, Source, DestSize); in AcpiUtSafeStrncpy()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp82 Error mergeIdRecords(MergingTypeTableBuilder &Dest,
85 Error mergeTypeRecords(MergingTypeTableBuilder &Dest,
94 Error mergeIdRecords(GlobalTypeTableBuilder &Dest,
98 Error mergeTypeRecords(GlobalTypeTableBuilder &Dest, const CVTypeArray &Types,
242 Error TypeStreamMerger::mergeTypeRecords(MergingTypeTableBuilder &Dest, in mergeTypeRecords() argument
244 DestTypeStream = &Dest; in mergeTypeRecords()
250 Error TypeStreamMerger::mergeIdRecords(MergingTypeTableBuilder &Dest, in mergeIdRecords() argument
253 DestIdStream = &Dest; in mergeIdRecords()
273 GlobalTypeTableBuilder &Dest, const CVTypeArray &Types, in mergeTypeRecords() argument
276 DestGlobalTypeStream = &Dest; in mergeTypeRecords()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamReader.h69 template <typename T> Error readInteger(T &Dest) { in readInteger() argument
77 Dest = llvm::support::endian::read<T>(Bytes.data(), Stream.getEndian()); in readInteger()
82 template <typename T> Error readEnum(T &Dest) { in readEnum() argument
88 Dest = static_cast<T>(N); in readEnum()
96 LLVM_ABI Error readULEB128(uint64_t &Dest);
102 LLVM_ABI Error readSLEB128(int64_t &Dest);
110 LLVM_ABI Error readCString(StringRef &Dest);
117 LLVM_ABI Error readWideString(ArrayRef<UTF16> &Dest);
125 LLVM_ABI Error readFixedString(StringRef &Dest, uint32_t Length);
162 template <typename T> Error readObject(const T *&Dest) { in readObject() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp49 AggValueSlot Dest; member in __anon66bd1ef60111::AggExprEmitter
53 if (!Dest.isIgnored()) return Dest; in EnsureSlot()
57 if (!Dest.isIgnored()) return; in EnsureDest()
58 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured"); in EnsureDest()
74 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, bool IsResultUnused) in AggExprEmitter() argument
75 : CGF(cgf), Builder(CGF.Builder), Dest(Dest), in AggExprEmitter()
125 CGF.EmitCoawaitExpr(*E, Dest, IsResultUnused); in VisitCoawaitExpr()
128 CGF.EmitCoyieldExpr(*E, Dest, IsResultUnused); in VisitCoyieldExpr()
141 Result, Dest.getAddress(), in VisitConstantExpr()
143 Dest.getPreferredSize(CGF.getContext(), E->getType()) in VisitConstantExpr()
[all …]
H A DCGBuilder.h369 llvm::CallInst *CreateMemCpy(Address Dest, Address Src, llvm::Value *Size,
371 llvm::Value *DestPtr = emitRawPointerFromAddress(Dest);
373 return CreateMemCpy(DestPtr, Dest.getAlignment().getAsAlign(), SrcPtr,
376 llvm::CallInst *CreateMemCpy(Address Dest, Address Src, uint64_t Size,
378 llvm::Value *DestPtr = emitRawPointerFromAddress(Dest);
380 return CreateMemCpy(DestPtr, Dest.getAlignment().getAsAlign(), SrcPtr,
385 llvm::CallInst *CreateMemCpyInline(Address Dest, Address Src, uint64_t Size) { in CreateMemCpyInline() argument
386 llvm::Value *DestPtr = emitRawPointerFromAddress(Dest); in CreateMemCpyInline()
388 return CreateMemCpyInline(DestPtr, Dest.getAlignment().getAsAlign(), SrcPtr, in CreateMemCpyInline()
393 llvm::CallInst *CreateMemMove(Address Dest, Address Src, llvm::Value *Size,
[all …]
H A DCGAtomic.cpp377 Address Dest, Address Ptr, in emitAtomicCmpXchg() argument
422 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType())); in emitAtomicCmpXchg()
429 bool IsWeak, Address Dest, Address Ptr, in emitAtomicCmpXchgFailureSet() argument
461 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder, in emitAtomicCmpXchgFailureSet()
486 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet()
491 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder, in emitAtomicCmpXchgFailureSet()
496 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder, in emitAtomicCmpXchgFailureSet()
527 static void EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, Address Dest, in EmitAtomicOp() argument
544 emitAtomicCmpXchgFailureSet(CGF, E, false, Dest, Ptr, Val1, Val2, in EmitAtomicOp()
550 emitAtomicCmpXchgFailureSet(CGF, E, true, Dest, Ptr, Val1, Val2, in EmitAtomicOp()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp459 bool parseRegisterOperand(MachineOperand &Dest,
462 bool parseImmediateOperand(MachineOperand &Dest);
467 bool parseTypedImmediateOperand(MachineOperand &Dest);
468 bool parseFPImmediateOperand(MachineOperand &Dest);
470 bool parseMBBOperand(MachineOperand &Dest);
472 bool parseStackObjectOperand(MachineOperand &Dest);
474 bool parseFixedStackObjectOperand(MachineOperand &Dest);
476 bool parseGlobalAddressOperand(MachineOperand &Dest);
477 bool parseConstantPoolIndexOperand(MachineOperand &Dest);
478 bool parseSubRegisterIndexOperand(MachineOperand &Dest);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamReader.cpp43 Error BinaryStreamReader::readULEB128(uint64_t &Dest) {
54 Dest = decodeULEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); in readULEB128()
58 Error BinaryStreamReader::readSLEB128(int64_t &Dest) {
69 Dest = decodeSLEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); in readSLEB128()
73 Error BinaryStreamReader::readCString(StringRef &Dest) {
93 if (auto EC = readFixedString(Dest, Length)) in readCString()
101 Error BinaryStreamReader::readWideString(ArrayRef<UTF16> &Dest) {
115 if (auto EC = readArray(Dest, Length)) in readWideString()
121 Error BinaryStreamReader::readFixedString(StringRef &Dest, uint32_t Length) {
125 Dest in readFixedString()
44 readULEB128(uint64_t & Dest) readULEB128() argument
59 readSLEB128(int64_t & Dest) readSLEB128() argument
74 readCString(StringRef & Dest) readCString() argument
102 readWideString(ArrayRef<UTF16> & Dest) readWideString() argument
122 readFixedString(StringRef & Dest,uint32_t Length) readFixedString() argument
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp55 const MachineBasicBlock *Dest,
199 const MachineBasicBlock *Dest, in computeBranchSize() argument
204 if (Dest->getNumber() <= Src->getNumber()) { in computeBranchSize()
211 int DestBlock = Dest->getNumber(); in computeBranchSize()
226 MaxAlign = std::max(MaxAlign, Dest->getAlignment()); in computeBranchSize()
227 for (unsigned i = StartBlock+1, e = Dest->getNumber(); i != e; ++i) { in computeBranchSize()
324 MachineBasicBlock *Dest = nullptr; in runOnMachineFunction() local
326 Dest = I->getOperand(2).getMBB(); in runOnMachineFunction()
329 Dest = I->getOperand(1).getMBB(); in runOnMachineFunction()
333 Dest = I->getOperand(0).getMBB(); in runOnMachineFunction()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWasmEHFuncInfo.h51 void setUnwindDest(const BasicBlock *BB, const BasicBlock *Dest) { in setUnwindDest()
52 SrcToUnwindDest[BB] = Dest; in setUnwindDest()
53 UnwindDestToSrcs[Dest].insert(BB); in setUnwindDest()
75 void setUnwindDest(MachineBasicBlock *MBB, MachineBasicBlock *Dest) { in setUnwindDest()
76 SrcToUnwindDest[MBB] = Dest; in setUnwindDest()
77 UnwindDestToSrcs[Dest].insert(MBB); in setUnwindDest()
/freebsd/contrib/llvm-project/llvm/lib/Linker/
H A DLinkModules.cpp56 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
241 const GlobalValue &Dest, in shouldLinkFromSource() argument
251 if (Src.hasAppendingLinkage() || Dest.hasAppendingLinkage()) { in shouldLinkFromSource()
257 bool DestIsDeclaration = Dest.isDeclarationForLinker(); in shouldLinkFromSource()
268 if (Dest.hasExternalWeakLinkage()) { in shouldLinkFromSource()
273 LinkFromSrc = !Src.isDeclaration() && Dest.isDeclaration(); in shouldLinkFromSource()
284 if (Dest.hasLinkOnceLinkage() || Dest.hasWeakLinkage()) { in shouldLinkFromSource()
289 if (!Dest.hasCommonLinkage()) { in shouldLinkFromSource()
294 const DataLayout &DL = Dest.getDataLayout(); in shouldLinkFromSource()
295 uint64_t DestSize = DL.getTypeAllocSize(Dest.getValueType()); in shouldLinkFromSource()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Telemetry/
H A DTelemetry.cpp30 for (auto &Dest : Destinations) { in dispatch() local
31 AllErrs = joinErrors(std::move(AllErrs), Dest->receiveEntry(Entry)); in dispatch()
36 void Manager::addDestination(std::unique_ptr<Destination> Dest) { in addDestination() argument
37 Destinations.push_back(std::move(Dest)); in addDestination()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp726 void BasicBlock::spliceDebugInfoEmptyBlock(BasicBlock::iterator Dest, in spliceDebugInfoEmptyBlock() argument
746 bool InsertAtHead = Dest.getHeadBit(); in spliceDebugInfoEmptyBlock()
758 Dest->adoptDbgRecords(Src, Src->end(), InsertAtHead); in spliceDebugInfoEmptyBlock()
774 createMarker(Dest)->absorbDebugValues(*First->DebugMarker, InsertAtHead); in spliceDebugInfoEmptyBlock()
777 void BasicBlock::spliceDebugInfo(BasicBlock::iterator Dest, BasicBlock *Src, in spliceDebugInfo() argument
816 if (Dest == end() && !Dest.getHeadBit() && OurTrailingDbgRecords) { in spliceDebugInfo()
845 spliceDebugInfoImpl(Dest, Src, First, Last); in spliceDebugInfo()
859 void BasicBlock::spliceDebugInfoImpl(BasicBlock::iterator Dest, BasicBlock *Src, in spliceDebugInfoImpl() argument
865 bool InsertAtHead = Dest.getHeadBit(); in spliceDebugInfoImpl()
936 if ((DestMarker = getMarker(Dest))) { in spliceDebugInfoImpl()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeStreamMerger.h46 LLVM_ABI Error mergeTypeRecords(MergingTypeTableBuilder &Dest,
71 LLVM_ABI Error mergeIdRecords(MergingTypeTableBuilder &Dest,
104 LLVM_ABI Error mergeTypeRecords(GlobalTypeTableBuilder &Dest,
110 LLVM_ABI Error mergeIdRecords(GlobalTypeTableBuilder &Dest,
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp36 CodeGenInstruction Dest; // The destination instruction to lower to. member
41 : Source(s), Dest(d), OperandMap(m) {} in PseudoExpansion()
231 CodeGenInstruction &Dest = Expansion.Dest; in emitLoweringEmitter() local
235 << " Inst.setOpcode(" << Dest.Namespace in emitLoweringEmitter()
236 << "::" << Dest.TheDef->getName() << ");\n"; in emitLoweringEmitter()
242 for (const auto &DestOperand : Dest.Operands) { in emitLoweringEmitter()
270 if (Dest.Operands.isVariadic) { in emitLoweringEmitter()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h199 virtual void cloneTo(void *Dest) const = 0;
546 void cloneTo(void *Dest) const override { in cloneTo() argument
547 new (Dest) SimpleFunctionCall(*this); in cloneTo()
585 void cloneTo(void *Dest) const override { new (Dest) BlockCall(*this); } in cloneTo() argument
746 void cloneTo(void *Dest) const override { in cloneTo() argument
747 new (Dest) CXXStaticOperatorCall(*this); in cloneTo()
804 void cloneTo(void *Dest) const override { new (Dest) CXXMemberCall(*this); } in cloneTo() argument
847 void cloneTo(void *Dest) const override { in cloneTo() argument
848 new (Dest) CXXMemberOperatorCall(*this); in cloneTo()
927 void cloneTo(void *Dest) const override { in cloneTo() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DCFG.cpp102 bool llvm::isCriticalEdge(const Instruction *TI, const BasicBlock *Dest, in isCriticalEdge() argument
107 assert(is_contained(predecessors(Dest), TI->getParent()) && in isCriticalEdge()
110 const_pred_iterator I = pred_begin(Dest), E = pred_end(Dest); in isCriticalEdge()
362 const BasicBlock &Dest) { in isPresplitCoroSuspendExitEdge() argument
363 assert(Src.getParent() == Dest.getParent()); in isPresplitCoroSuspendExitEdge()
369 SW->getDefaultDest() == &Dest; in isPresplitCoroSuspendExitEdge()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h186 LLVM_ABI Value *emitSNPrintf(Value *Dest, Value *Size, Value *Fmt,
191 LLVM_ABI Value *emitSPrintf(Value *Dest, Value *Fmt,
196 LLVM_ABI Value *emitStrCat(Value *Dest, Value *Src, IRBuilderBase &B,
200 LLVM_ABI Value *emitStrLCpy(Value *Dest, Value *Src, Value *Size,
204 LLVM_ABI Value *emitStrLCat(Value *Dest, Value *Src, Value *Size,
208 LLVM_ABI Value *emitStrNCat(Value *Dest, Value *Src, Value *Size,
212 LLVM_ABI Value *emitVSNPrintf(Value *Dest, Value *Size, Value *Fmt,
217 LLVM_ABI Value *emitVSPrintf(Value *Dest, Value *Fmt, Value *VAList,
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXImageOptimizer.cpp152 BasicBlock *Dest; in replaceWith() local
155 Dest = BI->getSuccessor(1); in replaceWith()
158 Dest = BI->getSuccessor(0); in replaceWith()
159 BranchInst::Create(Dest, BI->getIterator()); in replaceWith()
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsrepair2.c695 char *Dest; in AcpiNsRepair_HID() local
752 for (Dest = NewString->String.Pointer; *Source; Dest++, Source++) in AcpiNsRepair_HID()
754 *Dest = (char) toupper ((int) *Source); in AcpiNsRepair_HID()
1153 ACPI_OPERAND_OBJECT **Dest; in AcpiNsRemoveElement() local
1166 Dest = Source; in AcpiNsRemoveElement()
1179 *Dest = *Source; in AcpiNsRemoveElement()
1180 Dest++; in AcpiNsRemoveElement()
1188 *Dest = NULL; in AcpiNsRemoveElement()
H A Dnsrepair.c610 ACPI_OPERAND_OBJECT **Dest; in AcpiNsRemoveNullElements() local
647 Dest = Source; in AcpiNsRemoveNullElements()
659 *Dest = *Source; in AcpiNsRemoveNullElements()
660 Dest++; in AcpiNsRemoveNullElements()
676 *Dest = NULL; in AcpiNsRemoveNullElements()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsExpandPseudo.cpp101 Register Dest = I->getOperand(0).getReg(); in expandAtomicCmpSwapSubword() local
174 BuildMI(sinkMBB, DL, TII->get(Mips::SRLV), Dest) in expandAtomicCmpSwapSubword()
178 BuildMI(sinkMBB, DL, TII->get(SEOp), Dest).addReg(Dest); in expandAtomicCmpSwapSubword()
182 BuildMI(sinkMBB, DL, TII->get(Mips::SLL), Dest) in expandAtomicCmpSwapSubword()
183 .addReg(Dest, RegState::Kill) in expandAtomicCmpSwapSubword()
185 BuildMI(sinkMBB, DL, TII->get(Mips::SRA), Dest) in expandAtomicCmpSwapSubword()
186 .addReg(Dest, RegState::Kill) in expandAtomicCmpSwapSubword()
242 Register Dest = I->getOperand(0).getReg(); in expandAtomicCmpSwap() local
277 BuildMI(loop1MBB, DL, TII->get(LL), Dest).addReg(Ptr).addImm(0); in expandAtomicCmpSwap()
279 .addReg(Dest, RegState::Kill).addReg(OldVal).addMBB(exitMBB); in expandAtomicCmpSwap()
[all …]
/freebsd/sys/contrib/edk2/Include/
H A DBase.h591 #define VA_COPY(Dest, Start) ((void)((Dest) = (Start))) argument
615 #define VA_COPY(Dest, Start) __builtin_ms_va_copy (Dest, Start) argument
634 #define VA_COPY(Dest, Start) __builtin_va_copy (Dest, Start) argument
704 #define VA_COPY(Dest, Start) ((void)((Dest) = (Start))) argument

123456789