/external/v8/src/interpreter/ |
D | interpreter-assembler.h | 23 InterpreterAssembler(compiler::CodeAssemblerState* state, Bytecode bytecode, 29 compiler::Node* BytecodeOperandCount(int operand_index); 32 compiler::Node* BytecodeOperandFlag(int operand_index); 35 compiler::Node* BytecodeOperandIdx(int operand_index); 38 compiler::Node* BytecodeOperandIdxSmi(int operand_index); 41 compiler::Node* BytecodeOperandUImm(int operand_index); 44 compiler::Node* BytecodeOperandUImmWord(int operand_index); 47 compiler::Node* BytecodeOperandImm(int operand_index); 50 compiler::Node* BytecodeOperandImmIntPtr(int operand_index); 53 compiler::Node* BytecodeOperandImmSmi(int operand_index); [all …]
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | BUILD | 13 "//tensorflow/compiler/xla:friends", 26 load("//tensorflow/compiler/xla/tests:build_defs.bzl", "xla_test") 27 load("//tensorflow/compiler/xla/tests:build_defs.bzl", "xla_test_library") 28 load("//tensorflow/compiler/xla/tests:build_defs.bzl", "generate_backend_suites") 29 load("//tensorflow/compiler/xla/tests:build_defs.bzl", "generate_backend_test_macros") 43 "//tensorflow/compiler/xla/legacy_flags:debug_options_flags", 54 "//tensorflow/compiler/xla:types", 67 "//tensorflow/compiler/xla:literal_util", 68 "//tensorflow/compiler/xla:shape_util", 69 "//tensorflow/compiler/xla:util", [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | BUILD | 11 "//tensorflow/compiler/xla:friends", 15 load("//tensorflow/compiler/xla:xla.bzl", "xla_proto_library") 23 deps = ["//tensorflow/compiler/xla:xla_data_proto"], 29 deps = ["//tensorflow/compiler/xla:xla_data_proto"], 63 "//tensorflow/compiler/xla:status_macros", 64 "//tensorflow/compiler/xla:xla_data_proto", 76 "//tensorflow/compiler/xla:shape_util", 77 "//tensorflow/compiler/xla:status_macros", 78 "//tensorflow/compiler/xla:test", 79 "//tensorflow/compiler/xla:test_helpers", [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | BUILD | 11 "//tensorflow/compiler/xla:friends", 31 "//tensorflow/compiler/xla:types", 44 "//tensorflow/compiler/xla:shape_util", 45 "//tensorflow/compiler/xla:types", 46 "//tensorflow/compiler/xla:util", 47 "//tensorflow/compiler/xla/service:hlo", 66 # "//tensorflow/compiler/xla:shape_util", 67 # "//tensorflow/compiler/xla:xla_data_proto", 68 # "//tensorflow/compiler/xla/service:gpu_plugin", 69 # "//tensorflow/compiler/xla/service:hlo", [all …]
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | Makefile.sources | 44 compiler/memory_pool.c \ 45 compiler/memory_pool.h \ 46 compiler/r300_fragprog.c \ 47 compiler/r300_fragprog_emit.c \ 48 compiler/r300_fragprog.h \ 49 compiler/r300_fragprog_swizzle.c \ 50 compiler/r300_fragprog_swizzle.h \ 51 compiler/r3xx_fragprog.c \ 52 compiler/r3xx_vertprog.c \ 53 compiler/r3xx_vertprog_dump.c \ [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | BUILD | 13 "//tensorflow/compiler/xla:friends", 20 load("//tensorflow/compiler/xla:xla.bzl", "ORC_JIT_MEMORY_MAPPER_TARGETS") 36 "//tensorflow/compiler/xla:literal_util", 37 "//tensorflow/compiler/xla:shape_util", 38 "//tensorflow/compiler/xla:status_macros", 39 "//tensorflow/compiler/xla:statusor", 40 "//tensorflow/compiler/xla:types", 41 "//tensorflow/compiler/xla:util", 42 "//tensorflow/compiler/xla:xla_data_proto", 43 "//tensorflow/compiler/xla/service:generic_transfer_manager", [all …]
|
/external/tensorflow/tensorflow/compiler/xla/tools/ |
D | BUILD | 5 package(default_visibility = ["//tensorflow/compiler/xla:internal"]) 14 visibility = ["//tensorflow/compiler/xla:internal"], 23 "//tensorflow/compiler/xla:types", 34 "//tensorflow/compiler/xla:statusor", 35 "//tensorflow/compiler/xla:types", 36 "//tensorflow/compiler/xla:xla_data_proto", 37 "//tensorflow/compiler/xla/client", 38 "//tensorflow/compiler/xla/client:client_library", 39 "//tensorflow/compiler/xla/client:computation", 40 "//tensorflow/compiler/xla/client:local_client", [all …]
|
/external/pcre/dist2/src/sljit/ |
D | sljitLir.c | 31 if (SLJIT_UNLIKELY(compiler->error)) \ 32 return compiler->error; \ 37 if (SLJIT_UNLIKELY(compiler->error)) \ 44 return compiler->error; \ 56 compiler->error = SLJIT_ERR_ALLOC_FAILED; \ 64 compiler->error = SLJIT_ERR_ALLOC_FAILED; \ 72 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \ 266 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \ 274 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \ 330 …struct sljit_compiler *compiler = (struct sljit_compiler*)SLJIT_MALLOC(sizeof(struct sljit_compile… in sljit_create_compiler() local [all …]
|
D | sljitNativePPC_64.c | 42 push_inst(compiler, RLDI(reg, reg, 63 - shift, shift, 1)) 44 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument 52 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate() 55 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate() 58 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate() 59 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate() 70 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate() 76 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate() 77 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp >> 32))); in load_immediate() 87 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate() [all …]
|
D | sljitNativePPC_32.c | 29 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument 32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate() 35 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate() 37 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate() 38 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate() 44 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s… in emit_single_op() argument 54 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op() 62 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op() 63 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24)); in emit_single_op() 66 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op() [all …]
|
D | sljitNativeARM_T2_32.c | 184 static sljit_s32 push_inst16(struct sljit_compiler *compiler, sljit_ins inst) in push_inst16() argument 189 ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_u16)); in push_inst16() 192 compiler->size++; in push_inst16() 196 static sljit_s32 push_inst32(struct sljit_compiler *compiler, sljit_ins inst) in push_inst32() argument 198 sljit_u16 *ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst32() 202 compiler->size += 2; in push_inst32() 206 static SLJIT_INLINE sljit_s32 emit_imm32_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm32_const() argument 208 FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) | in emit_imm32_const() 210 return push_inst32(compiler, MOVT | RD4(dst) | in emit_imm32_const() 342 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument [all …]
|
D | sljitNativeARM_32.c | 129 static sljit_s32 push_cpool(struct sljit_compiler *compiler) in push_cpool() argument 138 if (compiler->last_label && compiler->last_label->size == compiler->size) in push_cpool() 139 compiler->last_label->size += compiler->cpool_fill + (CONST_POOL_ALIGNMENT - 1) + 1; in push_cpool() 141 SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <= CPOOL_SIZE); in push_cpool() 142 inst = (sljit_uw*)ensure_buf(compiler, sizeof(sljit_uw)); in push_cpool() 144 compiler->size++; in push_cpool() 145 *inst = 0xff000000 | compiler->cpool_fill; in push_cpool() 148 inst = (sljit_uw*)ensure_buf(compiler, sizeof(sljit_uw)); in push_cpool() 150 compiler->size++; in push_cpool() 154 cpool_ptr = compiler->cpool; in push_cpool() [all …]
|
D | sljitNativeX86_common.c | 259 #define INC_SIZE(s) (*inst++ = (s), compiler->size += (s)) 471 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 485 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 486 reverse_buf(compiler); in sljit_generate_code() 489 code = (sljit_u8*)SLJIT_MALLOC_EXEC(compiler->size); in sljit_generate_code() 491 buf = compiler->buf; in sljit_generate_code() 494 label = compiler->labels; in sljit_generate_code() 495 jump = compiler->jumps; in sljit_generate_code() 496 const_ = compiler->consts; in sljit_generate_code() 549 jump = compiler->jumps; in sljit_generate_code() [all …]
|
D | sljitNativeARM_64.c | 127 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument 129 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 132 compiler->size++; in push_inst() 136 static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm64_const() argument 138 FAIL_IF(push_inst(compiler, MOVZ | RD(dst) | ((imm & 0xffff) << 5))); in emit_imm64_const() 139 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 16) & 0xffff) << 5) | (1 << 21))); in emit_imm64_const() 140 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 32) & 0xffff) << 5) | (2 << 21))); in emit_imm64_const() 141 return push_inst(compiler, MOVK | RD(dst) | ((imm >> 48) << 5) | (3 << 21)); in emit_imm64_const() 206 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 222 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() [all …]
|
D | sljitNativeMIPS_common.c | 204 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument 208 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 211 compiler->size++; in push_inst() 212 compiler->delay_slot = delay_slot; in push_inst() 359 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 374 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 375 reverse_buf(compiler); in sljit_generate_code() 377 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins)); in sljit_generate_code() 379 buf = compiler->buf; in sljit_generate_code() 383 label = compiler->labels; in sljit_generate_code() [all …]
|
D | sljitNativePPC_common.c | 243 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument 245 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 248 compiler->size++; in push_inst() 321 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 336 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 337 reverse_buf(compiler); in sljit_generate_code() 341 …compiler->size += (compiler->size & 0x1) + (sizeof(struct sljit_function_context) / sizeof(sljit_i… in sljit_generate_code() 343 compiler->size += (sizeof(struct sljit_function_context) / sizeof(sljit_ins)); in sljit_generate_code() 346 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins)); in sljit_generate_code() 348 buf = compiler->buf; in sljit_generate_code() [all …]
|
D | sljitNativeSPARC_common.c | 188 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument 194 ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 197 compiler->size++; in push_inst() 198 compiler->delay_slot = delay_slot; in push_inst() 275 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 290 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 291 reverse_buf(compiler); in sljit_generate_code() 293 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins)); in sljit_generate_code() 295 buf = compiler->buf; in sljit_generate_code() 299 label = compiler->labels; in sljit_generate_code() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/client/ |
D | BUILD | 11 "//tensorflow/compiler/xla:friends", 31 "//tensorflow/compiler/xla:service_interface", 32 "//tensorflow/compiler/xla:types", 33 "//tensorflow/compiler/xla:xla_data_proto", 34 "//tensorflow/compiler/xla:xla_proto", 44 "//tensorflow/compiler/xla:statusor", 45 "//tensorflow/compiler/xla:types", 46 "//tensorflow/compiler/xla:util", 68 "//tensorflow/compiler/xla:execution_options_util", 69 "//tensorflow/compiler/xla:literal_util", [all …]
|
/external/protobuf/cmake/ |
D | libprotoc.cmake | 2 ${protobuf_source_dir}/src/google/protobuf/compiler/code_generator.cc 3 ${protobuf_source_dir}/src/google/protobuf/compiler/command_line_interface.cc 4 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_enum.cc 5 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_enum_field.cc 6 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_extension.cc 7 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_field.cc 8 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_file.cc 9 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_generator.cc 10 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_helpers.cc 11 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_map_field.cc [all …]
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.tests/.settings/ |
D | org.eclipse.jdt.core.prefs | 2 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 3 org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning 4 org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore 5 org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore 6 org.eclipse.jdt.core.compiler.problem.unusedLocal=warning 7 org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore 8 org.eclipse.jdt.core.compiler.problem.unusedLabel=warning 9 org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore 10 org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore 11 org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning [all …]
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/.settings/ |
D | org.eclipse.jdt.core.prefs | 2 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled 3 org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning 4 org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore 5 org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore 6 org.eclipse.jdt.core.compiler.problem.unusedLocal=warning 7 org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore 8 org.eclipse.jdt.core.compiler.problem.unusedLabel=warning 9 org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore 10 org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore 11 org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning [all …]
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/.settings/ |
D | org.eclipse.jdt.core.prefs | 3 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 org.eclipse.jdt.core.compiler.compliance=1.6 7 org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning 11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=ignore 12 org.eclipse.jdt.core.compiler.problem.autoboxing=ignore [all …]
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu/.settings/ |
D | org.eclipse.jdt.core.prefs | 3 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 org.eclipse.jdt.core.compiler.compliance=1.6 7 org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning 11 org.eclipse.jdt.core.compiler.problem.assertIdentifier=ignore 12 org.eclipse.jdt.core.compiler.problem.autoboxing=ignore [all …]
|
/external/tensorflow/tensorflow/compiler/tf2xla/lib/ |
D | BUILD | 6 default_visibility = ["//tensorflow/compiler/tf2xla:friends"], 18 load("//tensorflow/compiler/xla/tests:build_defs.bzl", "xla_test") 25 "//tensorflow/compiler/xla:shape_util", 26 "//tensorflow/compiler/xla:status_macros", 27 "//tensorflow/compiler/xla:statusor", 28 "//tensorflow/compiler/xla/client:computation", 29 "//tensorflow/compiler/xla/client:computation_builder", 42 "//tensorflow/compiler/xla:literal_util", 43 "//tensorflow/compiler/xla:shape_util", 44 "//tensorflow/compiler/xla:status_macros", [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/interpreter/ |
D | BUILD | 15 "//tensorflow/compiler/xla:util", 16 "//tensorflow/compiler/xla:xla_data_proto", 17 "//tensorflow/compiler/xla/service:generic_transfer_manager", 18 "//tensorflow/compiler/xla/service:transfer_manager", 19 "//tensorflow/compiler/xla/service/interpreter:platform_id", 27 name = "compiler", 28 srcs = ["compiler.cc"], 29 hdrs = ["compiler.h"], 33 "//tensorflow/compiler/xla:status", 34 "//tensorflow/compiler/xla:status_macros", [all …]
|