Home
last modified time | relevance | path

Searched refs:usize_type (Results 1 – 25 of 41) sorted by relevance

12

/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_gcc/src/
H A Dcontext.rs66 pub usize_type: Type<'gcc>, field
124 let usize_type = context.new_c_type(CType::ULongLong); in new() localVariable
150 assert_eq!(usize_type, u64_type); in new()
187 usize_type, in new()
H A Dcommon.rs170 self.const_uint(self.usize_type, i) in const_usize()
260 let base_addr = self.const_bitcast(base_addr, self.usize_type); in scalar_to_backend()
261 … let offset = self.context.new_rvalue_from_long(self.usize_type, offset.bytes() as i64); in scalar_to_backend()
H A Dbuilder.rs1085 lhs = self.context.new_cast(None, lhs, self.usize_type.make_pointer()); in icmp()
1086 rhs = self.context.new_cast(None, rhs, self.usize_type.make_pointer()); in icmp()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_gcc/src/intrinsic/
H A Dmod.rs719 let zero = self.context.new_rvalue_zero(self.usize_type); in count_leading_zeroes()
720 let one = self.context.new_rvalue_one(self.usize_type); in count_leading_zeroes()
721 let two = self.context.new_rvalue_from_long(self.usize_type, 2); in count_leading_zeroes()
794 let zero = self.context.new_rvalue_zero(self.usize_type); in count_trailing_zeroes()
795 let one = self.context.new_rvalue_one(self.usize_type); in count_trailing_zeroes()
796 let two = self.context.new_rvalue_from_long(self.usize_type, 2); in count_trailing_zeroes()
/dports/devel/gdb/gdb-11.1/gdb/
H A Drust-lang.h51 struct type *usize_type);
H A Drust-lang.c954 struct type *usize_type) in rust_slice_type() argument
961 "length", usize_type); in rust_slice_type()
1558 struct type *usize_type in language_arch_info() local
1566 add (rust_slice_type ("&str", tem, usize_type)); in language_arch_info()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_cranelift/src/
H A Dbase.rs712 let usize_type = fx.clif_type(fx.tcx.types.usize).unwrap(); in codegen_stmt() localVariable
715 let llsize = fx.bcx.ins().iconst(usize_type, layout.size.bytes() as i64); in codegen_stmt()
716 let llalign = fx.bcx.ins().iconst(usize_type, layout.align.abi.bytes() as i64); in codegen_stmt()
/dports/lang/zig-devel/zig-0.9.0/src/
H A DAstGen.zig773 const start = try expr(gz, scope, .{ .coerced_ty = .usize_type }, extra.start);
774 const end = try expr(gz, scope, .{ .coerced_ty = .usize_type }, extra.end);
785 const start = try expr(gz, scope, .{ .coerced_ty = .usize_type }, extra.start);
2982 const len = try expr(gz, scope, .{ .coerced_ty = .usize_type }, len_node);
3003 const len = try reachableExpr(gz, scope, .{ .coerced_ty = .usize_type }, len_node, node);
4763 try expr(gz, scope, .{ .ty = .usize_type }, node_datas[node].rhs),
4768 try expr(gz, scope, .{ .ty = .usize_type }, node_datas[node].rhs),
5363 const index_ptr = try parent_gz.addUnNode(alloc_tag, .usize_type, node);
7635 .{ "usize", .usize_type },
8300 const as_usize = @as(u64, @enumToInt(Zir.Inst.Ref.usize_type)) << 32;
[all …]
H A Dvalue.zig36 usize_type,
192 .usize_type,
383 .usize_type,
614 .usize_type => return out_stream.writeAll("usize"),
792 .usize_type => Type.initTag(.usize),
H A DZir.zig1620 usize_type,
1748 .usize_type = .{
1750 .val = Value.initTag(.usize_type),
H A Dtype.zig1468 .usize => return Value.initTag(.usize_type),
H A DSema.zig15014 .usize => return .usize_type,
/dports/lang/zig/zig-0.9.0/src/
H A DAstGen.zig773 const start = try expr(gz, scope, .{ .coerced_ty = .usize_type }, extra.start);
774 const end = try expr(gz, scope, .{ .coerced_ty = .usize_type }, extra.end);
785 const start = try expr(gz, scope, .{ .coerced_ty = .usize_type }, extra.start);
2982 const len = try expr(gz, scope, .{ .coerced_ty = .usize_type }, len_node);
3003 const len = try reachableExpr(gz, scope, .{ .coerced_ty = .usize_type }, len_node, node);
4763 try expr(gz, scope, .{ .ty = .usize_type }, node_datas[node].rhs),
4768 try expr(gz, scope, .{ .ty = .usize_type }, node_datas[node].rhs),
5363 const index_ptr = try parent_gz.addUnNode(alloc_tag, .usize_type, node);
7635 .{ "usize", .usize_type },
8300 const as_usize = @as(u64, @enumToInt(Zir.Inst.Ref.usize_type)) << 32;
[all …]
H A Dvalue.zig36 usize_type,
192 .usize_type,
383 .usize_type,
614 .usize_type => return out_stream.writeAll("usize"),
792 .usize_type => Type.initTag(.usize),
H A DZir.zig1620 usize_type,
1748 .usize_type = .{
1750 .val = Value.initTag(.usize_type),
H A Dtype.zig1468 .usize => return Value.initTag(.usize_type),
H A DSema.zig15014 .usize => return .usize_type,
/dports/lang/zig/zig-0.9.0/src/stage1/
H A Danalyze.cpp8514 ZigType *usize_type = g->builtin_types.entry_usize; in resolve_llvm_types_slice() local
8559 LLVMTypeRef usize_llvm_type = get_llvm_type(g, usize_type); in resolve_llvm_types_slice()
8560 ZigLLVMDIType *usize_llvm_di_type = get_llvm_di_type(g, usize_type); in resolve_llvm_types_slice()
8582 uint64_t len_debug_size_in_bits = usize_type->size_in_bits; in resolve_llvm_types_slice()
8583 uint64_t len_debug_align_in_bits = 8*usize_type->abi_align; in resolve_llvm_types_slice()
8621 uint64_t len_debug_size_in_bits = usize_type->size_in_bits; in resolve_llvm_types_slice()
8622 uint64_t len_debug_align_in_bits = 8*usize_type->abi_align; in resolve_llvm_types_slice()
/dports/lang/zig-devel/zig-0.9.0/src/stage1/
H A Danalyze.cpp8514 ZigType *usize_type = g->builtin_types.entry_usize; in resolve_llvm_types_slice() local
8559 LLVMTypeRef usize_llvm_type = get_llvm_type(g, usize_type); in resolve_llvm_types_slice()
8560 ZigLLVMDIType *usize_llvm_di_type = get_llvm_di_type(g, usize_type); in resolve_llvm_types_slice()
8582 uint64_t len_debug_size_in_bits = usize_type->size_in_bits; in resolve_llvm_types_slice()
8583 uint64_t len_debug_align_in_bits = 8*usize_type->abi_align; in resolve_llvm_types_slice()
8621 uint64_t len_debug_size_in_bits = usize_type->size_in_bits; in resolve_llvm_types_slice()
8622 uint64_t len_debug_align_in_bits = 8*usize_type->abi_align; in resolve_llvm_types_slice()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/
H A DChangeLog-200417428 (usize_type, ubitsizetype): Remove.
/dports/lang/gcc9/gcc-9.4.0/gcc/
H A DChangeLog-200417428 (usize_type, ubitsizetype): Remove.
/dports/devel/tigcc/tigcc-0.96.b8_10/gnu/gcc-4.1-20060728/gcc/
H A DChangeLog-200417426 (usize_type, ubitsizetype): Remove.
/dports/lang/gnat_util/gcc-6-20180516/gcc/
H A DChangeLog-200417428 (usize_type, ubitsizetype): Remove.
/dports/devel/avr-gcc/gcc-10.2.0/gcc/
H A DChangeLog-200417428 (usize_type, ubitsizetype): Remove.
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/
H A DChangeLog-200417428 (usize_type, ubitsizetype): Remove.

12