HomeSort by relevance Sort by last modified time
    Searched refs:BB (Results 201 - 225 of 550) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/lib/Target/X86/
X86JITInfo.h 58 virtual uintptr_t getPICJumpTableEntry(uintptr_t BB, uintptr_t JTBase);
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 153 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end();
154 BB != E; ++BB) {
155 if (*BB == L->getHeader()) continue;
158 for (pred_iterator PI = pred_begin(*BB),
159 PE = pred_end(*BB); PI != PE; ++PI) {
456 BasicBlock *BB = WorkList.back(); WorkList.pop_back();
457 if (Blocks.insert(BB).second && BB != StopBlock)
458 // If BB is not already processed and it is not a stop block the
    [all...]
LoopUnrollRuntime.cpp 154 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {
155 BasicBlock *NewBB = CloneBasicBlock(*BB, VMap, ".unr", F);
161 VMap[*BB] = NewBB;
162 if (Header == *BB) {
188 if (Latch == *BB) {
189 VMap.erase((*BB)->getTerminator());
InlineFunction.cpp 91 void addIncomingPHIValuesFor(BasicBlock *BB) const {
92 addIncomingPHIValuesForInto(BB, OuterResumeDest);
172 /// invokes. This function analyze BB to see if there are any calls, and if so,
177 static bool HandleCallsInBlockInlinedThroughInvoke(BasicBlock *BB,
181 for (BasicBlock::iterator BBI = BB->begin(), E = BB->end(); BBI != E; ) {
201 BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc");
204 BB->getInstList().pop_back();
211 InvokeArgs, CI->getName(), BB);
224 Invoke.addIncomingPHIValuesFor(BB);
    [all...]
  /external/llvm/test/MC/ELF/
basic-elf-32.s 8 # BB#0:
basic-elf-64.s 8 # BB#0:
fde.s 13 # BB#0: # %entry
  /dalvik/vm/mterp/arm-vfp/
fbinop.S 12 and r2, r0, #255 @ r2<- BB
fbinopWide.S 12 and r2, r0, #255 @ r2<- BB
  /dalvik/vm/mterp/armv5te/
binop.S 21 and r2, r0, #255 @ r2<- BB
binopLit8.S 18 and r2, r3, #255 @ r2<- BB
  /dalvik/vm/mterp/mips/
binopLit8.S 18 and a2, a3, 255 # a2 <- BB
  /dalvik/vm/mterp/x86/
OP_AGET.S 9 movzbl 2(rPC),%eax # eax<- BB
OP_AGET_WIDE.S 7 movzbl 2(rPC),%eax # eax<- BB
OP_APUT.S 9 movzbl 2(rPC),%eax # eax<- BB
OP_APUT_WIDE.S 7 movzbl 2(rPC),%eax # eax<- BB
OP_CMPG_DOUBLE.S 8 movzbl 2(rPC),%ecx # ecx<- BB
bindiv.S 8 movzbl 2(rPC),%eax # eax<- BB
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.h 78 AggressiveAntiDepState(const unsigned TargetRegs, MachineBasicBlock *BB);
139 void StartBlock(MachineBasicBlock *BB);
PostRASchedulerList.cpp 142 void startBlock(MachineBasicBlock *BB);
145 virtual void enterRegion(MachineBasicBlock *bb,
178 void StartBlockForKills(MachineBasicBlock *BB);
223 void SchedulePostRATDList::enterRegion(MachineBasicBlock *bb,
227 ScheduleDAGInstrs::enterRegion(bb, begin, end, endcount);
302 << ":BB#" << MBB->getNumber() << " ***\n";
353 void SchedulePostRATDList::startBlock(MachineBasicBlock *BB) {
355 ScheduleDAGInstrs::startBlock(BB);
360 AntiDepBreak->StartBlock(BB);
417 void SchedulePostRATDList::StartBlockForKills(MachineBasicBlock *BB) {
    [all...]
MachineLICM.cpp 99 // Register pressure on path leading from loop preheader to current BB.
205 /// CanCauseHighRegPressure - Visit BBs from header to current BB,
221 bool IsGuaranteedToExecute(MachineBasicBlock *BB);
253 void InitRegPressure(MachineBasicBlock *BB);
289 void InitCSEMap(MachineBasicBlock *BB);
507 MachineBasicBlock *BB = Blocks[i];
511 const MachineLoop *ML = MLI->getLoopFor(BB);
517 for (MachineBasicBlock::livein_iterator I = BB->livein_begin(),
518 E = BB->livein_end(); I != E; ++I) {
526 MII = BB->begin(), E = BB->end(); MII != E; ++MII)
    [all...]
ShadowStackGC.cpp 130 for (Function::iterator BB = F.begin(),
131 E = F.end(); BB != E; ++BB)
132 for (BasicBlock::iterator II = BB->begin(),
133 EE = BB->end(); II != EE; ++II)
158 // cleanup block. Go in reverse order to make prettier BB names.
330 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
331 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E;
    [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.h 28 MachineBasicBlock * BB) const;
51 void lowerImplicitParameter(MachineInstr *MI, MachineBasicBlock &BB,
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 45 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", Add1F);
55 // Create the add instruction, inserting it into the end of BB.
56 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB);
59 ReturnInst::Create(M->getContext(), Add, BB);
75 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", FibF);
91 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
92 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.h 154 MachineBasicBlock *BB) const LLVM_OVERRIDE;
214 MachineBasicBlock *BB) const;
216 MachineBasicBlock *BB,
223 MachineBasicBlock *BB,
232 MachineBasicBlock *BB) const;
234 MachineBasicBlock *BB) const;

Completed in 582 milliseconds

1 2 3 4 5 6 7 891011>>