Home | History | Annotate | Download | only in Basic

Lines Matching refs:AddrSpace

248   IntType getPtrDiffType(unsigned AddrSpace) const {
249 return AddrSpace == 0 ? PtrDiffType : getPtrDiffTypeV(AddrSpace);
251 IntType getUnsignedPtrDiffType(unsigned AddrSpace) const {
252 return getCorrespondingUnsignedType(getPtrDiffType(AddrSpace));
311 uint64_t getPointerWidth(unsigned AddrSpace) const {
312 return AddrSpace == 0 ? PointerWidth : getPointerWidthV(AddrSpace);
314 uint64_t getPointerAlign(unsigned AddrSpace) const {
315 return AddrSpace == 0 ? PointerAlign : getPointerAlignV(AddrSpace);
324 /// \param AddrSpace address space of pointee in source language.
325 virtual uint64_t getNullPointerValue(LangAS AddrSpace) const { return 0; }
1080 virtual uint64_t getPointerWidthV(unsigned AddrSpace) const {
1083 virtual uint64_t getPointerAlignV(unsigned AddrSpace) const {
1086 virtual enum IntType getPtrDiffTypeV(unsigned AddrSpace) const {