Home
last modified time | relevance | path

Searched refs:DerefBytes (Results 1 – 3 of 3) sorted by relevance

/external/llvm/include/llvm/IR/
DAttributes.h396 uint64_t DerefBytes;
401 : Attrs(0), Alignment(0), StackAlignment(0), DerefBytes(0),
404 : Attrs(0), Alignment(0), StackAlignment(0), DerefBytes(0),
409 : Attrs(0), Alignment(0), StackAlignment(0), DerefBytes(0),
473 uint64_t getDereferenceableBytes() const { return DerefBytes; }
/external/llvm/lib/IR/
DAttributes.cpp1134 : Attrs(0), Alignment(0), StackAlignment(0), DerefBytes(0), in AttrBuilder()
1153 Alignment = StackAlignment = DerefBytes = DerefOrNullBytes = 0; in clear()
1179 DerefBytes = Attr.getDereferenceableBytes(); in addAttribute()
1199 DerefBytes = 0; in removeAttribute()
1263 DerefBytes = Bytes; in addDereferenceableAttr()
1284 if (!DerefBytes) in merge()
1285 DerefBytes = B.DerefBytes; in merge()
1306 if (B.DerefBytes) in remove()
1307 DerefBytes = 0; in remove()
1379 DerefBytes == B.DerefBytes; in operator ==()
/external/llvm/lib/Analysis/
DValueTracking.cpp3126 APInt DerefBytes(Offset.getBitWidth(), 0); in isDereferenceableFromAttribute() local
3129 DerefBytes = A->getDereferenceableBytes(); in isDereferenceableFromAttribute()
3130 if (!DerefBytes.getBoolValue()) { in isDereferenceableFromAttribute()
3131 DerefBytes = A->getDereferenceableOrNullBytes(); in isDereferenceableFromAttribute()
3135 DerefBytes = CS.getDereferenceableBytes(0); in isDereferenceableFromAttribute()
3136 if (!DerefBytes.getBoolValue()) { in isDereferenceableFromAttribute()
3137 DerefBytes = CS.getDereferenceableOrNullBytes(0); in isDereferenceableFromAttribute()
3143 DerefBytes = CI->getLimitedValue(); in isDereferenceableFromAttribute()
3145 if (!DerefBytes.getBoolValue()) { in isDereferenceableFromAttribute()
3149 DerefBytes = CI->getLimitedValue(); in isDereferenceableFromAttribute()
[all …]