Searched refs:NI (Results 1 - 25 of 27) sorted by relevance

12

/external/llvm/include/llvm/MC/
H A DMCInstrInfo.h35 void InitMCInstrInfo(const MCInstrDesc *D, const unsigned *NI, const char *ND, argument
38 InstrNameIndices = NI;
/external/llvm/lib/Analysis/
H A DDominanceFrontier.cpp78 for (DomTreeNode::const_iterator NI = currentNode->begin(),
79 NE = currentNode->end(); NI != NE; ++NI) {
80 DomTreeNode *IDominee = *NI;
/external/libcxxabi/test/
H A Dtest_demangle.cpp29612 const unsigned NI = sizeof(invalid_cases) / sizeof(invalid_cases[0]); variable
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp298 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(),
299 E = DAG->allnodes_end(); NI != E; ++NI) {
300 SDNode *Node = &*NI;
317 for (SelectionDAG::allnodes_iterator NI = DAG->allnodes_begin(),
318 E = DAG->allnodes_end(); NI != E; ++NI) {
319 NI->setNodeId(-1);
338 SDNode *NI = Worklist.pop_back_val();
341 for (unsigned i = 0, e = NI
[all...]
H A DSelectionDAGPrinter.cpp70 SDNodeIterator NI = SDNodeIterator::begin(TargetNode); local
71 std::advance(NI, I.getNode()->getOperand(I.getOperand()).getResNo());
72 return NI;
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp93 for (ExplodedNodeSet::iterator NI = dstLocation.begin(),
94 NE = dstLocation.end(); NI!=NE; ++NI) {
95 Pred = *NI;
H A DCheckerManager.cpp121 for (ExplodedNodeSet::iterator NI = PrevSet->begin(), NE = PrevSet->end();
122 NI != NE; ++NI) {
123 checkCtx.runChecker(*I, B, *NI);
530 NI = Src.begin(), NE = Src.end(); NI != NE; ++NI) {
531 ExplodedNode *Pred = *NI;
H A DExprEngine.cpp2081 for (ExplodedNodeSet::iterator NI=Tmp.begin(), NE=Tmp.end(); NI!=NE; ++NI)
2082 evalBind(Dst, StoreE, *NI, location, Val, false);
2145 for (ExplodedNodeSet::iterator NI=Tmp.begin(), NE=Tmp.end(); NI!=NE; ++NI) {
2146 state = (*NI)->getState();
2147 const LocationContext *LCtx = (*NI)->getLocationContext();
2156 Bldr.generateNode(NodeEx, *NI, stat
[all...]
H A DBugReporterVisitors.cpp874 const ExplodedNode *NI = N; local
876 ProgramPoint ProgPoint = NI->getLocation();
889 NI = NI->getFirstPred();
890 } while (NI);
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp240 MachineBasicBlock::iterator NI = std::next(MBBI);
241 if (NI == MBB.end()) return;
243 unsigned Opc = NI->getOpcode();
246 NI->getOperand(0).getReg() == StackPtr) {
248 *NumBytes -= NI->getOperand(2).getImm();
249 MBB.erase(NI);
250 MBBI = NI;
253 NI->getOperand(0).getReg() == StackPtr) {
255 *NumBytes += NI->getOperand(2).getImm();
256 MBB.erase(NI);
[all...]
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp1890 NI = InOutOperands.begin(), NE = InOutOperands.end(); NI != NE; ++NI) {
1891 if (!NumberedInsnOperands[NI->second].empty()) {
1893 NumberedInsnOperands[NI->second].begin(),
1894 NumberedInsnOperands[NI->second].end());
1896 } else if (!NumberedInsnOperands[TiedNames[NI->second]].empty()) {
1897 if (!NumberedInsnOperandsNoTie.count(TiedNames[NI->second])) {
1899 unsigned i = CGI.Operands.getOperandNamed(TiedNames[NI->second]);
1902 i = CGI.Operands.getOperandNamed(NI
[all...]
H A DDAGISelMatcherGen.cpp217 const SDNodeInfo &NI = CGP.getSDNodeInfo(CGP.getSDNodeNamed("imm")); local
218 AddMatcher(new CheckOpcodeMatcher(NI));
H A DCodeGenDAGPatterns.cpp1642 const SDNodeInfo &NI = CDP.getSDNodeInfo(getOperator()); local
1645 if (NI.getNumOperands() >= 0 &&
1646 getNumChildren() != (unsigned)NI.getNumOperands()) {
1648 itostr(NI.getNumOperands()) + " operands!");
1652 bool MadeChange = NI.ApplyTypeConstraints(this, TP);
/external/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl177 $NI = 2;
245 &I(\$c, "padd1 I[%u] = One, I[%u]", $i0 % $NI, $i1 % $NI)if ($p & $pComI);
252 &I(\$c, "KEYADDR(IPr[%u], I[%u])", $i0 % $NIP, $i1 % $NI) if ($p & $pComI);
273 &I(\$c, "cmp.eq pBypass, p0 = I[%u], J", $i1 % $NI) if ($pByp);
/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp257 Instruction *NI = InsertValueInst::Create(AI, EI, 0); local
258 NI->insertAfter(EI);
259 AI->replaceAllUsesWith(NI);
263 NI->setOperand(0, AI);
/external/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h126 iterator(LazyCallGraph &G, NodeVectorImplT::iterator NI, argument
128 : iterator_adaptor_base(NI), G(&G), E(E) {
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp1821 Instruction *NI = ConvertShiftToMul(I);
1824 I = NI;
1864 Instruction *NI = BreakUpSubtract(I);
1867 I = NI;
1874 Instruction *NI = LowerNegateToMultiply(I);
1877 I = NI;
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp2387 NI = NewRetains.begin(), NE = NewRetains.end(); NI != NE; ++NI) {
2388 Instruction *NewRetain = *NI;
2471 NI = NewReleases.begin(), NE = NewReleases.end(); NI != NE; ++NI) {
2472 Instruction *NewRelease = *NI;
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java841 NI(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp473 NewArchiveIterator NI(I, Name);
475 Members.push_back(NI);
477 Members[Pos] = NI;
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp447 NameSet::iterator NI = UsedNames.find(name); local
448 if (NI != UsedNames.end())
463 NameSet::iterator NI = UsedNames.find(name); local
464 if (NI != UsedNames.end())
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp607 Instruction *NI = Builder.CreateBr(ThisDef); local
608 (void) NI;
614 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n"); local
693 Instruction *NI = Builder.CreateBr(TheRealDest); local
694 (void) NI;
697 << "Through successor TI: " << *TI << "Leaving: " << *NI << "\n"); local
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2293 DeclarationNameInfo NI; local
2301 NI = DRE->getNameInfo();
2304 << NI.getName();
2311 NI = ULE->getNameInfo();
2314 << NI.getName();
2326 << NI.getName();
2337 << NI.getName() << ParamTy << Ty;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2811 if (Instruction *NI = FoldGEPICmp(GEP, Op1, I.getPredicate(), I))
2812 return NI;
2814 if (Instruction *NI = FoldGEPICmp(GEP, Op0,
2816 return NI;
/external/clang/tools/libclang/
H A DCIndex.cpp2570 const DeclarationNameInfo &NI, const SourceRange &QLoc,
2576 const DeclarationName::NameKind Kind = NI.getName().getNameKind();
2584 Pieces.push_back(NI.getLoc());
2592 NI.getInfo().CXXOperatorName.BeginOpNameLoc));
2594 NI.getInfo().CXXOperatorName.EndOpNameLoc));
2569 buildPieces(unsigned NameFlags, bool IsMemberRefExpr, const DeclarationNameInfo &NI, const SourceRange &QLoc, const ASTTemplateArgumentListInfo *TemplateArgs = nullptr) argument

Completed in 3032 milliseconds

12