Searched refs:dataOperandHasImpliedAttr (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | CallSite.h | 396 bool dataOperandHasImpliedAttr(unsigned i, Attribute::AttrKind Kind) const { in dataOperandHasImpliedAttr() function 397 CALLSITE_DELEGATE_GETTER(dataOperandHasImpliedAttr(i, Kind)); in dataOperandHasImpliedAttr() 594 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::NoCapture); in doesNotCapture() 620 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadNone); in doesNotAccessMemory() 624 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadOnly) || in onlyReadsMemory() 625 dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadNone); in onlyReadsMemory() 629 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::WriteOnly) || in doesNotReadMemory() 630 dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadNone); in doesNotReadMemory()
|
| H A D | InstrTypes.h | 1376 bool dataOperandHasImpliedAttr(unsigned i, Attribute::AttrKind Kind) const { 1402 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::NoCapture); 1430 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadNone); 1436 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadOnly) || 1437 dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadNone); 1443 return dataOperandHasImpliedAttr(OpNo + 1, Attribute::WriteOnly) || 1444 dataOperandHasImpliedAttr(OpNo + 1, Attribute::ReadNone);
|