Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DBasicBlockSections.cpp343 auto BBSectionsType = MF.getTarget().getBBSectionsType(); in runOnMachineFunction() local
344 assert(BBSectionsType != BasicBlockSection::None && in runOnMachineFunction()
353 if (BBSectionsType == BasicBlockSection::List && in runOnMachineFunction()
363 if (BBSectionsType == BasicBlockSection::Labels) { in runOnMachineFunction()
364 MF.setBBSectionsType(BBSectionsType); in runOnMachineFunction()
369 if (BBSectionsType == BasicBlockSection::List && in runOnMachineFunction()
373 MF.setBBSectionsType(BBSectionsType); in runOnMachineFunction()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFunction.h356 BasicBlockSection BBSectionsType = BasicBlockSection::None;
601 return (BBSectionsType == BasicBlockSection::All ||
602 BBSectionsType == BasicBlockSection::List ||
603 BBSectionsType == BasicBlockSection::Preset);
608 return BBSectionsType == BasicBlockSection::Labels;
611 void setBBSectionsType(BasicBlockSection V) { BBSectionsType = V; }