Home
last modified time | relevance | path

Searched refs:bitsize (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/mlir/test/Interfaces/DataLayoutInterfaces/
H A Dquery.mlir6 // CHECK: bitsize = 32
11 // CHECK: bitsize = 64
16 // CHECK: bitsize = 64
21 // CHECK: bitsize = 14
32 // CHECK: bitsize = 1
43 // CHECK: bitsize = 1
56 // CHECK: bitsize = 10
74 // CHECK: bitsize = 10
148 // CHECK: bitsize = 42
186 // CHECK: bitsize = 42
[all …]
H A Dtypes.mlir42 // CHECK: bitsize = 32
53 // CHECK: bitsize = 64
H A Dmodule.mlir9 // CHECK: bitsize = 12
/llvm-project-15.0.7/mlir/test/Dialect/LLVMIR/
H A Dlayout.mlir7 // CHECK: bitsize = 64
12 // CHECK: bitsize = 64
17 // CHECK: bitsize = 64
22 // CHECK: bitsize = 64
27 // CHECK: bitsize = 64
32 // CHECK: bitsize = 64
37 // CHECK: bitsize = 64
55 // CHECK: bitsize = 32
60 // CHECK: bitsize = 32
85 // CHECK: bitsize = 32
[all …]
/llvm-project-15.0.7/llvm/lib/Target/SystemZ/
H A DSystemZOperands.td95 let Name = format#bitsize#"Disp"#dispsize#length;
96 let ParserMethod = "parse"#format#bitsize;
106 : Operand<!cast<ValueType>("i"#bitsize)> {
110 "decode"#format#bitsize#"Disp"#dispsize#length#"Operand";
129 : ComplexPattern<!cast<ValueType>("i"#bitsize), numops,
137 (ops !cast<RegisterOperand>("ADDR"#bitsize),
143 (ops !cast<RegisterOperand>("ADDR"#bitsize),
152 (ops !cast<RegisterOperand>("ADDR"#bitsize),
154 !cast<Operand>("imm"#bitsize))>;
164 class BDVMode<string bitsize, string dispsize>
[all …]
H A DSystemZInstrInfo.td1847 uimm32:$bitsize),
1851 uimm32:$bitsize))]> {
H A DSystemZInstrFormats.td5176 ADDR32:$negbitshift, uimm32:$bitsize),
5178 ADDR32:$negbitshift, uimm32:$bitsize))]> {
/llvm-project-15.0.7/mlir/test/lib/Dialect/DLTI/
H A DTestDataLayoutQuery.cpp40 unsigned bitsize = layout.getTypeSizeInBits(op.getType()); in runOnOperation() local
45 builder.getNamedAttr("bitsize", builder.getIndexAttr(bitsize)), in runOnOperation()
/llvm-project-15.0.7/lldb/docs/
H A Dlldb-gdb-remote.txt635 read packet: $name:cs;bitsize:64;offset:144;encoding:uint;format:hex;set:General Purpose Registers;…
637 read packet: $name:fs;bitsize:64;offset:152;encoding:uint;format:hex;set:General Purpose Registers;…
639 read packet: $name:gs;bitsize:64;offset:160;encoding:uint;format:hex;set:General Purpose Registers;…
641 read packet: $name:fctrl;bitsize:16;offset:176;encoding:uint;format:hex;set:Floating Point Register…
643 read packet: $name:fstat;bitsize:16;offset:178;encoding:uint;format:hex;set:Floating Point Register…
645 read packet: $name:ftag;bitsize:8;offset:180;encoding:uint;format:hex;set:Floating Point Registers;…
647 read packet: $name:fop;bitsize:16;offset:182;encoding:uint;format:hex;set:Floating Point Registers;…
649 read packet: $name:fioff;bitsize:32;offset:184;encoding:uint;format:hex;set:Floating Point Register…
651 read packet: $name:fiseg;bitsize:16;offset:188;encoding:uint;format:hex;set:Floating Point Register…
711 read packet: $name:err;bitsize:32;offset:700;encoding:uint;format:hex;set:Exception State Registers…
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/NVPTX/
H A Dpow2_mask_cmp.ll9 ; case when the type has a bitsize of 1, for which the false
/llvm-project-15.0.7/lldb/source/Target/
H A DDynamicRegisterInfo.cpp265 int64_t bitsize = 0; in SetRegisterInfo() local
266 if (!reg_info_dict->GetValueForKeyAsInteger("bitsize", bitsize)) { in SetRegisterInfo()
274 reg_info.byte_size = bitsize / 8; in SetRegisterInfo()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A Darm_mve_defs.td203 // 'bitsize' also takes a scalar type, and expands into an integer
205 def bitsize;
H A Darm_mve.td670 (zip $a, (vreinterpret (vrev $inactive, (bitsize Scalar)), Vector))>;
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGBuiltin.cpp3019 unsigned bitsize = Ty->getScalarSizeInBits(); in EmitBuiltinExpr() local
3020 llvm::IntegerType *IntTy = Builder.getIntNTy(bitsize); in EmitBuiltinExpr()
3022 APInt AndMask = APInt::getSignedMaxValue(bitsize); in EmitBuiltinExpr()
3029 V = Builder.CreateLShr(Sub, llvm::ConstantInt::get(IntTy, bitsize - 1)); in EmitBuiltinExpr()
3030 if (bitsize > 32) in EmitBuiltinExpr()
3243 unsigned bitsize = Ty->getScalarSizeInBits(); in EmitBuiltinExpr() local
3244 llvm::IntegerType *IntTy = Builder.getIntNTy(bitsize); in EmitBuiltinExpr()