Searched refs:OutChains (Results 1 - 15 of 15) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeISelLowering.cpp878 std::vector<SDValue> OutChains; local
981 OutChains.push_back(DAG.getStore(Chain, dl, ArgValue, PtrOff,
994 if (!OutChains.empty()) {
995 OutChains.push_back(Chain);
997 &OutChains[0], OutChains.size());
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp869 SDValue OutChains[] = { local
874 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
907 SDValue OutChains[5]; local
912 OutChains[0] = DAG.getStore(Chain, dl,
918 OutChains[1] = DAG.getStore(Chain, dl,
924 OutChains[2] = DAG.getStore(Chain, dl,
930 OutChains[3] = DAG.getStore(Chain, dl, Nest, Addr,
936 OutChains[4] = DAG.getStore(Chain, dl, FPtr, Addr,
940 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
H A DSparcISelLowering.cpp321 std::vector<SDValue> OutChains; local
332 OutChains.push_back(DAG.getStore(DAG.getRoot(), dl, Arg, FIPtr,
338 if (!OutChains.empty()) {
339 OutChains.push_back(Chain);
341 &OutChains[0], OutChains.size());
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.h465 std::vector<SDValue> &OutChains, SelectionDAG &DAG,
484 void writeVarArgRegs(std::vector<SDValue> &OutChains, SDValue Chain,
H A DMipsISelLowering.cpp3032 std::vector<SDValue> OutChains; local
3072 copyByValRegs(Chain, DL, OutChains, DAG, Flags, InVals, &*FuncArg,
3134 OutChains.push_back(ArgValue.getValue(1));
3160 writeVarArgRegs(OutChains, Chain, DL, DAG, CCInfo);
3164 if (!OutChains.empty()) {
3165 OutChains.push_back(Chain);
3166 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, OutChains);
3721 SDValue Chain, const SDLoc &DL, std::vector<SDValue> &OutChains,
3764 OutChains.push_back(Store);
3867 void MipsTargetLowering::writeVarArgRegs(std::vector<SDValue> &OutChains, argument
3720 copyByValRegs( SDValue Chain, const SDLoc &DL, std::vector<SDValue> &OutChains, SelectionDAG &DAG, const ISD::ArgFlagsTy &Flags, SmallVectorImpl<SDValue> &InVals, const Argument *FuncArg, unsigned FirstReg, unsigned LastReg, const CCValAssign &VA, MipsCCState &State) const argument
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp558 std::vector<SDValue> OutChains; local
569 OutChains.push_back(DAG.getStore(DAG.getRoot(), dl, Arg, FIPtr,
575 if (!OutChains.empty()) {
576 OutChains.push_back(Chain);
577 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
676 SmallVector<SDValue, 8> OutChains; local
682 OutChains.push_back(DAG.getStore(
687 if (!OutChains.empty())
688 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, OutChains);
2778 SDValue OutChains[ local
2820 SDValue OutChains[2]; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
H A DXCoreISelLowering.cpp819 SDValue OutChains[5]; local
824 OutChains[0] = DAG.getStore(Chain, dl, DAG.getConstant(0x0a3cd805, MVT::i32),
830 OutChains[1] = DAG.getStore(Chain, dl, DAG.getConstant(0xd80456c0, MVT::i32),
836 OutChains[2] = DAG.getStore(Chain, dl, DAG.getConstant(0x27fb0a3c, MVT::i32),
842 OutChains[3] = DAG.getStore(Chain, dl, Nest, Addr,
848 OutChains[4] = DAG.getStore(Chain, dl, FPtr, Addr,
852 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 5);
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsISelLowering.cpp2217 std::vector<SDValue>& OutChains,
2236 OutChains.push_back(Store);
2258 std::vector<SDValue> OutChains; local
2345 ReadByValArg(MF, Chain, dl, OutChains, DAG, NumWords, FIN, VA, Flags);
2394 OutChains.push_back(DAG.getStore(Chain, dl, ArgValue, PtrOff,
2404 if (!OutChains.empty()) {
2405 OutChains.push_back(Chain);
2407 &OutChains[0], OutChains.size());
2216 ReadByValArg(MachineFunction &MF, SDValue Chain, DebugLoc dl, std::vector<SDValue>& OutChains, SelectionDAG &DAG, unsigned NumWords, SDValue FIN, const CCValAssign &VA, const ISD::ArgFlagsTy& Flags) argument
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3463 SmallVector<SDValue, 8> OutChains; local
3500 OutChains.push_back(Store);
3506 &OutChains[0], OutChains.size());
3555 SmallVector<SDValue, 8> OutChains; local
3572 OutChains.clear();
3581 OutChains.push_back(Store);
3586 &OutChains[0], OutChains.size());
3627 SmallVector<SDValue, 8> OutChains; local
[all...]
H A DSelectionDAGBuilder.cpp6271 SmallVector<SDValue, 8> OutChains; local
6278 OutChains.push_back(Val);
6281 if (!OutChains.empty())
6283 &OutChains[0], OutChains.size());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4353 SmallVector<SDValue, 8> OutChains; local
4396 OutChains.push_back(Value.getValue(1));
4402 OutChains.push_back(Store);
4408 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
4459 SmallVector<SDValue, 8> OutChains; local
4475 OutChains.clear();
4484 OutChains.push_back(Store);
4488 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
4548 SmallVector<SDValue, 8> OutChains; local
4584 OutChains
[all...]
H A DSelectionDAGBuilder.cpp7083 SmallVector<SDValue, 8> OutChains;
7090 OutChains.push_back(Val);
7093 if (!OutChains.empty())
7094 Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other, OutChains);
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelLowering.cpp9507 SDValue OutChains[6]; local
9521 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
9527 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9536 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
9542 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9550 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
9557 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
9561 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
9607 SDValue OutChains[4]; local
9617 OutChains[
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2079 std::vector<SDValue> OutChains;
2362 if (!OutChains.empty())
2363 DAG.setRoot(DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains));
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp18760 SDValue OutChains[6]; local
18774 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
18780 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
18789 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
18795 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
18803 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
18810 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, dl, MVT::i8),
18814 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
18862 SDValue OutChains[4]; local
18872 OutChains[
[all...]

Completed in 491 milliseconds