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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.cpp81 SmallVector<SDValue, 8> OutChains; local
92 OutChains.push_back(St);
104 OutChains.push_back(St);
108 SDValue Res = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp842 SDValue OutChains[] = { local
847 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
880 SDValue OutChains[5]; local
885 OutChains[0] =
891 OutChains[1] =
897 OutChains[2] =
903 OutChains[3] =
908 OutChains[4] =
911 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp552 std::vector<SDValue> OutChains; local
563 OutChains.push_back(
568 if (!OutChains.empty()) {
569 OutChains.push_back(Chain);
570 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
669 SmallVector<SDValue, 8> OutChains; local
675 OutChains.push_back(
680 if (!OutChains.empty())
681 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, OutChains);
2761 SDValue OutChains[ local
2803 SDValue OutChains[2]; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.h578 std::vector<SDValue> &OutChains, SelectionDAG &DAG,
597 void writeVarArgRegs(std::vector<SDValue> &OutChains, SDValue Chain,
H A DMipsISelLowering.cpp3602 std::vector<SDValue> OutChains; local
3642 copyByValRegs(Chain, DL, OutChains, DAG, Flags, InVals, &*FuncArg,
3703 OutChains.push_back(ArgValue.getValue(1));
3729 writeVarArgRegs(OutChains, Chain, DL, DAG, CCInfo);
3733 if (!OutChains.empty()) {
3734 OutChains.push_back(Chain);
3735 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, OutChains);
4304 SDValue Chain, const SDLoc &DL, std::vector<SDValue> &OutChains,
4351 OutChains.push_back(Store);
4452 void MipsTargetLowering::writeVarArgRegs(std::vector<SDValue> &OutChains, argument
4303 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...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp1944 std::vector<SDValue> OutChains; local
2039 OutChains.push_back(Store);
2046 if (!OutChains.empty()) {
2047 OutChains.push_back(Chain);
2048 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, OutChains);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp5844 SmallVector<SDValue, 32> &OutChains, unsigned From,
5851 OutChains.push_back(OutLoadChains[i]);
5864 OutChains.push_back(NewStore);
5934 SmallVector<SDValue, 32> OutChains;
5972 OutChains.push_back(Store);
6018 OutChains.push_back(OutLoadChains[i]);
6019 OutChains.push_back(OutStoreChains[i]);
6024 chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, 0,
6036 chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, IndexFrom, IndexTo,
6043 chainLoadsAndStoresForMemcpy(DAG, dl, OutChains,
[all...]
H A DSelectionDAGBuilder.cpp8465 SmallVector<SDValue, 8> OutChains; local
8536 OutChains.push_back(Store);
8562 if (!OutChains.empty())
8563 Chain = DAG.getNode(ISD::TokenFactor, getCurSDLoc(), MVT::Other, OutChains);
8566 if (ResultValues.empty() || HasSideEffect || !OutChains.empty() || IsCallBr)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2476 std::vector<SDValue> OutChains; local
2654 if (!OutChains.empty())
2655 DAG.setRoot(DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp25243 SDValue OutChains[6];
25257 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
25262 OutChains[1] =
25271 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
25276 OutChains[3] =
25284 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, dl, MVT::i16),
25290 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, dl, MVT::i8),
25293 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
25342 SDValue OutChains[4];
25352 OutChains[
[all...]

Completed in 279 milliseconds