HomeSort by: relevance | last modified time | path
    Searched refs:ctxt (Results 1 - 25 of 541) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/gcc/
tree-pass.h 119 gimple_opt_pass (const pass_data& data, gcc::context *ctxt)
120 : opt_pass (data, ctxt)
129 rtl_opt_pass (const pass_data& data, gcc::context *ctxt)
130 : opt_pass (data, ctxt)
171 ipa_opt_pass_d (const pass_data& data, gcc::context *ctxt,
181 : opt_pass (data, ctxt),
200 simple_ipa_opt_pass (const pass_data& data, gcc::context *ctxt)
201 : opt_pass (data, ctxt)
353 extern gimple_opt_pass *make_pass_asan (gcc::context *ctxt);
354 extern gimple_opt_pass *make_pass_asan_O0 (gcc::context *ctxt);
    [all...]
adjust-alignment.cc 49 pass_adjust_alignment (gcc::context *ctxt)
50 : gimple_opt_pass (pass_data_adjust_alignment, ctxt)
82 make_pass_adjust_alignment (gcc::context *ctxt)
84 return new pass_adjust_alignment (ctxt);
tree-ssa-loop.cc 64 pass_fix_loops (gcc::context *ctxt)
65 : gimple_opt_pass (pass_data_fix_loops, ctxt)
88 make_pass_fix_loops (gcc::context *ctxt)
90 return new pass_fix_loops (ctxt);
131 pass_tree_loop (gcc::context *ctxt)
132 : gimple_opt_pass (pass_data_tree_loop, ctxt)
143 make_pass_tree_loop (gcc::context *ctxt)
145 return new pass_tree_loop (ctxt);
186 pass_oacc_kernels (gcc::context *ctxt)
187 : gimple_opt_pass (pass_data_oacc_kernels, ctxt)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-pass.h 119 gimple_opt_pass (const pass_data& data, gcc::context *ctxt)
120 : opt_pass (data, ctxt)
129 rtl_opt_pass (const pass_data& data, gcc::context *ctxt)
130 : opt_pass (data, ctxt)
171 ipa_opt_pass_d (const pass_data& data, gcc::context *ctxt,
181 : opt_pass (data, ctxt),
200 simple_ipa_opt_pass (const pass_data& data, gcc::context *ctxt)
201 : opt_pass (data, ctxt)
350 extern gimple_opt_pass *make_pass_asan (gcc::context *ctxt);
351 extern gimple_opt_pass *make_pass_asan_O0 (gcc::context *ctxt);
    [all...]
adjust-alignment.cc 49 pass_adjust_alignment (gcc::context *ctxt)
50 : gimple_opt_pass (pass_data_adjust_alignment, ctxt)
82 make_pass_adjust_alignment (gcc::context *ctxt)
84 return new pass_adjust_alignment (ctxt);
  /src/tests/usr.bin/xlint/lint1/
gcc_init_compound_literal.c 25 const unsigned char *ctxt; member in struct:__anon8022
27 .ctxt = (const unsigned char[4]){
  /src/external/gpl3/gcc/dist/gcc/jit/docs/examples/
tut01-hello-world.c 26 create_code (gcc_jit_context *ctxt)
36 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_VOID);
38 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_CONST_CHAR_PTR);
40 gcc_jit_context_new_param (ctxt, NULL, const_char_ptr_type, "name");
42 gcc_jit_context_new_function (ctxt, NULL,
50 gcc_jit_context_new_param (ctxt, NULL, const_char_ptr_type, "format");
52 gcc_jit_context_new_function (ctxt, NULL,
55 ctxt, GCC_JIT_TYPE_INT),
60 args[0] = gcc_jit_context_new_string_literal (ctxt, "hello %s\n");
67 gcc_jit_context_new_call (ctxt,
77 gcc_jit_context *ctxt; local
    [all...]
tut01-hello-world.cc 26 create_code (gccjit::context ctxt)
35 gccjit::type void_type = ctxt.get_type (GCC_JIT_TYPE_VOID);
37 ctxt.get_type (GCC_JIT_TYPE_CONST_CHAR_PTR);
39 ctxt.new_param (const_char_ptr_type, "name");
43 ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
49 ctxt.new_param (const_char_ptr_type, "format");
53 ctxt.new_function (GCC_JIT_FUNCTION_IMPORTED,
54 ctxt.get_type (GCC_JIT_TYPE_INT),
59 block.add_eval (ctxt.new_call (printf_func,
60 ctxt.new_rvalue ("hello %s\n")
68 gccjit::context ctxt; local
    [all...]
tut02-square.c 26 create_code (gcc_jit_context *ctxt)
36 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
38 gcc_jit_context_new_param (ctxt, NULL, int_type, "i");
40 gcc_jit_context_new_function (ctxt, NULL,
51 ctxt, NULL,
62 gcc_jit_context *ctxt = NULL; local
66 ctxt = gcc_jit_context_acquire ();
67 if (!ctxt)
69 fprintf (stderr, "NULL ctxt");
76 ctxt,
    [all...]
tut02-square.cc 26 create_code (gccjit::context ctxt)
35 gccjit::type int_type = ctxt.get_type (GCC_JIT_TYPE_INT);
36 gccjit::param param_i = ctxt.new_param (int_type, "i");
39 gccjit::function func = ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
47 ctxt.new_binary_op (GCC_JIT_BINARY_OP_MULT, int_type,
57 gccjit::context ctxt = gccjit::context::acquire (); local
61 ctxt.set_bool_option (
66 create_code (ctxt);
69 gcc_jit_result *result = ctxt.compile ();
72 ctxt.release ()
    [all...]
tut03-sum-of-squares.cc 26 create_code (gccjit::context ctxt)
41 gccjit::type the_type = ctxt.get_int_type <int> ();
44 gccjit::param n = ctxt.new_param (the_type, "n");
48 ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
63 b_initial.add_assignment (sum, ctxt.zero (the_type));
66 b_initial.add_assignment (i, ctxt.zero (the_type));
84 ctxt.one (the_type));
95 gccjit::context ctxt; local
99 ctxt = gccjit::context::acquire ();
103 ctxt.set_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE
    [all...]
tut03-sum-of-squares.c 26 create_code (gcc_jit_context *ctxt)
42 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
46 gcc_jit_context_new_param (ctxt, NULL, the_type, "n");
49 gcc_jit_context_new_function (ctxt, NULL,
74 gcc_jit_context_zero (ctxt, the_type));
80 gcc_jit_context_zero (ctxt, the_type));
88 ctxt, NULL,
101 ctxt, NULL,
111 gcc_jit_context_one (ctxt, the_type));
125 gcc_jit_context *ctxt = NULL local
    [all...]
tut05-bf.c 17 make_main (gcc_jit_context *ctxt)
20 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
22 gcc_jit_context_new_param (ctxt, NULL, int_type, "argc");
26 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_CHAR)));
28 gcc_jit_context_new_param (ctxt, NULL, char_ptr_ptr_type, "argv");
31 gcc_jit_context_new_function (ctxt, NULL,
48 gcc_jit_context *ctxt; member in struct:bf_compiler
92 bfc->ctxt,
104 bfc->ctxt,
118 gcc_jit_context_new_location (bfc->ctxt,
411 gcc_jit_context *ctxt; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/jit/docs/examples/
tut01-hello-world.c 26 create_code (gcc_jit_context *ctxt)
36 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_VOID);
38 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_CONST_CHAR_PTR);
40 gcc_jit_context_new_param (ctxt, NULL, const_char_ptr_type, "name");
42 gcc_jit_context_new_function (ctxt, NULL,
50 gcc_jit_context_new_param (ctxt, NULL, const_char_ptr_type, "format");
52 gcc_jit_context_new_function (ctxt, NULL,
55 ctxt, GCC_JIT_TYPE_INT),
60 args[0] = gcc_jit_context_new_string_literal (ctxt, "hello %s\n");
67 gcc_jit_context_new_call (ctxt,
77 gcc_jit_context *ctxt; local
    [all...]
tut01-hello-world.cc 26 create_code (gccjit::context ctxt)
35 gccjit::type void_type = ctxt.get_type (GCC_JIT_TYPE_VOID);
37 ctxt.get_type (GCC_JIT_TYPE_CONST_CHAR_PTR);
39 ctxt.new_param (const_char_ptr_type, "name");
43 ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
49 ctxt.new_param (const_char_ptr_type, "format");
53 ctxt.new_function (GCC_JIT_FUNCTION_IMPORTED,
54 ctxt.get_type (GCC_JIT_TYPE_INT),
59 block.add_eval (ctxt.new_call (printf_func,
60 ctxt.new_rvalue ("hello %s\n")
68 gccjit::context ctxt; local
    [all...]
tut02-square.c 26 create_code (gcc_jit_context *ctxt)
36 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
38 gcc_jit_context_new_param (ctxt, NULL, int_type, "i");
40 gcc_jit_context_new_function (ctxt, NULL,
51 ctxt, NULL,
62 gcc_jit_context *ctxt = NULL; local
66 ctxt = gcc_jit_context_acquire ();
67 if (!ctxt)
69 fprintf (stderr, "NULL ctxt");
76 ctxt,
    [all...]
tut02-square.cc 26 create_code (gccjit::context ctxt)
35 gccjit::type int_type = ctxt.get_type (GCC_JIT_TYPE_INT);
36 gccjit::param param_i = ctxt.new_param (int_type, "i");
39 gccjit::function func = ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
47 ctxt.new_binary_op (GCC_JIT_BINARY_OP_MULT, int_type,
57 gccjit::context ctxt = gccjit::context::acquire (); local
61 ctxt.set_bool_option (
66 create_code (ctxt);
69 gcc_jit_result *result = ctxt.compile ();
72 ctxt.release ()
    [all...]
tut03-sum-of-squares.cc 26 create_code (gccjit::context ctxt)
41 gccjit::type the_type = ctxt.get_int_type <int> ();
44 gccjit::param n = ctxt.new_param (the_type, "n");
48 ctxt.new_function (GCC_JIT_FUNCTION_EXPORTED,
63 b_initial.add_assignment (sum, ctxt.zero (the_type));
66 b_initial.add_assignment (i, ctxt.zero (the_type));
84 ctxt.one (the_type));
95 gccjit::context ctxt; local
99 ctxt = gccjit::context::acquire ();
103 ctxt.set_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE
    [all...]
tut03-sum-of-squares.c 26 create_code (gcc_jit_context *ctxt)
42 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
46 gcc_jit_context_new_param (ctxt, NULL, the_type, "n");
49 gcc_jit_context_new_function (ctxt, NULL,
74 gcc_jit_context_zero (ctxt, the_type));
80 gcc_jit_context_zero (ctxt, the_type));
88 ctxt, NULL,
101 ctxt, NULL,
111 gcc_jit_context_one (ctxt, the_type));
125 gcc_jit_context *ctxt = NULL local
    [all...]
tut05-bf.c 17 make_main (gcc_jit_context *ctxt)
20 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_INT);
22 gcc_jit_context_new_param (ctxt, NULL, int_type, "argc");
26 gcc_jit_context_get_type (ctxt, GCC_JIT_TYPE_CHAR)));
28 gcc_jit_context_new_param (ctxt, NULL, char_ptr_ptr_type, "argv");
31 gcc_jit_context_new_function (ctxt, NULL,
48 gcc_jit_context *ctxt; member in struct:bf_compiler
92 bfc->ctxt,
104 bfc->ctxt,
118 gcc_jit_context_new_location (bfc->ctxt,
411 gcc_jit_context *ctxt; local
    [all...]
  /src/crypto/external/bsd/openssh/dist/
md-sha256.c 33 ssh_sha256_init(EVP_MD_CTX *ctxt)
35 SHA256_Init(ctxt->md_data);
40 ssh_sha256_update(EVP_MD_CTX *ctxt, const void *data, size_t len)
42 SHA256_Update(ctxt->md_data, data, len);
47 ssh_sha256_final(EVP_MD_CTX *ctxt, unsigned char *digest)
49 SHA256_Final(digest, ctxt->md_data);
54 ssh_sha256_cleanup(EVP_MD_CTX *ctxt)
56 memset(ctxt->md_data, 0, sizeof(SHA256_CTX));
  /src/external/gpl3/gcc/dist/gcc/analyzer/
analyzer-pass.cc 55 pass_analyzer(gcc::context *ctxt)
56 : ipa_opt_pass_d (pass_data_analyzer, ctxt,
100 make_pass_analyzer (gcc::context *ctxt)
102 return new pass_analyzer (ctxt);
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
analyzer-pass.cc 55 pass_analyzer(gcc::context *ctxt)
56 : ipa_opt_pass_d (pass_data_analyzer, ctxt,
100 make_pass_analyzer (gcc::context *ctxt)
102 return new pass_analyzer (ctxt);
  /src/external/gpl3/gcc/dist/gcc/jit/
libgccjit.cc 125 print an error, either via adding an error on the given context CTXT
126 if CTXT is non-NULL, falling back to simply printing to stderr if CTXT
151 #define RETURN_VAL_IF_FAIL(TEST_EXPR, RETURN_EXPR, CTXT, LOC, ERR_MSG) \
155 jit_error ((CTXT), (LOC), "%s: %s", __func__, (ERR_MSG)); \
160 #define RETURN_VAL_IF_FAIL_PRINTF1(TEST_EXPR, RETURN_EXPR, CTXT, LOC, ERR_FMT, A0) \
164 jit_error ((CTXT), (LOC), "%s: " ERR_FMT, \
170 #define RETURN_VAL_IF_FAIL_PRINTF2(TEST_EXPR, RETURN_EXPR, CTXT, LOC, ERR_FMT, A0, A1) \
174 jit_error ((CTXT), (LOC), "%s: " ERR_FMT, \
180 #define RETURN_VAL_IF_FAIL_PRINTF3(TEST_EXPR, RETURN_EXPR, CTXT, LOC, ERR_FMT, A0, A1, A2)
376 gcc_jit_context *ctxt = new gcc_jit_context (NULL); local
749 gcc::jit::recording::context *ctxt = function_type->m_ctxt; local
951 gcc::jit::recording::context *ctxt = struct_type->m_ctxt; local
1283 gcc::jit::recording::context *ctxt = func->m_ctxt; local
1308 gcc::jit::recording::context *ctxt = func->m_ctxt; local
1337 gcc::jit::recording::context *ctxt = func->m_ctxt; local
1556 ctxt, loc, local
1639 ctxt, loc, local
1654 ctxt, loc, local
1730 ctxt, loc, local
1747 ctxt, loc, local
1771 gcc::jit::recording::context *ctxt = global->get_context (); local
2175 ctxt, loc, local
2383 ctxt, loc, local
2564 gcc::jit::recording::context *ctxt = struct_->m_ctxt; local
2596 gcc::jit::recording::context *ctxt = struct_->m_ctxt; local
2788 gcc::jit::recording::context *ctxt = func->m_ctxt; local
2822 gcc::jit::recording::context *ctxt = block->get_context (); local
2850 gcc::jit::recording::context *ctxt = block->get_context (); local
2891 gcc::jit::recording::context *ctxt = block->get_context (); local
2897 ctxt, loc, local
2949 gcc::jit::recording::context *ctxt = block->get_context (); local
2954 is_bool (boolval), ctxt, loc, local
3003 gcc::jit::recording::context *ctxt = block->get_context (); local
3023 gcc::jit::recording::context *ctxt = block->get_context (); local
3053 gcc::jit::recording::context *ctxt = block->get_context (); local
3091 gcc::jit::recording::context *ctxt = block->get_context (); local
3150 ctxt, NULL, local
3440 gcc::jit::recording::context *ctxt = block->get_context (); local
3973 gcc::jit::recording::context *ctxt = type->m_ctxt; local
3978 (pow2_or_zerop (alignment_in_bytes), ctxt, NULL, local
4064 gcc::jit::recording::context *ctxt = type->m_ctxt; local
4074 (pow2_or_zerop (num_units), ctxt, NULL, local
4093 gcc::jit::recording::context *ctxt = fn->m_ctxt; local
4145 ctxt, loc, local
4218 gcc::jit::recording::context *ctxt = block->get_context (); local
4241 gcc::jit::recording::context *ctxt = block->get_context (); local
4312 gcc::jit::recording::context *ctxt = ext_asm->get_context (); local
4336 gcc::jit::recording::context *ctxt = ext_asm->get_context (); local
4356 gcc::jit::recording::context *ctxt = ext_asm->get_context (); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/jit/
libgccjit.cc 125 print an error, either via adding an error on the given context CTXT
126 if CTXT is non-NULL, falling back to simply printing to stderr if CTXT
151 #define RETURN_VAL_IF_FAIL(TEST_EXPR, RETURN_EXPR, CTXT, LOC, ERR_MSG) \
155 jit_error ((CTXT), (LOC), "%s: %s", __func__, (ERR_MSG)); \
160 #define RETURN_VAL_IF_FAIL_PRINTF1(TEST_EXPR, RETURN_EXPR, CTXT, LOC, ERR_FMT, A0) \
164 jit_error ((CTXT), (LOC), "%s: " ERR_FMT, \
170 #define RETURN_VAL_IF_FAIL_PRINTF2(TEST_EXPR, RETURN_EXPR, CTXT, LOC, ERR_FMT, A0, A1) \
174 jit_error ((CTXT), (LOC), "%s: " ERR_FMT, \
180 #define RETURN_VAL_IF_FAIL_PRINTF3(TEST_EXPR, RETURN_EXPR, CTXT, LOC, ERR_FMT, A0, A1, A2)
376 gcc_jit_context *ctxt = new gcc_jit_context (NULL); local
734 gcc::jit::recording::context *ctxt = function_type->m_ctxt; local
936 gcc::jit::recording::context *ctxt = struct_type->m_ctxt; local
1268 gcc::jit::recording::context *ctxt = func->m_ctxt; local
1293 gcc::jit::recording::context *ctxt = func->m_ctxt; local
1322 gcc::jit::recording::context *ctxt = func->m_ctxt; local
1541 ctxt, loc, local
1624 ctxt, loc, local
1639 ctxt, loc, local
1715 ctxt, loc, local
1732 ctxt, loc, local
1756 gcc::jit::recording::context *ctxt = global->get_context (); local
2142 ctxt, loc, local
2350 ctxt, loc, local
2531 gcc::jit::recording::context *ctxt = struct_->m_ctxt; local
2563 gcc::jit::recording::context *ctxt = struct_->m_ctxt; local
2755 gcc::jit::recording::context *ctxt = func->m_ctxt; local
2789 gcc::jit::recording::context *ctxt = block->get_context (); local
2817 gcc::jit::recording::context *ctxt = block->get_context (); local
2858 gcc::jit::recording::context *ctxt = block->get_context (); local
2864 ctxt, loc, local
2916 gcc::jit::recording::context *ctxt = block->get_context (); local
2921 is_bool (boolval), ctxt, loc, local
2970 gcc::jit::recording::context *ctxt = block->get_context (); local
2990 gcc::jit::recording::context *ctxt = block->get_context (); local
3020 gcc::jit::recording::context *ctxt = block->get_context (); local
3058 gcc::jit::recording::context *ctxt = block->get_context (); local
3117 ctxt, NULL, local
3407 gcc::jit::recording::context *ctxt = block->get_context (); local
3940 gcc::jit::recording::context *ctxt = type->m_ctxt; local
3945 (pow2_or_zerop (alignment_in_bytes), ctxt, NULL, local
3964 gcc::jit::recording::context *ctxt = type->m_ctxt; local
3974 (pow2_or_zerop (num_units), ctxt, NULL, local
3993 gcc::jit::recording::context *ctxt = fn->m_ctxt; local
4045 ctxt, loc, local
4119 gcc::jit::recording::context *ctxt = block->get_context (); local
4142 gcc::jit::recording::context *ctxt = block->get_context (); local
4213 gcc::jit::recording::context *ctxt = ext_asm->get_context (); local
4237 gcc::jit::recording::context *ctxt = ext_asm->get_context (); local
4257 gcc::jit::recording::context *ctxt = ext_asm->get_context (); local
    [all...]

Completed in 30 milliseconds

1 2 3 4 5 6 7 8 91011>>