HomeSort by: relevance | last modified time | path
    Searched refs:getBB (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemDepPrinter.cpp 115 InstDeps.insert(std::make_pair(getInstTypePair(Res), I.getBB()));
126 InstDeps.insert(std::make_pair(getInstTypePair(Res), I.getBB()));
MemoryDependenceAnalysis.cpp 740 DirtyBlocks.push_back(Entry.getBB());
777 if (Entry != Cache.begin() && std::prev(Entry)->getBB() == DirtyBB)
782 Entry->getBB() == DirtyBB) {
919 if (Entry != Cache->begin() && (Entry - 1)->getBB() == BB)
923 if (Entry != Cache->begin() + NumSortedEntries && Entry->getBB() == BB)
1143 Visited.find(Entry.getBB());
1156 Visited.insert(std::make_pair(Entry.getBB(), Addr));
1161 if (DT.isReachableFromEntry(Entry.getBB())) {
1163 NonLocalDepResult(Entry.getBB(), Entry.getResult(), Addr));
1429 if (I.getBB() != BB
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 223 BasicBlock *getBB() const { return BB; }
245 BasicBlock *getBB() const { return Entry.getBB(); }
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
SIMachineScheduler.h 449 MachineBasicBlock *getBB() { return BB; }
SIMachineScheduler.cpp 1345 DAG->getBB()->splice(CurrentTopFastSched, DAG->getBB(), MI);
1375 DAG->getBB()->splice(POld, DAG->getBB(), PNew);
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLParser.h 446 /// GetBB - Get a basic block with the specified name or ID, creating a
449 BasicBlock *getBB(const std::string &Name, LocTy Loc);
450 BasicBlock *getBB(unsigned ID, LocTy Loc);
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 3261 /// getBB - Get a basic block with the specified name or ID, creating a
3263 BasicBlock *LLParser::PerFunctionState::getBB(const std::string &Name,
3269 BasicBlock *LLParser::PerFunctionState::getBB(unsigned ID, LocTy Loc) {
3286 BB = getBB(NumberedVals.size(), Loc);
3293 BB = getBB(Name, Loc);
3549 BB = BlockAddressPFS->getBB(Label.UIntVal, Label.Loc);
3551 BB = BlockAddressPFS->getBB(Label.StrVal, Label.Loc);
6017 BB = getBB(BBID.StrVal, BBID.Loc);
6019 BB = getBB(BBID.UIntVal, BBID.Loc);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GVN.cpp 467 if (NonLocalDepCall && DT->properlyDominates(I->getBB(), C->getParent())){
1150 BasicBlock *DepBB = Deps[i].getBB();

Completed in 114 milliseconds