Home | History | Annotate | Download | only in IR

Lines Matching refs:Level

205 /// the top-level PointerType, which represents the address of the global.
334 /// represents module-level flags. This method returns null if there are no
335 /// module-level flags.
341 /// represents module-level flags. If module-level flags aren't found, it
347 /// addModuleFlag - Add a module-level flag to the module-level flags
348 /// metadata. It will create the module-level flags named metadata if it doesn't
486 PICLevel::Level Module::getPICLevel() const {
487 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("PIC Level"));
492 return static_cast<PICLevel::Level>(
496 void Module::setPICLevel(PICLevel::Level PL) {
497 addModuleFlag(ModFlagBehavior::Error, "PIC Level", PL);
500 PIELevel::Level Module::getPIELevel() const {
501 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("PIE Level"));
506 return static_cast<PIELevel::Level>(
510 void Module::setPIELevel(PIELevel::Level PL) {
511 addModuleFlag(ModFlagBehavior::Error, "PIE Level", PL);