Home
last modified time | relevance | path

Searched refs:exts (Results 1 – 25 of 27) sorted by relevance

12

/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DSPIRVEnums.cpp61 static const Extension exts[] = {V_1_3_IMPLIED_EXTS}; in getImpliedExtensions() local
62 return ArrayRef<spirv::Extension>(exts, llvm::array_lengthof(exts)); in getImpliedExtensions()
65 static const Extension exts[] = {V_1_3_IMPLIED_EXTS, V_1_4_IMPLIED_EXTS}; in getImpliedExtensions() local
66 return ArrayRef<spirv::Extension>(exts, llvm::array_lengthof(exts)); in getImpliedExtensions()
69 static const Extension exts[] = {V_1_3_IMPLIED_EXTS, V_1_4_IMPLIED_EXTS, in getImpliedExtensions() local
71 return ArrayRef<spirv::Extension>(exts, llvm::array_lengthof(exts)); in getImpliedExtensions()
H A DTargetAndABI.cpp64 spirv::TargetEnv::allows(ArrayRef<spirv::Extension> exts) const { in allows()
65 const auto *chosen = llvm::find_if(exts, [this](spirv::Extension ext) { in allows()
68 if (chosen != exts.end()) in allows()
H A DSPIRVTypes.cpp244 static const Extension exts[] = {Extension::SPV_NV_cooperative_matrix}; in getExtensions() local
245 ArrayRef<Extension> ref(exts, llvm::array_lengthof(exts)); in getExtensions()
528 static const Extension exts[] = {Extension::SPV_KHR_8bit_storage}; in getExtensions() local
529 ArrayRef<Extension> ref(exts, llvm::array_lengthof(exts)); in getExtensions()
536 static const Extension exts[] = {Extension::SPV_KHR_16bit_storage}; in getExtensions() local
537 ArrayRef<Extension> ref(exts, llvm::array_lengthof(exts)); in getExtensions()
/llvm-project-15.0.7/llvm/test/MC/Mips/cnmips/
H A Dvalid.s27 # CHECK: exts $4, $25, 27, 15 # encoding: [0x73,0x24,0x7e,0xfa]
28 # CHECK: exts $15, $15, 17, 6 # encoding: [0x71,0xef,0x34,0x7a]
86 exts $4, $25, 27, 15
87 exts $15, 17, 6
90 exts $7, $4, 54, 9
91 exts $25, 37, 25
/llvm-project-15.0.7/llvm/test/MC/Mips/cnmipsp/
H A Dvalid.s28 # CHECK: exts $4, $25, 27, 15 # encoding: [0x73,0x24,0x7e,0xfa]
29 # CHECK: exts $15, $15, 17, 6 # encoding: [0x71,0xef,0x34,0x7a]
89 exts $4, $25, 27, 15
90 exts $15, 17, 6
93 exts $7, $4, 54, 9
94 exts $25, 37, 25
/llvm-project-15.0.7/mlir/utils/spirv/
H A Dgen_spirv_dialect.py291 exts = enum_case.get('extensions', [])
292 if exts:
293 exts = 'Extension<[{}]>'.format(', '.join(sorted(set(exts))))
303 if for_op and not exts:
304 exts = DEFAULT_EXT
337 if (min_version or max_version or caps or exts) and not (
340 exts == DEFAULT_EXT):
342 [e for e in [min_version, max_version, exts, caps] if e])
/llvm-project-15.0.7/llvm/utils/gn/secondary/llvm/include/llvm/Support/
H A Dwrite_extension_def.py14 output = ''.join(['HANDLE_EXTENSION(%s)\n' % ext for ext in args.exts])
/llvm-project-15.0.7/llvm/test/Analysis/CostModel/PowerPC/
H A Dcmp-expanded.ll5 define void @exts() {
H A Dext.ll5 define void @exts() {
/llvm-project-15.0.7/mlir/test/lib/Dialect/SPIRV/
H A DTestAvailability.cpp69 for (const auto &exts : extension.getExtensions()) { in runOnOperation() local
71 llvm::interleaveComma(exts, os, [&](spirv::Extension ext) { in runOnOperation()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dfold-logical.cpp17 std::vector<Scalar<LargestInt>> exts; in ZeroExtend() local
19 exts.push_back(Scalar<LargestInt>::ConvertUnsigned(v).value); in ZeroExtend()
22 Constant<LargestInt>(std::move(exts), ConstantSubscripts(c.shape()))); in ZeroExtend()
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/octeon/
H A Dvalid-el.txt15 0x7a 0x34 0xef 0x71 # CHECK: exts $15, $15, 17, 6
H A Dvalid.txt15 0x71 0xef 0x34 0x7a # CHECK: exts $15, $15, 17, 6
/llvm-project-15.0.7/openmp/runtime/tools/lib/
H A Dtools.pm730 my @exts = ( "" );
733 push( @exts, split( ";", $ENV{ PATHEXT } ) );
736 push( @exts, qw{ .COM .EXE .BAT .CMD } );
742 foreach my $ext ( @exts ) {
/llvm-project-15.0.7/llvm/test/MC/Disassembler/Mips/octeonp/
H A Dvalid.txt15 0x71 0xef 0x34 0x7a # CHECK: exts $15, $15, 17, 6
H A Dvalid-el.txt15 0x7a 0x34 0xef 0x71 # CHECK: exts $15, $15, 17, 6
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dfast-isel-ret.ll102 ; ELF64-NOT: exts
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/GlobalISel/
H A Darm-legalize-control-flow.mir158 ; G_PHI with s8 should widen, and all the truncs and exts should be combined
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DFIRBuilder.cpp359 llvm::ArrayRef<mlir::Value> exts) { in genShape() argument
360 auto shapeType = fir::ShapeType::get(getContext(), exts.size()); in genShape()
361 return create<fir::ShapeOp>(loc, shapeType, exts); in genShape()
366 llvm::ArrayRef<mlir::Value> exts) { in genShape() argument
367 auto shapeType = fir::ShapeShiftType::get(getContext(), exts.size()); in genShape()
370 for (auto [lbnd, ext] : llvm::zip(shift, exts)) { in genShape()
/llvm-project-15.0.7/flang/include/flang/Optimizer/Builder/
H A DFIRBuilder.h293 llvm::ArrayRef<mlir::Value> exts);
294 mlir::Value genShape(mlir::Location loc, llvm::ArrayRef<mlir::Value> exts);
/llvm-project-15.0.7/llvm/test/Transforms/Util/
H A Ddbg-user-of-aext.ll2 ; (here exposed through the SROA) pass refers to [s|z]exts of values (as
/llvm-project-15.0.7/llvm/test/Transforms/CodeGenPrepare/AArch64/
H A Dsink-free-instructions-inseltpoison.ll153 ; Both exts and their shufflevector operands can be sunk.
196 ; Both exts and their shufflevector operands can be sunk.
/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMips64InstrInfo.td531 def EXTS : ExtsCins<"exts", II_EXT, GPR64Opnd, immZExt5>, EXTS_FM<0x3a>,
1079 // exts with $pos 32-63 in converted to exts32 with $pos 0-31
1080 def : MipsInstAlias<"exts $rt, $rs, $pos, $lenm1",
1084 def : MipsInstAlias<"exts $rt, $pos, $lenm1",
/llvm-project-15.0.7/clang/test/CXX/drs/
H A Ddr5xx.cpp54 const char *exts = "\e\(\{\[\%"; // expected-error 5{{use of non-standard escape}} variable
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrSIMD.td253 foreach exts = [["sextloadvi", "_S"],
256 defvar loadpat = !cast<PatFrag>(exts[0]#vec.split.lane_bits);
257 defvar inst = "LOAD_EXTEND"#exts[1]#"_"#vec;

12