/netbsd-src/sys/external/bsd/sljit/dist/test_src/ |
H A D | sljitTest.c | 67 #define CHECK(compiler) \ argument 69 if (compiler == NULL) { \ 73 if (sljit_get_compiler_error(compiler) != SLJIT_ERR_COMPILED) { \ 75 sljit_get_compiler_error(compiler)); \ 76 sljit_free_compiler(compiler); \ 81 static void cond_set(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_s32 type) in cond_set() argument 87 sljit_emit_op_flags(compiler, SLJIT_MOV, dst, dstw, SLJIT_UNUSED, 0, type); in cond_set() 88 jump = sljit_emit_jump(compiler, type); in cond_set() 89 sljit_emit_op2(compiler, SLJIT_ADD, dst, dstw, dst, dstw, SLJIT_IMM, 2); in cond_set() 90 label = sljit_emit_label(compiler); in cond_set() [all …]
|
/netbsd-src/sys/external/bsd/sljit/dist/sljit_src/ |
H A D | sljitLir.c | 43 if (SLJIT_UNLIKELY(compiler->error)) \ 44 return compiler->error; \ 49 if (SLJIT_UNLIKELY(compiler->error)) \ 56 return compiler->error; \ 68 compiler->error = SLJIT_ERR_ALLOC_FAILED; \ 76 compiler->error = SLJIT_ERR_ALLOC_FAILED; \ 84 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \ 294 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \ 302 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \ 358 …struct sljit_compiler *compiler = (struct sljit_compiler*)SLJIT_MALLOC(sizeof(struct sljit_compile… in sljit_create_compiler() local [all …]
|
H A D | sljitNativePPC_64.c | 44 push_inst(compiler, RLDI(reg, reg, 63 - shift, shift, 1)) 46 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument 54 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate() 57 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate() 60 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate() 61 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate() 72 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate() 78 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate() 79 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp >> 32))); in load_immediate() 89 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate() [all …]
|
H A D | sljitNativePPC_32.c | 31 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument 34 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate() 37 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate() 39 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate() 40 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate() 46 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s… in emit_single_op() argument 56 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op() 64 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op() 65 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24)); in emit_single_op() 68 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op() [all …]
|
H A D | sljitNativeARM_64.c | 129 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument 131 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 134 compiler->size++; in push_inst() 138 static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm64_const() argument 140 FAIL_IF(push_inst(compiler, MOVZ | RD(dst) | ((imm & 0xffff) << 5))); in emit_imm64_const() 141 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 16) & 0xffff) << 5) | (1 << 21))); in emit_imm64_const() 142 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 32) & 0xffff) << 5) | (2 << 21))); in emit_imm64_const() 143 return push_inst(compiler, MOVK | RD(dst) | ((imm >> 48) << 5) | (3 << 21)); in emit_imm64_const() 209 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 226 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() [all …]
|
H A D | sljitNativeX86_common.c | 77 if (p <= compiler->scratches) \ 78 w = compiler->saveds_offset - ((p) - SLJIT_R2) * (sljit_sw)sizeof(sljit_sw); \ 80 w = compiler->locals_offset + ((p) - SLJIT_S2) * (sljit_sw)sizeof(sljit_sw); \ 264 #define INC_SIZE(s) (*inst++ = (s), compiler->size += (s)) 477 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 493 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 494 reverse_buf(compiler); in sljit_generate_code() 497 code = (sljit_u8*)SLJIT_MALLOC_EXEC(compiler->size); in sljit_generate_code() 499 buf = compiler->buf; in sljit_generate_code() 502 label = compiler->labels; in sljit_generate_code() [all …]
|
H A D | sljitNativeARM_32.c | 130 static sljit_s32 push_cpool(struct sljit_compiler *compiler) in push_cpool() argument 139 if (compiler->last_label && compiler->last_label->size == compiler->size) in push_cpool() 140 compiler->last_label->size += compiler->cpool_fill + (CONST_POOL_ALIGNMENT - 1) + 1; in push_cpool() 142 SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <= CPOOL_SIZE); in push_cpool() 143 inst = (sljit_uw*)ensure_buf(compiler, sizeof(sljit_uw)); in push_cpool() 145 compiler->size++; in push_cpool() 146 *inst = 0xff000000 | compiler->cpool_fill; in push_cpool() 149 inst = (sljit_uw*)ensure_buf(compiler, sizeof(sljit_uw)); in push_cpool() 151 compiler->size++; in push_cpool() 155 cpool_ptr = compiler->cpool; in push_cpool() [all …]
|
H A D | sljitNativeARM_T2_32.c | 185 static sljit_s32 push_inst16(struct sljit_compiler *compiler, sljit_ins inst) in push_inst16() argument 190 ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_u16)); in push_inst16() 193 compiler->size++; in push_inst16() 197 static sljit_s32 push_inst32(struct sljit_compiler *compiler, sljit_ins inst) in push_inst32() argument 199 sljit_u16 *ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst32() 203 compiler->size += 2; in push_inst32() 207 static SLJIT_INLINE sljit_s32 emit_imm32_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm32_const() argument 209 FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) | in emit_imm32_const() 211 return push_inst32(compiler, MOVT | RD4(dst) | in emit_imm32_const() 345 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument [all …]
|
H A D | sljitNativeMIPS_common.c | 201 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument 205 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 208 compiler->size++; in push_inst() 209 compiler->delay_slot = delay_slot; in push_inst() 357 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 373 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 374 reverse_buf(compiler); in sljit_generate_code() 376 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins)); in sljit_generate_code() 378 buf = compiler->buf; in sljit_generate_code() 384 label = compiler->labels; in sljit_generate_code() [all …]
|
H A D | sljitNativePPC_common.c | 245 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument 247 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 250 compiler->size++; in push_inst() 325 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 341 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 342 reverse_buf(compiler); in sljit_generate_code() 346 …compiler->size += (compiler->size & 0x1) + (sizeof(struct sljit_function_context) / sizeof(sljit_i… in sljit_generate_code() 348 compiler->size += (sizeof(struct sljit_function_context) / sizeof(sljit_ins)); in sljit_generate_code() 351 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins)); in sljit_generate_code() 353 buf = compiler->buf; in sljit_generate_code() [all …]
|
H A D | sljitNativeSPARC_common.c | 190 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument 196 ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 199 compiler->size++; in push_inst() 200 compiler->delay_slot = delay_slot; in push_inst() 279 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument 295 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 296 reverse_buf(compiler); in sljit_generate_code() 298 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins)); in sljit_generate_code() 300 buf = compiler->buf; in sljit_generate_code() 306 label = compiler->labels; in sljit_generate_code() [all …]
|
H A D | sljitNativeX86_32.c | 31 static sljit_s32 emit_do_imm(struct sljit_compiler *compiler, sljit_u8 opcode, sljit_sw imm) in emit_do_imm() argument 35 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + sizeof(sljit_sw)); in emit_do_imm() 68 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter() argument 76 …CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, loca… in sljit_emit_enter() 77 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter() 79 compiler->args = args; in sljit_emit_enter() 83 compiler->saveds_offset = 1 * sizeof(sljit_sw); in sljit_emit_enter() 87 compiler->saveds_offset = 1 * sizeof(sljit_sw); in sljit_emit_enter() 89 compiler->saveds_offset = ((scratches == 2) ? 2 : 3) * sizeof(sljit_sw); in sljit_emit_enter() 93 compiler->saveds_offset += ((scratches > (3 + 6)) ? 6 : (scratches - 3)) * sizeof(sljit_sw); in sljit_emit_enter() [all …]
|
H A D | sljitNativeMIPS_64.c | 31 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm) in load_immediate() argument 40 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate() 43 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate() 46 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(imm >> 16), dst_ar)); in load_immediate() 47 …return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SL… in load_immediate() 81 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(uimm >> 48), dst_ar)); in load_immediate() 83 FAIL_IF(push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(uimm >> 32), dst_ar)); in load_immediate() 90 FAIL_IF(push_inst(compiler, ins | TA(dst_ar) | DA(dst_ar), dst_ar)); in load_immediate() 91 …return !(imm & 0xffff) ? SLJIT_SUCCESS : push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(i… in load_immediate() 115 FAIL_IF(push_inst(compiler, DSLL | TA(dst_ar) | DA(dst_ar) | SH_IMM(shift - shift2), dst_ar)); in load_immediate() [all …]
|
H A D | sljitNativeMIPS_32.c | 31 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm) in load_immediate() argument 34 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate() 37 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate() 39 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(imm >> 16), dst_ar)); in load_immediate() 40 …return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SL… in load_immediate() 46 FAIL_IF(push_inst(compiler, op_imm | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG)); \ 48 FAIL_IF(push_inst(compiler, op_imm | S(src1) | T(dst) | IMM(src2), DR(dst))); \ 52 FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG)); \ 54 FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | D(dst), DR(dst))); \ 60 FAIL_IF(push_inst(compiler, op_imm | T(src1) | DA(EQUAL_FLAG) | SH_IMM(src2), EQUAL_FLAG)); \ [all …]
|
H A D | sljitNativeX86_64.c | 31 static sljit_s32 emit_load_imm64(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in emit_load_imm64() argument 35 inst = (sljit_u8*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_sw)); in emit_load_imm64() 70 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter() argument 78 …CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, loca… in sljit_emit_enter() 79 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter() 84 compiler->locals_offset = 6 * sizeof(sljit_sw); in sljit_emit_enter() 86 compiler->locals_offset = ((scratches > 2) ? 4 : 2) * sizeof(sljit_sw); in sljit_emit_enter() 95 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_enter() 105 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_enter() 115 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_enter() [all …]
|
H A D | sljitNativeTILEGX_64.c | 332 static sljit_s32 push_inst_debug(struct sljit_compiler *compiler, sljit_ins ins, int line) in push_inst_debug() argument 334 sljit_ins *ptr = (sljit_ins *)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst_debug() 337 compiler->size++; in push_inst_debug() 343 static sljit_s32 push_inst_nodebug(struct sljit_compiler *compiler, sljit_ins ins) in push_inst_nodebug() argument 345 sljit_ins *ptr = (sljit_ins *)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst_nodebug() 348 compiler->size++; in push_inst_nodebug() 354 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument 356 sljit_ins *ptr = (sljit_ins *)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 359 compiler->size++; in push_inst() 382 push_inst(compiler, encoding) [all …]
|
H A D | sljitNativeSPARC_32.c | 29 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw imm) in load_immediate() argument 32 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst)); in load_immediate() 34 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((imm >> 10) & 0x3fffff), DR(dst))); in load_immediate() 35 …return (imm & 0x3ff) ? push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (imm & 0x3ff), DR(dst… in load_immediate() 40 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s… in emit_single_op() argument 52 return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst)); in emit_single_op() 60 return push_inst(compiler, AND | D(dst) | S1(src2) | IMM(0xff), DR(dst)); in emit_single_op() 61 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(24), DR(dst))); in emit_single_op() 62 return push_inst(compiler, SRA | D(dst) | S1(dst) | IMM(24), DR(dst)); in emit_single_op() 72 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(16), DR(dst))); in emit_single_op() [all …]
|
H A D | sljitLir.h | 427 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_compiler(struct sljit_compiler *compiler); 434 …LINE sljit_s32 sljit_get_compiler_error(struct sljit_compiler *compiler) { return compiler->error;… in sljit_get_compiler_error() argument 442 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_compiler_memory_error(struct sljit_compiler *compiler); 455 SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_s32 size); 459 SLJIT_API_FUNC_ATTRIBUTE void sljit_compiler_verbose(struct sljit_compiler *compiler, FILE* verbose… 467 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler); 484 …NE sljit_sw sljit_get_executable_offset(struct sljit_compiler *compiler) { return compiler->execut… in sljit_get_executable_offset() argument 492 … sljit_uw sljit_get_generated_code_size(struct sljit_compiler *compiler) { return compiler->execut… in sljit_get_generated_code_size() argument 544 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, 558 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler, [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/exec/ |
H A D | main.c | 115 char *const compiler = "/usr/bin/cc"; in call_execv() local 121 FORK(execv(compiler, argv);) in call_execv() 128 char *const compiler = "/usr/bin/cc"; in call_execve() local 129 char *const argv[] = {compiler, "-c", file, 0}; in call_execve() 135 FORK(execve(compiler, argv, envp);) in call_execve() 142 char *const compiler = "cc"; in call_execvp() local 143 char *const argv[] = {compiler, "-c", file, 0}; in call_execvp() 148 FORK(execvp(compiler, argv);) in call_execvp() 155 char *const compiler = "cc"; in call_execvP() local 156 char *const argv[] = {compiler, "-c", file, 0}; in call_execvP() [all …]
|
/netbsd-src/sys/net/ |
H A D | bpfjit.c | 298 load_buf_buflen(struct sljit_compiler *compiler) in load_buf_buflen() argument 302 status = sljit_emit_op1(compiler, in load_buf_buflen() 310 status = sljit_emit_op1(compiler, in load_buf_buflen() 357 emit_read8(struct sljit_compiler *compiler, sljit_s32 src, uint32_t k) in emit_read8() argument 360 return sljit_emit_op1(compiler, in emit_read8() 370 emit_read16(struct sljit_compiler *compiler, sljit_s32 src, uint32_t k) in emit_read16() argument 377 status = sljit_emit_op1(compiler, in emit_read16() 385 status = sljit_emit_op1(compiler, in emit_read16() 393 status = sljit_emit_op2(compiler, in emit_read16() 402 status = sljit_emit_op2(compiler, in emit_read16() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/runtime/ |
H A D | CMakeLists.txt | 25 set(COMPILER_RT_SRC_ROOT ${LLVM_MAIN_SRC_DIR}/projects/compiler-rt) 38 # Add compiler-rt as an external project. 39 set(COMPILER_RT_PREFIX ${CMAKE_BINARY_DIR}/projects/compiler-rt) 41 set(STAMP_DIR ${CMAKE_CURRENT_BINARY_DIR}/compiler-rt-stamps/) 42 set(BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/compiler-rt-bins/) 44 add_custom_target(compiler-rt-clear 47 COMMENT "Clobberring compiler-rt build and stamp directories" 69 ExternalProject_Add(compiler-rt 103 ExternalProject_Add_Step(compiler-rt clean 105 COMMENT "Cleaning compiler-rt..." [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libcc1/ |
H A D | compiler.hh | 27 class compiler class 30 explicit compiler (bool v) in compiler() function in cc1_plugin::compiler 35 virtual ~compiler () = default; 41 virtual char *find (const char *base, std::string &compiler) const; 53 class compiler_triplet_regexp : public compiler 59 char *find (const char *base, std::string &compiler) const override; 62 : compiler (v), triplet_regexp_ (triplet_regexp) in compiler_triplet_regexp() 68 class compiler_driver_filename : public compiler 73 char *find (const char *base, std::string &compiler) const override; 76 : compiler (v), driver_filename_ (driver_filename) in compiler_driver_filename()
|
/netbsd-src/external/bsd/tre/dist/m4/ |
H A D | vl_prog_cc_warnings.m4 | 3 dnl Enables a high level of warnings for the C compiler. Optionally, 5 dnl enable proper ANSI C if such are known with the compiler used. 7 dnl Currently this macro knows about GCC, Solaris C compiler, 8 dnl Digital Unix C compiler, C for AIX Compiler, HP-UX C compiler, 9 dnl IRIX C compiler, NEC SX-5 (Super-UX 10) C compiler, and Cray J90 10 dnl (Unicos 10.0.0.8) C compiler. 20 msg="for C compiler warning flags" 22 msg="for C compiler warning and ANSI conformance flags" 40 dnl before doing a test compilation run with compiler-specific flags. 41 dnl This is because some compilers (like the Cray compiler) only [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | AdvancedBuilds.rst | 30 In a simple two-stage bootstrap build, we build clang using the system compiler, 64 build using the compiler installed on the host, and a stage2 build is built 65 using the stage1 compiler. This nomenclature holds up to more stages too. In 74 The stage1 compiler is a host-only compiler with some options set. The stage1 75 compiler is a balance of optimization vs build time because it is a throwaway. 76 The stage2 compiler is the fully optimized compiler intended to ship to users. 80 You can build an Apple Clang compiler using the following commands: 87 This CMake invocation configures the stage1 host compiler, and sets 92 compiler and required tools, then configures and builds the stage2 compiler 106 At a high level, the way PGO works is that you build an instrumented compiler, [all …]
|
/netbsd-src/external/mit/xorg/lib/ |
H A D | libglsl.mk | 10 CPPFLAGS+= -I${X11SRCDIR.Mesa}/src/compiler \ 11 -I${X11SRCDIR.Mesa}/../src/compiler \ 12 -I${X11SRCDIR.Mesa}/src/compiler/nir \ 13 -I${X11SRCDIR.Mesa}/../src/compiler/nir \ 14 -I${X11SRCDIR.Mesa}/src/compiler/glsl \ 15 -I${X11SRCDIR.Mesa}/../src/compiler/glsl \ 16 -I${X11SRCDIR.Mesa}/src/compiler/glsl/glcpp \ 17 -I${X11SRCDIR.Mesa}/../src/compiler/glsl/glcpp \ 18 -I${X11SRCDIR.Mesa}/src/compiler/spirv \ 19 -I${X11SRCDIR.Mesa}/../src/compiler/spirv [all …]
|