Home
last modified time | relevance | path

Searched refs:isa (Results 1 – 25 of 1241) sorted by relevance

12345678910>>...50

/freebsd/sys/riscv/riscv/
H A Didentcpu.c151 parse_ext_s(struct cpu_desc *desc, char *isa, int idx, int len) in parse_ext_s() argument
155 if (strncmp(&isa[idx], (str), \ in parse_ext_s()
175 while (isa[idx] != '_' && idx < len) { in parse_ext_s()
183 parse_ext_x(struct cpu_desc *desc __unused, char *isa, int idx, int len) in parse_ext_x() argument
189 while (isa[idx] != '_' && idx < len) { in parse_ext_x()
197 parse_ext_z(struct cpu_desc *desc __unused, char *isa, int idx, int len) in parse_ext_z() argument
205 while (isa[idx] != '_' && idx < len) { in parse_ext_z()
213 parse_ext_version(char *isa, int idx, u_int *majorp __unused, in parse_ext_version() argument
217 while (isdigit(isa[idx])) in parse_ext_version()
220 if (isa[idx] != 'p') in parse_ext_version()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dextensible_rtti_test.cpp38 EXPECT_TRUE(isa<RTTIRoot>(MB)); in TEST()
39 EXPECT_TRUE(isa<MyBase>(MB)); in TEST()
40 EXPECT_FALSE(isa<MyDerivedA>(MB)); in TEST()
41 EXPECT_FALSE(isa<MyDerivedB>(MB)); in TEST()
44 EXPECT_TRUE(isa<RTTIRoot>(MDA)); in TEST()
45 EXPECT_TRUE(isa<MyBase>(MDA)); in TEST()
46 EXPECT_TRUE(isa<MyDerivedA>(MDA)); in TEST()
47 EXPECT_FALSE(isa<MyDerivedB>(MDA)); in TEST()
50 EXPECT_TRUE(isa<RTTIRoot>(MDB)); in TEST()
51 EXPECT_TRUE(isa<MyBase>(MDB)); in TEST()
[all …]
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/
H A De6500_power_isa.dtsi37 power-isa-version = "2.06";
38 power-isa-b; // Base
39 power-isa-e; // Embedded
40 power-isa-atb; // Alternate Time Base
41 power-isa-cs; // Cache Specification
42 power-isa-ds; // Decorated Storage
43 power-isa-e.ed; // Embedded.Enhanced Debug
44 power-isa-e.pd; // Embedded.External PID
45 power-isa-e.hv; // Embedded.Hypervisor
46 power-isa-e.le; // Embedded.Little-Endian
[all …]
H A De5500_power_isa.dtsi37 power-isa-version = "2.06";
38 power-isa-b; // Base
39 power-isa-e; // Embedded
40 power-isa-atb; // Alternate Time Base
41 power-isa-cs; // Cache Specification
42 power-isa-ds; // Decorated Storage
43 power-isa-e.ed; // Embedded.Enhanced Debug
44 power-isa-e.pd; // Embedded.External PID
45 power-isa-e.hv; // Embedded.Hypervisor
46 power-isa-e.le; // Embedded.Little-Endian
[all …]
H A De500mc_power_isa.dtsi37 power-isa-version = "2.06";
38 power-isa-b; // Base
39 power-isa-e; // Embedded
40 power-isa-atb; // Alternate Time Base
41 power-isa-cs; // Cache Specification
42 power-isa-ds; // Decorated Storage
43 power-isa-e.ed; // Embedded.Enhanced Debug
44 power-isa-e.pd; // Embedded.External PID
45 power-isa-e.hv; // Embedded.Hypervisor
46 power-isa-e.le; // Embedded.Little-Endian
[all …]
H A De500v2_power_isa.dtsi37 power-isa-version = "2.03";
38 power-isa-b; // Base
39 power-isa-e; // Embedded
40 power-isa-atb; // Alternate Time Base
41 power-isa-cs; // Cache Specification
42 power-isa-e.le; // Embedded.Little-Endian
43 power-isa-e.pm; // Embedded.Performance Monitor
44 power-isa-ecl; // Embedded Cache Locking
45 power-isa-mmc; // Memory Coherence
46 power-isa-sp; // Signal Processing Engine
[all …]
H A De500v1_power_isa.dtsi37 power-isa-version = "2.03";
38 power-isa-b; // Base
39 power-isa-e; // Embedded
40 power-isa-atb; // Alternate Time Base
41 power-isa-cs; // Cache Specification
42 power-isa-e.le; // Embedded.Little-Endian
43 power-isa-e.pm; // Embedded.Performance Monitor
44 power-isa-ecl; // Embedded Cache Locking
45 power-isa-mmc; // Memory Coherence
46 power-isa-sp; // Signal Processing Engine
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaFixItUtils.cpp34 if (isa<PointerType>(From) && isa<PointerType>(To)) { in compareTypesSimple()
68 if (isa<ArraySubscriptExpr>(Expr) || in tryToFixConversion()
69 isa<CallExpr>(Expr) || in tryToFixConversion()
70 isa<DeclRefExpr>(Expr) || in tryToFixConversion()
71 isa<CastExpr>(Expr) || in tryToFixConversion()
72 isa<CXXNewExpr>(Expr) || in tryToFixConversion()
73 isa<CXXConstructExpr>(Expr) || in tryToFixConversion()
74 isa<CXXDeleteExpr>(Expr) || in tryToFixConversion()
75 isa<CXXNoexceptExpr>(Expr) || in tryToFixConversion()
76 isa<CXXPseudoDestructorExpr>(Expr) || in tryToFixConversion()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h66 if (isa<ConstantSDNode>(Node)) return true; in isPassiveNode()
67 if (isa<ConstantFPSDNode>(Node)) return true; in isPassiveNode()
68 if (isa<RegisterSDNode>(Node)) return true; in isPassiveNode()
69 if (isa<RegisterMaskSDNode>(Node)) return true; in isPassiveNode()
70 if (isa<GlobalAddressSDNode>(Node)) return true; in isPassiveNode()
71 if (isa<BasicBlockSDNode>(Node)) return true; in isPassiveNode()
72 if (isa<FrameIndexSDNode>(Node)) return true; in isPassiveNode()
73 if (isa<ConstantPoolSDNode>(Node)) return true; in isPassiveNode()
74 if (isa<TargetIndexSDNode>(Node)) return true; in isPassiveNode()
75 if (isa<JumpTableSDNode>(Node)) return true; in isPassiveNode()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp84 if (isa<ConstantInt>(V) || isa<ConstantFP>(V)) in FoldBitCast()
132 if (isa<PoisonValue>(V)) in ConstantFoldCastInstruction()
135 if (isa<UndefValue>(V)) { in ConstantFoldCastInstruction()
162 if ((isa<ConstantVector>(V) || isa<ConstantDataVector>(V)) && in ConstantFoldCastInstruction()
285 if (isa<PoisonValue>(Cond)) { in ConstantFoldSelectInstruction()
289 } else if (isa<UndefValue>(Cond)) { in ConstantFoldSelectInstruction()
290 V = isa<UndefValue>(V1Element) ? V1Element : V2Element; in ConstantFoldSelectInstruction()
292 if (!isa<ConstantInt>(Cond)) break; in ConstantFoldSelectInstruction()
303 if (isa<PoisonValue>(Cond)) in ConstantFoldSelectInstruction()
306 if (isa<UndefValue>(Cond)) { in ConstantFoldSelectInstruction()
[all …]
H A DInstruction.cpp153 assert(!isa<PHINode>(this) && "Inserting PHI after debug-records!"); in insertBefore()
338 } else if (isa<CallBrInst>(this)) { in getInsertionPointAfterDef()
382 assert(isa<PossiblyNonNegInst>(this) && "Must be zext/uitofp"); in setNonNeg()
402 assert(isa<PossiblyNonNegInst>(this) && "Must be zext/uitofp"); in hasNonNeg()
446 if (isa<FPMathOperator>(this)) { in dropPoisonGeneratingFlags()
521 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); in setFast()
526 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); in setHasAllowReassoc()
531 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); in setHasNoNaNs()
536 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); in setHasNoInfs()
541 assert(isa<FPMathOperator>(this) && "setting fast-math flag on invalid op"); in setHasNoSignedZeros()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp83 if (CurrUser && !isa<CallInst>(Curr) && !isa<Constant>(Curr)) in findAllDefs()
141 return isa<ReturnInst>(V) || isa<CallInst>(V) || isa<PHINode>(V) || in getPromotablePHINodes()
142 isa<DbgInfoIntrinsic>(V); in getPromotablePHINodes()
145 return isa<Constant>(V) || isa<Argument>(V) || isa<CallInst>(V) || in getPromotablePHINodes()
146 isa<PHINode>(V); in getPromotablePHINodes()
224 if (llvm::none_of(Defs, [](Value *V) { return isa<Instruction>(V); })) in runOnUse()
231 if (!isa<PHINode>(V) && !isa<Constant>(V) && in runOnUse()
232 !isa<Argument>(V) && !isa<CallInst>(V)) in runOnUse()
240 if (isa<ReturnInst>(U.getUser())) in runOnUse()
242 if (isa<CallInst>(U.getUser())) in runOnUse()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h65 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
77 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
110 return isa<CallBase>(V) && classof(cast<CallBase>(V)); in classof()
141 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
152 return isa<ConstantPointerNull>(Arg) in getPromise()
161 if (isa<AllocaInst>(Arg)) in clearPromise()
163 assert((isa<BitCastInst>(Arg) || isa<GetElementPtrInst>(Arg)) && in clearPromise()
219 assert(isa<ConstantPointerNull>(getArgOperand(CoroutineArg)) && in setCoroutineSelf()
229 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
277 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DGlobalDecl.h61 assert(!isa<CXXConstructorDecl>(D) && "Use other ctor with ctor decls!"); in Init()
62 assert(!isa<CXXDestructorDecl>(D) && "Use other ctor with dtor decls!"); in Init()
106 assert(isa<CXXConstructorDecl>(getDecl()) && "Decl is not a ctor!"); in getCtorType()
111 assert(isa<CXXDestructorDecl>(getDecl()) && "Decl is not a dtor!"); in getDtorType()
116 assert(isa<VarDecl>(getDecl()) && in getDynamicInitKind()
123 assert(isa<FunctionDecl>( in getMultiVersionIndex()
126 !isa<CXXConstructorDecl>(getDecl()) && in getMultiVersionIndex()
127 !isa<CXXDestructorDecl>(getDecl()) && in getMultiVersionIndex()
133 assert(((isa<FunctionDecl>(getDecl()) && in getKernelReferenceKind()
135 (isa<FunctionTemplateDecl>(getDecl()) && in getKernelReferenceKind()
[all …]
/freebsd/sys/i386/conf/
H A DGENERIC.hints1 hint.fdc.0.at="isa"
9 hint.ata.0.at="isa"
12 hint.ata.1.at="isa"
15 hint.atkbdc.0.at="isa"
21 hint.sc.0.at="isa"
25 hint.uart.0.at="isa"
29 hint.uart.1.at="isa"
32 hint.ppc.0.at="isa"
34 hint.atrtc.0.at="isa"
37 hint.attimer.0.at="isa"
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h136 return isa<CallInst>(V) && classof(cast<CallInst>(V)); in classof()
160 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
187 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
211 ValueAsMetadata *VAM = isa<ValueAsMetadata *>(I)
217 ValueAsMetadata *VAM = isa<ValueAsMetadata *>(I)
223 if (isa<ValueAsMetadata *>(I))
230 if (isa<ValueAsMetadata *>(I))
250 assert(isa<ValueAsMetadata>(RawLocation) || isa<DIArgList>(RawLocation) || in RawLocationWrapper()
251 (isa<MDNode>(RawLocation) && in RawLocationWrapper()
265 bool hasArgList() const { return isa<DIArgList>(getRawLocation()); } in hasArgList()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.cpp125 " struct __objc_class *isa; " in CreateObjectChecker()
141 " struct __objc_class *isa; " in CreateObjectChecker()
158 " (int)strlen(obj->isa->name); " in CreateObjectChecker()
176 ObjCISA isa, lldb::ProcessSP process_sp) { in ClassDescriptorV1() argument
177 Initialize(isa, process_sp); in ClassDescriptorV1()
181 ObjCISA isa, lldb::ProcessSP process_sp) { in Initialize() argument
182 if (!isa || !process_sp) { in Initialize()
191 m_isa = process_sp->ReadPointerFromMemory(isa, error); in Initialize()
373 ObjCISA isa; in UpdateISAToDescriptorMapIfNeeded() local
376 // is the "isa" in UpdateISAToDescriptorMapIfNeeded()
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DTinyPtrVector.h65 if (isa<EltTy>(Val)) {
74 if (isa<EltTy>(RHS.Val)) {
99 if (isa<EltTy>(RHS.Val)) {
139 if (isa<EltTy>(Val))
148 if (isa<EltTy>(Val))
174 if (isa<EltTy>(Val)) in size()
185 if (isa<EltTy>(Val)) in begin()
192 if (isa<EltTy>(Val)) in end()
219 if (isa<EltTy>(Val)) {
230 if (isa<EltTy>(Val)) in front()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp70 if ((isa<ObjCStringLiteral>(Arg) && in rewriteObjCRedundantCallWithLiteral()
75 (isa<ObjCArrayLiteral>(Arg) && in rewriteObjCRedundantCallWithLiteral()
80 (isa<ObjCDictionaryLiteral>(Arg) && in rewriteObjCRedundantCallWithLiteral()
770 if (!isa<IntegerLiteral>(literalE) && !isa<FloatingLiteral>(literalE)) in rewriteToNumberLiteral()
890 if (isa<ArraySubscriptExpr>(Expr) || in subscriptOperatorNeedsParens()
891 isa<CallExpr>(Expr) || in subscriptOperatorNeedsParens()
892 isa<DeclRefExpr>(Expr) || in subscriptOperatorNeedsParens()
893 isa<CXXNamedCastExpr>(Expr) || in subscriptOperatorNeedsParens()
894 isa<CXXConstructExpr>(Expr) || in subscriptOperatorNeedsParens()
895 isa<CXXThisExpr>(Expr) || in subscriptOperatorNeedsParens()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTypePromotion.cpp231 if (!isa<IntegerType>(V->getType())) in isSource()
235 if (isa<Argument>(V)) in isSource()
237 else if (isa<LoadInst>(V)) in isSource()
271 return isa<CallInst>(V); in isSink()
333 if (!I->hasOneUse() || !isa<ICmpInst>(*I->user_begin()) || in isSafeWrap()
334 !isa<ConstantInt>(I->getOperand(1))) in isSafeWrap()
383 if (!isa<IntegerType>(V->getType()) || isSink(V)) in shouldPromote()
393 if (isa<ICmpInst>(I)) in shouldPromote()
405 if (!isa<OverflowingBinaryOperator>(I)) in isPromotedResultSafe()
448 if (isa<Argument>(V)) in ExtendSources()
[all …]
/freebsd/contrib/opencsd/decoder/source/
H A Dtrc_ret_stack.cpp66 void TrcAddrReturnStack::push(const ocsd_vaddr_t addr, const ocsd_isa isa) in push() argument
73 m_stack[head_idx].ret_isa = isa; in push()
77 LOG_PUSH(addr,0,isa); in push()
82 ocsd_vaddr_t TrcAddrReturnStack::pop(ocsd_isa &isa) in pop() argument
90 isa = m_stack[head_idx].ret_isa; in pop()
95 LOG_POP(addr,1,isa); in pop()
110 … TrcAddrReturnStack::LogOp(const char * pszOpString, ocsd_vaddr_t addr, int head_off, ocsd_isa isa) in LogOp() argument
132 int name_idx = (int)isa; in LogOp()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DObjCARCAnalysisUtils.h136 return isa<ConstantPointerNull>(V) || isa<UndefValue>(V); in IsNullOrUndef()
140 return isa<BitCastInst>(I) || in IsNoopInstruction()
141 (isa<GetElementPtrInst>(I) && in IsNoopInstruction()
149 if (isa<Constant>(Op) || isa<AllocaInst>(Op)) in IsPotentialRetainableObjPtr()
190 if (isa<CallInst>(V) || isa<InvokeInst>(V) || in IsObjCIdentifiedObject()
191 isa<Argument>(V) || isa<Constan in IsObjCIdentifiedObject()
[all...]
/freebsd/usr.sbin/iscsid/
H A Ddiscovery.c88 struct iscsi_session_add isa; in kernel_add() local
91 memset(&isa, 0, sizeof(isa)); in kernel_add()
92 memcpy(&isa.isa_conf, &conn->conn_conf, sizeof(isa.isa_conf)); in kernel_add()
93 strlcpy(isa.isa_conf.isc_target, target, in kernel_add()
94 sizeof(isa.isa_conf.isc_target)); in kernel_add()
95 isa.isa_conf.isc_discovery = 0; in kernel_add()
96 error = ioctl(conn->conn_iscsi_fd, ISCSISADD, &isa); in kernel_add()
/freebsd/crypto/heimdal/base/
H A Dheimbase.c42 heim_type_t isa; member
51 heim_type_t isa; member
134 if (p->isa->dealloc) in heim_release()
135 p->isa->dealloc(ptr); in heim_release()
165 return p->isa; in _heim_get_isa()
179 heim_type_t isa = _heim_get_isa(ptr); in heim_get_tid() local
180 return isa->tid; in heim_get_tid()
194 heim_type_t isa = _heim_get_isa(ptr); in heim_get_hash() local
195 if (isa->hash) in heim_get_hash()
196 return isa->hash(ptr); in heim_get_hash()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp256 if (isa<ConstantData>(C)) in containsOnlyConstantData()
259 if (isa<GlobalValue>(C) || isa<BlockAddress>(C) || isa<ConstantExpr>(C)) in containsOnlyConstantData()
276 if (isa<const ShuffleVectorInst>(Instr) && OpIdx == 2) in shouldConvertUse()
280 if (isa<const ExtractValueInst>(Instr) && OpIdx > 0) in shouldConvertUse()
284 if (isa<const InsertValueInst>(Instr) && OpIdx > 1) in shouldConvertUse()
287 if (isa<const AllocaInst>(Instr) && OpIdx > 0) in shouldConvertUse()
291 if (isa<const LoadInst>(Instr) && OpIdx > 0) in shouldConvertUse()
295 if (isa<const StoreInst>(Instr) && OpIdx > 1) in shouldConvertUse()
299 if (isa<const GetElementPtrInst>(Instr) && OpIdx > 0) in shouldConvertUse()
304 if (isa<const LandingPadInst>(Instr)) in shouldConvertUse()
[all …]

12345678910>>...50