HomeSort by relevance Sort by last modified time
    Searched refs:Chain (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 34 SDValue Chain,
67 CLI.setDebugLoc(dl).setChain(Chain)
123 Chain = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
125 InFlag = Chain.getValue(1);
129 Chain = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
130 InFlag = Chain.getValue(1);
133 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX
    [all...]
X86SelectionDAGInfo.h 31 SDValue Chain,
38 SDValue Chain,
  /external/clang/include/clang/Serialization/
ModuleManager.h 32 /// \brief The chain of AST files. The first entry is the one named by the
34 SmallVector<ModuleFile *, 2> Chain;
93 /// \brief The first visit() state in the chain.
110 ModuleIterator begin() { return Chain.begin(); }
112 ModuleIterator end() { return Chain.end(); }
116 ModuleConstIterator begin() const { return Chain.begin(); }
118 ModuleConstIterator end() const { return Chain.end(); }
122 ModuleReverseIterator rbegin() { return Chain.rbegin(); }
124 ModuleReverseIterator rend() { return Chain.rend(); }
128 ModuleFile &getPrimaryModule() { return *Chain[0];
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 31 // Return the chain for the completed operation.
33 unsigned Loop, SDValue Chain, SDValue Dst,
48 return DAG.getNode(Loop, DL, MVT::Other, Chain, Dst, Src,
51 return DAG.getNode(Sequence, DL, MVT::Other, Chain, Dst, Src,
56 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
66 Chain, Dst, Src, CSize->getZExtValue());
71 // Chain, Dst, ByteVal and Size. These cases are expected to use
73 static SDValue memsetStore(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
80 return DAG.getStore(Chain, DL,
86 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
    [all...]
SystemZSelectionDAGInfo.h 28 SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
36 SDValue Chain, SDValue Dst, SDValue Byte,
41 EmitTargetCodeForMemcmp(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
47 EmitTargetCodeForMemchr(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
52 EmitTargetCodeForStrcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
59 EmitTargetCodeForStrcmp(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
65 EmitTargetCodeForStrlen(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
70 EmitTargetCodeForStrnlen(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
  /external/llvm/include/llvm/Target/
TargetSelectionDAGInfo.h 58 SDValue Chain,
75 SDValue Chain,
91 SDValue Chain,
101 /// the chain. Both SDValues can be null if a normal libcall should
105 SDValue Chain,
115 /// the chain. Both SDValues can be null if a normal libcall should
118 EmitTargetCodeForMemchr(SelectionDAG &DAG, SDLoc dl, SDValue Chain,
128 /// for stpcpy) and the second is the chain. Both SDValues can be null
131 EmitTargetCodeForStrcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain,
142 /// the chain. Both SDValues can be null if a normal libcall shoul
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.h 26 SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain,
AArch64SelectionDAGInfo.cpp 25 SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src,
52 CLI.setDebugLoc(dl).setChain(Chain)
  /external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.h 27 SDValue Chain,
HexagonSelectionDAGInfo.cpp 29 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain,
  /external/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 23 // first time it reaches a chain of basic blocks, it schedules them in the
71 /// \brief Type for our function-wide basic block -> block chain mapping.
76 /// \brief A chain of blocks which will be laid out contiguously.
78 /// This is the datastructure representing a chain of consecutive blocks that
80 /// probabilities and code locality. We also can use a block chain to represent
85 /// them. They participate in a block-to-chain mapping, which is updated
88 /// \brief The sequence of blocks belonging to this chain.
90 /// This is the sequence of blocks for a particular chain. These will be laid
94 /// \brief A handle to the function-wide basic block to block chain mapping.
96 /// This is retained in each block chain to simplify the computation of chil
    [all...]
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.h 44 SDValue Chain,
53 SDValue Chain,
ARMSelectionDAGInfo.cpp 29 SDValue Chain,
67 Loads[i] = DAG.getLoad(VT, dl, Chain,
75 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
80 TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
87 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
94 return Chain;
108 Loads[i] = DAG.getLoad(VT, dl, Chain,
118 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
132 TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
149 SDValue Chain, SDValue Dst
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.h 30 SDValue Chain,
XCoreISelDAGToDAG.cpp 207 /// Given a chain return a new chain where any appearance of Old is replaced
208 /// by New. There must be at most one instruction between Old and Chain and
212 replaceInChain(SelectionDAG *CurDAG, SDValue Chain, SDValue Old, SDValue New)
214 if (Chain == Old)
216 if (Chain->getOpcode() != ISD::TokenFactor)
220 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i) {
221 if (Chain->getOperand(i) == Old) {
225 Ops.push_back(Chain->getOperand(i));
230 return CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, Ops)
    [all...]
XCoreSelectionDAGInfo.cpp 26 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain,
45 CLI.setDebugLoc(dl).setChain(Chain)
XCoreISelLowering.cpp 352 SDValue Chain = Op.getOperand(0);
364 return DAG.getNode(XCoreISD::BR_JT, dl, MVT::Other, Chain, TargetJT, Index);
369 return DAG.getNode(XCoreISD::BR_JT32, dl, MVT::Other, Chain, TargetJT,
374 lowerLoadWordFromAlignedBasePlusOffset(SDLoc DL, SDValue Chain, SDValue Base,
378 return DAG.getLoad(getPointerTy(), DL, Chain, Base, MachinePointerInfo(),
400 SDValue Low = DAG.getLoad(getPointerTy(), DL, Chain,
403 SDValue High = DAG.getLoad(getPointerTy(), DL, Chain,
409 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
411 SDValue Ops[] = { Result, Chain };
438 SDValue Chain = LD->getChain()
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 49 private Hashtable Chain = new Hashtable();
70 if (Chain.containsKey(alias)) {
71 return (Certificate[]) Chain.get(alias);
91 Certificate[] chain) throws KeyStoreException {
96 if (chain != null) {
97 Chain.put(alias, chain);
102 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
110 if (Chain.containsKey(alias)) {
111 Chain.remove(alias)
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 51 private Hashtable<String, Object> Chain = new Hashtable<String, Object>();
72 if (Chain.containsKey(alias)) {
73 return (Certificate[]) Chain.get(alias);
93 Certificate[] chain) throws KeyStoreException {
98 if (chain != null) {
99 Chain.put(alias, chain);
104 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
112 if (Chain.containsKey(alias)) {
113 Chain.remove(alias)
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsgmt.c 67 // Place Lab identity at chain's end.
299 GAMUTCHAIN Chain;
308 memset(&Chain, 0, sizeof(GAMUTCHAIN));
326 Chain.Thereshold = 1.0;
329 Chain.Thereshold = ERR_THERESHOLD;
355 Chain.hInput = cmsCreateExtendedTransform(ContextID,
368 Chain.hForward = cmsCreateTransformTHR(ContextID,
375 Chain.hReverse = cmsCreateTransformTHR(ContextID, hGamut, dwFormat,
382 if (Chain.hInput && Chain.hForward && Chain.hReverse) {
    [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 82 New->Index = Chain.size();
86 Chain.push_back(New);
160 for (unsigned i = 0, n = Chain.size(); i != n; ++i) {
161 Chain[i]->ImportedBy.remove_if([&](ModuleFile *MF) {
186 // Remove the modules from the chain.
187 Chain.erase(first, last);
226 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
227 if (!GlobalIndex->loadedModuleFile(Chain[I])) {
228 ModulesInCommonWithGlobalIndex.push_back(Chain[I]);
244 for (unsigned i = 0, e = Chain.size(); i != e; ++i
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 27 /// Return with a flag operand. Operand 0 is the chain operand.
54 /// MSP430 conditional branches. Operand 0 is the chain operand, operand 1
126 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
135 SDValue LowerCCCArguments(SDValue Chain,
143 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
150 LowerFormalArguments(SDValue Chain,
159 SDValue LowerReturn(SDValue Chain,
MSP430ISelLowering.cpp 368 MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
383 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
386 return Chain;
399 SDValue Chain = CLI.Chain;
413 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
424 MSP430TargetLowering::LowerCCCArguments(SDValue Chain,
467 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
509 InVal = DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
518 return Chain;
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.h 93 LowerFormalArguments(SDValue Chain,
99 SDValue LowerFormalArguments_32(SDValue Chain,
105 SDValue LowerFormalArguments_64(SDValue Chain,
121 LowerReturn(SDValue Chain,
126 SDValue LowerReturn_32(SDValue Chain,
131 SDValue LowerReturn_64(SDValue Chain,
148 SDValue LowerF128_LibCallArg(SDValue Chain, ArgListTy &Args,
SparcISelLowering.cpp 171 SparcTargetLowering::LowerReturn(SDValue Chain,
177 return LowerReturn_64(Chain, CallConv, IsVarArg, Outs, OutVals, DL, DAG);
178 return LowerReturn_32(Chain, CallConv, IsVarArg, Outs, OutVals, DL, DAG);
182 SparcTargetLowering::LowerReturn_32(SDValue Chain,
200 SmallVector<SDValue, 4> RetOps(1, Chain);
209 Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(),
213 Flag = Chain.getValue(1);
224 SDValue Val = DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
225 Chain = DAG.getCopyToReg(Chain, DL, SP::I0, Val, Flag)
    [all...]

Completed in 1901 milliseconds

1 2 3 4 5