OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MCBasicBlock
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/MC/
MCFunction.cpp
28
MCBasicBlock
&MCFunction::createBlock(const MCTextAtom &TA) {
29
Blocks.push_back(new
MCBasicBlock
(TA, this));
33
//
MCBasicBlock
35
MCBasicBlock
::
MCBasicBlock
(const MCTextAtom &Insts, MCFunction *Parent)
39
void
MCBasicBlock
::addSuccessor(const
MCBasicBlock
*MCBB) {
43
bool
MCBasicBlock
::isSuccessor(const
MCBasicBlock
*MCBB) const {
48
void
MCBasicBlock
::addPredecessor(const MCBasicBlock *MCBB)
[
all
...]
/external/llvm/include/llvm/MC/
MCFunction.h
33
class
MCBasicBlock
{
39
MCBasicBlock
(const MCTextAtom &Insts, MCFunction *Parent);
43
typedef std::vector<const
MCBasicBlock
*> BasicBlockListTy;
68
void addSuccessor(const
MCBasicBlock
*MCBB);
69
bool isSuccessor(const
MCBasicBlock
*MCBB) const;
71
void addPredecessor(const
MCBasicBlock
*MCBB);
72
bool isPredecessor(const
MCBasicBlock
*MCBB) const;
83
typedef std::vector<
MCBasicBlock
*> BasicBlockListTy;
92
/// \brief Create an
MCBasicBlock
backed by Insts and add it to this function.
95
MCBasicBlock
&createBlock(const MCTextAtom &Insts)
[
all
...]
Completed in 43 milliseconds