• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/

Lines Matching refs:PAL

400   AttributeList PAL = getAttributes();
401 PAL = PAL.addAttribute(getContext(), i, Kind);
402 setAttributes(PAL);
406 AttributeList PAL = getAttributes();
407 PAL = PAL.addAttribute(getContext(), i, Attr);
408 setAttributes(PAL);
412 AttributeList PAL = getAttributes();
413 PAL = PAL.addAttributes(getContext(), i, Attrs);
414 setAttributes(PAL);
418 AttributeList PAL = getAttributes();
419 PAL = PAL.addParamAttribute(getContext(), ArgNo, Kind);
420 setAttributes(PAL);
424 AttributeList PAL = getAttributes();
425 PAL = PAL.addParamAttribute(getContext(), ArgNo, Attr);
426 setAttributes(PAL);
430 AttributeList PAL = getAttributes();
431 PAL = PAL.addParamAttributes(getContext(), ArgNo, Attrs);
432 setAttributes(PAL);
436 AttributeList PAL = getAttributes();
437 PAL = PAL.removeAttribute(getContext(), i, Kind);
438 setAttributes(PAL);
442 AttributeList PAL = getAttributes();
443 PAL = PAL.removeAttribute(getContext(), i, Kind);
444 setAttributes(PAL);
448 AttributeList PAL = getAttributes();
449 PAL = PAL.removeAttributes(getContext(), i, Attrs);
450 setAttributes(PAL);
454 AttributeList PAL = getAttributes();
455 PAL = PAL.removeParamAttribute(getContext(), ArgNo, Kind);
456 setAttributes(PAL);
460 AttributeList PAL = getAttributes();
461 PAL = PAL.removeParamAttribute(getContext(), ArgNo, Kind);
462 setAttributes(PAL);
466 AttributeList PAL = getAttributes();
467 PAL = PAL.removeParamAttributes(getContext(), ArgNo, Attrs);
468 setAttributes(PAL);
472 AttributeList PAL = getAttributes();
473 PAL = PAL.addDereferenceableAttr(getContext(), i, Bytes);
474 setAttributes(PAL);
478 AttributeList PAL = getAttributes();
479 PAL = PAL.addDereferenceableParamAttr(getContext(), ArgNo, Bytes);
480 setAttributes(PAL);
484 AttributeList PAL = getAttributes();
485 PAL = PAL.addDereferenceableOrNullAttr(getContext(), i, Bytes);
486 setAttributes(PAL);
491 AttributeList PAL = getAttributes();
492 PAL = PAL.addDereferenceableOrNullParamAttr(getContext(), ArgNo, Bytes);
493 setAttributes(PAL);