Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DBasicBlockSections.cpp311 auto BBSectionsType = MF.getTarget().getBBSectionsType(); in runOnMachineFunction() local
312 assert(BBSectionsType != BasicBlockSection::None && in runOnMachineFunction()
321 if (BBSectionsType == BasicBlockSection::List && in runOnMachineFunction()
334 if (BBSectionsType == BasicBlockSection::Labels) { in runOnMachineFunction()
335 MF.setBBSectionsType(BBSectionsType); in runOnMachineFunction()
343 if (BBSectionsType == BasicBlockSection::List && in runOnMachineFunction()
347 MF.setBBSectionsType(BBSectionsType); in runOnMachineFunction()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineFunction.h382 BasicBlockSection BBSectionsType = BasicBlockSection::None;
651 return (BBSectionsType == BasicBlockSection::All ||
652 BBSectionsType == BasicBlockSection::List ||
653 BBSectionsType == BasicBlockSection::Preset);
658 return BBSectionsType == BasicBlockSection::Labels;
661 void setBBSectionsType(BasicBlockSection V) { BBSectionsType = V; }