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

/freebsd-10.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp956 unsigned DestAS = DestPtr->getType()->getPointerAddressSpace(); local
966 } else if (DestAS == 0 &&
985 Type *DestInt8PtrTy = Builder.getInt8PtrTy(DestAS);
1009 Type *IntPtr = Builder.getIntPtrTy(TD, DestAS);
/freebsd-10.3-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.h366 /// Returns true if a cast between SrcAS and DestAS is a noop.
367 virtual bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const {
/freebsd-10.3-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.h778 virtual bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const LLVM_OVERRIDE;
H A DX86ISelLowering.cpp1769 unsigned DestAS) const {
1770 assert(SrcAS != DestAS && "Expected different address spaces!");
1772 return SrcAS < 256 && DestAS < 256;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1055 unsigned DestAS = local
1057 llvm::Type *BP = Builder.getInt8PtrTy(DestAS);
/freebsd-10.3-release/contrib/llvm/include/llvm/Target/
H A DTargetLowering.h841 /// Returns true if a cast between SrcAS and DestAS is a noop.
842 virtual bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const {
/freebsd-10.3-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h818 unsigned SrcAS, unsigned DestAS);
H A DSelectionDAGNodes.h960 unsigned SrcAS, unsigned DestAS);
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1572 unsigned SrcAS, unsigned DestAS) {
1577 ID.AddInteger(DestAS);
1585 VT, Ptr, SrcAS, DestAS);
6063 unsigned DestAS)
6065 SrcAddrSpace(SrcAS), DestAddrSpace(DestAS) {}
1571 getAddrSpaceCast(SDLoc dl, EVT VT, SDValue Ptr, unsigned SrcAS, unsigned DestAS) argument
6061 AddrSpaceCastSDNode(unsigned Order, DebugLoc dl, EVT VT, SDValue X, unsigned SrcAS, unsigned DestAS) argument
H A DSelectionDAGBuilder.cpp2958 unsigned DestAS = I.getType()->getPointerAddressSpace();
2960 if (!TLI.isNoopAddrSpaceCast(SrcAS, DestAS))
2961 N = DAG.getAddrSpaceCast(getCurSDLoc(), DestVT, N, SrcAS, DestAS);

Completed in 366 milliseconds