Searched refs:intVT (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 3253 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits()); in expandUnalignedLoad() local 3254 if (isTypeLegal(intVT) && isTypeLegal(LoadedVT)) { in expandUnalignedLoad() 3255 if (!isOperationLegalOrCustom(ISD::LOAD, intVT)) { in expandUnalignedLoad() 3263 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, in expandUnalignedLoad() 3275 MVT RegVT = getRegisterType(*DAG.getContext(), intVT); in expandUnalignedLoad() 3413 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); in expandUnalignedStore() local 3414 if (isTypeLegal(intVT)) { in expandUnalignedStore() 3415 if (!isOperationLegalOrCustom(ISD::STORE, intVT)) { in expandUnalignedStore() 3424 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val); in expandUnalignedStore()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 394 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); in ExpandUnalignedStore() local 395 if (TLI.isTypeLegal(intVT)) { in ExpandUnalignedStore() 399 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val); in ExpandUnalignedStore() 504 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits()); in ExpandUnalignedLoad() local 505 if (TLI.isTypeLegal(intVT)) { in ExpandUnalignedLoad() 508 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(), in ExpandUnalignedLoad() 521 EVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT); in ExpandUnalignedLoad()
|