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

1 2

  /external/llvm/lib/Target/Mips/
MipsLongBranch.cpp 57 MachineInstr *Br;
59 MBBInfo() : Size(0), HasLongBranch(false), Br(0) {}
82 int64_t computeOffset(const MachineInstr *Br);
83 void replaceBranch(MachineBasicBlock &MBB, Iter Br, DebugLoc DL,
105 /// Iterate over list of Br's operands and search for a MachineBasicBlock
107 static MachineBasicBlock *getTargetMBB(const MachineInstr &Br) {
108 for (unsigned I = 0, E = Br.getDesc().getNumOperands(); I < E; ++I) {
109 const MachineOperand &MO = Br.getOperand(I);
185 ReverseIter Br = getNonDebugInstr(MBB->rbegin(), End);
187 if ((Br != End) && !Br->isIndirectBranch() &
    [all...]
  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 32 Br = B.rows(),
36 AB.block(i*Br,j*Bc,Br,Bc) = A(i,j)*B;
52 Br = B.rows(),
54 AB.resize(Ar*Br,Ac*Bc);
70 i = iA*Br + iB,
  /external/llvm/lib/Target/AArch64/
AArch64BranchFixupPass.cpp 150 bool fixupImmediateBr(ImmBranch &Br);
151 bool fixupConditionalBr(ImmBranch &Br);
450 bool AArch64BranchFixup::fixupImmediateBr(ImmBranch &Br) {
451 MachineInstr *MI = Br.MI;
462 if (isBBInRange(MI, DestBB, Br.OffsetBits))
465 assert(Br.IsCond && "Only conditional branches should need fixup");
466 return fixupConditionalBr(Br);
473 AArch64BranchFixup::fixupConditionalBr(ImmBranch &Br) {
474 MachineInstr *MI = Br.MI;
520 MI = Br.MI = InvertedMI
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 299 bool fixupImmediateBr(ImmBranch &Br);
300 bool fixupConditionalBr(ImmBranch &Br);
301 bool fixupUnconditionalBr(ImmBranch &Br);
456 DEBUG(dbgs() << "Beginning BR iteration #" << NoBRIters << '\n');
    [all...]
  /external/clang/test/SemaCXX/
functional-cast.cpp 131 typedef B &Br;
132 (void)Br(*((C1*)0));
163 typedef B &Br;
164 (void)Br(*((A*)0));
170 (void)Br(*((const A*)0)); // const_cast appended
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 116 Value *matchCondition (BranchInst *Br, BasicBlock *NonZeroTarget) const;
283 if (BranchInst *Br = getBranch(BB)) {
284 return Br->isUnconditional() && BB->size() == 1;
290 BranchInst *Br = getBranch(BB);
291 return Br ? Br->getCondition() : 0;
296 BranchInst *Br = getBranch(BB);
297 return Br && Br->isConditional() ? BB : 0;
346 Value *NclPopcountRecognize::matchCondition (BranchInst *Br,
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 322 if (llvm::BranchInst *Br = dyn_cast<llvm::BranchInst>(Term)) {
323 assert(Br->isUnconditional());
327 llvm::SwitchInst::Create(Load, Br->getSuccessor(0), 4, Block);
328 Br->eraseFromParent();
411 llvm::BranchInst *Br = dyn_cast<llvm::BranchInst>(Pred->getTerminator());
412 if (!Br || Br->isConditional()) return Entry;
413 assert(Br->getSuccessor(0) == Entry);
422 Br->eraseFromParent();
478 if (llvm::BranchInst *Br = dyn_cast<llvm::BranchInst>(Term))
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 114 I->getOpcode() != MSP430::Br &&
193 if (I->getOpcode() == MSP430::Br ||
  /external/llvm/lib/Analysis/
CostModel.cpp 103 case Instruction::Br: {
ValueTracking.cpp     [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 200 case Instruction::Ret: case Instruction::Br:
  /external/llvm/lib/IR/
Instruction.cpp 190 case Br: return "br";
Instructions.cpp 732 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
740 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
752 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
761 : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
774 TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
779 assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 664 INSTKEYWORD(br, Br);
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]
SelectionDAGISel.cpp 74 STATISTIC(NumFastIselFailBr,"Fast isel fails on Br");
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 142 | Br
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 1119 const BranchInst* br = cast<BranchInst>(I); local
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]

Completed in 2283 milliseconds

1 2