Searched refs:SrcAS (Results 1 - 13 of 13) sorted by relevance

/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h241 /// Returns true if a cast between SrcAS and DestAS is a noop.
242 bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override {
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.h358 /// Returns true if a cast between SrcAS and DestAS is a noop.
359 bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override {
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.h794 bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override;
H A DX86ISelLowering.cpp1835 bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS, argument
1837 assert(SrcAS != DestAS && "Expected different address spaces!");
1839 return SrcAS < 256 && DestAS < 256;
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp1063 unsigned SrcAS = SrcPtr->getType()->getPointerAddressSpace(); local
1064 if (SrcAS == DestTy->getPointerAddressSpace())
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h842 unsigned SrcAS, unsigned DestAS);
H A DSelectionDAGNodes.h1030 unsigned SrcAS, unsigned DestAS);
/external/llvm/include/llvm/Target/
H A DTargetLowering.h907 /// Returns true if a cast between SrcAS and DestAS is a noop.
908 virtual bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const { argument
/external/llvm/lib/IR/
H A DConstants.cpp1544 unsigned SrcAS = S->getType()->getPointerAddressSpace(); local
1545 if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
H A DVerifier.cpp989 unsigned SrcAS = SrcTy->getPointerAddressSpace(); local
992 Assert1(SrcAS == DstAS,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1729 unsigned SrcAS, unsigned DestAS) {
1733 ID.AddInteger(SrcAS);
1742 VT, Ptr, SrcAS, DestAS);
6207 SDValue X, unsigned SrcAS,
6210 SrcAddrSpace(SrcAS), DestAddrSpace(DestAS) {}
1728 getAddrSpaceCast(SDLoc dl, EVT VT, SDValue Ptr, unsigned SrcAS, unsigned DestAS) argument
6206 AddrSpaceCastSDNode(unsigned Order, DebugLoc dl, EVT VT, SDValue X, unsigned SrcAS, unsigned DestAS) argument
H A DSelectionDAGBuilder.cpp3036 unsigned SrcAS = SV->getType()->getPointerAddressSpace();
3039 if (!TLI.isNoopAddrSpaceCast(SrcAS, DestAS))
3040 N = DAG.getAddrSpaceCast(getCurSDLoc(), DestVT, N, SrcAS, DestAS);
5679 unsigned SrcAS = RHS->getType()->getPointerAddressSpace();
5683 !TLI->allowsUnalignedMemoryAccesses(LoadVT, SrcAS) ||
/external/clang/lib/Sema/
H A DSemaExpr.cpp4964 unsigned SrcAS = SrcTy->getPointeeType().getAddressSpace(); local
4966 if (SrcAS != DestAS)

Completed in 1123 milliseconds