Searched defs:OI (Results 1 - 15 of 15) sorted by relevance

/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp264 ObjectMap::iterator OI = LoadedObjectMap.find(ObjData); local
265 if (OI == LoadedObjectMap.end())
267 MethodAddressVector& Functions = OI->second;
284 LoadedObjectMap.erase(OI);
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h108 OutputIter copy(InputIter II, InputIter IE, OutputIter OI) { argument
110 *OI++ = *II++;
111 return OI;
/external/llvm/include/llvm/Support/
H A DGenericDomTree.h310 typename DomTreeNodeMapType::const_iterator OI = OtherDomTreeNodes.find(BB); local
311 if (OI == OtherDomTreeNodes.end())
315 DomTreeNodeBase<NodeT>* OtherNd = OI->second;
/external/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h35 void (OpcodeDecoder::*Routine)(const uint8_t *Opcodes, unsigned &OI);
39 void Decode_00xxxxxx(const uint8_t *Opcodes, unsigned &OI);
40 void Decode_01xxxxxx(const uint8_t *Opcodes, unsigned &OI);
41 void Decode_1000iiii_iiiiiiii(const uint8_t *Opcodes, unsigned &OI);
42 void Decode_10011101(const uint8_t *Opcodes, unsigned &OI);
43 void Decode_10011111(const uint8_t *Opcodes, unsigned &OI);
44 void Decode_1001nnnn(const uint8_t *Opcodes, unsigned &OI);
45 void Decode_10100nnn(const uint8_t *Opcodes, unsigned &OI);
46 void Decode_10101nnn(const uint8_t *Opcodes, unsigned &OI);
47 void Decode_10110000(const uint8_t *Opcodes, unsigned &OI);
95 Decode_00xxxxxx(const uint8_t *Opcodes, unsigned &OI) argument
100 Decode_01xxxxxx(const uint8_t *Opcodes, unsigned &OI) argument
105 Decode_1000iiii_iiiiiiii(const uint8_t *Opcodes, unsigned &OI) argument
118 Decode_10011101(const uint8_t *Opcodes, unsigned &OI) argument
122 Decode_10011111(const uint8_t *Opcodes, unsigned &OI) argument
126 Decode_1001nnnn(const uint8_t *Opcodes, unsigned &OI) argument
130 Decode_10100nnn(const uint8_t *Opcodes, unsigned &OI) argument
136 Decode_10101nnn(const uint8_t *Opcodes, unsigned &OI) argument
142 Decode_10110000(const uint8_t *Opcodes, unsigned &OI) argument
146 Decode_10110001_0000iiii(const uint8_t *Opcodes, unsigned &OI) argument
158 Decode_10110010_uleb128(const uint8_t *Opcodes, unsigned &OI) argument
175 Decode_10110011_sssscccc(const uint8_t *Opcodes, unsigned &OI) argument
185 Decode_101101nn(const uint8_t *Opcodes, unsigned &OI) argument
189 Decode_10111nnn(const uint8_t *Opcodes, unsigned &OI) argument
195 Decode_11000110_sssscccc(const uint8_t *Opcodes, unsigned &OI) argument
205 Decode_11000111_0000iiii(const uint8_t *Opcodes, unsigned &OI) argument
216 Decode_11001000_sssscccc(const uint8_t *Opcodes, unsigned &OI) argument
226 Decode_11001001_sssscccc(const uint8_t *Opcodes, unsigned &OI) argument
236 Decode_11001yyy(const uint8_t *Opcodes, unsigned &OI) argument
240 Decode_11000nnn(const uint8_t *Opcodes, unsigned &OI) argument
246 Decode_11010nnn(const uint8_t *Opcodes, unsigned &OI) argument
252 Decode_11xxxyyy(const uint8_t *Opcodes, unsigned &OI) argument
[all...]
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp979 DenseSet<OverDefinedPairTy>::iterator OI = local
981 if (OI == OverDefinedCache.end()) continue;
989 OverDefinedCache.erase(OI);
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp641 ClassInfo *getOperandClass(const CGIOperandList::OperandInfo &OI,
1014 AsmMatcherInfo::getOperandClass(const CGIOperandList::OperandInfo &OI, argument
1016 Record *Rec = OI.Rec;
1018 Rec = cast<DefInit>(OI.MIOperandInfo->getArg(SubOpIdx))->getDef();
H A DCodeGenDAGPatterns.cpp2747 static bool checkOperandClass(CGIOperandList::OperandInfo &OI, argument
2749 if (OI.Rec == Leaf)
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp2061 OverloadInfo &OI = OverloadMap[Name]; local
2062 OI.Mask |= Mask;
2063 OI.PtrArgNum |= PtrArgNum;
2064 OI.HasConstPtr = HasConstPtr;
2069 OverloadInfo &OI = I.second; local
2072 OS << "mask = 0x" << utohexstr(OI.Mask) << "ULL";
2073 if (OI.PtrArgNum >= 0)
2074 OS << "; PtrArgNum = " << OI.PtrArgNum;
2075 if (OI.HasConstPtr)
/external/llvm/lib/IR/
H A DConstants.cpp1086 User::const_op_iterator OI = std::next(this->op_begin()); local
1090 ++OI;
1094 for (; GEPI != E; ++GEPI, ++OI) {
1095 ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp3433 MachineInstr *OI) {
3435 OI->getOpcode() == X86::SUB64rr) ||
3437 OI->getOpcode() == X86::SUB32rr)||
3439 OI->getOpcode() == X86::SUB16rr)||
3441 OI->getOpcode() == X86::SUB8rr)) &&
3442 ((OI->getOperand(1).getReg() == SrcReg &&
3443 OI->getOperand(2).getReg() == SrcReg2) ||
3444 (OI->getOperand(1).getReg() == SrcReg2 &&
3445 OI->getOperand(2).getReg() == SrcReg)))
3449 OI
3431 isRedundantFlagInstr(MachineInstr *FlagI, unsigned SrcReg, unsigned SrcReg2, int ImmValue, MachineInstr *OI) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp2986 OI= overrides.begin(), OE= overrides.end(); OI!=OE; ++OI) {
2987 ObjCMethodDecl *SuperOverridden = *OI;
3421 void Sema::CollectIvarsToConstructOrDestruct(ObjCInterfaceDecl *OI, argument
3423 for (ObjCIvarDecl *Iv = OI->all_declared_ivar_begin(); Iv;
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp2226 MachineInstr *OI) {
2229 (OI->getOpcode() == ARM::SUBrr ||
2230 OI->getOpcode() == ARM::t2SUBrr) &&
2231 ((OI->getOperand(1).getReg() == SrcReg &&
2232 OI->getOperand(2).getReg() == SrcReg2) ||
2233 (OI->getOperand(1).getReg() == SrcReg2 &&
2234 OI->getOperand(2).getReg() == SrcReg)))
2239 (OI->getOpcode() == ARM::SUBri ||
2240 OI->getOpcode() == ARM::t2SUBri) &&
2241 OI
2224 isRedundantFlagInstr(MachineInstr *CmpI, unsigned SrcReg, unsigned SrcReg2, int ImmValue, MachineInstr *OI) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp822 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
823 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
824 *OI = nullptr;
2446 /// by an AddRec in this loop) within [OI,OE) or returns OE. If IVUsers mapped
2449 findIVOperand(User::op_iterator OI, User::op_iterator OE, argument
2451 for(; OI != OE; ++OI) {
2452 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp943 llvm::Constant *BuildIvarLayout(const ObjCImplementationDecl *OI,
951 void BuildAggrIvarLayout(const ObjCImplementationDecl *OI,
4495 void CGObjCCommonMac::BuildAggrIvarLayout(const ObjCImplementationDecl *OI, argument
4519 ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(FirstField));
4532 ComputeIvarBaseOffset(CGM, OI, cast<ObjCIvarDecl>(Field)) - FirstFieldDelta;
4811 const ObjCInterfaceDecl *OI = OMD->getClassInterface(); local
4814 for (const ObjCIvarDecl *IVD = OI->all_declared_ivar_begin();
4820 CGM.getContext().DeepCollectObjCIvars(OI, true, Ivars);
/external/clang/lib/AST/
H A DASTContext.cpp1814 void ASTContext::DeepCollectObjCIvars(const ObjCInterfaceDecl *OI, argument
1817 if (const ObjCInterfaceDecl *SuperClass = OI->getSuperClass())
1820 for (const auto *I : OI->ivars())
1823 ObjCInterfaceDecl *IDecl = const_cast<ObjCInterfaceDecl *>(OI);
1834 if (const ObjCInterfaceDecl *OI = dyn_cast<ObjCInterfaceDecl>(CDecl)) {
1837 for (auto *Proto : OI->all_referenced_protocols()) {
1846 for (const auto *Cat : OI->visible_categories())
1849 if (ObjCInterfaceDecl *SD = OI->getSuperClass())
1869 unsigned ASTContext::CountNonClassIvars(const ObjCInterfaceDecl *OI) const {
1872 for (const auto *Ext : OI
5453 ObjCInterfaceDecl *OI = OIT->getDecl(); local
5516 ObjCInterfaceDecl *OI = OPT->getInterfaceDecl(); local
[all...]

Completed in 1301 milliseconds