Searched refs:II (Results 176 - 200 of 459) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp165 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
166 switch (II->getIntrinsicID()) {
213 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
214 switch (II->getIntrinsicID()) {
218 return MemoryLocation(II->getArgOperand(0));
220 uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
221 return MemoryLocation(II->getArgOperand(1), Len);
252 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
253 switch (II->getIntrinsicID()) {
266 return !cast<MemIntrinsic>(II)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.h106 void eliminateFrameIndex(MachineBasicBlock::iterator II, int SPAdj,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DUtils.h67 /// provided MCInstrDesc \p II. If this fails, create a new virtual
80 MachineInstr &InsertPt, const MCInstrDesc &II,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16InstrInfo.h89 MachineBasicBlock::iterator II, const DebugLoc &DL,
H A DMipsSEInstrInfo.h75 MachineBasicBlock::iterator II, const DebugLoc &DL,
H A DMipsFastISel.cpp148 bool fastLowerIntrinsicCall(const IntrinsicInst *II) override;
1589 bool MipsFastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) { argument
1590 switch (II->getIntrinsicID()) {
1594 Type *RetTy = II->getCalledFunction()->getReturnType();
1600 unsigned SrcReg = getRegForValue(II->getOperand(0));
1609 updateValueMap(II, DestReg);
1622 updateValueMap(II, DestReg);
1630 updateValueMap(II, DestReg);
1651 updateValueMap(II, DestReg);
1659 const auto *MTI = cast<MemTransferInst>(II);
2137 const MCInstrDesc &II = TII.get(MachineInstOpcode); local
[all...]
H A DMipsRegisterInfo.cpp257 eliminateFrameIndex(MachineBasicBlock::iterator II, int SPAdj, argument
259 MachineInstr &MI = *II;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp932 DiagList::iterator II, IE; local
933 for (II = Right.begin(), IE = Right.end(); II != IE; ++II) {
935 unsigned LineNo2 = SourceMgr.getPresumedLineNumber(II->first);
941 !IsFromSameFile(SourceMgr, D.DiagnosticLoc, II->first))
944 const std::string &RightText = II->second;
948 if (II == IE) {
954 Right.erase(II);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDemandedBits.cpp118 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(UserI))
119 switch (II->getIntrinsicID()) {
159 } else if (match(II->getOperand(2), m_APInt(SA))) {
163 if (II->getIntrinsicID() == Intrinsic::fshr)
H A DTypeMetadataUtils.cpp42 } else if (auto II = dyn_cast<InvokeInst>(User)) {
43 DevirtCalls.push_back({Offset, II});
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DMultiplexConsumer.h35 void IdentifierRead(serialization::IdentID ID, IdentifierInfo *II) override;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp852 const IdentifierInfo *II = Tok.getIdentifierInfo(); local
855 if (!II) {
862 if (II->isStr("readonly"))
864 else if (II->isStr("assign"))
866 else if (II->isStr("unsafe_unretained"))
868 else if (II->isStr("readwrite"))
870 else if (II->isStr("retain"))
872 else if (II->isStr("strong"))
874 else if (II->isStr("copy"))
876 else if (II
1028 IdentifierInfo *II = &PP.getIdentifierTable().get(ThisTok); local
1106 IdentifierInfo *II = Tok.getIdentifierInfo(); local
1156 const IdentifierInfo *II = Tok.getIdentifierInfo(); local
2371 const IdentifierInfo *II = Tok.getIdentifierInfo(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h773 InsertionInfo II;
775 II.Bucket.push(To);
776 II.Visited.insert(To);
778 while (!II.Bucket.empty()) {
779 TreeNodePtr TN = II.Bucket.top();
780 II.Bucket.pop();
781 II.Affected.push_back(TN);
787 assert(TN->getBlock() && II.Visited.count(TN) && "Preconditions!");
792 // from II.Bucket and the rest are for vertices in
815 if (SuccLevel <= NCDLevel + 1 || !II
848 UpdateInsertion(DomTreeT &DT, const BatchUpdatePtr BUI, const TreeNodePtr NCD, InsertionInfo &II) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp3220 bool isInterestingIdentifier(const IdentifierInfo *II, uint64_t MacroOffset) {
3222 II->isPoisoned() ||
3223 (IsModule ? II->hasRevertedBuiltin() : II->getObjCOrBuiltinID()) ||
3224 II->hasRevertedTokenIDToIdentifier() ||
3225 (NeedDecls && II->getFETokenInfo()))
3250 static hash_value_type ComputeHash(const IdentifierInfo* II) {
3251 return llvm::djbHash(II->getName());
3254 bool isInterestingIdentifier(const IdentifierInfo *II) {
3255 auto MacroOffset = Writer.getMacroDirectivesOffset(II);
[all...]
H A DASTReaderInternals.h172 IdentifierInfo *II = nullptr)
173 : Reader(Reader), F(F), KnownII(II) {}
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DNestedNameSpecifier.h125 IdentifierInfo *II);
149 IdentifierInfo *II);
H A DDeclarationName.h129 CXXLiteralOperatorIdName(IdentifierInfo *II) argument
130 : DeclarationNameExtra(CXXLiteralOperatorName), ID(II),
351 DeclarationName(const IdentifierInfo *II) { argument
352 setPtrAndKind(II, StoredIdentifier);
643 /// Get the name of the literal operator function with II as the identifier.
644 DeclarationName getCXXLiteralOperatorName(IdentifierInfo *II);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DToken.h188 void setIdentifierInfo(IdentifierInfo *II) { argument
189 PtrData = (void*) II;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckObjCDealloc.cpp365 const IdentifierInfo *II = Call.getCalleeIdentifier(); local
366 if (II != Block_releaseII)
1014 IdentifierInfo *II = ID->getIdentifier(); local
1016 if (II == NSObjectII)
1023 if (II == XCTestCaseII || II == SenTestCaseII)
1053 IdentifierInfo *II = ID->getIdentifier(); local
1054 if (II == CIFilterII)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DDragonFly.cpp44 for (const auto &II : Inputs)
45 CmdArgs.push_back(II.getFilename());
H A DHIP.cpp101 for (const auto &II : Inputs)
102 CmdArgs.push_back(II.getFilename());
214 for (const auto &II : Inputs) {
215 const auto* A = II.getAction();
218 BundlerInputArg = BundlerInputArg + "," + II.getFilename();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DMacroArgs.cpp151 if (IdentifierInfo *II = ArgTok->getIdentifierInfo())
152 if (II->hasMacroDefinition())
H A DPPLexerChange.cpp752 auto *II = const_cast<IdentifierInfo*>(PendingModuleMacroNames[I]);
753 if (!VisitedMacros.insert(II).second)
756 auto MacroIt = CurSubmoduleState->Macros.find(II);
770 auto OldMacroIt = OldMacros.find(II);
802 addModuleMacro(LeavingMod, II, Def,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineCombiner.cpp185 DenseMap<unsigned, unsigned>::iterator II = local
187 if (II != InstrIdxForVirtReg.end()) {
189 assert(II->second < InstrDepth.size() && "Bad Index");
190 MachineInstr *DefInstr = InsInstrs[II->second];
193 DepthOp = InstrDepth[II->second];
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFastISel.cpp305 const MCInstrDesc &II = TII.get(MachineInstOpcode); local
309 Op0 = constrainOperandRegClass(II, Op0, 1);
310 if (II.getNumDefs() >= 1) {
311 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II,
314 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
318 .addReg(II.ImplicitDefs[0]));
328 const MCInstrDesc &II = TII.get(MachineInstOpcode); local
332 Op0 = constrainOperandRegClass(II, Op0, 1);
333 Op1 = constrainOperandRegClass(II, Op1, 2);
335 if (II
356 const MCInstrDesc &II = TII.get(MachineInstOpcode); local
381 const MCInstrDesc &II = TII.get(MachineInstOpcode); local
1444 const MCInstrDesc &II = TII.get(CmpOpc); local
[all...]

Completed in 184 milliseconds

1234567891011>>