Home
last modified time | relevance | path

Searched refs:BBSectionsType (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DBasicBlockSections.cpp284 auto BBSectionsType = MF.getTarget().getBBSectionsType(); in runOnMachineFunction() local
285 assert(BBSectionsType != BasicBlockSection::None && in runOnMachineFunction()
294 if (BBSectionsType == BasicBlockSection::List && in runOnMachineFunction()
301 if (BBSectionsType == BasicBlockSection::Labels) { in runOnMachineFunction()
302 MF.setBBSectionsType(BBSectionsType); in runOnMachineFunction()
307 if (BBSectionsType == BasicBlockSection::List) { in runOnMachineFunction()
318 MF.setBBSectionsType(BBSectionsType); in runOnMachineFunction()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunction.h384 BasicBlockSection BBSectionsType = BasicBlockSection::None;
695 return (BBSectionsType == BasicBlockSection::All ||
696 BBSectionsType == BasicBlockSection::List ||
697 BBSectionsType == BasicBlockSection::Preset);
702 return BBSectionsType == BasicBlockSection::Labels;
705 void setBBSectionsType(BasicBlockSection V) { BBSectionsType = V; }