HomeSort by: relevance | last modified time | path
    Searched refs:Src (Results 1 - 25 of 391) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/linker/
linker_ocaml.c 28 value llvm_link_modules(LLVMModuleRef Dst, LLVMModuleRef Src) {
29 if (LLVMLinkModules2(Dst, Src))
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUMIRFormatter.cpp 21 StringRef Src, MachineFunction &MF, PerFunctionMIParsingState &PFS,
25 if (Src == "BufferResource") {
29 if (Src == "ImageResource") {
33 if (Src == "GWSResource") {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Object.h 161 void copySymbol(Symbol1Ty &Dest, const Symbol2Ty &Src) {
162 static_assert(sizeof(Dest.Name.ShortName) == sizeof(Src.Name.ShortName),
164 memcpy(Dest.Name.ShortName, Src.Name.ShortName, sizeof(Dest.Name.ShortName));
165 Dest.Value = Src.Value;
166 Dest.SectionNumber = Src.SectionNumber;
167 Dest.Type = Src.Type;
168 Dest.StorageClass = Src.StorageClass;
169 Dest.NumberOfAuxSymbols = Src.NumberOfAuxSymbols;
175 void copyPeHeader(PeHeader1Ty &Dest, const PeHeader2Ty &Src) {
176 Dest.Magic = Src.Magic
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 45 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
48 // Same as above, but using a const_succ_iterator from Src. This is faster
51 getEdgeProbability(const MachineBasicBlock *Src,
55 bool isEdgeHot(const MachineBasicBlock *Src,
63 // however the value is never equal to 0, and can be 1 only iff SRC block
66 const MachineBasicBlock *Src,
CostTable.h 47 MVT::SimpleValueType Src;
55 int ISD, MVT Dst, MVT Src) {
57 return ISD == Entry.ISD && Src == Entry.Src && Dst == Entry.Dst;
  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
Linker.h 34 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineBranchProbabilityInfo.cpp 53 const MachineBasicBlock *Src,
55 return Src->getSuccProbability(Dst);
59 const MachineBasicBlock *Src, const MachineBasicBlock *Dst) const {
62 return getEdgeProbability(Src, find(Src->successors(), Dst));
66 const MachineBasicBlock *Src, const MachineBasicBlock *Dst) const {
68 return getEdgeProbability(Src, Dst) > HotProb;
92 raw_ostream &OS, const MachineBasicBlock *Src,
95 const BranchProbability Prob = getEdgeProbability(Src, Dst);
96 OS << "edge " << printMBBReference(*Src) << " -> " << printMBBReference(*Dst
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp 64 LLVMTypeRef Clone(LLVMValueRef Src) {
65 return Clone(LLVMTypeOf(Src));
68 LLVMTypeRef Clone(LLVMTypeRef Src) {
69 LLVMTypeKind Kind = LLVMGetTypeKind(Src);
90 return LLVMIntTypeInContext(Ctx, LLVMGetIntTypeWidth(Src));
92 unsigned ParamCount = LLVMCountParamTypes(Src);
97 LLVMGetParamTypes(Src, Params);
102 LLVMTypeRef FunTy = LLVMFunctionType(Clone(LLVMGetReturnType(Src)),
104 LLVMIsFunctionVarArg(Src));
111 const char *Name = LLVMGetStructName(Src);
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/runtime/
rtstr.c 52 IN CONST CHAR16 *Src
56 while (*Src) {
57 *(Dest++) = *(Src++);
69 IN CONST CHAR16 *Src,
74 UINTN Size = RtStrnLen(Src, Len);
77 RtCopyMem(Dest, Src, Size * sizeof(CHAR16));
87 IN CONST CHAR16 *Src
91 while (*Src) {
92 *(Dest++) = *(Src++);
105 IN CONST CHAR16 *Src,
    [all...]
efirtlib.c 69 IN CONST VOID *Src,
74 CHAR8 *s = (CHAR8*)Src;
98 IN CONST VOID *Src,
102 CONST CHAR8 *d = Dest, *s = Src;
  /src/external/gpl2/diffutils/dist/lib/
xalloc.h 76 /* Return a pointer to a malloc'ed copy of the array SRC of NUM elements. */
77 # define CCLONE(Src, Num) \
78 (memcpy (xmalloc (sizeof (*Src) * (Num)), (Src), sizeof (*Src) * (Num)))
80 /* Return a malloc'ed copy of SRC. */
81 # define CLONE(Src) CCLONE (Src, 1)
  /src/external/gpl2/grep/dist/lib/
xalloc.h 81 /* Return a pointer to a malloc'ed copy of the array SRC of NUM elements. */
82 # define CCLONE(Src, Num) \
83 (memcpy (xmalloc (sizeof (*Src) * (Num)), (Src), sizeof (*Src) * (Num)))
85 /* Return a malloc'ed copy of SRC. */
86 # define CLONE(Src) CCLONE (Src, 1)
  /src/sys/external/bsd/gnu-efi/dist/inc/
efirtlib.h 61 IN CONST VOID *Src,
69 IN CONST VOID *Src,
85 IN CONST CHAR16 *Src
92 IN CONST CHAR16 *Src,
100 IN CONST CHAR16 *Src
107 IN CONST CHAR16 *Src,
115 IN CONST CHAR16 *Src
122 IN CONST CHAR16 *Src,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Linker/
Linker.h 36 /// Link \p Src into the composite.
38 /// Passing OverrideSymbols as true will have symbols from Src
46 bool linkInModule(std::unique_ptr<Module> Src, unsigned Flags = Flags::None,
50 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceGraphBuilder.cpp 161 auto createEdgeOfKind = [this](NodeType &Src, NodeType &Dst,
165 createDefUseEdge(Src, Dst);
168 createMemoryEdge(Src, Dst);
171 createRootedEdge(Src, Dst);
178 auto reconnectEdges = [&](NodeType *Src, NodeType *Dst, NodeType *New,
180 if (!Src->hasEdgeTo(*Dst))
185 << ":\nSrc:" << *Src << "\nDst:" << *Dst << "\nNew:" << *New
191 Src->findEdgesTo(*Dst, EL);
196 createEdgeOfKind(*Src, *New, Kind);
197 LLVM_DEBUG(dbgs() << "created edge from Src to New.\n")
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
str.c 111 IN CONST CHAR16 *Src
115 RtStrCpy (Dest, Src);
121 IN CONST CHAR16 *Src,
126 RtStrnCpy (Dest, Src, Len);
132 IN CONST CHAR16 *Src
136 return RtStpCpy (Dest, Src);
142 IN CONST CHAR16 *Src,
147 return RtStpnCpy (Dest, Src, Len);
153 IN CONST CHAR16 *Src
156 RtStrCat(Dest, Src);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 39 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src,
68 if (ConstantSDNode *ConstantSrc = dyn_cast<ConstantSDNode>(Src))
105 if (Src.getValueType().bitsGT(MVT::i32))
106 Src = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Src);
107 else if (Src.getValueType().bitsLT(MVT::i32))
108 Src = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Src);
110 Entry.Node = Src;
115 Entry.Node = Src;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ConvertUTFWrapper.cpp 97 const UTF16 *Src = reinterpret_cast<const UTF16 *>(SrcBytes.begin());
100 assert((uintptr_t)Src % sizeof(UTF16) == 0);
104 if (Src[0] == UNI_UTF16_BYTE_ORDER_MARK_SWAPPED) {
105 ByteSwapped.insert(ByteSwapped.end(), Src, SrcEnd);
108 Src = &ByteSwapped[0];
113 if (Src[0] == UNI_UTF16_BYTE_ORDER_MARK_NATIVE)
114 Src++;
123 ConvertUTF16toUTF8(&Src, SrcEnd, &Dst, DstEnd, strictConversion);
137 bool convertUTF16ToUTF8String(ArrayRef<UTF16> Src, std::string &Out)
140 llvm::ArrayRef<char>(reinterpret_cast<const char *>(Src.data())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 21 // a block operation of Size bytes with source address Src and destination
27 SDValue Src, uint64_t Size) {
28 EVT PtrVT = Src.getValueType();
41 return DAG.getNode(Loop, DL, MVT::Other, Chain, Dst, Src,
44 return DAG.getNode(Sequence, DL, MVT::Other, Chain, Dst, Src,
49 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, SDValue Src,
57 Chain, Dst, Src, CSize->getZExtValue());
196 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Src,
199 EVT PtrVT = Src.getValueType();
205 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/MIRParser/
MIParser.h 200 StringRef Src, SMDiagnostic &Error);
212 bool parseMachineInstructions(PerFunctionMIParsingState &PFS, StringRef Src,
216 MachineBasicBlock *&MBB, StringRef Src,
220 Register &Reg, StringRef Src,
224 StringRef Src, SMDiagnostic &Error);
227 VRegInfo *&Info, StringRef Src,
231 StringRef Src, SMDiagnostic &Error);
233 bool parseMDNode(PerFunctionMIParsingState &PFS, MDNode *&Node, StringRef Src,
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFSelectionDAGInfo.cpp 21 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src,
37 Dst = DAG.getNode(BPFISD::MEMCPY, dl, VTs, Chain, Dst, Src,
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86SelectionDAGInfo.h 30 SDValue Chain, SDValue Dst, SDValue Src,
36 SDValue Chain, SDValue Dst, SDValue Src,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
DependenceAnalysis.h 79 Src(Source),
109 Instruction *getSrc() const { return Src; }
202 Instruction *Src, *Dst;
217 FullDependence(Instruction *Src, Instruction *Dst, bool LoopIndependent,
282 /// depends - Tests for a dependence between the Src and Dst instructions.
286 /// if it appears that control flow can reach from Src to Dst
288 std::unique_ptr<Dependence> depends(Instruction *Src,
346 const SCEV *Src;
459 /// establishNestingLevels - Examines the loop nesting of the Src and Dst
476 /// ... - loops containing Src but not Ds
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
CFGReachabilityAnalysis.h 41 /// Returns true if the block 'Dst' can be reached from block 'Src'.
42 bool isReachable(const CFGBlock *Src, const CFGBlock *Dst);
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
linker.go 23 func LinkModules(Dest, Src Module) error {
24 failed := C.LLVMLinkModules2(Dest.C, Src.C)

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011>>