HomeSort by: relevance | last modified time | path
    Searched defs:compiler (Results 1 - 23 of 23) sorted by relevancy

  /src/external/gpl3/gcc/dist/libcc1/
compiler.hh 0 /* Compiler handling for plugin
26 // Base class for compiler.
27 class compiler class in namespace:cc1_plugin
30 explicit compiler (bool v) function in class:cc1_plugin::compiler
35 virtual ~compiler () = default;
37 // Find the compiler. BASE is the base name of the compiler, see
38 // compiler-name.hh. This sets COMPILER to the resulting path.
41 virtual char *find (const char *base, std::string &compiler) const
    [all...]
gdbctx.hh 25 // The compiler context that we hand back to our caller.
36 compilerp (new compiler (verbose))
117 std::unique_ptr<cc1_plugin::compiler> compilerp;
144 std::string compiler; local
145 char *errmsg = self->compilerp->find (self->compiler_name, compiler);
149 self->args.push_back (compiler);
  /src/external/gpl3/gcc.old/dist/libcc1/
compiler.hh 0 /* Compiler handling for plugin
26 // Base class for compiler.
27 class compiler class in namespace:cc1_plugin
30 explicit compiler (bool v) function in class:cc1_plugin::compiler
35 virtual ~compiler () = default;
37 // Find the compiler. BASE is the base name of the compiler, see
38 // compiler-name.hh. This sets COMPILER to the resulting path.
41 virtual char *find (const char *base, std::string &compiler) const
    [all...]
gdbctx.hh 25 // The compiler context that we hand back to our caller.
36 compilerp (new compiler (verbose))
117 std::unique_ptr<cc1_plugin::compiler> compilerp;
144 std::string compiler; local
145 char *errmsg = self->compilerp->find (self->compiler_name, compiler);
149 self->args.push_back (compiler);
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
version.h 47 char compiler[64]; member in struct:xen_compile_info
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/exec/
main.c 115 char *const compiler = "/usr/bin/cc"; local
121 FORK(execv(compiler, argv);)
128 char *const compiler = "/usr/bin/cc"; local
129 char *const argv[] = {compiler, "-c", file, 0};
135 FORK(execve(compiler, argv, envp);)
142 char *const compiler = "cc"; local
143 char *const argv[] = {compiler, "-c", file, 0};
148 FORK(execvp(compiler, argv);)
155 char *const compiler = "cc"; local
156 char *const argv[] = {compiler, "-c", file, 0}
168 char *const compiler = "cc"; local
182 char *const compiler = "\/usr\/bin\/cc"; local
196 char *const compiler = "\/usr\/bin\/cc"; local
208 char *const compiler = "cc"; local
220 char *const compiler = "\/usr\/bin\/cc"; local
233 char *const compiler = "cc"; local
251 char *const compiler = "cc"; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/guile/lib/gdb/
init.scm 152 ;; warnings from the compiler.
154 (define-public (%silence-compiler-warnings%)
  /src/external/gpl3/gdb/dist/gdb/guile/lib/gdb/
init.scm 152 ;; warnings from the compiler.
154 (define-public (%silence-compiler-warnings%)
  /src/external/mit/xorg/lib/gallium/
Makefile 84 drivers/r300/compiler \
749 GALLIUM_SOURCES.drivers/r300/compiler = \ macro
854 .for _f in ${GALLIUM_SOURCES.drivers/r300} ${GALLIUM_SOURCES.drivers/r300/compiler}
856 -I${X11SRCDIR.Mesa}/src/gallium/drivers/r300/compiler
  /src/external/mit/xorg/lib/gallium.old/
Makefile 82 drivers/r300/compiler \
589 GALLIUM_SOURCES.drivers/r300/compiler = \ macro
667 .for _f in ${GALLIUM_SOURCES.drivers/r300} ${GALLIUM_SOURCES.drivers/r300/compiler}
669 -I${X11SRCDIR.Mesa}/src/gallium/drivers/r300/compiler
  /src/external/bsd/pcc/dist/pcc/cc/driver/
driver.c 67 const char *compiler; variable
133 error("conflicting compiler options specified");
373 strlist_prepend(&args, find_file(compiler, &progdirs, X_OK));
  /src/external/gpl3/gdb.old/dist/gdb/compile/
compile.c 158 that may contain calls to the GCC compiler. */
208 contain calls to the GCC compiler. The language expected in this
266 contain calls to the GCC compiler. The language expected in this
496 get_args (const compile_instance *compiler, struct gdbarch *gdbarch)
517 result.append (gdb_argv (compiler->gcc_target_options ().c_str ()));
524 compiler object. */
553 /* Set up instance and context for the compiler. */
554 std::unique_ptr<compile_instance> compiler
556 if (compiler == nullptr)
557 error (_("No compiler support for language %s.")
552 std::unique_ptr<compile_instance> compiler local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/compile/
compile.c 160 that may contain calls to the GCC compiler. */
210 contain calls to the GCC compiler. The language expected in this
268 contain calls to the GCC compiler. The language expected in this
498 get_args (const compile_instance *compiler, struct gdbarch *gdbarch)
519 result.append (gdb_argv (compiler->gcc_target_options ().c_str ()));
526 compiler object. */
590 /* Set up instance and context for the compiler. */
591 std::unique_ptr<compile_instance> compiler
594 if (compiler == nullptr)
595 error (_("No compiler support for language %s.")
589 std::unique_ptr<compile_instance> compiler local
    [all...]
  /src/sys/external/bsd/sljit/dist/test_src/
sljitTest.c 4 * Stack-less Just-In-Time compiler
67 #define CHECK(compiler) \
69 if (compiler == NULL) { \
70 printf("Can't create compiler\n"); \
73 if (sljit_get_compiler_error(compiler) != SLJIT_ERR_COMPILED) { \
74 printf("Compiler error: %d\n", \
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)
87 sljit_emit_op_flags(compiler, SLJIT_MOV, dst, dstw, SLJIT_UNUSED, 0, type)
159 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
188 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
250 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
291 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
328 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
395 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
471 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
530 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
619 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
746 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
809 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
899 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
985 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1073 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1177 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1263 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1328 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1371 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1479 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1531 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1634 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1696 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1810 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
1918 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2036 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2106 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2191 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2401 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2461 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2623 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2687 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2782 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
2904 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
3010 struct sljit_compiler* compiler; local
3127 struct sljit_compiler* compiler; local
3225 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
3354 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
3459 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
3552 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
3609 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
3705 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
3913 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4143 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4218 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4266 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4380 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4489 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4534 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4682 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4820 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
4901 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
5030 struct sljit_compiler* compiler; local
5120 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
5176 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
5272 struct sljit_compiler* compiler = sljit_create_compiler(NULL); local
    [all...]
  /src/sys/net/
bpfjit.c 298 load_buf_buflen(struct sljit_compiler *compiler)
302 status = sljit_emit_op1(compiler,
310 status = sljit_emit_op1(compiler,
357 emit_read8(struct sljit_compiler *compiler, sljit_s32 src, uint32_t k)
360 return sljit_emit_op1(compiler,
370 emit_read16(struct sljit_compiler *compiler, sljit_s32 src, uint32_t k)
377 status = sljit_emit_op1(compiler,
385 status = sljit_emit_op1(compiler,
393 status = sljit_emit_op2(compiler,
402 status = sljit_emit_op2(compiler,
2157 struct sljit_compiler *compiler; local
    [all...]
  /src/sys/external/bsd/sljit/dist/regex_src/
regexJIT.c 2 * Stack-less Just-In-Time compiler
397 /* sljit compiler */
398 struct sljit_compiler *compiler; member in struct:compiler_common
1290 CHECK(sljit_emit_op1(compiler, type, arg1, arg2, arg3, arg4))
1293 CHECK(sljit_emit_op2(compiler, type, arg1, arg2, arg3, arg4, arg5, arg6))
1296 label = sljit_emit_label(compiler); \
1300 jump = sljit_emit_jump(compiler, type); \
1304 jump = sljit_emit_cmp(compiler, type, arg1, arg2, arg3, arg4); \
1315 struct sljit_compiler *compiler = compiler_common->compiler; local
1373 struct sljit_compiler *compiler = compiler_common->compiler; local
1542 struct sljit_compiler *compiler = compiler_common->compiler; local
1634 struct sljit_compiler *compiler = compiler_common->compiler; local
1696 struct sljit_compiler *compiler = compiler_common->compiler; local
1735 struct sljit_compiler *compiler = compiler_common->compiler; local
    [all...]
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitLir.c 4 * Stack-less Just-In-Time compiler
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_compiler), allocator_data); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
lto-wrapper.cc 273 be deferred to the compiler proper. Options that
706 /* Append compiler driver arguments as far as they were merged. */
778 /* Append compiler driver arguments as far as they were merged. */
810 /* Append linker driver arguments. Compiler options from the linker
811 driver arguments will override / merge with those from the compiler. */
847 /* Extract options for TARGET offload compiler from OPTIONS and append
943 const char *compiler = NULL; local
947 compiler = paths[i];
951 if (!compiler && getenv (OFFLOAD_TARGET_DEFAULT_ENV))
958 if (!compiler)
    [all...]
gcc.cc 0 /* Compiler driver program that can handle many languages.
20 /* This program is the user interface to the C compiler and possibly to
267 /* Nonzero means pass the updated target_system_root to the compiler. */
324 /* The compiler version. */
367 pass the compiler in building the list of pointers to constructors
382 static struct compiler *lookup_compiler (const char *, size_t, const char *);
692 allow each compiler's spec to say which switches take arguments. But
699 treated as compiler output files, and passed to the linker in their
945 /* If --gdwarf-N is supported and as can handle even compiler generated
1396 struct compiler
1391 struct compiler struct
8989 struct compiler *compiler = lookup_compiler (name, local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
lto-wrapper.cc 248 be deferred to the compiler proper. Options that
698 /* Append compiler driver arguments as far as they were merged. */
768 /* Append compiler driver arguments as far as they were merged. */
800 /* Append linker driver arguments. Compiler options from the linker
801 driver arguments will override / merge with those from the compiler. */
837 /* Extract options for TARGET offload compiler from OPTIONS and append
932 const char *compiler = NULL; local
936 compiler = paths[i];
940 if (!compiler && getenv (OFFLOAD_TARGET_DEFAULT_ENV))
947 if (!compiler)
    [all...]
gcc.cc 0 /* Compiler driver program that can handle many languages.
20 /* This program is the user interface to the C compiler and possibly to
262 /* Nonzero means pass the updated target_system_root to the compiler. */
311 /* The compiler version. */
354 pass the compiler in building the list of pointers to constructors
369 static struct compiler *lookup_compiler (const char *, size_t, const char *);
677 allow each compiler's spec to say which switches take arguments. But
684 treated as compiler output files, and passed to the linker in their
924 /* If --gdwarf-N is supported and as can handle even compiler generated
1387 struct compiler
1382 struct compiler struct
8862 struct compiler *compiler = lookup_compiler (name, local
    [all...]
  /src/external/gpl3/binutils/dist/ld/
pdb.h 854 char compiler[]; member in struct:compile3
  /src/external/gpl3/binutils.old/dist/ld/
pdb.h 854 char compiler[]; member in struct:compile3

Completed in 159 milliseconds