Home
last modified time | relevance | path

Searched refs:Chain (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86SelectionDAGInfo.cpp31 SDValue Chain, in EmitTargetCodeForMemset() argument
66 TLI.LowerCallTo(Chain, Type::getVoidTy(*DAG.getContext()), in EmitTargetCodeForMemset()
120 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT), in EmitTargetCodeForMemset()
122 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
126 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag); in EmitTargetCodeForMemset()
127 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
130 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX : in EmitTargetCodeForMemset()
133 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
134 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI : in EmitTargetCodeForMemset()
137 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
[all …]
/external/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp97 getBoundaryInstrs(ArrayRef<Value *> Chain);
100 void eraseInstructions(ArrayRef<Value *> Chain);
107 splitOddVectorElts(ArrayRef<Value *> Chain, unsigned ElementSizeBits);
113 unsigned getVectorizablePrefixEndIdx(ArrayRef<Value *> Chain,
128 bool vectorizeLoadChain(ArrayRef<Value *> Chain,
132 bool vectorizeStoreChain(ArrayRef<Value *> Chain,
375 Vectorizer::getBoundaryInstrs(ArrayRef<Value *> Chain) { in getBoundaryInstrs() argument
376 Instruction *C0 = cast<Instruction>(Chain[0]); in getBoundaryInstrs()
383 if (!is_contained(Chain, &I)) in getBoundaryInstrs()
390 if (NumFound == Chain.size()) { in getBoundaryInstrs()
[all …]
/external/llvm/lib/Target/X86/
DX86SelectionDAGInfo.cpp48 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemset() argument
88 CLI.setDebugLoc(dl).setChain(Chain) in EmitTargetCodeForMemset()
143 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, dl, AVT), in EmitTargetCodeForMemset()
145 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
149 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag); in EmitTargetCodeForMemset()
150 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
153 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX, in EmitTargetCodeForMemset()
155 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
156 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI : X86::EDI, in EmitTargetCodeForMemset()
158 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp27 unsigned Loop, SDValue Chain, SDValue Dst, in emitMemMem() argument
42 return DAG.getNode(Loop, DL, MVT::Other, Chain, Dst, Src, in emitMemMem()
45 return DAG.getNode(Sequence, DL, MVT::Other, Chain, Dst, Src, in emitMemMem()
50 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemcpy() argument
58 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
65 static SDValue memsetStore(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in memsetStore() argument
71 return DAG.getStore(Chain, DL, in memsetStore()
78 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, in EmitTargetCodeForMemset() argument
101 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
108 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
[all …]
/external/caliper/caliper/src/main/java/com/google/caliper/memory/
DChain.java33 public abstract class Chain { class
35 private final Chain parent;
37 Chain(Chain parent, Object value) { in Chain() method in Chain
42 static Chain root(Object value) { in root()
43 return new Chain(null, Preconditions.checkNotNull(value)) { in root()
71 public @Nonnull Chain getParent() {
114 Chain current = this;
121 Deque<Chain> reverse() {
122 Deque<Chain> reverseChain = new ArrayDeque<Chain>(8);
123 Chain current = this;
[all …]
DObjectExplorer.java100 Deque<Chain> stack = new ArrayDeque<Chain>(32); in exploreObject()
101 if (rootObject != null) stack.push(Chain.root(rootObject)); in exploreObject()
104 Chain chain = stack.pop(); in exploreObject()
157 Chain extendedChain = chain.appendField(field, childValue); in exploreObject()
175 static class AtMostOncePredicate implements Predicate<Chain> {
179 @Override public boolean apply(Chain chain) { in apply()
184 static final Predicate<Chain> notEnumFieldsOrClasses = new Predicate<Chain>() {
185 @Override public boolean apply(Chain chain) {
191 static final Function<Chain, Object> chainToObject =
192 new Function<Chain, Object>() {
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp27 unsigned Loop, SDValue Chain, SDValue Dst, in emitMemMem() argument
42 return DAG.getNode(Loop, DL, MVT::Other, Chain, Dst, Src, in emitMemMem()
45 return DAG.getNode(Sequence, DL, MVT::Other, Chain, Dst, Src, in emitMemMem()
50 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemcpy() argument
58 Chain, Dst, Src, CSize->getZExtValue()); in EmitTargetCodeForMemcpy()
65 static SDValue memsetStore(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in memsetStore() argument
72 Chain, DL, DAG.getConstant(StoreVal, DL, MVT::getIntegerVT(Size * 8)), in memsetStore()
77 SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, in EmitTargetCodeForMemset() argument
100 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset()
107 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp163 getBoundaryInstrs(ArrayRef<Instruction *> Chain);
166 void eraseInstructions(ArrayRef<Instruction *> Chain);
173 splitOddVectorElts(ArrayRef<Instruction *> Chain, unsigned ElementSizeBits);
181 ArrayRef<Instruction *> getVectorizablePrefix(ArrayRef<Instruction *> Chain);
195 vectorizeLoadChain(ArrayRef<Instruction *> Chain,
200 vectorizeStoreChain(ArrayRef<Instruction *> Chain,
511 Vectorizer::getBoundaryInstrs(ArrayRef<Instruction *> Chain) { in getBoundaryInstrs() argument
512 Instruction *C0 = Chain[0]; in getBoundaryInstrs()
519 if (!is_contained(Chain, &I)) in getBoundaryInstrs()
526 if (NumFound == Chain.size()) { in getBoundaryInstrs()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86SelectionDAGInfo.cpp66 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Val, in EmitTargetCodeForMemset() argument
108 .setChain(Chain) in EmitTargetCodeForMemset()
163 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, dl, AVT), in EmitTargetCodeForMemset()
165 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
169 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Val, InFlag); in EmitTargetCodeForMemset()
170 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
173 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX, in EmitTargetCodeForMemset()
175 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
176 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI : X86::EDI, in EmitTargetCodeForMemset()
178 InFlag = Chain.getValue(1); in EmitTargetCodeForMemset()
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64A57FPLoadBalancing.cpp112 class Chain;
143 bool colorChainSet(std::vector<Chain*> GV, MachineBasicBlock &MBB,
145 bool colorChain(Chain *G, Color C, MachineBasicBlock &MBB);
146 int scavengeRegister(Chain *G, Color C, MachineBasicBlock &MBB);
148 std::map<unsigned, Chain*> &Active,
149 std::vector<std::unique_ptr<Chain>> &AllChains);
151 std::map<unsigned, Chain*> &RegChains);
153 Chain *getAndEraseNext(Color PreferredColor, std::vector<Chain*> &L);
190 class Chain { class
208 Chain(MachineInstr *MI, unsigned Idx, Color C) in Chain() function in __anon29e4c6140211::Chain
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64A57FPLoadBalancing.cpp108 class Chain;
139 bool colorChainSet(std::vector<Chain*> GV, MachineBasicBlock &MBB,
141 bool colorChain(Chain *G, Color C, MachineBasicBlock &MBB);
142 int scavengeRegister(Chain *G, Color C, MachineBasicBlock &MBB);
144 std::map<unsigned, Chain*> &Active,
145 std::vector<std::unique_ptr<Chain>> &AllChains);
147 std::map<unsigned, Chain*> &RegChains);
149 Chain *getAndEraseNext(Color PreferredColor, std::vector<Chain*> &L);
186 class Chain { class
204 Chain(MachineInstr *MI, unsigned Idx, Color C) in Chain() function in __anon7a5bb96c0211::Chain
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineBlockPlacement.cpp270 void merge(MachineBasicBlock *BB, BlockChain *Chain) { in merge() argument
275 if (!Chain) { in merge()
283 assert(BB == *Chain->begin() && "Passed BB is not head of Chain."); in merge()
284 assert(Chain->begin() != Chain->end()); in merge()
288 for (MachineBasicBlock *ChainBB : *Chain) { in merge()
290 assert(BlockToChain[ChainBB] == Chain && "Incoming blocks not in chain."); in merge()
400 const BlockChain &Chain, const MachineBasicBlock *LoopHeaderBB,
406 const BlockChain &Chain, const MachineBasicBlock *BB,
412 const MachineBasicBlock *BB, const BlockChain &Chain,
417 const BlockChain &Chain, const BlockFilterSet *BlockFilter,
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
DAlphaISelDAGToDAG.cpp231 SDValue Chain = CurDAG->getEntryNode(); in Select() local
235 Chain = CurDAG->getCopyToReg(Chain, dl, Alpha::R24, N1, in Select()
237 Chain = CurDAG->getCopyToReg(Chain, dl, Alpha::R25, N2, in Select()
238 Chain.getValue(1)); in Select()
239 Chain = CurDAG->getCopyToReg(Chain, dl, Alpha::R27, N0, in Select()
240 Chain.getValue(1)); in Select()
243 Chain, Chain.getValue(1)); in Select()
244 Chain = CurDAG->getCopyFromReg(Chain, dl, Alpha::R27, MVT::i64, in Select()
246 return CurDAG->SelectNodeTo(N, Alpha::BISr, MVT::i64, Chain, Chain); in Select()
250 SDValue Chain = N->getOperand(0); in Select() local
[all …]
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
Dchain_test.py24 from tensorflow.contrib.distributions.python.ops.bijectors.chain import Chain
50 chain = Chain((Exp(), Softplus()))
65 chain = Chain()
78 chain = Chain((Exp(), Softplus()))
84 chain = Chain([
100 chain = Chain([Exp(), Exp(), Exp()])
104 chain = Chain([Affine(), Affine(), Affine()])
108 chain = Chain([Exp(), Affine()])
112 chain = Chain([Affine(), Exp()])
116 chain = Chain([Affine(), Exp(), Softplus(), Affine()])
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
DARCISelLowering.cpp37 static SDValue lowerCallResult(SDValue Chain, SDValue InFlag,
199 SDValue Chain = Op.getOperand(0); in LowerBR_CC() local
207 return DAG.getNode(ARCISD::BRcc, dl, MVT::Other, Chain, Dest, LHS, RHS, in LowerBR_CC()
231 SDValue Chain = CLI.Chain; in LowerCall() local
256 Chain = DAG.getCALLSEQ_START(Chain, NumBytes, 0, dl); in LowerCall()
291 StackPtr = DAG.getCopyFromReg(Chain, dl, ARC::SP, in LowerCall()
299 DAG.getStore(Chain, dl, Arg, PtrOff, MachinePointerInfo()); in LowerCall()
308 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains); in LowerCall()
316 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, in LowerCall()
318 Glue = Chain.getValue(1); in LowerCall()
[all …]
/external/llvm/lib/CodeGen/
DMachineBlockPlacement.cpp190 void merge(MachineBasicBlock *BB, BlockChain *Chain) { in merge() argument
195 if (!Chain) { in merge()
202 assert(BB == *Chain->begin()); in merge()
203 assert(Chain->begin() != Chain->end()); in merge()
207 for (MachineBasicBlock *ChainBB : *Chain) { in merge()
209 assert(BlockToChain[ChainBB] == Chain && "Incoming blocks not in chain"); in merge()
286 void markChainSuccessors(BlockChain &Chain, MachineBasicBlock *LoopHeaderBB,
289 collectViableSuccessors(MachineBasicBlock *BB, BlockChain &Chain,
293 BlockChain &Chain,
300 BranchProbability RealSuccProb, BlockChain &Chain,
[all …]
/external/clang/include/clang/Serialization/
DModuleManager.h35 SmallVector<ModuleFile *, 2> Chain; variable
124 ModuleIterator begin() { return Chain.begin(); } in begin()
126 ModuleIterator end() { return Chain.end(); } in end()
129 ModuleConstIterator begin() const { return Chain.begin(); } in begin()
131 ModuleConstIterator end() const { return Chain.end(); } in end()
134 ModuleReverseIterator rbegin() { return Chain.rbegin(); } in rbegin()
136 ModuleReverseIterator rend() { return Chain.rend(); } in rend()
145 ModuleFile &getPrimaryModule() { return *Chain[0]; } in getPrimaryModule()
149 ModuleFile &getPrimaryModule() const { return *Chain[0]; } in getPrimaryModule()
152 ModuleFile &operator[](unsigned Index) const { return *Chain[Index]; }
[all …]
/external/llvm/lib/Target/NVPTX/
DNVPTXISelDAGToDAG.cpp734 SDValue Chain = N->getOperand(0); in tryLoad() local
766 getI32Imm(fromTypeWidth, dl), Addr, Chain }; in tryLoad()
794 getI32Imm(fromTypeWidth, dl), Base, Offset, Chain }; in tryLoad()
847 getI32Imm(fromTypeWidth, dl), Base, Offset, Chain }; in tryLoad()
899 getI32Imm(fromTypeWidth, dl), N1, Chain }; in tryLoad()
916 SDValue Chain = N->getOperand(0); in tryLoadVector() local
1031 getI32Imm(FromTypeWidth, DL), Addr, Chain }; in tryLoadVector()
1084 getI32Imm(FromTypeWidth, DL), Base, Offset, Chain }; in tryLoadVector()
1186 getI32Imm(FromTypeWidth, DL), Base, Offset, Chain }; in tryLoadVector()
1288 getI32Imm(FromTypeWidth, DL), Op1, Chain }; in tryLoadVector()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
DBlackfinISelLowering.cpp164 BlackfinTargetLowering::LowerFormalArguments(SDValue Chain, in LowerFormalArguments() argument
193 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT); in LowerFormalArguments()
214 InVals.push_back(DAG.getLoad(VA.getValVT(), dl, Chain, FIN, in LowerFormalArguments()
220 return Chain; in LowerFormalArguments()
224 BlackfinTargetLowering::LowerReturn(SDValue Chain, in LowerReturn() argument
269 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), Opi, SDValue()); in LowerReturn()
271 Flag = Chain.getValue(1); in LowerReturn()
275 return DAG.getNode(BFISD::RET_FLAG, dl, MVT::Other, Chain, Flag); in LowerReturn()
277 return DAG.getNode(BFISD::RET_FLAG, dl, MVT::Other, Chain); in LowerReturn()
282 BlackfinTargetLowering::LowerCall(SDValue Chain, SDValue Callee, in LowerCall() argument
[all …]
/external/llvm/lib/Target/BPF/
DBPFISelLowering.cpp152 SDValue Chain, CallingConv::ID CallConv, bool IsVarArg, in LowerFormalArguments() argument
184 SDValue ArgValue = DAG.getCopyFromReg(Chain, DL, VReg, RegVT); in LowerFormalArguments()
211 return Chain; in LowerFormalArguments()
222 SDValue Chain = CLI.Chain; in LowerCall() local
260 Chain = DAG.getCALLSEQ_START( in LowerCall()
261 Chain, DAG.getConstant(NumBytes, CLI.DL, PtrVT, true), CLI.DL); in LowerCall()
302 Chain = DAG.getCopyToReg(Chain, CLI.DL, Reg.first, Reg.second, InFlag); in LowerCall()
303 InFlag = Chain.getValue(1); in LowerCall()
318 Ops.push_back(Chain); in LowerCall()
329 Chain = DAG.getNode(BPFISD::CALL, CLI.DL, NodeTys, Ops); in LowerCall()
[all …]
/external/llvm/lib/Target/ARM/
DARMSelectionDAGInfo.cpp25 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitSpecializedLibcall() argument
116 .setChain(Chain) in EmitSpecializedLibcall()
129 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemcpy() argument
142 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align, in EmitTargetCodeForMemcpy()
146 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align, in EmitTargetCodeForMemcpy()
186 Dst = DAG.getNode(ARMISD::MEMCPY, dl, VTs, Chain, Dst, Src, in EmitTargetCodeForMemcpy()
189 Chain = Dst.getValue(2); in EmitTargetCodeForMemcpy()
198 return Chain; in EmitTargetCodeForMemcpy()
212 Loads[i] = DAG.getLoad(VT, dl, Chain, in EmitTargetCodeForMemcpy()
222 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, in EmitTargetCodeForMemcpy()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMSelectionDAGInfo.cpp25 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitSpecializedLibcall() argument
116 .setChain(Chain) in EmitSpecializedLibcall()
129 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, in EmitTargetCodeForMemcpy() argument
142 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align, in EmitTargetCodeForMemcpy()
146 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align, in EmitTargetCodeForMemcpy()
186 Dst = DAG.getNode(ARMISD::MEMCPY, dl, VTs, Chain, Dst, Src, in EmitTargetCodeForMemcpy()
189 Chain = Dst.getValue(2); in EmitTargetCodeForMemcpy()
198 return Chain; in EmitTargetCodeForMemcpy()
213 Loads[i] = DAG.getLoad(VT, dl, Chain, in EmitTargetCodeForMemcpy()
222 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, in EmitTargetCodeForMemcpy()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
DSparcISelLowering.cpp81 SparcTargetLowering::LowerReturn(SDValue Chain, in LowerReturn() argument
114 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), in LowerReturn()
118 Flag = Chain.getValue(1); in LowerReturn()
128 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy()); in LowerReturn()
129 Chain = DAG.getCopyToReg(Chain, dl, SP::I0, Val, Flag); in LowerReturn()
130 Flag = Chain.getValue(1); in LowerReturn()
139 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain, in LowerReturn()
141 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain, in LowerReturn()
149 SparcTargetLowering::LowerFormalArguments(SDValue Chain, in LowerFormalArguments() argument
176 SDValue Arg = DAG.getLoad(MVT::i32, dl, Chain, FIPtr, in LowerFormalArguments()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DSelectionDAGTargetInfo.h53 SDValue Chain, SDValue Op1, in EmitTargetCodeForMemcpy() argument
69 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, in EmitTargetCodeForMemmove() argument
82 SDValue Chain, SDValue Op1, in EmitTargetCodeForMemset() argument
94 EmitTargetCodeForMemcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForMemcmp() argument
106 EmitTargetCodeForMemchr(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForMemchr() argument
119 EmitTargetCodeForStrcpy(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrcpy() argument
131 EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForStrcmp() argument
139 EmitTargetCodeForStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrlen() argument
145 EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrnlen() argument
/external/llvm/include/llvm/CodeGen/
DSelectionDAGTargetInfo.h50 SDValue Chain, SDValue Op1, in EmitTargetCodeForMemcpy() argument
66 SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, in EmitTargetCodeForMemmove() argument
79 SDValue Chain, SDValue Op1, in EmitTargetCodeForMemset() argument
91 EmitTargetCodeForMemcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForMemcmp() argument
103 EmitTargetCodeForMemchr(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForMemchr() argument
116 EmitTargetCodeForStrcpy(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrcpy() argument
128 EmitTargetCodeForStrcmp(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, in EmitTargetCodeForStrcmp() argument
136 EmitTargetCodeForStrlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrlen() argument
142 EmitTargetCodeForStrnlen(SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, in EmitTargetCodeForStrnlen() argument

12345678910>>...15