Home
last modified time | relevance | path

Searched refs:OI (Results 1 – 25 of 74) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMEHABIPrinter.h34 void (OpcodeDecoder::*Routine)(const uint8_t *Opcodes, unsigned &OI);
38 void Decode_00xxxxxx(const uint8_t *Opcodes, unsigned &OI);
39 void Decode_01xxxxxx(const uint8_t *Opcodes, unsigned &OI);
40 void Decode_1000iiii_iiiiiiii(const uint8_t *Opcodes, unsigned &OI);
41 void Decode_10011101(const uint8_t *Opcodes, unsigned &OI);
42 void Decode_10011111(const uint8_t *Opcodes, unsigned &OI);
43 void Decode_1001nnnn(const uint8_t *Opcodes, unsigned &OI);
44 void Decode_10100nnn(const uint8_t *Opcodes, unsigned &OI);
45 void Decode_10101nnn(const uint8_t *Opcodes, unsigned &OI);
46 void Decode_10110000(const uint8_t *Opcodes, unsigned &OI);
[all …]
H A DARMWinEHPrinter.cpp1003 for (unsigned OI = Offset, OE = Opcodes.size(); !Terminated && OI < OE; ) { in decodeOpcodes()
1008 Opcodes.data()[OI]); in decodeOpcodes()
1009 ++OI; in decodeOpcodes()
1013 if ((Opcodes[OI] & DecodeRing[DI].Mask) == DecodeRing[DI].Value) { in decodeOpcodes()
1014 if (OI + DecodeRing[DI].Length > OE) { in decodeOpcodes()
1016 Opcodes[OI]); in decodeOpcodes()
1017 OI += DecodeRing[DI].Length; in decodeOpcodes()
1021 (this->*DecodeRing[DI].Routine)(Opcodes.data(), OI, 0, Prologue); in dumpXDataRecord()
995 for (unsigned OI = Offset, OE = Opcodes.size(); !Terminated && OI < OE; ) { decodeOpcodes() local
/freebsd/contrib/nvi/common/
H A Doptions.c320 #define OI(indx, str) do { \ in opts_init() macro
350 OI(O_CDPATH, b2); in opts_init()
351 OI(O_CEDIT, L("cedit=\033")); in opts_init()
362 OI(O_TMPDIR, b2); in opts_init()
363 OI(O_ESCAPETIME, L("escapetime=6")); in opts_init()
364 OI(O_FILEC, L("filec=\t")); in opts_init()
365 OI(O_KEYTIME, L("keytime=6")); in opts_init()
366 OI(O_MATCHCHARS, L("matchchars=()[]{}")); in opts_init()
367 OI(O_MATCHTIME, L("matchtime=7")); in opts_init()
369 OI(O_MSGCAT, b2); in opts_init()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDemandedBits.cpp318 for (Use &OI : I.operands()) { in performAnalysis()
319 if (auto *J = dyn_cast<Instruction>(OI)) { in performAnalysis()
357 for (Use &OI : UserI->operands()) { in performAnalysis()
360 auto *I = dyn_cast<Instruction>(OI); in performAnalysis()
361 if (!I && !isa<Argument>(OI)) in performAnalysis()
364 Type *T = OI->getType(); in performAnalysis()
373 determineLiveOperandBits(UserI, OI, OI.getOperandNo(), AOut, AB, in performAnalysis()
378 DeadUses.insert(&OI); in performAnalysis()
380 DeadUses.erase(&OI); in performAnalysis()
486 for (Use &OI : I->operands()) { in print()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp125 for (User::op_iterator OI = Init->op_begin(), OE = Init->op_end(); in runImpl() local
126 OI != OE; ++OI) { in runImpl()
127 Value *Op = *OI; in runImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVRegularizer.cpp137 for (unsigned OI = 0, OE = II->getNumOperands(); OI != OE; ++OI) { in runLowerConstExpr() local
138 auto *Op = II->getOperand(OI); in runLowerConstExpr()
140 Value *ReplInst = LowerConstantVec(Vec, OI); in runLowerConstExpr()
152 ReplInst = LowerConstantVec(Vec, OI); in runLowerConstExpr()
159 II->setOperand(OI, RepMDVal); in runLowerConstExpr()
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp208 MachineInstr *OI) { in isRedundantFlagInstr() argument
210 OI->getOpcode() == Lanai::SUB_R && in isRedundantFlagInstr()
211 ((OI->getOperand(1).getReg() == SrcReg && in isRedundantFlagInstr()
212 OI->getOperand(2).getReg() == SrcReg2) || in isRedundantFlagInstr()
213 (OI->getOperand(1).getReg() == SrcReg2 && in isRedundantFlagInstr()
214 OI->getOperand(2).getReg() == SrcReg))) in isRedundantFlagInstr()
218 OI->getOpcode() == Lanai::SUB_I_LO) || in isRedundantFlagInstr()
220 OI->getOpcode() == Lanai::SUB_I_HI)) && in isRedundantFlagInstr()
221 OI->getOperand(1).getReg() == SrcReg && in isRedundantFlagInstr()
222 OI->getOperand(2).getImm() == ImmValue) in isRedundantFlagInstr()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.cpp95 for (unsigned OI = 4, OE = MI.getNumOperands(); OI < OE; ++OI) { in getARMStoreDeprecationInfo() local
96 assert(MI.getOperand(OI).isReg() && "expected register"); in getARMStoreDeprecationInfo()
97 if (MI.getOperand(OI).getReg() == ARM::PC) { in getARMStoreDeprecationInfo()
112 for (unsigned OI = 4, OE = MI.getNumOperands(); OI < OE; ++OI) { in getARMLoadDeprecationInfo() local
113 assert(MI.getOperand(OI).isReg() && "expected register"); in getARMLoadDeprecationInfo()
114 switch (MI.getOperand(OI).getReg()) { in getARMLoadDeprecationInfo()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DMveEmitter.cpp1578 OutputIntrinsic OI; in EmitBuiltinCG() local
1580 OI.Int = &Int; in EmitBuiltinCG()
1581 OI.Name = Int.fullName(); in EmitBuiltinCG()
1582 CodeGenParamAllocator ParamAllocPrelim{&MG.ParamTypes, &OI.ParamValues}; in EmitBuiltinCG()
1587 MergeableGroupsPrelim[MG].insert(OI); in EmitBuiltinCG()
1606 bool Constant = all_of(kv.second, [&](const OutputIntrinsic &OI) { in EmitBuiltinCG() argument
1607 return OI.ParamValues[i] == OI_first.ParamValues[i]; in EmitBuiltinCG()
1626 for (const auto &OI : kv.second) in EmitBuiltinCG() local
1627 key.push_back(OI.ParamValues[i]); in EmitBuiltinCG()
1649 OutputIntrinsic OI; in EmitBuiltinCG() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp216 FunctionCloner(Function *F, FunctionOutliningInfo *OI,
664 static bool hasProfileData(const Function &F, const FunctionOutliningInfo &OI) { in hasProfileData() argument
668 for (auto *E : OI.Entries) { in hasProfileData()
945 Function *F, FunctionOutliningInfo *OI, OptimizationRemarkEmitter &ORE, in FunctionCloner() argument
955 ClonedOI->ReturnBlock = cast<BasicBlock>(VMap[OI->ReturnBlock]); in FunctionCloner()
956 ClonedOI->NonReturnBlock = cast<BasicBlock>(VMap[OI->NonReturnBlock]); in FunctionCloner()
957 for (BasicBlock *BB : OI->Entries) in FunctionCloner()
960 for (BasicBlock *E : OI->ReturnBlockPreds) { in FunctionCloner()
970 Function *F, FunctionOutliningMultiRegionInfo *OI, in FunctionCloner() argument
984 OI->ORI) { in FunctionCloner()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp433 for (OriginMap::iterator OI = Origins.begin(), OE = Origins.end(); OI != OE; ) { in RemoveSources() local
434 std::pair<const DeclContext *, DCOrigin> Origin = *OI; in RemoveSources()
443 OI = Origins.erase(OI); in RemoveSources()
445 ++OI; in RemoveSources()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp192 if (Instruction *OI = dyn_cast<Instruction>(O)) { in walkBackwards() local
194 ECs.unionSets(I, OI); in walkBackwards()
196 Worklist.push_back(OI); in walkBackwards()
210 if (Instruction *OI = dyn_cast<Instruction>(O)) { in calcRange() local
211 auto OpIt = SeenInsts.find(OI); in calcRange()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp385 for (auto OI = UB->begin_objects(), OE = UB->end_objects(); OI != OE; ++OI) { in readFile() local
388 getArchitectureFromCpuType(OI->getCPUType(), OI->getCPUSubType()); in readFile()
397 auto ObjOrErr = OI->getAsObjectFile(); in readFile()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp108 for (param_iterator I = param_begin(), OI = Other.param_begin(), in isIdenticalTo() local
110 I != E; ++I, ++OI) in isIdenticalTo()
111 if (*I != *OI) return false; in isIdenticalTo()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp359 ObjectMap::iterator OI = LoadedObjectMap.find(ObjData); in notifyFreeingObject() local
360 if (OI == LoadedObjectMap.end()) in notifyFreeingObject()
362 MethodAddressVector &Functions = OI->second; in notifyFreeingObject()
378 LoadedObjectMap.erase(OI); in notifyFreeingObject()
/freebsd/contrib/wpa/wpa_supplicant/
H A DREADME-HS20202 # home_ois: Home OI(s)
210 # as at least one Home OI from the list matches an OI in the Roaming
214 # required_home_ois: Required Home OI(s)
215 # This string field contains the set of Home OI(s) (hexdump) that are
220 # roaming_consortium: Roaming Consortium OI
223 # Roaming Consortium OI that can be used to determine which access
230 # required_roaming_consortium: Required Roaming Consortium OI
233 # Roaming Consortium OI that is required to be advertised by the AP for
236 # roaming_consortiums: Roaming Consortium OI(s) memberships
684 roaming_consortium_selection: Matching OI from HomeSP/RoamingConsortiumOI
/freebsd/share/timedef/
H A Dfa_IR.UTF-8.src82 %OI:%OM:%OS %p
H A Dfa_AF.UTF-8.src82 %OI:%OM:%OS %p
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp666 for (OutlineInfo &OI : OutlineInfos) { in finalize()
669 if (Fn && OI.getFunction() != Fn) { in finalize()
670 DeferredOutlines.push_back(OI); in finalize()
676 OI.collectBlocks(ParallelRegionBlockSet, Blocks); in finalize()
678 Function *OuterFn = OI.getFunction(); in finalize()
694 /* AllocaBlock*/ OI.OuterAllocaBB, in finalize()
698 LLVM_DEBUG(dbgs() << "Entry " << OI.EntryBB->getName() in finalize()
699 << " Exit: " << OI.ExitBB->getName() << "\n"); in finalize()
703 for (auto *V : OI.ExcludeArgsFromAggregate) in finalize()
731 assert(ArtificialEntry.getUniqueSuccessor() == OI.EntryBB); in finalize()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILValueEnumerator.cpp1050 for (const Use &OI : I.operands()) { in incorporateFunction() local
1051 if ((isa<Constant>(OI) && !isa<GlobalValue>(OI)) || isa<InlineAsm>(OI)) in incorporateFunction()
1052 EnumerateValue(OI); in incorporateFunction()
1072 for (const Use &OI : I.operands()) { in incorporateFunction() local
1073 if (auto *MD = dyn_cast<MetadataAsValue>(&OI)) { in incorporateFunction()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp1081 for (const Use &OI : I.operands()) { in incorporateFunction() local
1082 if ((isa<Constant>(OI) && !isa<GlobalValue>(OI)) || isa<InlineAsm>(OI)) in incorporateFunction()
1083 EnumerateValue(OI); in incorporateFunction()
1125 for (const Use &OI : I.operands()) { in incorporateFunction() local
1126 if (auto *MD = dyn_cast<MetadataAsValue>(&OI)) in incorporateFunction()
/freebsd/crypto/openssl/demos/certs/apps/
H A Dintkey.pem22 ExXyJNnKV5fQWOGSwTkbKRsmBmNRS9uFDoY/kxnVI8ucjUmjYAV9HNek5DkFs+OI
/freebsd/contrib/tcpdump/doc/
H A DREADME.solaris.md18 `OI-hipster-text-20210430.iso` plus the following packages:
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp2862 const MachineInstr *OI, in isRedundantFlagInstr() argument
2865 (OI->getOpcode() == ARM::SUBrr || OI->getOpcode() == ARM::t2SUBrr) && in isRedundantFlagInstr()
2866 ((OI->getOperand(1).getReg() == SrcReg && in isRedundantFlagInstr()
2867 OI->getOperand(2).getReg() == SrcReg2) || in isRedundantFlagInstr()
2868 (OI->getOperand(1).getReg() == SrcReg2 && in isRedundantFlagInstr()
2869 OI->getOperand(2).getReg() == SrcReg))) { in isRedundantFlagInstr()
2874 if (CmpI->getOpcode() == ARM::tCMPr && OI->getOpcode() == ARM::tSUBrr && in isRedundantFlagInstr()
2875 ((OI->getOperand(2).getReg() == SrcReg && in isRedundantFlagInstr()
2876 OI->getOperand(3).getReg() == SrcReg2) || in isRedundantFlagInstr()
2877 (OI->getOperand(2).getReg() == SrcReg2 && in isRedundantFlagInstr()
[all …]
/freebsd/contrib/libpcap/doc/
H A DREADME.solaris.md21 `OI-hipster-text-20210430.iso` plus the following packages:

123