HomeSort by relevance Sort by last modified time
    Searched refs:isa (Results 276 - 300 of 2238) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Analysis/
Delinearization.cpp 88 if (!isa<StoreInst>(Inst) && !isa<LoadInst>(Inst) &&
89 !isa<GetElementPtrInst>(Inst))
TypeMetadataUtils.cpp 28 if (isa<BitCastInst>(User)) {
47 if (isa<BitCastInst>(User)) {
49 } else if (isa<LoadInst>(User)) {
BasicAliasAnalysis.cpp 74 if (isa<AllocaInst>(V) || isNoAliasCall(V))
98 if (isa<CallInst>(V) || isa<InvokeInst>(V) || isa<Argument>(V))
104 if (isa<LoadInst>(V))
199 // so we'll zext here and process any extension in the isa<SExtInst> &
200 // isa<ZExtInst> cases below.
211 // extensions below (see the isa<SExtInst> / isa<ZExtInst> cases).
258 if (isa<OverflowingBinaryOperator>(BOp))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ADCE.cpp 43 if (isa<DISubprogram>(LS))
71 if (isa<Constant>(CI->getArgOperand(0)))
82 if (isa<TerminatorInst>(I) || I.isEHPad() || I.mayHaveSideEffects()) {
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 56 if (isa<ReturnInst>(I->getTerminator()))
58 else if (isa<UnwindInst>(I->getTerminator()))
60 else if (isa<UnreachableInst>(I->getTerminator()))
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramChannelImpl.java 405 InetSocketAddress isa = (InetSocketAddress)sender;
408 isa.getAddress().getHostAddress(),
409 isa.getPort());
479 InetSocketAddress isa = Net.checkAddress(target); local
480 InetAddress ia = isa.getAddress();
493 isa.getPort());
514 n = send(fd, src, isa);
721 InetSocketAddress isa; local
725 isa = new InetSocketAddress(InetAddress.getByName("0.0.0.0"), 0);
727 isa = new InetSocketAddress(0)
774 InetSocketAddress isa = Net.checkAddress(sa); local
    [all...]
  /system/extras/preopt2cachename/
preopt2cachename.cpp 31 // Returns the ISA extracted from the file_location.
32 // file_location is formatted like /system/app/<app_name>/oat/<isa>/<app_name>.{odex,vdex}
46 // file_location is formatted like /system/app/<app_name>/oat/<isa>/<app_name>.{odex,vdex}.
66 // The cache file name is /data/dalvik-cache/<isa>/ prior to this function
113 std::string isa = ExtractISA(file_location); local
114 if (isa.empty()) {
115 LOG(ERROR) << "Unable to determine isa for file '" << file_location << "', skipping";
118 output_file_location += isa;
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp 159 if (isa<GlobalValue>(C)) return false;
185 if (!isa<PointerType>(CE->getType())) return true;
217 } else if (isa<LoadInst>(StoredVal) &&
234 } else if (isa<GetElementPtrInst>(I)) {
236 } else if (isa<SelectInst>(I)) {
244 } else if (isa<CmpInst>(I)) {
285 } else if (isa<ConstantAggregateZero>(Agg)) {
293 } else if (isa<UndefValue>(Agg)) {
347 if (!isa<ConstantExpr>(GEP->getOperand(0))) {
390 if (isa<LoadInst>(I)) return true
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp 114 if (isa<Instruction>(V)) {
505 Assert(!GV.hasAppendingLinkage() || isa<GlobalVariable>(GV),
595 Assert(isa<GlobalVariable>(V) || isa<Function>(V) ||
596 isa<GlobalAlias>(V),
666 Assert(isa<GlobalValue>(Aliasee) || isa<ConstantExpr>(Aliasee),
677 AssertDI(MD && isa<DICompileUnit>(MD), "invalid compile unit", &NMD, MD);
708 Assert(!isa<LocalAsMetadata>(Op), "Invalid operand for global metadata!",
767 static bool isType(const Metadata *MD) { return !MD || isa<DIType>(MD);
    [all...]
TypeFinder.cpp 64 if (*OI && !isa<Instruction>(OI))
129 if (!isa<Constant>(V) || isa<GlobalValue>(V)) return;
139 if (isa<Instruction>(V))
  /external/clang/include/clang/Basic/
LLVM.h 55 using llvm::isa;
  /external/clang/lib/AST/
ExprClassification.cpp 209 return isa<FunctionDecl>(cast<DeclRefExpr>(E)->getDecl())
237 if (isa<ObjCPropertyRefExpr>(Op))
421 if (isa<CXXMethodDecl>(D) && cast<CXXMethodDecl>(D)->isInstance())
429 islvalue = isa<VarDecl>(D) || isa<FieldDecl>(D) ||
430 isa<IndirectFieldDecl>(D) ||
432 (isa<FunctionDecl>(D) || isa<MSPropertyDecl>(D) ||
433 isa<FunctionTemplateDecl>(D)));
460 return (isa<FunctionDecl>(E->getMemberDecl()
    [all...]
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 9 Class isa; member in struct:objc_object
  /external/compiler-rt/test/BlocksRuntime/
byrefsanity.c 49 void *isa; member in struct:Block_basic2
objectRRGC.c 38 long isa; member in struct:MyStruct
objectassign.c 37 long isa; member in struct:MyStruct
  /external/llvm/include/llvm/IR/
User.h 140 assert((!isa<Constant>((const Value*)this) ||
141 isa<GlobalValue>((const Value*)this)) &&
247 // Methods for support type inquiry through isa, cast, and dyn_cast:
249 return isa<Instruction>(V) || isa<Constant>(V);
  /external/llvm/lib/CodeGen/
Analysis.cpp 132 assert((GV || isa<ConstantPointerNull>(V)) &&
219 (isa<VectorType>(T1) && isa<VectorType>(T2) &&
247 if (isa<BitCastInst>(I)) {
251 } else if (isa<GetElementPtrInst>(I)) {
255 } else if (isa<IntToPtrInst>(I)) {
259 if (!isa<VectorType>(I->getType()) &&
263 } else if (isa<PtrToIntInst>(I)) {
267 if (!isa<VectorType>(I->getType()) &&
271 } else if (isa<TruncInst>(I) &
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp 51 if (allocaInst && isa<ConstantInt>(allocaInst->getArraySize())) {
  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 92 if (!isa<GlobalObject>(LHS) || !isa<GlobalVariable>(RHS) ||
114 if (isa<UndefValue>(C)) {
122 if (isa<VectorType>(Ty))
  /external/llvm/lib/Transforms/Utils/
CtorUtils.cpp 93 if (isa<ConstantAggregateZero>(GV->getInitializer()))
98 if (isa<ConstantAggregateZero>(*i))
101 if (isa<ConstantPointerNull>(CS->getOperand(1)))
105 if (!isa<Function>(CS->getOperand(1)))
  /external/llvm/tools/opt/
AnalysisWrappers.cpp 49 if (!isa<Constant>(*AI)) continue;
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCDwarf.h 86 // Isa
87 unsigned Isa;
103 unsigned isa, unsigned discriminator)
104 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
123 /// getIsa - Get the Isa of this MCDwarfLoc.
124 unsigned getIsa() const { return Isa; }
141 /// setIsa - Set the Isa of this MCDwarfLoc.
142 void setIsa(unsigned isa) { Isa = isa;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
Sink.cpp 142 if (isa<DbgInfoIntrinsic>(Inst))
170 if (isa<TerminatorInst>(Inst) || isa<PHINode>(Inst))
267 while (InsertPos != SuccToSinkTo->end() && isa<PHINode>(InsertPos))
  /external/swiftshader/third_party/LLVM/tools/bugpoint-passes/
TestPasses.cpp 38 if (isa<CallInst>(*I))

Completed in 1323 milliseconds

<<11121314151617181920>>