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

1 2 3 4

  /external/clang/include/clang/Serialization/
ModuleManager.h 28 /// \brief The chain of AST files. The first entry is the one named by the
30 llvm::SmallVector<ModuleFile*, 2> Chain;
53 ModuleIterator begin() { return Chain.begin(); }
55 ModuleIterator end() { return Chain.end(); }
59 ModuleConstIterator begin() const { return Chain.begin(); }
61 ModuleConstIterator end() const { return Chain.end(); }
65 ModuleReverseIterator rbegin() { return Chain.rbegin(); }
67 ModuleReverseIterator rend() { return Chain.rend(); }
71 ModuleFile &getPrimaryModule() { return *Chain[0]; }
75 ModuleFile &getPrimaryModule() const { return *Chain[0];
    [all...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 31 SDValue Chain,
66 CallLoweringInfo CLI(Chain, Type::getVoidTy(*DAG.getContext()),
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
    [all...]
X86SelectionDAGInfo.h 38 SDValue Chain,
46 SDValue Chain,
  /external/llvm/include/llvm/Target/
TargetSelectionDAGInfo.h 58 SDValue Chain,
75 SDValue Chain,
91 SDValue Chain,
  /external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.h 30 SDValue Chain,
HexagonSelectionDAGInfo.cpp 30 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain,
  /external/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 23 // first time it reaches a chain of basic blocks, it schedules them in the
57 /// \brief Type for our function-wide basic block -> block chain mapping.
62 /// \brief A chain of blocks which will be laid out contiguously.
64 /// This is the datastructure representing a chain of consecutive blocks that
66 /// probabilities and code locality. We also can use a block chain to represent
71 /// them. They participate in a block-to-chain mapping, which is updated
74 /// \brief The sequence of blocks belonging to this chain.
76 /// This is the sequence of blocks for a particular chain. These will be laid
80 /// \brief A handle to the function-wide basic block to block chain mapping.
82 /// This is retained in each block chain to simplify the computation of chil
    [all...]
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.h 49 SDValue Chain,
59 SDValue Chain,
ARMSelectionDAGInfo.cpp 30 SDValue Chain,
66 Loads[i] = DAG.getLoad(VT, dl, Chain,
74 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
78 TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
85 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
91 return Chain;
105 Loads[i] = DAG.getLoad(VT, dl, Chain,
115 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
128 TFOps[i] = DAG.getStore(Chain, dl, Loads[i],
144 SDValue Chain, SDValue Dst
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 50 private Hashtable Chain = new Hashtable();
71 if (Chain.containsKey(alias)) {
72 return (Certificate[]) Chain.get(alias);
92 Certificate[] chain) throws KeyStoreException {
97 if (chain != null) {
98 Chain.put(alias, chain);
103 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
111 if (Chain.containsKey(alias)) {
112 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/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 226 SDValue Chain = Node->getOperand(0);
238 SDValue Ops[] = { Callee, GPReg, Chain };
241 Chain = Load.getValue(1);
244 Chain = CurDAG->getCopyToReg(Chain, dl, R20Reg, Load, InFlag);
247 Chain = CurDAG->getCopyToReg(Chain, dl, R20Reg, Callee, InFlag);
251 MVT::Glue, R20Reg, Chain);
252 Chain = SDValue(ResNode, 0);
254 ReplaceUses(SDValue(Node, 0), Chain);
    [all...]
MBlazeISelLowering.cpp 691 SDValue Chain = CLI.Chain;
720 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
768 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
782 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
786 // chain and flag operands which copy the outgoing args into registers.
791 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
793 InFlag = Chain.getValue(1)
    [all...]
MBlazeISelLowering.h 113 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
128 LowerFormalArguments(SDValue Chain,
139 LowerReturn(SDValue Chain,
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 449 SDValue Chain = CLI.Chain;
458 SDValue tempChain = Chain;
459 Chain = DAG.getCALLSEQ_START(Chain,
461 SDValue InFlag = Chain.getValue(1);
481 SDValue DeclareParamOps[] = { Chain,
486 Chain = DAG.getNode(NVPTXISD::DeclareScalarParam, dl, DeclareParamVTs,
488 InFlag = Chain.getValue(1);
490 SDValue CopyParamOps[] = { Chain, DAG.getConstant(paramCount, MVT::i32)
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 80 SparcTargetLowering::LowerReturn(SDValue Chain,
113 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
117 Flag = Chain.getValue(1);
127 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
128 Chain = DAG.getCopyToReg(Chain, dl, SP::I0, Val, Flag);
129 Flag = Chain.getValue(1);
138 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain,
140 return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain,
    [all...]
SparcISelLowering.h 71 LowerFormalArguments(SDValue Chain,
83 LowerReturn(SDValue Chain,
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 233 /// Given a chain return a new chain where any appearance of Old is replaced
234 /// by New. There must be at most one instruction between Old and Chain and
238 replaceInChain(SelectionDAG *CurDAG, SDValue Chain, SDValue Old, SDValue New)
240 if (Chain == Old)
242 if (Chain->getOpcode() != ISD::TokenFactor)
246 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i) {
247 if (Chain->getOperand(i) == Old) {
251 Ops.push_back(Chain->getOperand(i));
256 return CurDAG->getNode(ISD::TokenFactor, Chain->getDebugLoc(), MVT::Other
    [all...]
XCoreISelLowering.cpp 331 SDValue Chain = Op.getOperand(0);
343 return DAG.getNode(XCoreISD::BR_JT, dl, MVT::Other, Chain, TargetJT, Index);
348 return DAG.getNode(XCoreISD::BR_JT32, dl, MVT::Other, Chain, TargetJT,
414 SDValue Chain = LD->getChain();
426 return DAG.getLoad(getPointerTy(), DL, Chain, BasePtr,
444 SDValue Low = DAG.getLoad(getPointerTy(), DL, Chain,
447 SDValue High = DAG.getLoad(getPointerTy(), DL, Chain,
453 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
455 SDValue Ops[] = { Result, Chain };
460 SDValue Low = DAG.getExtLoad(ISD::ZEXTLOAD, DL, MVT::i32, Chain,
    [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
125 SDValue LowerCCCCallTo(SDValue Chain, SDValue Callee,
134 SDValue LowerCCCArguments(SDValue Chain,
142 SDValue LowerCallResult(SDValue Chain, SDValue InFlag,
149 LowerFormalArguments(SDValue Chain,
159 LowerReturn(SDValue Chain,
MSP430ISelLowering.cpp 245 MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
260 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
263 return Chain;
276 SDValue Chain = CLI.Chain;
290 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
302 MSP430TargetLowering::LowerCCCArguments(SDValue Chain,
340 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
373 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
379 return Chain;
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 291 /// getEntryNode - Return the token chain corresponding to the entry of the
301 "DAG root value is not a chain!");
442 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N) {
443 return getNode(ISD::CopyToReg, dl, MVT::Other, Chain,
450 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N,
453 SDValue Ops[] = { Chain, getRegister(Reg, N.getValueType()), N, Glue };
458 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, SDValue Reg, SDValue N,
461 SDValue Ops[] = { Chain, Reg, N, Glue };
465 SDValue getCopyFromReg(SDValue Chain, DebugLoc dl, unsigned Reg, EVT VT) {
467 SDValue Ops[] = { Chain, getRegister(Reg, VT) }
    [all...]
  /external/clang/lib/Serialization/
ModuleManager.cpp 53 Chain.push_back(New);
101 for (unsigned i = 0, e = Chain.size(); i != e; ++i)
102 delete Chain[e - i - 1];
202 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
203 if (!Visited.insert(Chain[I]))
206 if (::visitDepthFirst(*Chain[I], Visitor, UserData, Visited))
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.h 44 /// chain, then an f64 value to store, then an address to store it to.
79 /// OPRC, CHAIN = DYNALLOC(CHAIN, NEGSIZE, FRAME_INDEX)
105 /// CHAIN,FLAG = MTCTR(VAL, CHAIN[, INFLAG]) - Directly corresponds to a
109 /// CHAIN,FLAG = BCTRL(CHAIN, INFLAG) - Directly corresponds to a
134 /// CHAIN = COND_BRANCH CHAIN, CRRC, OPC, DESTBB [, INFLAG] - This
171 /// operand #0 chain
    [all...]
PPCISelLowering.cpp     [all...]

Completed in 433 milliseconds

1 2 3 4