Home
last modified time | relevance | path

Searched full:isa (Results 1 – 25 of 1853) sorted by relevance

12345678910>>...75

/freebsd/sys/contrib/device-tree/src/powerpc/fsl/
H A De6500_power_isa.dtsi2 * e6500 Power ISA Device Tree Source (include)
37 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
[all …]
H A De5500_power_isa.dtsi2 * e5500 Power ISA Device Tree Source (include)
37 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
[all …]
H A De500mc_power_isa.dtsi2 * e500mc Power ISA Device Tree Source (include)
37 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
[all …]
H A De500v2_power_isa.dtsi2 * e500v2 Power ISA Device Tree Source (include)
37 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
[all …]
H A De500v1_power_isa.dtsi2 * e500v1 Power ISA Device Tree Source (include)
37 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
[all …]
/freebsd/sys/contrib/device-tree/Bindings/riscv/
H A Dextensions.yaml7 title: RISC-V ISA extensions
34 riscv,isa:
38 User-Level ISA document, available from
41 Due to revisions of the ISA specification, some deviations
43 Notably, riscv,isa was defined prior to the creation of the
47 While the isa strings in ISA specification are case
48 insensitive, letters in the riscv,isa string must be all
54 riscv,isa-base:
56 The base ISA implemente
[all...]
H A Dcpus.yaml19 mandated by the RISC-V ISA: a PC and some registers. This
134 - riscv,isa
136 - riscv,isa-base
139 riscv,isa-base: [ "riscv,isa-extensions" ]
140 riscv,isa-extensions: [ "riscv,isa-base" ]
162 riscv,isa-base = "rv64i";
163 riscv,isa-extensions = "i", "m", "a", "c";
188 riscv,isa
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h9 // functions with the isa/dyncast family of functions. In particular, this
60 // Methods to support type inquiry through isa, cast, and dyn_cast:
65 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
72 // Methods to support type inquiry through isa, cast, and dyn_cast:
77 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
97 // Methods to support type inquiry through isa, cast, and dyn_cast:
110 return isa<CallBase>(V) && classof(cast<CallBase>(V)); in classof()
132 // Methods to support type inquiry through isa, cast, and dyn_cast:
141 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
152 return isa<ConstantPointerNull>(Arg) in getPromise()
[all …]
/freebsd/sys/riscv/riscv/
H A Didentcpu.c133 * The ISA string describes the complete set of instructions supported by a
135 * base ISA. It is followed first by single-letter ISA extensions, and then
136 * multi-letter ISA extensions.
143 * The format is described in detail by the "ISA Extension Naming Conventions"
150 parse_ext_s(struct cpu_desc *desc, char *isa, int idx, int len) in parse_ext_s() argument
154 if (strncmp(&isa[idx], (str), \ in parse_ext_s()
174 while (isa[idx] != '_' && idx < len) { in parse_ext_s()
182 parse_ext_x(struct cpu_desc *desc __unused, char *isa, int idx, int len) in parse_ext_x() argument
188 while (isa[idx] != '_' && idx < len) { in parse_ext_x()
196 parse_ext_z(struct cpu_desc *desc __unused, char *isa, int idx, int len) in parse_ext_z() argument
[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/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/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/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/share/man/man4/man4.i386/
H A Dpnp.430 (PnP) ISA devices
34 driver enumerates ISA devices which support
35 .Dq "Plug and Play ISA Specification"
37 It assigns ISA bus resources (interrupt line, DMA channel, I/O ports,
40 If it cannot assign necessary resources to a PnP ISA device without
50 .%T "Plug and Play ISA Specification, Version 1.0a"
55 .%T "Clarifications to the Plug and Play ISA Specification, Version 1.0a"
74 It is not possible to disable individual PnP ISA devices.
77 driver will find all devices conforming the PnP ISA specification
81 the PnP ISA device.
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dextensible_rtti.h46 // outs() << isa<MyBaseClass>(B) << "\n"; // Outputs "1".
47 // outs() << isa<MyDerivedClass1>(B) << "\n"; // Outputs "1".
48 // outs() << isa<MyDerivedClass2>(B) << "\n"; // Outputs "0'.
68 /// This class defines virtual methods, dynamicClassID and isA, that enable
81 virtual bool isA(const void *const ClassID) const { in isA() function
86 template <typename QueryT> bool isA() const { return isA(QueryT::classID()); } in isA() function
88 static bool classof(const RTTIRoot *R) { return R->isA<RTTIRoot>(); } in classof()
99 /// ExtensibleRTTI-parent (i.e. a parent for which the isa<> test will work),
117 // Inherit constructors and isA methods from ParentT.
118 using ParentT::isA;
[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 …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h10 // functions with the isa/dyncast family of functions. In particular, this
46 /// This allows the standard isa/dyncast/cast functionality to work with calls
129 /// Methods for support type inquiry through isa, cast, and dyn_cast:
136 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))
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DPPCTargetParser.def116 PPC_LNX_FEATURE("arch_2_05","CPU supports ISA 205 (eg, POWER6)",PPCF_ARCH205,0x00001000,PPC_FAWORD_…
117 PPC_LNX_FEATURE("arch_2_06","CPU supports ISA 206 (eg, POWER7)",PPCF_ARCH206,0x00000100,PPC_FAWORD_…
118 PPC_LNX_FEATURE("arch_2_07","CPU supports ISA 207 (eg, POWER8)",PPCF_ARCH207,0x80000000,PPC_FAWORD_…
119 PPC_LNX_FEATURE("arch_3_00","CPU supports ISA 30 (eg, POWER9)",PPCF_ARCH30,0x00800000,PPC_FAWORD_HW…
120 PPC_LNX_FEATURE("arch_3_1","CPU supports ISA 31 (eg, POWER10)",PPCF_ARCH31,0x00040000,PPC_FAWORD_HW…
122 PPC_LNX_FEATURE("booke","CPU supports the Embedded ISA category",PPCF_BOOKE,0x00008000,PPC_FAWORD_H…
140 PPC_LNX_FEATURE("pa6t","CPU supports the PA Semi 6T CORE ISA",PPCF_PA6T,0x00000800,PPC_FAWORD_HWCAP)
141 PPC_LNX_FEATURE("power4","CPU supports ISA 200 (eg, POWER4)",PPCF_POWER4,0x00080000,PPC_FAWORD_HWCA…
142 PPC_LNX_FEATURE("power5","CPU supports ISA 202 (eg, POWER5)",PPCF_POWER5,0x00040000,PPC_FAWORD_HWCA…
143 PPC_LNX_FEATURE("power5+","CPU supports ISA 203 (eg, POWER5+)",PPCF_POWER5P,0x00020000,PPC_FAWORD_H…
[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/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/contrib/device-tree/Bindings/powerpc/
H A Dibm,powerpc-cpu-features.txt45 - isa
50 isa that the CPU is currently running in. This provides instruction set
51 compatibility, less the individual feature nodes. For example, an ISA v3.0
55 Value corresponds to the "Power ISA Version" multiplied by 1000.
83 - isa
88 First level of the Power ISA that the feature appears in.
90 environment to a particular ISA version.
92 Value is defined similarly to /cpus/features/isa
209 isa = <3020>;
212 isa = <3000>;
[all …]
/freebsd/sys/conf/
H A Dfiles.i38633 dev/le/if_le_isa.c optional le isa
37 dev/sbni/if_sbni_isa.c optional sbni isa
129 x86/isa/atpic.c optional atpic
130 x86/isa/elcr.c optional atpic | apic
131 x86/isa/isa.c optional isa
132 x86/isa/isa_dma.c optional isa
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68k.td22 : SubtargetFeature<"isa-68000", "SubtargetKind", "M00",
23 "Is M68000 ISA supported">;
26 : SubtargetFeature<"isa-68010", "SubtargetKind", "M10",
27 "Is M68010 ISA supported",
31 : SubtargetFeature<"isa-68020", "SubtargetKind", "M20",
32 "Is M68020 ISA supported",
36 : SubtargetFeature<"isa-68030", "SubtargetKind", "M30",
37 "Is M68030 ISA supported",
41 : SubtargetFeature<"isa-68881", "FPUKind", "M881",
42 "Is M68881 (FPU) ISA supported">;
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DExtensibleRTTI.h51 // llvm::outs() << isa<MyBaseClass>(B) << "\n"; // Outputs "1".
52 // llvm::outs() << isa<MyDerivedClass1>(B) << "\n"; // Outputs "1".
53 // llvm::outs() << isa<MyDerivedClass2>(B) << "\n"; // Outputs "0'.
67 /// This class defines virtual methods, dynamicClassID and isA, that enable
80 virtual bool isA(const void *const ClassID) const { in isA() function
86 bool isA() const { return isA(QueryT::classID()); } in isA() function
97 /// ExtensibleRTTI-parent (i.e. a parent for which the isa<> test will work),
123 bool isA(const void *const ClassID) const override { in isA() function
124 return ClassID == classID() || ParentT::isA(ClassID); in isA()
127 static bool classof(const RTTIRoot *R) { return R->isA<ThisT>(); } in classof()
/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 …]

12345678910>>...75