reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Attributes.h
  107   static Attribute getWithByValType(LLVMContext &Context, Type *Ty);

References

lib/Bitcode/Reader/BitcodeReader.cpp
 3242     Func->addParamAttr(i, Attribute::getWithByValType(
 3688         i, Attribute::getWithByValType(
lib/IR/Attributes.cpp
  779       Attr = Attribute::getWithByValType(C, B.getByValType());
lib/IR/Core.cpp
  149     return wrap(Attribute::getWithByValType(Ctx, NULL));
lib/Linker/IRMover.cpp
  646           C, i, Attribute::getWithByValType(C, TypeMap.get(Ty)));
lib/Transforms/InstCombine/InstCombineCalls.cpp
 4375               ix, Attribute::getWithByValType(
lib/Transforms/Utils/ValueMapper.cpp
  910             C, i, Attribute::getWithByValType(C, TypeMapper->remapType(Ty)));
unittests/IR/AttributesTest.cpp
  179   Attribute A = Attribute::getWithByValType(C, Ty);
  182   A = Attribute::getWithByValType(C, nullptr);
  185   A = Attribute::getWithByValType(C, Type::getInt32Ty(C));