HomeSort by relevance Sort by last modified time
    Searched refs:getBasicBlockList (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/swiftshader/third_party/LLVM/lib/VMCore/
BasicBlock.cpp 52 NewParent->getBasicBlockList().insert(InsertBefore, this);
54 NewParent->getBasicBlockList().push_back(this);
97 getParent()->getBasicBlockList().remove(this);
101 getParent()->getBasicBlockList().erase(this);
107 MovePos->getParent()->getBasicBlockList().splice(MovePos,
108 getParent()->getBasicBlockList(), this);
115 MovePos->getParent()->getBasicBlockList().splice(++I,
116 getParent()->getBasicBlockList(), this);
  /external/llvm/lib/IR/
BasicBlock.cpp 59 NewParent->getBasicBlockList().insert(InsertBefore->getIterator(), this);
61 NewParent->getBasicBlockList().push_back(this);
94 getParent()->getBasicBlockList().remove(getIterator());
98 return getParent()->getBasicBlockList().erase(getIterator());
104 MovePos->getParent()->getBasicBlockList().splice(
105 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator());
111 MovePos->getParent()->getBasicBlockList().splice(
112 ++MovePos->getIterator(), getParent()->getBasicBlockList(),
  /external/llvm/include/llvm/IR/
InstIterator.h 58 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
66 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
Function.h 484 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
485 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
InstIterator.h 59 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
67 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
InstIterator.h 62 : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
70 : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
BasicBlockPlacement.cpp 113 Function::BasicBlockListType &Blocks = BB->getParent()->getBasicBlockList();
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerSwitch.cpp 160 F->getBasicBlockList().insert(++FI, NewNode);
182 F->getBasicBlockList().insert(++FI, NewLeaf);
293 F->getBasicBlockList().insert(Default, NewDefault);
  /external/swiftshader/third_party/LLVM/include/llvm/
Function.h 335 const BasicBlockListType &getBasicBlockList() const { return BasicBlocks; }
336 BasicBlockListType &getBasicBlockList() { return BasicBlocks; }
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 443 NewFunc->getBasicBlockList().push_back(NewBB);
706 F->getBasicBlockList().splice(Before->getIterator(), F->getBasicBlockList(),
708 F->getBasicBlockList().splice(Before->getIterator(), F->getBasicBlockList(),
LowerSwitch.cpp 284 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewNode);
301 F->getBasicBlockList().insert(++OrigBlock->getIterator(), NewLeaf);
497 F->getBasicBlockList().insert(Default->getIterator(), NewDefault);
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcCAPITest.cpp 32 Main->getBasicBlockList().push_back(BasicBlock::Create(Context));

Completed in 2219 milliseconds

1 2 3 4