Home
last modified time | relevance | path

Searched refs:BaseExt (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td1100 multiclass BuiltinAtomicExplicit<string Name, list<Type> Types, FunctionExtension BaseExt> {
1102 …let Extension = concatExtension<BaseExt, "__opencl_c_atomic_order_seq_cst __opencl_c_atomic_scope_…
1107 let Extension = concatExtension<BaseExt, "__opencl_c_atomic_scope_device">.ret in {
1112 let Extension = BaseExt in {
1118 multiclass OpenCL2Atomics<AddressSpace addrspace, FunctionExtension BaseExt> {
1122 let Extension = BaseExt in {
1127 [Void, PointerType<VolatileType<TypePair[0]>, addrspace>, TypePair[1]], BaseExt>;
1129 [TypePair[1], PointerType<VolatileType<TypePair[0]>, addrspace>], BaseExt>;
1131 [TypePair[1], PointerType<VolatileType<TypePair[0]>, addrspace>, TypePair[1]], BaseExt>;
1134 !eq(BaseExt, FuncExtOpenCLCGenericAddressSpace): [GenericAS],
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp13251 SDValue BaseExt = V.getOperand(X * 4); in ReconstructTruncateFromBuildVector() local
13252 if (BaseExt.getOpcode() != ISD::EXTRACT_VECTOR_ELT || in ReconstructTruncateFromBuildVector()
13253 (BaseExt.getOperand(0).getValueType() != MVT::v4i16 && in ReconstructTruncateFromBuildVector()
13254 BaseExt.getOperand(0).getValueType() != MVT::v4i32) || in ReconstructTruncateFromBuildVector()
13255 !isa<ConstantSDNode>(BaseExt.getOperand(1)) || in ReconstructTruncateFromBuildVector()
13256 BaseExt.getConstantOperandVal(1) != 0) in ReconstructTruncateFromBuildVector()
13258 SDValue Base = BaseExt.getOperand(0); in ReconstructTruncateFromBuildVector()