HomeSort by relevance Sort by last modified time
    Searched defs:II (Results 101 - 125 of 137) sorted by null

1 2 3 45 6

  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 215 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
216 if (!II) return visitCallSite(&CI);
220 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) {
272 if (Changed) return II;
275 switch (II->getIntrinsicID()) {
279 if (getObjectSize(II->getArgOperand(0), Size, DL, TLI))
284 Value *IIOperand = II->getArgOperand(0);
303 if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
309 return ReplaceInstUsesWith(CI, II->getArgOperand(0));
313 II->getArgOperand(0))
    [all...]
InstCombineCasts.cpp     [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 226 std::insert_iterator<RegisterSet> II(Tmp, Tmp.begin());
229 II, LessRecordByID());
653 void buildInstructionOperandReference(MatchableInfo *II, StringRef OpName,
655 void buildAliasOperandReference(MatchableInfo *II, StringRef OpName,
    [all...]
CodeGenDAGPatterns.cpp     [all...]
  /external/clang/include/clang/AST/
ASTContext.h     [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp     [all...]
CodeGenModule.cpp 546 IdentifierInfo *II = ND->getIdentifier();
547 assert(II && "Attempt to mangle unnamed decl.");
548 Str = II->getName();
    [all...]
  /external/clang/lib/Driver/
Tools.cpp 179 for (const auto &II : Inputs) {
182 if (II.getType() == types::TY_LLVM_IR ||
183 II.getType() == types::TY_LTO_IR ||
184 II.getType() == types::TY_LLVM_BC ||
185 II.getType() == types::TY_LTO_BC)
191 if (II.isFilename()) {
192 CmdArgs.push_back(II.getFilename());
197 const Arg &A = II.getInputArg();
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 73 static bool isAttributeLateParsed(const IdentifierInfo &II) {
75 return llvm::StringSwitch<bool>(II.getName())
202 static bool attributeHasIdentifierArg(const IdentifierInfo &II) {
204 return llvm::StringSwitch<bool>(normalizeAttrName(II.getName()))
211 static bool attributeIsTypeArgAttr(const IdentifierInfo &II) {
213 return llvm::StringSwitch<bool>(normalizeAttrName(II.getName()))
221 static bool attributeParsedArgsUnevaluated(const IdentifierInfo &II) {
223 return llvm::StringSwitch<bool>(normalizeAttrName(II.getName()))
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 491 IdentifierInfo *II = &Context.Idents.get("stringWithUTF8String");
492 Selector stringWithUTF8String = Context.Selectors.getUnarySelector(II);
    [all...]
SemaLookup.cpp 520 IdentifierInfo *II = R.getLookupName().getAsIdentifierInfo();
521 if (II) {
523 II == S.getFloat128Identifier()) {
531 if (unsigned BuiltinID = II->getBuiltinID()) {
538 if (NamedDecl *D = S.LazilyCreateBuiltin((IdentifierInfo *)II,
    [all...]
SemaStmt.cpp     [all...]
SemaDeclAttr.cpp     [all...]
SemaType.cpp 82 IdentifierInfo *II = attr.isArgIdent(0) ? attr.getArgAsIdent(0)->Ident
84 if (useExpansionLoc && loc.isMacroID() && II) {
85 if (II->isStr("strong")) {
87 } else if (II->isStr("weak")) {
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTReaderDecl.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 507 Record *II = R.getClass("IInst");
516 ClassMap[II] = ClassI;
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp 225 II = Successors.begin(), IE = Successors.end(); II != IE; ++II)
226 if (pred_begin(*II) == pred_end(*II))
227 WorkList.insert(*II);
240 II = Successors.begin(), IE = Successors.end(); II != IE; ++II)
241 if (pred_begin(*II) == pred_end(*II)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 110 const InstrItineraryData *II =
112 return new ScoreboardHazardRecognizer(II, DAG, "pre-RA-sched");
118 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
121 return (ScheduleHazardRecognizer *)new ARMHazardRecognizer(II, DAG);
122 return TargetInstrInfo::CreateTargetPostRAHazardRecognizer(II, DAG);
    [all...]
ARMFastISel.cpp 290 const MCInstrDesc &II = TII.get(MachineInstOpcode);
294 Op0 = constrainOperandRegClass(II, Op0, 1);
295 if (II.getNumDefs() >= 1) {
296 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II,
299 AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II)
303 .addReg(II.ImplicitDefs[0]));
313 const MCInstrDesc &II = TII.get(MachineInstOpcode);
317 Op0 = constrainOperandRegClass(II, Op0, 1);
318 Op1 = constrainOperandRegClass(II, Op1, 2);
320 if (II.getNumDefs() >= 1)
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 291 const auto *II = cast<IntrinsicInst>(EV->getAggregateOperand());
293 const Function *Callee = II->getCalledFunction();
303 switch (II->getIntrinsicID()) {
314 if (II->getParent() != I->getParent())
319 BasicBlock::const_iterator End = II;
328 if (EVI->getAggregateOperand() != II)
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 342 int &BestEffSize, Value *II, std::vector<Value *>&JJ,
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 447 IdentifierInfo* II;
450 ObjCSummaryKey(IdentifierInfo* ii, Selector s)
451 : II(ii), S(s) {}
454 : II(d ? d->getIdentifier() : nullptr), S(s) {}
457 : II(nullptr), S(s) {}
459 IdentifierInfo *getIdentifier() const { return II; }
529 const RetainSummary *find(IdentifierInfo* II, Selector S) {
532 MapTy::iterator I = M.find(ObjCSummaryKey(II, S));
699 void addClsMethSummary(IdentifierInfo *II, const RetainSummary * Summ, ...)
    [all...]

Completed in 554 milliseconds

1 2 3 45 6