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

12 3

  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 47 int getVariableBit(const std::string &VarName, BitsInit *BI, int bit);
49 void AddCodeToMergeInOperand(Record *R, BitsInit *BI,
64 BitsInit *BI = R->getValueAsBitsInit("Inst");
66 unsigned numBits = BI->getNumBits();
72 Init *OrigBit = BI->getBit(bit);
73 Init *BitSwap = BI->getBit(bitSwapIdx);
79 NewBits[middle] = BI->getBit(middle);
93 BitsInit *BI, int bit) {
94 if (VarBitInit *VBI = dyn_cast<VarBitInit>(BI->getBit(bit))) {
98 } else if (VarInit *VI = dyn_cast<VarInit>(BI->getBit(bit)))
    [all...]
RegisterInfoEmitter.cpp     [all...]
  /frameworks/compile/slang/
slang_rs.cpp 141 // Type(ai) = Type(bi) must hold;
143 // Name(ai) = Name(bi) must hold;
154 BI = ERT->fields_begin();
157 if ((*AI)->getName() != (*BI)->getName())
160 BI++;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 313 public void test_genExemptionBlob$BI() throws InvalidKeyException,
KeyAgreementTest.java 610 public void test_generateSecret$BI() throws Exception {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
String2Test.java 67 public void test_Constructor$BI() {
428 public void test_getBytesII$BI() {
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
Inet6AddressTest.java     [all...]
  /external/clang/lib/AST/
APValue.cpp 458 CXXRecordDecl::base_class_const_iterator BI = CD->bases_begin();
459 for (unsigned I = 0; I != N; ++I, ++BI) {
460 assert(BI != CD->bases_end());
463 getStructBase(I).printPretty(Out, Ctx, BI->getType());
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 140 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE; ++BI) {
141 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
193 /// ReplaceInstWithValue - Replace all uses of an instruction (specified by BI)
197 BasicBlock::iterator &BI, Value *V) {
198 Instruction &I = *BI;
207 BI = BIL.erase(BI);
211 /// ReplaceInstWithInst - Replace the instruction specified by BI with th
    [all...]
LoopSimplify.cpp 190 if (BranchInst *BI = dyn_cast<BranchInst>((*I)->getTerminator()))
191 if (BI->isConditional()) {
192 if (UndefValue *Cond = dyn_cast<UndefValue>(BI->getCondition())) {
197 BI->setCondition(ConstantInt::get(Cond->getType(),
198 !L->contains(BI->getSuccessor(0))));
303 BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
304 if (!BI || !BI->isConditional()) continue;
305 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
311 for (BasicBlock::iterator I = ExitingBlock->begin(); &*I != BI; ) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringTest.java 92 public void test_getBytesII$BI() {
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 709 const SplitAnalysis::BlockInfo &BI = UseBlocks[i];
712 BC.Number = BI.MBB->getNumber();
714 BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
715 BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare;
716 BC.ChangesValue = BI.FirstDef;
725 if (BI.LiveIn) {
728 else if (Intf.first() < BI.FirstInstr)
730 else if (Intf.first() < BI.LastInstr)
735 if (BI.LiveOut) {
738 else if (Intf.last() > BI.LastInstr
    [all...]
SplitKit.cpp 188 BlockInfo BI;
189 BI.MBB = MFI;
191 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
198 ThroughBlocks.set(BI.MBB->getNumber());
205 BI.FirstInstr = *UseI;
206 assert(BI.FirstInstr >= Start);
209 BI.LastInstr = UseI[-1];
210 assert(BI.LastInstr < Stop);
213 BI.LiveIn = LVI->start <= Start;
216 if (!BI.LiveIn)
    [all...]
StackColoring.cpp 209 LivenessMap::const_iterator BI = BlockLiveness.find(*FI);
210 assert(BI != BlockLiveness.end() && "Block not found");
211 const BlockLifetimeInfo &BlockInfo = BI->second;
255 for (MachineBasicBlock::iterator BI = (*FI)->begin(), BE = (*FI)->end();
256 BI != BE; ++BI) {
258 if (BI->getOpcode() != TargetOpcode::LIFETIME_START &&
259 BI->getOpcode() != TargetOpcode::LIFETIME_END)
262 Markers.push_back(BI);
264 bool IsStart = BI->getOpcode() == TargetOpcode::LIFETIME_START
    [all...]
  /external/llvm/lib/IR/
Metadata.cpp 503 int BI = 0;
506 while (AI < AN && BI < BN) {
508 ConstantInt *BLow = cast<ConstantInt>(B->getOperand(2 * BI));
514 addRange(EndPoints, BLow, cast<ConstantInt>(B->getOperand(2 * BI + 1)));
515 ++BI;
523 while (BI < BN) {
524 addRange(EndPoints, cast<ConstantInt>(B->getOperand(2 * BI)),
525 cast<ConstantInt>(B->getOperand(2 * BI + 1)));
526 ++BI;
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 374 BasicBlock::iterator BI = StartInst;
375 for (++BI; !isa<TerminatorInst>(BI); ++BI) {
376 if (!isa<StoreInst>(BI) && !isa<MemSetInst>(BI)) {
380 if (BI->mayWriteToMemory() || BI->mayReadFromMemory())
385 if (StoreInst *NextStore = dyn_cast<StoreInst>(BI)) {
401 MemSetInst *MSI = cast<MemSetInst>(BI);
    [all...]
CodeGenPrepare.cpp 276 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
277 if (!BI || !BI->isUnconditional())
282 BasicBlock::iterator BBI = BI;
295 BasicBlock *DestBB = BI->getSuccessor(0);
381 BranchInst *BI = cast<BranchInst>(BB->getTerminator());
382 BasicBlock *DestBB = BI->getSuccessor(0);
740 BasicBlock::iterator BI = BB->begin();
741 do { ++BI; } while (isa<DbgInfoIntrinsic>(BI));
    [all...]
IndVarSimplify.cpp     [all...]
JumpThreading.cpp 180 BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator());
185 if (BI && BI->isUnconditional() &&
193 BasicBlock *Succ = BI->getSuccessor(0);
675 if (BranchInst *BI = dyn_cast<BranchInst>(Terminator)) {
677 if (BI->isUnconditional()) return false;
678 Condition = BI->getCondition();
    [all...]
LoopUnswitch.cpp 439 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
442 if (BI->isConditional()) {
445 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(),
569 if (BranchInst *BI = dyn_cast<BranchInst>(HeaderTerm)) {
572 if (!BI->isConditional() || BI->getCondition() != Cond)
580 BI->getSuccessor(0)))) {
583 BI->getSuccessor(1)))) {
698 BranchInst *BI = BranchInst::Create(TrueDest, FalseDest, BranchVal, InsertPt);
702 SplitCriticalEdge(BI, 0, this, false, false, true)
    [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 234 llvm::BranchInst *BI = dyn_cast<llvm::BranchInst>(BB->getTerminator());
243 if (!BI || !BI->isUnconditional())
247 if (BI != BB->begin())
250 BB->replaceAllUsesWith(BI->getSuccessor(0));
251 BI->eraseFromParent();
    [all...]
CodeGenFunction.cpp 151 llvm::BranchInst *BI =
153 if (BI && BI->isUnconditional() &&
154 BI->getSuccessor(0) == ReturnBlock.getBlock()) {
159 Builder.SetCurrentDebugLocation(BI->getDebugLoc());
160 Builder.SetInsertPoint(BI->getParent());
161 BI->eraseFromParent();
536 BI = FI->begin(), BE = FI->end(); BI != BE; ++BI)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 712 BasicBlock::iterator BI = SS;
713 if (&*++BI == II)
720 BasicBlock::iterator BI = II;
723 for (++BI; &*BI != TI; ++BI) {
724 if (isa<AllocaInst>(BI)) {
728 if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 105 HF, TA, W, RE, OS, IR, PT, AU, HG, TL, PB, BI, PO, AT, RN, FR, RA, AC, TH, PA, U, NP, PU,

Completed in 534 milliseconds

12 3