Searched refs:isa (Results 26 - 50 of 1051) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h10 // functions with the isa/dyncast family of functions. In particular, this
42 /// This allows the standard isa/dyncast/cast functionality to work with calls
55 // Methods for support type inquiry through isa, cast, and dyn_cast:
62 return isa<CallInst>(V) && classof(cast<CallInst>(V));
82 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
133 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
149 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
165 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
182 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V));
198 /// Methods for support type inquiry through isa, cas
[all...]
/freebsd-11-stable/crypto/heimdal/base/
H A Dheimbase.c42 heim_type_t isa; member in struct:heim_base
51 heim_type_t isa; member in struct:heim_base_mem
134 if (p->isa->dealloc)
135 p->isa->dealloc(ptr);
165 return p->isa;
179 heim_type_t isa = _heim_get_isa(ptr); local
180 return isa->tid;
194 heim_type_t isa = _heim_get_isa(ptr); local
195 if (isa->hash)
196 return isa
214 heim_type_t isa; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DFlang.cpp36 if (isa<PreprocessJobAction>(JA)) {
38 } else if (isa<CompileJobAction>(JA) || isa<BackendJobAction>(JA)) {
54 } else if (isa<AssembleJobAction>(JA)) {
/freebsd-11-stable/sys/dev/sn/
H A Dif_sn_isa.c45 #include <isa/isavar.h>
97 DRIVER_MODULE(sn, isa, sn_isa_driver, sn_devclass, 0, 0);
98 MODULE_DEPEND(sn, isa, 1, 1, 1);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h222 virtual ClassDescriptorSP GetClassDescriptorFromISA(ObjCISA isa);
224 ClassDescriptorSP GetNonKVOClassDescriptor(ObjCISA isa);
259 bool IsValidISA(ObjCISA isa) { argument
261 return m_isa_to_descriptor.count(isa) > 0;
274 virtual ObjCISA GetParentClass(ObjCISA isa);
310 bool ISAIsCached(ObjCISA isa) const {
311 return m_isa_to_descriptor.find(isa) != m_isa_to_descriptor.end();
314 bool AddClass(ObjCISA isa, const ClassDescriptorSP &descriptor_sp) { argument
315 if (isa != 0) {
316 m_isa_to_descriptor[isa]
325 AddClass(ObjCISA isa, const ClassDescriptorSP &descriptor_sp, uint32_t class_name_hash) argument
[all...]
H A DObjCLanguageRuntime.cpp50 bool ObjCLanguageRuntime::AddClass(ObjCISA isa, argument
53 if (isa != 0) {
54 m_isa_to_descriptor[isa] = descriptor_sp;
56 m_hash_to_isa_map.insert(std::make_pair(llvm::djbHash(class_name), isa));
185 // isa/descriptor
215 ObjCLanguageRuntime::GetParentClass(ObjCLanguageRuntime::ObjCISA isa) { argument
216 ClassDescriptorSP objc_class_sp(GetClassDescriptorFromISA(isa));
248 ObjCISA isa = process->ReadPointerFromMemory(isa_pointer, error); local
249 if (isa != LLDB_INVALID_ADDRESS)
250 objc_class_sp = GetClassDescriptorFromISA(isa);
273 GetClassDescriptorFromISA(ObjCISA isa) argument
285 GetNonKVOClassDescriptor(ObjCISA isa) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DAddDiscriminators.cpp114 return !isa<IntrinsicInst>(I) || isa<MemIntrinsic>(I);
239 if (!isa<InvokeInst>(I) && (!isa<CallInst>(I) || isa<IntrinsicInst>(I)))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DObjCARCAnalysisUtils.h142 return isa<ConstantPointerNull>(V) || isa<UndefValue>(V);
146 return isa<BitCastInst>(I) ||
147 (isa<GetElementPtrInst>(I) &&
155 if (isa<Constant>(Op) || isa<AllocaInst>(Op))
216 if (isa<CallInst>(V) || isa<InvokeInst>(V) ||
217 isa<Argument>(V) || isa<Constan
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DValueList.cpp48 /// Methods to support type inquiry through isa, cast, and dyn_cast.
50 return isa<ConstantExpr>(V) &&
174 if (!isa<Constant>(U) || isa<GlobalValue>(U)) {
185 if (!isa<ConstantPlaceHolder>(*I)) {
209 } else if (isa<ConstantVector>(UserC)) {
212 assert(isa<ConstantExpr>(UserC) && "Must be a ConstantExpr.");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp93 if (isa<StoreInst>(Ur)) {
100 if (isa<CallInst>(Ur))
103 if (isa<PtrToIntInst>(P))
134 if (isa<LoadInst>(B))
138 if (isa<LoadInst>(A))
145 if (isa<LoadInst>(A))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp145 if (isa<ConstantAggregateZero>(V))
155 if (isa<ConstantInt>(V) || isa<ConstantFP>(V))
161 if (isa<ConstantPointerNull>(V)) // ptr->ptr cast.
523 if (isa<UndefValue>(V)) {
572 if ((isa<ConstantVector>(V) || isa<ConstantDataVector>(V)) &&
652 bool isOne = isa<ConstantInt>(Idx) && cast<ConstantInt>(Idx)->isOne();
752 } else if (isa<UndefValue>(Cond)) {
753 V = isa<UndefValu
[all...]
H A DTypeFinder.cpp68 if (&*O && !isa<Instruction>(&*O))
129 if (!isa<Constant>(V) || isa<GlobalValue>(V)) return;
139 if (isa<Instruction>(V))
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Ddwarf_pro_init.c110 dwarf_producer_set_isa(Dwarf_P_Debug dbg, enum Dwarf_ISA isa, argument
114 if (dbg == NULL || isa >= DW_ISA_MAX) {
119 dbg->dbgp_isa = isa;
/freebsd-11-stable/sys/dev/cs/
H A Dif_cs_isa.c49 #include <isa/isavar.h>
118 DRIVER_MODULE(cs, isa, cs_isa_driver, cs_devclass, 0, 0);
119 MODULE_DEPEND(cs, isa, 1, 1, 1);
/freebsd-11-stable/sys/powerpc/mpc85xx/
H A Disa.c38 #include <isa/isareg.h>
39 #include <isa/isavar.h>
40 #include <isa/isa_common.h>
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DLoopWidening.cpp48 assert(isa<ForStmt>(LoopStmt) || isa<WhileStmt>(LoopStmt) ||
49 isa<DoStmt>(LoopStmt));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp69 if ((isa<ObjCStringLiteral>(Arg) &&
74 (isa<ObjCArrayLiteral>(Arg) &&
79 (isa<ObjCDictionaryLiteral>(Arg) &&
773 if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE))
893 if (isa<ArraySubscriptExpr>(Expr) ||
894 isa<CallExpr>(Expr) ||
895 isa<DeclRefExpr>(Expr) ||
896 isa<CXXNamedCastExpr>(Expr) ||
897 isa<CXXConstructExp
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp69 if (isa<driver::BindArchAction>(A))
71 if (isa<driver::OffloadAction>(A)) {
77 if (Jobs.size() == 0 || !isa<driver::Command>(*Jobs.begin()) ||
/freebsd-11-stable/sys/dev/an/
H A Dif_an_isa.c69 #include <isa/isavar.h>
70 #include <isa/pnpvar.h>
148 DRIVER_MODULE(an, isa, an_isa_driver, an_isa_devclass, 0, 0);
149 MODULE_DEPEND(an, isa, 1, 1, 1);
/freebsd-11-stable/sys/amd64/vmm/io/
H A Dvrtc.h34 #include <isa/isareg.h>
/freebsd-11-stable/usr.sbin/iscsid/
H A Ddiscovery.c144 struct iscsi_session_add isa; local
147 memset(&isa, 0, sizeof(isa));
148 memcpy(&isa.isa_conf, &conn->conn_conf, sizeof(isa.isa_conf));
149 strlcpy(isa.isa_conf.isc_target, target,
150 sizeof(isa.isa_conf.isc_target));
151 isa.isa_conf.isc_discovery = 0;
152 error = ioctl(conn->conn_iscsi_fd, ISCSISADD, &isa);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DParentMap.cpp141 do { S = getParent(S); } while (S && isa<ParenExpr>(S));
149 while (S && (isa<ParenExpr>(S) || isa<CastExpr>(S)));
157 } while (S && isa<Expr>(S) && cast<Expr>(S)->IgnoreParenImpCasts() != S);
164 while (isa<ParenExpr>(S)) {
176 while (P && (isa<ParenExpr>(P) || isa<CastExpr>(P) ||
177 isa<FullExpr>(P))) {
187 return isa<Expr>(P);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReg2Mem.cpp54 if (UI->getParent() != BB || isa<PHINode>(UI))
84 while (isa<AllocaInst>(I)) ++I;
96 if (!(isa<AllocaInst>(iib) && iib->getParent() == BBEntry) &&
113 if (isa<PHINode>(iib))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTypePromotion.cpp197 if (!isa<Instruction>(V))
229 if (!isa<IntegerType>(V->getType()))
233 if (isa<Argument>(V))
235 else if (isa<LoadInst>(V))
237 else if (isa<BitCastInst>(V))
271 return isa<CallInst>(V);
340 !isa<ICmpInst>(*I->user_begin()) ||
341 !isa<ConstantInt>(I->getOperand(1)))
389 if (!isa<IntegerType>(V->getType()) || isSink(V))
399 if (isa<ICmpIns
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp262 if (isa<const ShuffleVectorInst>(Instr) && OpIdx == 2)
266 if (isa<const ExtractValueInst>(Instr) && OpIdx > 0)
270 if (isa<const InsertValueInst>(Instr) && OpIdx > 1)
273 if (isa<const AllocaInst>(Instr) && OpIdx > 0)
277 if (isa<const LoadInst>(Instr) && OpIdx > 0)
281 if (isa<const StoreInst>(Instr) && OpIdx > 1)
285 if (isa<const GetElementPtrInst>(Instr) && OpIdx > 0)
290 if (isa<const LandingPadInst>(Instr))
294 if (isa<const SwitchInst>(Instr))
298 if (isa<cons
[all...]

Completed in 352 milliseconds

1234567891011>>