HomeSort by relevance Sort by last modified time
    Searched defs:MachineBasicBlock (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 1 //===-- llvm/CodeGen/MachineBasicBlock.cpp ----------------------*- C++ -*-===//
14 #include "llvm/CodeGen/MachineBasicBlock.h"
36 MachineBasicBlock::MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb)
42 MachineBasicBlock::~MachineBasicBlock() {
48 MCSymbol *MachineBasicBlock::getSymbol() const {
58 raw_ostream &llvm::operator<<(raw_ostream &OS, const MachineBasicBlock &MBB) {
70 void ilist_traits<MachineBasicBlock>::addNodeToList(MachineBasicBlock *N)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 52 operator MachineBasicBlock::iterator() const { return MI; }
90 const MachineInstrBuilder &addMBB(MachineBasicBlock *MBB,
199 /// instruction before the given position in the given MachineBasicBlock, and
202 inline MachineInstrBuilder BuildMI(MachineBasicBlock &BB,
203 MachineBasicBlock::iterator I,
213 /// instruction before the given position in the given MachineBasicBlock, and
216 inline MachineInstrBuilder BuildMI(MachineBasicBlock &BB,
217 MachineBasicBlock::iterator I,
226 /// instruction at the end of the given MachineBasicBlock, and does NOT take a
229 inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB
    [all...]
MachineBasicBlock.h 1 //===-- llvm/CodeGen/MachineBasicBlock.h ------------------------*- C++ -*-===//
38 // this is only set by the MachineBasicBlock owning the LiveList
39 friend class MachineBasicBlock;
40 MachineBasicBlock* Parent;
62 class MachineBasicBlock : public ilist_node<MachineBasicBlock> {
71 std::vector<MachineBasicBlock *> Predecessors;
72 std::vector<MachineBasicBlock *> Successors;
98 MachineBasicBlock() {}
100 explicit MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb)
    [all...]

Completed in 23 milliseconds