Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/CodeGen/
DBasicBlockSections.cpp317 auto BBSectionsType = MF.getTarget().getBBSectionsType(); in runOnMachineFunction() local
318 assert(BBSectionsType != BasicBlockSection::None && in runOnMachineFunction()
326 if (BBSectionsType == BasicBlockSection::Labels) { in runOnMachineFunction()
327 MF.setBBSectionsType(BBSectionsType); in runOnMachineFunction()
332 if (BBSectionsType == BasicBlockSection::List && in runOnMachineFunction()
336 MF.setBBSectionsType(BBSectionsType); in runOnMachineFunction()
/external/llvm-project/llvm/include/llvm/CodeGen/
DMachineFunction.h348 BasicBlockSection BBSectionsType = BasicBlockSection::None;
529 return (BBSectionsType == BasicBlockSection::All ||
530 BBSectionsType == BasicBlockSection::List ||
531 BBSectionsType == BasicBlockSection::Preset);
536 return BBSectionsType == BasicBlockSection::Labels;
539 void setBBSectionsType(BasicBlockSection V) { BBSectionsType = V; }