Searched refs:isa (Results 76 - 100 of 635) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/inlining/
H A DInlineObjCInstanceMethod.h9 Class isa; member in struct:objc_object
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefsanity.c49 void *isa; member in struct:Block_basic2
H A DobjectRRGC.c38 long isa; member in struct:MyStruct
H A Dobjectassign.c37 long isa; member in struct:MyStruct
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeVendor.h49 clang::ObjCInterfaceDecl *GetDeclForISA(ObjCLanguageRuntime::ObjCISA isa);
/external/llvm/include/llvm/IR/
H A DUser.h93 assert((!isa<Constant>((const Value*)this) ||
94 isa<GlobalValue>((const Value*)this)) &&
168 // Methods for support type inquiry through isa, cast, and dyn_cast:
170 return isa<Instruction>(V) || isa<Constant>(V);
H A DOperator.h68 return isa<Instruction>(V) || isa<ConstantExpr>(V);
120 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
121 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
159 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
160 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
312 return isa<Instruction>(V) && classof(cast<Instruction>(V));
328 return (isa<Instruction>(V) && classof(cast<Instruction>(V))) ||
329 (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V)));
439 if (!isa<ConstantIn
[all...]
/external/llvm/lib/IR/
H A DTypeFinder.cpp71 if (*OI && !isa<Instruction>(OI))
136 if (!isa<Constant>(V) || isa<GlobalValue>(V)) return;
146 if (isa<Instruction>(V))
H A DVerifier.cpp98 if (isa<Instruction>(V)) {
435 Assert(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
506 Assert(isa<GlobalVariable>(V) || isa<Function>(V) ||
507 isa<GlobalAlias>(V),
595 Assert(isa<GlobalValue>(Aliasee) || isa<ConstantExpr>(Aliasee),
608 Assert(MD && isa<MDCompileUnit>(MD), "invalid compile unit", &NMD, MD);
640 Assert(!isa<LocalAsMetadata>(Op), "Invalid operand for global metadata!",
714 return !MD || isValidUUID(N, MD) || isa<MDTyp
[all...]
H A DBasicBlock.cpp167 while (isa<PHINode>(i)) ++i;
177 while (isa<PHINode>(i) || isa<DbgInfoIntrinsic>(i)) ++i;
188 if (isa<PHINode>(i) || isa<DbgInfoIntrinsic>(i))
203 if (isa<LandingPadInst>(InsertPt)) ++InsertPt;
406 return isa<LandingPadInst>(getFirstNonPHI());
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAllocaHoisting.cpp51 if (allocaInst && isa<ConstantInt>(allocaInst->getArraySize())) {
H A DNVVMReflect.cpp162 assert(isa<CallInst>(U) && "Only a call instruction can use _reflect");
170 if (isa<CallInst>(Str)) {
175 assert(isa<ConstantExpr>(Str) &&
180 assert(isa<Constant>(Sym) && "Format of _reflect function not recognized");
192 assert(isa<ConstantDataSequential>(Operand) &&
/external/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp93 if (isa<ConstantAggregateZero>(GV->getInitializer()))
98 if (isa<ConstantAggregateZero>(*i))
101 if (isa<ConstantPointerNull>(CS->getOperand(1)))
105 if (!isa<Function>(CS->getOperand(1)))
H A DValueMapper.cpp43 if (isa<GlobalValue>(V))
64 if (!isa<LocalAsMetadata>(MD) && (Flags & RF_NoModuleLevelChanges))
132 if (isa<ConstantArray>(C))
134 if (isa<ConstantStruct>(C))
136 if (isa<ConstantVector>(C))
139 if (isa<UndefValue>(C))
141 if (isa<ConstantAggregateZero>(C))
143 assert(isa<ConstantPointerNull>(C));
270 if (isa<MDString>(MD))
273 if (isa<ConstantAsMetadat
[all...]
/external/llvm/tools/bugpoint-passes/
H A DTestPasses.cpp38 if (isa<CallInst>(*I))
/external/compiler-rt/lib/BlocksRuntime/
H A Druntime.c320 result->isa = _NSConcreteMallocBlock;
348 result->isa = _NSConcreteFinalizingBlock;
351 result->isa = _NSConcreteAutoBlock;
388 copy->isa = &_NSConcreteWeakBlockVariable; // mark isa field so it gets weak scanning
423 // by using an isa that directs the code to a finalizer that calls the byref_destroy method.
573 // flags will indicate if it holds a __weak reference and needs a special isa
633 if (closure->isa == NULL) {
634 cp += sprintf(cp, "isa: NULL\n");
636 else if (closure->isa
[all...]
/external/apache-http/src/org/apache/http/conn/scheme/
H A DPlainSocketFactory.java110 InetSocketAddress isa =
112 sock.bind(isa);
/external/clang/test/SemaObjC/
H A Dforeach.m24 Class isa;
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp64 if (isa<AllocaInst>(V) || isNoAliasCall(V))
88 if (isa<CallInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V))
94 if (isa<LoadInst>(V))
252 if ((isa<SExtInst>(V) && Extension != EK_ZeroExt) ||
253 (isa<ZExtInst>(V) && Extension != EK_SignExt)) {
259 Extension = isa<SExtInst>(V) ? EK_SignExt : EK_ZeroExt;
610 if (OrLocal && isa<AllocaInst>(V))
661 isa<PointerTyp
[all...]
H A DLint.cpp135 if (isa<Instruction>(V)) {
269 Assert(!isa<AllocaInst>(Obj),
378 Assert(!isa<AllocaInst>(Obj), "Unusual: Returning alloca value", &I);
394 Assert(!isa<ConstantPointerNull>(UnderlyingObject),
396 Assert(!isa<UndefValue>(UnderlyingObject),
398 Assert(!isa<ConstantInt>(UnderlyingObject) ||
401 Assert(!isa<ConstantInt>(UnderlyingObject) ||
409 Assert(!isa<Function>(UnderlyingObject) &&
410 !isa<BlockAddress>(UnderlyingObject),
414 Assert(!isa<Functio
[all...]
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp42 } else if (isa<InjectedClassNameType>(Ty))
295 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
298 if (!isa<TypeDecl>(SD))
315 } else if (isa<RecordDecl>(SD)) {
317 } else if (isa<EnumDecl>(SD)) {
400 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
646 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDec
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp177 if (!isa<PHINode>(UserInst)) {
216 if (isa<DbgInfoIntrinsic>(I))
235 Value *IVOpnd = !isa<Constant>(I->getOperand(0))
237 : !isa<Constant>(I->getOperand(1))
433 !isa<TerminatorInst>(Inst) && !isa<DbgInfoIntrinsic>(Inst) &&
434 !isa<AllocaInst>(Inst)) {
496 if (!isa<ConstantInt>(PHBI->getCondition()) ||
542 if (isa<IndirectBrInst>((*PI)->getTerminator()))
H A DRewriteStatepointsForGC.cpp261 if (isa<Argument>(I))
266 assert(!isa<GlobalVariable>(I) &&
271 if (isa<UndefValue>(I))
279 assert(!isa<GlobalVariable>(I) && !isa<UndefValue>(I) &&
285 if (isa<LoadInst>(I))
314 if (isa<Argument>(I))
319 if (isa<GlobalVariable>(I))
325 if (isa<UndefValue>(I))
333 assert(!isa<GlobalVariabl
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h123 isa(rhs.isa)
139 isa = rhs.isa;
158 uint32_t isa; // An unsigned integer whose value encodes the applicable instruction set architecture for the current instruction. member in struct:DWARFDebugLine::Row
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp27 assert(isa<BinaryOperator>(FirstInst) || isa<CmpInst>(FirstInst));
158 (!isa<AllocaInst>(GEP->getOperand(0)) ||
172 if (isa<ConstantInt>(FirstInst->getOperand(op)) ||
173 isa<ConstantInt>(GEP->getOperand(op)))
261 if (isa<LoadInst>(U)) continue;
394 if (isa<GetElementPtrInst>(FirstInst))
396 if (isa<LoadInst>(FirstInst))
407 if (isa<CastInst>(FirstInst)) {
416 } else if (isa<BinaryOperato
[all...]

Completed in 2696 milliseconds

1234567891011>>