| /llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/ |
| H A D | SPIRVEnums.cpp | 61 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 D | TargetAndABI.cpp | 64 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 D | SPIRVTypes.cpp | 244 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 D | valid.s | 27 # 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 D | valid.s | 28 # 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 D | gen_spirv_dialect.py | 291 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 D | write_extension_def.py | 14 output = ''.join(['HANDLE_EXTENSION(%s)\n' % ext for ext in args.exts])
|
| /llvm-project-15.0.7/llvm/test/Analysis/CostModel/PowerPC/ |
| H A D | cmp-expanded.ll | 5 define void @exts() {
|
| H A D | ext.ll | 5 define void @exts() {
|
| /llvm-project-15.0.7/mlir/test/lib/Dialect/SPIRV/ |
| H A D | TestAvailability.cpp | 69 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 D | fold-logical.cpp | 17 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 D | valid-el.txt | 15 0x7a 0x34 0xef 0x71 # CHECK: exts $15, $15, 17, 6
|
| H A D | valid.txt | 15 0x71 0xef 0x34 0x7a # CHECK: exts $15, $15, 17, 6
|
| /llvm-project-15.0.7/openmp/runtime/tools/lib/ |
| H A D | tools.pm | 730 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 D | valid.txt | 15 0x71 0xef 0x34 0x7a # CHECK: exts $15, $15, 17, 6
|
| H A D | valid-el.txt | 15 0x7a 0x34 0xef 0x71 # CHECK: exts $15, $15, 17, 6
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | fast-isel-ret.ll | 102 ; ELF64-NOT: exts
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/GlobalISel/ |
| H A D | arm-legalize-control-flow.mir | 158 ; 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 D | FIRBuilder.cpp | 359 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 D | FIRBuilder.h | 293 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 D | dbg-user-of-aext.ll | 2 ; (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 D | sink-free-instructions-inseltpoison.ll | 153 ; 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 D | Mips64InstrInfo.td | 531 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 D | dr5xx.cpp | 54 const char *exts = "\e\(\{\[\%"; // expected-error 5{{use of non-standard escape}} variable
|
| /llvm-project-15.0.7/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyInstrSIMD.td | 253 foreach exts = [["sextloadvi", "_S"], 256 defvar loadpat = !cast<PatFrag>(exts[0]#vec.split.lane_bits); 257 defvar inst = "LOAD_EXTEND"#exts[1]#"_"#vec;
|