HomeSort by relevance Sort by last modified time
    Searched full:getblock (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/llvm/lib/CodeGen/
BranchFolding.h 41 MachineBasicBlock *getBlock() const { return Block; }
72 MachineBasicBlock *getBlock() const {
73 return getMergePotentialsElt().getBlock();
76 return TailStartPos == getBlock()->begin();
BranchFolding.cpp 485 if (getBlock()->getNumber() < o.getBlock()->getNumber())
487 if (getBlock()->getNumber() > o.getBlock()->getNumber())
605 if (ProfitableToMerge(CurMPIter->getBlock(), I->getBlock(),
636 MachineBasicBlock *CurMBB = CurMPIter->getBlock();
656 if (SameTails[i].getBlock() == PredBB) {
662 unsigned t = EstimateRuntime(SameTails[i].getBlock()->begin(),
672 MachineBasicBlock *MBB = SameTails[commonTailIndex].getBlock();
    [all...]
LiveRangeCalc.cpp 114 MachineBasicBlock *MBB = I->DomNode->getBlock();
300 MachineBasicBlock *MBB = Node->getBlock();
306 bool needPHI = !IDom || !Seen.test(IDom->getBlock()->getNumber());
312 IDomValue = LiveOut[IDom->getBlock()];
316 LiveOut[IDom->getBlock()].second = IDomValue.second =
  /external/clang/include/clang/Analysis/
CFGStmtMap.h 44 CFGBlock *getBlock(Stmt * S);
46 const CFGBlock *getBlock(const Stmt * S) const {
47 return const_cast<CFGStmtMap*>(this)->getBlock(const_cast<Stmt*>(S));
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CipherInputStream.java 82 private void getBlock() throws IOException
119 getBlock();
137 getBlock();
  /external/llvm/lib/Analysis/
PathProfileInfo.cpp 151 next->getSource()->getBlock(),
152 next->getTarget()->getBlock(),
158 next->getRealEdge()->getSource()->getBlock(),
159 next->getRealEdge()->getTarget()->getBlock(),
165 next->getRealEdge()->getSource()->getBlock(),
166 next->getRealEdge()->getTarget()->getBlock(),
187 pbv->push_back (currentNode->getBlock());
190 pbv->push_back (currentNode->getBlock());
191 pbv->push_back (next->getRealEdge()->getTarget()->getBlock());
207 return edge->getTarget()->getBlock();
    [all...]
PathNumbering.cpp 55 BasicBlock* BallLarusNode::getBlock() {
139 if(getBlock() != NULL) {
140 if(getBlock()->hasName()) {
141 std::string tempName(getBlock()->getName());
291 succ != end; oldTarget = (*succ)->getTarget()->getBlock(), succ++ ) {
295 if( oldTarget != (*succ)->getTarget()->getBlock() )
366 BasicBlock* currentBlock = currentNode->getBlock();
375 for( BasicBlock::iterator bbCurrent = currentNode->getBlock()->begin(),
376 bbEnd = currentNode->getBlock()->end(); bbCurrent != bbEnd;
387 TerminatorInst* terminator = currentNode->getBlock()->getTerminator()
    [all...]
DominanceFrontier.cpp 43 BasicBlock *BB = Node->getBlock();
82 BasicBlock *childBB = IDominee->getBlock();
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_java.cc 98 static BlockDesc *getblock(uptr addr) { function in namespace:__tsan
112 for (BlockDesc *b = getblock(addr);; b--) {
197 BlockDesc *b = getblock(ptr);
211 BlockDesc *beg = getblock(ptr);
212 BlockDesc *end = getblock(ptr + size);
236 BlockDesc *s = getblock(src);
237 BlockDesc *d = getblock(dst);
238 BlockDesc *send = getblock(src + size);
  /dalvik/dx/src/com/android/dx/ssa/
LiteralOpUpgrader.java 161 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
199 NormalSsaInsn newInsn = new NormalSsaInsn(newRopInsn, insn.getBlock());
201 List<SsaInsn> insns = insn.getBlock().getInsns();
NormalSsaInsn.java 47 getBlock().getParent().onSourcesChanged(this, oldSources);
75 getBlock().getParent().onSourceChanged(this, origSpec, newSpec);
172 getBlock().getParent().onSourcesChanged(this, oldSources);
ConstCollector.java 185 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
203 if (insn.getBlock().getSuccessors().cardinality() > 1) {
307 use.getBlock());
309 ArrayList<SsaInsn> insns = use.getBlock().getInsns();
392 && use.getBlock().getSuccessors().cardinality() > 1) {
EscapeAnalysis.java 144 int pred = moveInsn.getBlock().getPredecessors().nextSetBit(0);
157 int succ = insn.getBlock().getSuccessors().nextSetBit(0);
588 deletedInsns.add(next.getBlock().getInsns().get(2));
744 SsaBasicBlock currBlock = insn.getBlock();
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 67 if (!R || !OtherR || R->getBlock() != OtherR->getBlock())
94 << DT->getNode(*I)->getIDom()->getBlock()->getBlockID()
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LiteralOpUpgrader.java 161 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
199 NormalSsaInsn newInsn = new NormalSsaInsn(newRopInsn, insn.getBlock());
201 List<SsaInsn> insns = insn.getBlock().getInsns();
NormalSsaInsn.java 47 getBlock().getParent().onSourcesChanged(this, oldSources);
75 getBlock().getParent().onSourceChanged(this, origSpec, newSpec);
172 getBlock().getParent().onSourcesChanged(this, oldSources);
ConstCollector.java 185 int pred = insn.getBlock().getPredecessors().nextSetBit(0);
203 if (insn.getBlock().getSuccessors().cardinality() > 1) {
307 use.getBlock());
309 ArrayList<SsaInsn> insns = use.getBlock().getInsns();
392 && use.getBlock().getSuccessors().cardinality() > 1) {
EscapeAnalysis.java 144 int pred = moveInsn.getBlock().getPredecessors().nextSetBit(0);
157 int succ = insn.getBlock().getSuccessors().nextSetBit(0);
588 deletedInsns.add(next.getBlock().getInsns().get(2));
744 SsaBasicBlock currBlock = insn.getBlock();
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp 485 BasicBlock* source = sourceNode->getBlock();
486 BasicBlock* target = targetNode->getBlock();
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 333 Dest = JumpDest(Dest.getBlock(),
337 ResolveBranchFixups(Dest.getBlock());
340 EmitBlock(Dest.getBlock());
455 EmitBlock(LoopHeader.getBlock());
491 llvm::BasicBlock *ExitBlock = LoopExit.getBlock();
497 if (ExitBlock != LoopExit.getBlock()) {
517 EmitBranch(LoopHeader.getBlock());
520 EmitBlock(LoopExit.getBlock(), true);
525 SimplifyForwardingBlocks(LoopHeader.getBlock());
545 EmitBlock(LoopCond.getBlock());
    [all...]
  /external/llvm/include/llvm/Analysis/
Trace.h 46 /// operator[]/getBlock - Return basic block N in the trace.
49 BasicBlock *getBlock(unsigned i) const { return BasicBlocks[i]; }
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.h 127 /// getBlock - Return the current basic block.
128 MachineBasicBlock *getBlock() { return MBB; }
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 55 const CFGBlock *getBlock() const { return block; }
  /external/clang/lib/Analysis/
CFGStmtMap.cpp 27 CFGBlock *CFGStmtMap::getBlock(Stmt *S) {
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AIfCommand.java 102 public PCommand getBlock()

Completed in 2175 milliseconds

1 2 3 4 5