/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_bc_builder.cpp | 49 cf_op_flags flags = (cf_op_flags)cf->bc.op_ptr->flags; in build() 51 cf->bc.id = cf_cnt++; in build() 54 if (cf->bc.is_alu_extended()) in build() 68 cf_op_flags flags = (cf_op_flags)cf->bc.op_ptr->flags; in build() 72 cf->bc.addr = bb.ndw() >> 1; in build() 74 cf->bc.count = (bb.ndw() >> 1) - cf->bc.addr - 1; in build() 78 cf->bc.addr = bb.ndw() >> 1; in build() 80 cf->bc.count = (((bb.ndw() >> 1) - cf->bc.addr) >> 1) - 1; in build() 82 cf->bc.addr = cf->jump_target->bc.id; in build() 84 cf->bc.addr += 1; in build() [all …]
|
D | sb_bc_decoder.cpp | 31 int bc_decoder::decode_cf(unsigned &i, bc_cf& bc) { in decode_cf() argument 38 return decode_cf_alu(i, bc); in decode_cf() 45 bc.set_op(r600_isa_cf_by_opcode(ctx.isa, opcode, 0)); in decode_cf() 47 if (bc.op_ptr->flags & CF_EXP) { in decode_cf() 48 return decode_cf_exp(i, bc); in decode_cf() 49 } else if (bc.op_ptr->flags & CF_MEM) { in decode_cf() 50 return decode_cf_mem(i, bc); in decode_cf() 55 bc.addr = w0.get_ADDR(); in decode_cf() 56 bc.jumptable_sel = w0.get_JUMPTABLE_SEL(); in decode_cf() 61 bc.barrier = w1.get_BARRIER(); in decode_cf() [all …]
|
D | sb_bc_dump.cpp | 48 id = n.bc.id << 1; in visit() 50 if ((n.bc.op_ptr->flags & CF_ALU) && n.bc.is_alu_extended()) { in visit() 59 if (n.bc.op_ptr->flags & CF_CLAUSE) { in visit() 60 id = n.bc.addr << 1; in visit() 81 new_group = n.bc.last; in visit() 83 if (n.bc.last) { in visit() 119 s << n.bc.op_ptr->name; in dump() 121 if (n.bc.op_ptr->flags & CF_EXP) { in dump() 125 s << " " << exp_type[n.bc.type] << " "; in dump() 127 if (n.bc.burst_count) { in dump() [all …]
|
D | sb_expr.cpp | 55 n.bc.src[0].abs = abs; in convert_to_mov() 56 n.bc.src[0].neg = neg; in convert_to_mov() 57 n.bc.set_op(ALU_OP1_MOV); in convert_to_mov() 195 unsigned flags = n.bc.op_ptr->flags; in fold_setcc() 210 apply_alu_src_mod(n.bc, 0, cv0); in fold_setcc() 215 apply_alu_src_mod(n.bc, 1, cv1); in fold_setcc() 223 if (n.bc.src[0].abs && !n.bc.src[0].neg) { in fold_setcc() 231 } else if (n.bc.src[0].abs && n.bc.src[0].neg) { in fold_setcc() 246 if (n.bc.src[1].abs && !n.bc.src[1].neg) { in fold_setcc() 254 } else if (n.bc.src[1].abs && n.bc.src[1].neg) { in fold_setcc() [all …]
|
D | sb_bc_parser.cpp | 50 dw = bc->bytecode; in decode() 51 bc_ndw = bc->ndw; in decode() 59 switch (bc->type) { in decode() 71 if (bc->type == PIPE_SHADER_COMPUTE) in decode() 77 sh = new shader(ctx, t, bc->debug_id); in decode() 84 sh->ngpr = bc->ngpr; in decode() 85 sh->nstack = bc->nstack; in decode() 120 sh->add_gpr_array(0, bc->ngpr, 0x0F); in parse_decls() 138 sh->add_gpr_array(0, pshader->bc.ngpr, 0x0F); in parse_decls() 208 cf->bc.id = id; in decode_cf() [all …]
|
D | sb_peephole.cpp | 65 if (f->bc.op >= FETCH_OP_GDS_ADD_RET && f->bc.op <= FETCH_OP_GDS_USHORT_READ_RET) in run_on() 66 f->bc.set_op(f->bc.op - FETCH_OP_GDS_ADD_RET + FETCH_OP_GDS_ADD); in run_on() 71 if (a->bc.op_ptr->flags & AF_LDS) { in run_on() 73 if (a->bc.op >= LDS_OP2_LDS_ADD_RET && a->bc.op <= LDS_OP3_LDS_MSKOR_RET) in run_on() 74 a->bc.set_op(a->bc.op - LDS_OP2_LDS_ADD_RET + LDS_OP2_LDS_ADD); in run_on() 75 if (a->bc.op == LDS_OP1_LDS_READ_RET) in run_on() 78 } else if (a->bc.op_ptr->flags & in run_on() 81 } else if (a->bc.op == ALU_OP1_FLT_TO_INT) { in run_on() 94 unsigned aflags = a->bc.op_ptr->flags; in optimize_cc_op() 108 ns->bc.set_op(ns->bc.op + (ALU_OP2_SETE_DX10 - ALU_OP2_SETE)); in convert_float_setcc() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ThinLTO/X86/ |
D | distributed_import.ll | 5 ; RUN: opt -thinlto-bc %s -thin-link-bitcode-file=%t1.thinlink.bc -o %t1.bc 6 ; RUN: opt -thinlto-bc %p/Inputs/distributed_import.ll -thin-link-bitcode-file=%t2.thinlink.bc -o %… 7 ; RUN: llvm-bcanalyzer -dump %t1.thinlink.bc | FileCheck --check-prefix=THINLINKBITCODE %s 10 ; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \ 12 ; RUN: -r=%t1.bc,g, \ 13 ; RUN: -r=%t1.bc,analias, \ 14 ; RUN: -r=%t1.bc,f,px \ 15 ; RUN: -r=%t2.bc,g,px \ 16 ; RUN: -r=%t2.bc,analias,px \ 17 ; RUN: -r=%t2.bc,aliasee,px [all …]
|
D | emit_imports.ll | 1 ; RUN: opt -module-summary %s -o %t1.bc 2 ; RUN: opt -module-summary %p/Inputs/emit_imports.ll -o %t2.bc 3 ; RUN: opt -module-summary %p/Inputs/emit_imports2.ll -o %t2b.bc 6 ; RUN: opt -module-summary %p/Inputs/empty.ll -o %t3.bc 7 ; RUN: rm -f %t3.bc.imports 8 ; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t1.bc %t2.bc %t2b.bc %t3.bc 9 ; RUN: llvm-lto -thinlto-action=emitimports -thinlto-index %t.index.bc %t1.bc %t2.bc %t2b.bc %t3.bc 13 ; RUN: cat %t1.bc.imports | count 2 14 ; RUN: cat %t1.bc.imports | FileCheck %s --check-prefix=IMPORTS1 15 ; IMPORTS1: emit_imports.ll.tmp2.bc [all …]
|
D | cache-typeid-resolutions.ll | 1 ; RUN: opt -module-hash -module-summary %s -o %t.bc 2 ; RUN: opt -module-hash -module-summary %S/Inputs/cache-typeid-resolutions-import.ll -o %t-import.bc 4 ; RUN: llvm-as -o %t1.bc %S/Inputs/cache-typeid-resolutions1.ll 5 ; RUN: llvm-as -o %t2.bc %S/Inputs/cache-typeid-resolutions2.ll 6 ; RUN: llvm-as -o %t3.bc %S/Inputs/cache-typeid-resolutions3.ll 12 …bc %t-import.bc -cache-dir %t.cache -r=%t.bc,f1,plx -r=%t.bc,f2,plx -r=%t-import.bc,importf1,plx -… 13 …bc %t-import.bc %t1.bc -cache-dir %t.cache -r=%t.bc,f1,plx -r=%t.bc,f2,plx -r=%t-import.bc,importf… 20 …bc %t-import.bc -cache-dir %t.cache -r=%t.bc,f1,plx -r=%t.bc,f2,plx -r=%t-import.bc,importf1,plx -… 21 …bc %t-import.bc %t2.bc -cache-dir %t.cache -r=%t.bc,f1,plx -r=%t.bc,f2,plx -r=%t2.bc,vt2,plx -r=%t… 22 …bc %t-import.bc %t3.bc -cache-dir %t.cache -r=%t.bc,f1,plx -r=%t.bc,f2,plx -r=%t3.bc,vt2a,plx -r=%…
|
D | cache-config.ll | 2 ; RUN: opt -module-hash -module-summary %s -o %t.bc 4 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx 5 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -mcpu=yonah 6 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -relax-elf-relocatio… 7 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -function-sections 8 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -data-sections 9 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -debugger-tune=sce 10 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -mattr=+sse2 11 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -relocation-model=st… 12 ; RUN: llvm-lto2 run -o %t.o %t.bc -cache-dir %t.cache -r=%t.bc,globalfunc,plx -code-model=large [all …]
|
D | cache-import-lists.ll | 1 ; RUN: opt -module-hash -module-summary %s -o %t.bc 2 ; RUN: opt -module-hash -module-summary %S/Inputs/cache-import-lists1.ll -o %t1.bc 3 ; RUN: opt -module-hash -module-summary %S/Inputs/cache-import-lists2.ll -o %t2.bc 10 … %t.o %t.bc %t1.bc %t2.bc -r=%t.bc,main,plx -r=%t.bc,f1,lx -r=%t.bc,f2,lx -r=%t1.bc,f1,plx -r=%t1.… 11 … %t.o %t.bc %t2.bc %t1.bc -r=%t.bc,main,plx -r=%t.bc,f1,lx -r=%t.bc,f2,lx -r=%t2.bc,f2,plx -r=%t2.…
|
D | deadstrip.ll | 4 ; RUN: opt -module-summary %s -o %t1.bc 5 ; RUN: opt -module-summary %p/Inputs/deadstrip.ll -o %t2.bc 6 ; RUN: llvm-lto -thinlto-action=thinlink -o %t.index.bc %t1.bc %t2.bc 8 …1.bc -thinlto-index=%t.index.bc -o - | llvm-lto -exported-symbol=_main -thinlto-action=internalize… 9 …2.bc -thinlto-index=%t.index.bc -o - | llvm-lto -exported-symbol=_main -thinlto-action=internalize… 11 ; RUN: llvm-lto -exported-symbol=_main -thinlto-action=run %t1.bc %t2.bc 12 ; RUN: llvm-nm %t1.bc.thinlto.o | FileCheck %s --check-prefix=CHECK-NM 14 ; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.out -save-temps \ 15 ; RUN: -r %t1.bc,_main,plx \ 16 ; RUN: -r %t1.bc,_bar,pl \ [all …]
|
D | globals-import-const-fold.ll | 1 ; RUN: opt -module-summary %s -o %t1.bc 2 ; RUN: opt -module-summary %p/Inputs/globals-import-cf-baz.ll -o %t2.bc 3 ; RUN: llvm-lto -thinlto-action=thinlink %t1.bc %t2.bc -o %t3.index.bc 5 ; RUN: llvm-lto -thinlto-action=import %t1.bc %t2.bc -thinlto-index=%t3.index.bc 6 ; RUN: llvm-dis %t1.bc.thinlto.imported.bc -o - | FileCheck --check-prefix=IMPORT %s 7 ; RUN: llvm-lto -thinlto-action=optimize %t1.bc.thinlto.imported.bc -o %t1.bc.thinlto.opt.bc 8 ; RUN: llvm-dis %t1.bc.thinlto.opt.bc -o - | FileCheck --check-prefix=OPTIMIZE %s
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_asm.c | 139 void r600_bytecode_init(struct r600_bytecode *bc, in r600_bytecode_init() argument 146 bc->debug_id = ++next_shader_id; in r600_bytecode_init() 150 bc->ar_handling = AR_HANDLE_RV6XX; in r600_bytecode_init() 151 bc->r6xx_nop_after_rel_dst = 1; in r600_bytecode_init() 153 bc->ar_handling = AR_HANDLE_NORMAL; in r600_bytecode_init() 154 bc->r6xx_nop_after_rel_dst = 0; in r600_bytecode_init() 157 LIST_INITHEAD(&bc->cf); in r600_bytecode_init() 158 bc->chip_class = chip_class; in r600_bytecode_init() 159 bc->family = family; in r600_bytecode_init() 160 bc->has_compressed_msaa_texturing = has_compressed_msaa_texturing; in r600_bytecode_init() [all …]
|
D | eg_asm.c | 31 int eg_bytecode_cf_build(struct r600_bytecode *bc, struct r600_bytecode_cf *cf) in eg_bytecode_cf_build() argument 36 bc->bytecode[id++] = cf->isa[0]; in eg_bytecode_cf_build() 37 bc->bytecode[id++] = cf->isa[1]; in eg_bytecode_cf_build() 40 unsigned opcode = r600_isa_cf_opcode(bc->isa->hw_class, cf->op); in eg_bytecode_cf_build() 45 bc->bytecode[id++] = in eg_bytecode_cf_build() 53 bc->bytecode[id++] = in eg_bytecode_cf_build() 55 r600_isa_cf_opcode(bc->isa->hw_class, CF_OP_ALU_EXT)) | in eg_bytecode_cf_build() 61 bc->bytecode[id++] = S_SQ_CF_ALU_WORD0_ADDR(cf->addr >> 1) | in eg_bytecode_cf_build() 65 bc->bytecode[id++] = S_SQ_CF_ALU_WORD1_CF_INST(opcode) | in eg_bytecode_cf_build() 73 bc->bytecode[id++] = S_SQ_CF_WORD0_ADDR(cf->addr >> 1); in eg_bytecode_cf_build() [all …]
|
/external/clang/test/Sema/ |
D | zvector.c | 7 vector bool char bc, bc2; variable 48 bc = bc2; in foo() 67 bc = sc2; // expected-error {{incompatible type}} in foo() 68 bc = uc2; // expected-error {{incompatible type}} in foo() 74 bc = sc_scalar; // expected-error {{incompatible type}} in foo() 75 bc = uc_scalar; // expected-error {{incompatible type}} in foo() 97 bc = us2; // expected-error {{incompatible type}} in foo() 98 bc = ui2; // expected-error {{incompatible type}} in foo() 99 bc = ul2; // expected-error {{incompatible type}} in foo() 100 bc = fd2; // expected-error {{incompatible type}} in foo() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/LTO/Resolution/X86/ |
D | common2.ll | 1 ; RUN: llvm-as < %s > %t1.bc 2 ; RUN: llvm-as < %p/Inputs/common2.ll > %t2.bc 7 ; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t.o -save-temps \ 8 ; RUN: -r %t1.bc,v,x \ 9 ; RUN: -r %t2.bc,v,px \ 10 ; RUN: -r %t1.bc,foo,px \ 11 ; RUN: -r %t2.bc,bar,px 12 ; RUN: llvm-dis < %t.o.0.0.preopt.bc | FileCheck %s --check-prefix=LARGE-PREVAILED 15 ; RUN: llvm-lto2 run %t2.bc %t1.bc -o %t.o -save-temps \ 16 ; RUN: -r %t1.bc,v,x \ [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | boolhuff.h | 38 void vp8_start_encode(BOOL_CODER *bc, unsigned char *source, 41 void vp8_encode_value(BOOL_CODER *bc, int data, int bits); 42 void vp8_stop_encode(BOOL_CODER *bc); 59 static void vp8_encode_bool(BOOL_CODER *bc, int bit, int probability) { in vp8_encode_bool() argument 61 int count = bc->count; in vp8_encode_bool() 62 unsigned int range = bc->range; in vp8_encode_bool() 63 unsigned int lowvalue = bc->lowvalue; in vp8_encode_bool() 72 range = bc->range - split; in vp8_encode_bool() 84 int x = bc->pos - 1; in vp8_encode_bool() 86 while (x >= 0 && bc->buffer[x] == 0xff) { in vp8_encode_bool() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/ThinLTOBitcodeWriter/ |
D | no-type-md.ll | 3 ; RUN: opt -thinlto-bc -thin-link-bitcode-file=%t.thinlink.bc -o %t.bc %s 4 ; RUN: llvm-dis -o - %t.bc | FileCheck %s 5 ; RUN: llvm-bcanalyzer -dump %t.bc | FileCheck --check-prefix=BCA %s 9 ; RUN: llvm-lto -thinlto -o %t3 %t.bc 13 ; RUN: mv %t.bc %t.bc.sv 14 ; RUN: cp %t.thinlink.bc %t.bc 15 ; RUN: llvm-lto -thinlto -o %t4 %t.bc 16 ; RUN: mv %t.bc.sv %t.bc 17 ; RUN: diff %t3.thinlto.bc %t4.thinlto.bc 20 ; RUN: rm -f %t3.thinlto.bc %t4.thinlto.bc [all …]
|
/external/llvm/test/Object/ |
D | archive-extract.test | 6 ; RUN: rm -f very_long_bytecode_file_name.bc 7 ; RUN: llvm-ar p %p/Inputs/GNU.a very_long_bytecode_file_name.bc | \ 8 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc - 9 ; RUN: llvm-ar x %p/Inputs/GNU.a very_long_bytecode_file_name.bc 10 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc \ 11 ; RUN: very_long_bytecode_file_name.bc 13 ; RUN: rm -f very_long_bytecode_file_name.bc 14 ; RUN: llvm-ar p %p/Inputs/MacOSX.a very_long_bytecode_file_name.bc | \ 15 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc - 16 ; RUN: llvm-ar x %p/Inputs/MacOSX.a very_long_bytecode_file_name.bc [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/ |
D | archive-extract.test | 6 ; RUN: rm -f very_long_bytecode_file_name.bc 7 ; RUN: llvm-ar p %p/Inputs/GNU.a very_long_bytecode_file_name.bc | \ 8 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc - 9 ; RUN: llvm-ar x %p/Inputs/GNU.a very_long_bytecode_file_name.bc 10 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc \ 11 ; RUN: very_long_bytecode_file_name.bc 13 ; RUN: rm -f very_long_bytecode_file_name.bc 14 ; RUN: llvm-ar p %p/Inputs/MacOSX.a very_long_bytecode_file_name.bc | \ 15 ; RUN: cmp -s %p/Inputs/very_long_bytecode_file_name.bc - 16 ; RUN: llvm-ar x %p/Inputs/MacOSX.a very_long_bytecode_file_name.bc [all …]
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | plot_bars.sh | 83 box_width=$(echo "(1.0-$tcp_space/2)/$num_flows" | bc -l) 87 abscissa=$(echo $x_start + 0.5 + 0.5*$box_width | bc) 90 abscissa=$(echo $abscissa + $box_width | bc) 93 abscissa=$(echo $abscissa + $tcp_space | bc) 97 abscissa=$(echo $abscissa + $box_width | bc) 101 box_width=$(echo 1.0/$num_flows | bc -l) 126 if (( $(bc <<< "$y > $y_max") == 1 )); then 138 if (( $(bc <<< "$y > $y_max") == 1 )) ; then 148 if (( $(bc <<< "$y > $y_max") == 1 )) ; then 153 y_max=$(echo $y_max*1.1 | bc) [all …]
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | lds-alignment.ll | 19 %lds.align16.0.bc = bitcast [38 x i8] addrspace(3)* @lds.align16.0 to i8 addrspace(3)* 20 …call void @llvm.memcpy.p3i8.p1i8.i32(i8 addrspace(3)* %lds.align16.0.bc, i8 addrspace(1)* %in, i32… 21 …call void @llvm.memcpy.p1i8.p3i8.i32(i8 addrspace(1)* %out, i8 addrspace(3)* %lds.align16.0.bc, i3… 38 %lds.align16.0.bc = bitcast [38 x i8] addrspace(3)* @lds.align16.0 to i8 addrspace(3)* 39 …call void @llvm.memcpy.p3i8.p1i8.i32(i8 addrspace(3)* %lds.align16.0.bc, i8 addrspace(1)* %in, i32… 40 …call void @llvm.memcpy.p1i8.p3i8.i32(i8 addrspace(1)* %out, i8 addrspace(3)* %lds.align16.0.bc, i3… 42 %lds.align16.1.bc = bitcast [38 x i8] addrspace(3)* @lds.align16.1 to i8 addrspace(3)* 43 …call void @llvm.memcpy.p3i8.p1i8.i32(i8 addrspace(3)* %lds.align16.1.bc, i8 addrspace(1)* %in, i32… 44 …call void @llvm.memcpy.p1i8.p3i8.i32(i8 addrspace(1)* %out, i8 addrspace(3)* %lds.align16.1.bc, i3… 54 %lds.align16.0.bc = bitcast [38 x i8] addrspace(3)* @lds.align16.0 to i8 addrspace(3)* [all …]
|
/external/tensorflow/tensorflow/core/lib/core/ |
D | blocking_counter_test.cc | 25 BlockingCounter bc(0); in TEST() local 26 bc.Wait(); in TEST() 30 BlockingCounter bc(2); in TEST() local 31 bc.DecrementCount(); in TEST() 32 bc.DecrementCount(); in TEST() 33 bc.Wait(); in TEST() 41 BlockingCounter bc(N); in TEST() local 43 thread_pool->Schedule([&bc] { bc.DecrementCount(); }); in TEST() 46 bc.Wait(); in TEST() 60 BlockingCounter bc(num_shards); in BM_BlockingCounter() local [all …]
|
/external/llvm/test/ThinLTO/X86/ |
D | select_right_alias_definition.ll | 1 ; RUN: opt -module-summary %s -o %t_main.bc 2 ; RUN: opt -module-summary %p/Inputs/select_right_alias_definition1.ll -o %t1.bc 3 ; RUN: opt -module-summary %p/Inputs/select_right_alias_definition2.ll -o %t2.bc 9 ; RUN: llvm-lto -thinlto-action=thinlink -o %t.index1.bc %t_main.bc %t1.bc %t2.bc 10 ; RUN: llvm-lto -thinlto-action=import -thinlto-index %t.index1.bc %t_main.bc -o - | llvm-dis -o - … 12 ; Try with the other order (reversing %t1.bc and %t2.bc) 13 ; RUN: llvm-lto -thinlto-action=thinlink -o %t.index2.bc %t_main.bc %t2.bc %t1.bc 14 ; RUN: llvm-lto -thinlto-action=import -thinlto-index %t.index2.bc %t_main.bc -o - | llvm-dis -o - …
|