HomeSort by relevance Sort by last modified time
    Searched refs:AI (Results 76 - 100 of 174) sorted by null

1 2 34 5 6 7

  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 412 for (MCRegAliasIterator AI(PhysReg, getTargetRegisterInfo(), true);
413 AI.isValid(); ++AI)
414 if (!def_empty(*AI) || isAllocatable(*AI))
MachineLICM.cpp 452 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
453 PhysRegClobbers.set(*AI);
524 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
525 PhysRegDefs.set(*AI);
547 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI
    [all...]
RegisterCoalescer.cpp 526 for (LiveInterval::iterator AI = IntA.begin(), AE = IntA.end();
527 AI != AE; ++AI) {
528 if (AI->valno != AValNo) continue;
530 std::upper_bound(IntB.begin(), IntB.end(), AI->start);
533 for (; BI != IntB.end() && AI->end >= BI->start; ++BI) {
536 if (BI->start <= AI->start && BI->end > AI->start)
538 if (BI->start > AI->start && BI->start < AI->end
    [all...]
ExecutionDepsFix.cpp 741 for (MCRegAliasIterator AI(RC->getRegister(i), TRI, true);
742 AI.isValid(); ++AI)
743 AliasMap[*AI] = i;
  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 299 AbstractInterpreter *AI,
301 if (!AI) AI = Interpreter;
302 assert(AI && "Interpreter should have been created already!");
347 int RetVal = AI->ExecuteProgram(BitcodeFile, InputArgv, InputFile, OutputFile,
  /external/chromium_org/third_party/dom_distiller_js/package/js/
domdistiller.js 71 function lu(a,b,c){var d;hv[d=++iv]=lu;zn((jv[d]=AI+Jv,a).b,b,c);iv=d-1}
96 function zu(a){var b,c;hv[b=++iv]=zu;c=(jv[b]=AI+eI,a)&&a.g?a.g:null;iv=b-1;return c}
135 function Ju(a,b){var c;hv[c=++iv]=Ju;jv[c]=lx+bz,Fu();jv[c]=AI+hC,(jv[c]=lx+LE,a)[VI]=b;iv=c-1}
158 function Bu(a,b){var c;hv[c=++iv]=Bu;for(p in jv[c]=AI+fI,b){(jv[c]=AI+'683',a)[p]=b[p]}iv=c-1}
211 function yu(){var a;hv[a=++iv]=yu;this.b=new (jv[a]=AI+uv,Kn);this.a=new (jv[a]=AI+Dw,Kn);this.c=new (jv[a]=AI+wv,Kn);iv=a-1}
270 function ou(a,b){var c=(jv[e]=AI+'642',a)[b],e,f;hv[e=++iv]=ou;var d=0;for(k in jv[e]=AI+'641',c)d=(jv[e]=AI+'644',Math).max(d,k);f=(jv[e]=AI+'645',d);iv=e-1;return f
    [all...]
  /frameworks/compile/slang/
slang_rs_backend.cpp 299 for (llvm::Function::arg_iterator AI = F->arg_begin(),
300 AE = F->arg_end(); AI != AE; AI++) {
301 if (AI->getType()->isPointerTy() && AI->getType()->getPointerElementType()->isStructTy()) {
302 HelperFunctionParameterTys.push_back(AI->getType()->getPointerElementType());
305 HelperFunctionParameterTys.push_back(AI->getType());
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 42 MacroInfo::arg_iterator AI = MI.arg_begin(), E = MI.arg_end();
43 for (; AI+1 != E; ++AI) {
44 OS << (*AI)->getName();
49 if ((*AI)->getName() == "__VA_ARGS__")
52 OS << (*AI)->getName();
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 884 for (Archive::child_iterator AI = A->child_begin(),
886 AI != AE; ++AI) {
888 AI->getAsBinary(&Context);
928 for (Archive::child_iterator AI = A->child_begin(),
930 AI != AE; ++AI) {
932 AI->getAsBinary(&Context);
    [all...]
  /art/compiler/dex/quick/x86/
x86_lir.h 403 // AI - Array Immediate - opcode [base + index * scale + disp], #immediate
410 opcode ## 8RI, opcode ## 8MI, opcode ## 8AI, opcode ## 8TI, \
413 opcode ## 16RI, opcode ## 16MI, opcode ## 16AI, opcode ## 16TI, \
417 opcode ## 32RI, opcode ## 32MI, opcode ## 32AI, opcode ## 32TI, \
421 opcode ## 64RI, opcode ## 64MI, opcode ## 64AI, opcode ## 64TI, \
469 opcode ## 8RI, opcode ## 8MI, opcode ## 8AI, \
471 opcode ## 16RI, opcode ## 16MI, opcode ## 16AI, \
473 opcode ## 32RI, opcode ## 32MI, opcode ## 32AI, \
475 opcode ## 64RI, opcode ## 64MI, opcode ## 64AI, \
499 UnaryOpcode(kX86Test, RI, MI, AI),
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 442 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
443 ++AI, ++Idx) {
444 AI->setName(Args[Idx]);
447 NamedValues[Args[Idx]] = AI;
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 332 for (MCRegAliasIterator AI(Reg, TM.getRegisterInfo(), true);
333 AI.isValid(); ++AI)
334 if (RegSet.count(*AI))
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 660 CallSite::arg_iterator AI = CS.arg_begin();
663 I != E; ++I, ++AI, ++ArgIndex)
665 Args.push_back(*AI); // Unmodified argument
680 Value *Idx = GetElementPtrInst::Create(*AI, Idxs,
681 (*AI)->getName()+"."+utostr(i),
694 Value *V = *AI;
728 for (; AI != CS.arg_end(); ++AI, ++ArgIndex) {
729 Args.push_back(*AI);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64LoadStoreOptimizer.cpp 351 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
352 ModifiedRegs.set(*AI);
355 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
356 UsedRegs.set(*AI);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 227 if (AllocaInst *AI = dyn_cast<AllocaInst>(Inst))
228 if (AI->isStaticAlloca())
DeadStoreElimination.cpp 733 for (Function::arg_iterator AI = BB.getParent()->arg_begin(),
734 AE = BB.getParent()->arg_end(); AI != AE; ++AI)
735 if (AI->hasByValOrInAllocaAttr())
736 DeadStackObjects.insert(AI);
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 356 Function::arg_iterator AI = newFunction->arg_begin();
368 GetElementPtrInst::Create(AI, Idx, "gep_" + inputs[i]->getName(), TI);
371 RewriteVal = AI++;
383 AI = newFunction->arg_begin();
384 for (unsigned i = 0, e = inputs.size(); i != e; ++i, ++AI)
385 AI->setName(inputs[i]->getName());
386 for (unsigned i = 0, e = outputs.size(); i != e; ++i, ++AI)
387 AI->setName(outputs[i]->getName()+".out");
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 358 for (MCModule::const_atom_iterator AI = Mod->atom_begin(),
360 AI != AE; ++AI) {
361 outs() << "Atom " << (*AI)->getName() << ": \n";
362 if (const MCTextAtom *TA = dyn_cast<MCTextAtom>(*AI)) {
695 for (unsigned AI = 0, AE = Symbol->NumberOfAuxSymbols; AI < AE; ++AI, ++SI) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
InstCombineCasts.cpp 82 AllocaInst &AI) {
89 AllocaBuilder.SetInsertPoint(AI.getParent(), &AI);
92 Type *AllocElTy = AI.getAllocatedType();
103 if (!AI.hasOneUse() && CastElTyAlign == AllocElTyAlign) return nullptr;
113 if (!AI.hasOneUse() && CastElTyStoreSize < AllocElTyStoreSize) return nullptr;
120 DecomposeSimpleLinearExpr(AI.getOperand(0), ArraySizeScale, ArrayOffset);
132 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
138 Value *Off = ConstantInt::get(AI.getArraySize()->getType(),
144 New->setAlignment(AI.getAlignment())
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 703 for (Function::const_arg_iterator AI = FI->arg_begin(),
704 AE = FI->arg_end(); AI != AE; ++AI) {
705 printType(AI->getType());
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 455 for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) {
456 if (LiveRegDefs[*AI] && LiveRegDefs[*AI] != SU) {
457 if (RegAdded.insert(*AI)) {
458 LRegs.push_back(*AI);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 687 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
688 ++AI, ++Idx) {
689 AI->setName(Args[Idx]);
692 NamedValues[Args[Idx]] = AI;
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 791 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
792 ++AI, ++Idx) {
793 AI->setName(Args[Idx]);
796 NamedValues[Args[Idx]] = AI;
  /external/llvm/include/llvm/Transforms/Utils/
Local.h 270 bool replaceDbgDeclareForAlloca(AllocaInst *AI, Value *NewAllocaAddress,

Completed in 749 milliseconds

1 2 34 5 6 7