HomeSort by relevance Sort by last modified time
    Searched defs:BI (Results 26 - 50 of 81) sorted by null

12 3 4

  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 119 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end();
120 BI != BE; ++BI) {
121 const BasicBlock &BB = *BI;
357 if (const BranchInst *BI = dyn_cast<BranchInst>(OldTI)) {
358 if (BI->isConditional()) {
360 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
363 Value *V = VMap[BI->getCondition()];
369 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
453 for (Function::const_iterator BI = OldFunc->begin(), BE = OldFunc->end()
    [all...]
FlattenCFG.cpp 180 for (BasicBlock::iterator BI = Pred->begin(), BE = PBI; BI != BE;) {
181 Instruction *CI = BI++;
242 BranchInst *BI = dyn_cast<BranchInst>(CurrBlock->getTerminator());
243 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
248 BI->swapSuccessors();
358 for (BasicBlock::iterator BI = PBI2, BE = PTI2; BI != BE; ++BI) {
359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory())
    [all...]
LoopUnroll.cpp 169 BranchInst *BI = dyn_cast<BranchInst>(LatchBlock->getTerminator());
171 if (!BI || BI->isUnconditional()) {
267 bool ContinueOnTrue = L->contains(BI->getSuccessor(0));
268 BasicBlock *LoopExit = BI->getSuccessor(ContinueOnTrue);
BasicBlockUtils.cpp 141 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE; ++BI) {
142 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
196 /// ReplaceInstWithValue - Replace all uses of an instruction (specified by BI)
200 BasicBlock::iterator &BI, Value *V) {
201 Instruction &I = *BI;
210 BI = BIL.erase(BI);
214 /// ReplaceInstWithInst - Replace the instruction specified by BI with th
    [all...]
LoopSimplify.cpp 524 if (BranchInst *BI = dyn_cast<BranchInst>((*I)->getTerminator()))
525 if (BI->isConditional()) {
526 if (UndefValue *Cond = dyn_cast<UndefValue>(BI->getCondition())) {
531 BI->setCondition(ConstantInt::get(Cond->getType(),
532 !L->contains(BI->getSuccessor(0))));
642 BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
643 if (!BI || !BI->isConditional()) continue;
644 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
651 for (BasicBlock::iterator I = ExitingBlock->begin(); &*I != BI; ) {
    [all...]
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 353 BitsInit *BI = R->getValueAsBitsInit("Inst");
355 unsigned numBits = BI->getNumBits();
361 Init *OrigBit = BI->getBit(bit);
362 Init *BitSwap = BI->getBit(bitSwapIdx);
368 NewBits[middle] = BI->getBit(middle);
RegisterInfoEmitter.cpp     [all...]
  /frameworks/compile/slang/
slang_rs.cpp 136 // Type(ai) = Type(bi) must hold;
138 // Name(ai) = Name(bi) must hold;
149 BI = ERT->fields_begin();
152 if ((*AI)->getName() != (*BI)->getName())
155 BI++;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DatagramPacketTest.java 36 public void test_Constructor$BI() {
Inet6AddressTest.java 726 public void test_getByAddressLString$BI() throws UnknownHostException {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 311 public void test_genExemptionBlob$BI() throws InvalidKeyException,
KeyAgreementTest.java 611 public void test_generateSecret$BI() throws Exception {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
String2Test.java 66 public void test_Constructor$BI() {
427 public void test_getBytesII$BI() {
    [all...]
StringTest.java 94 public void test_Constructor$BI() {
  /external/clang/lib/AST/
APValue.cpp 499 CXXRecordDecl::base_class_const_iterator BI = CD->bases_begin();
500 for (unsigned I = 0; I != N; ++I, ++BI) {
501 assert(BI != CD->bases_end());
504 getStructBase(I).printPretty(Out, Ctx, BI->getType());
  /external/clang/test/Analysis/
derived-to-base.cpp 72 class BI : public virtual Intermediate {
82 class DI : public BI, public CI {};
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 276 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
277 if (!BI || !BI->isConditional())
280 Value *Cond = BI->getCondition();
366 BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
367 if (!BI || !BI->isConditional())
370 Value *Cond = BI->getCondition();
440 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
441 if (!BI || !BI->isConditional()
    [all...]
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp     [all...]
MemCpyOptimizer.cpp 385 BasicBlock::iterator BI = StartInst;
386 for (++BI; !isa<TerminatorInst>(BI); ++BI) {
387 if (!isa<StoreInst>(BI) && !isa<MemSetInst>(BI)) {
391 if (BI->mayWriteToMemory() || BI->mayReadFromMemory())
396 if (StoreInst *NextStore = dyn_cast<StoreInst>(BI)) {
412 MemSetInst *MSI = cast<MemSetInst>(BI);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringTest.java 92 public void test_getBytesII$BI() {
  /external/llvm/lib/CodeGen/
SplitKit.cpp 187 BlockInfo BI;
188 BI.MBB = MFI;
190 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
197 ThroughBlocks.set(BI.MBB->getNumber());
204 BI.FirstInstr = *UseI;
205 assert(BI.FirstInstr >= Start);
208 BI.LastInstr = UseI[-1];
209 assert(BI.LastInstr < Stop);
212 BI.LiveIn = LVI->start <= Start;
215 if (!BI.LiveIn)
    [all...]
StackColoring.cpp 201 LivenessMap::const_iterator BI = BlockLiveness.find(MBB);
202 assert(BI != BlockLiveness.end() && "Block not found");
203 const BlockLifetimeInfo &BlockInfo = BI->second;
305 LivenessMap::iterator BI = BlockLiveness.find(BB);
306 assert(BI != BlockLiveness.end() && "Block not found");
307 BlockLifetimeInfo &BlockInfo = BI->second;
  /external/llvm/lib/IR/
Metadata.cpp 470 int BI = 0;
473 while (AI < AN && BI < BN) {
475 ConstantInt *BLow = cast<ConstantInt>(B->getOperand(2 * BI));
481 addRange(EndPoints, BLow, cast<ConstantInt>(B->getOperand(2 * BI + 1)));
482 ++BI;
490 while (BI < BN) {
491 addRange(EndPoints, cast<ConstantInt>(B->getOperand(2 * BI)),
492 cast<ConstantInt>(B->getOperand(2 * BI + 1)));
493 ++BI;
  /external/llvm/lib/Target/R600/
R600ControlFlowFinalizer.cpp 399 MachineBasicBlock::instr_iterator BI = I.getInstrIterator();
400 while (++BI != E && BI->isBundledWithPred()) {
401 BI->unbundleFromPred();
402 for (unsigned i = 0, e = BI->getNumOperands(); i != e; ++i) {
403 MachineOperand &MO = BI->getOperand(i);
407 getLiteral(BI, Literals);
408 ClauseContent.push_back(BI);
410 I = BI;
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]

Completed in 358 milliseconds

12 3 4