Home
last modified time | relevance | path

Searched full:compiler (Results 1 – 25 of 11305) sorted by relevance

12345678910>>...453

/third_party/skia/third_party/externals/angle2/src/
Dcompiler.gni8 "src/compiler/translator/blocklayout.h",
9 "src/compiler/translator/blocklayoutHLSL.h",
25 "src/compiler/translator/BaseTypes.h",
26 "src/compiler/translator/BuiltInFunctionEmulator.cpp",
27 "src/compiler/translator/BuiltInFunctionEmulator.h",
28 "src/compiler/translator/CallDAG.cpp",
29 "src/compiler/translator/CallDAG.h",
30 "src/compiler/translator/CodeGen.cpp",
31 "src/compiler/translator/CollectVariables.cpp",
32 "src/compiler/translator/CollectVariables.h",
[all …]
/third_party/protobuf/cmake/
Dlibprotoc.cmake2 ${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 …]
/third_party/pcre2/pcre2/src/sljit/
DsljitLir.c2 * Stack-less Just-In-Time compiler
45 if (SLJIT_UNLIKELY(compiler->error)) \
46 return compiler->error; \
51 if (SLJIT_UNLIKELY(compiler->error)) \
58 return compiler->error; \
70 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
78 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
86 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \
312 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \
320 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \
[all …]
DsljitNativePPC_32.c2 * Stack-less Just-In-Time compiler
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()
45 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s… in emit_single_op() argument
57 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
65 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
66 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24)); in emit_single_op()
[all …]
DsljitNativePPC_64.c2 * Stack-less Just-In-Time compiler
40 push_inst(compiler, RLDICR | S(reg) | A(reg) | RLDI_SH(63 - shift) | RLDI_ME(shift))
42 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument
50 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
53 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate()
56 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate()
57 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate()
68 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | (sljit_ins)(tmp >> 48))); in load_immediate()
74 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | (sljit_ins)(tmp >> 48))); in load_immediate()
75 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp >> 32))); in load_immediate()
[all …]
DsljitNativeARM_32.c2 * Stack-less Just-In-Time compiler
152 static sljit_s32 push_cpool(struct sljit_compiler *compiler) in push_cpool() argument
161 if (compiler->last_label && compiler->last_label->size == compiler->size) in push_cpool()
162 compiler->last_label->size += compiler->cpool_fill + (CONST_POOL_ALIGNMENT - 1) + 1; in push_cpool()
164 SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <= CPOOL_SIZE); in push_cpool()
165 inst = (sljit_uw*)ensure_buf(compiler, sizeof(sljit_uw)); in push_cpool()
167 compiler->size++; in push_cpool()
168 *inst = 0xff000000 | compiler->cpool_fill; in push_cpool()
171 inst = (sljit_uw*)ensure_buf(compiler, sizeof(sljit_uw)); in push_cpool()
173 compiler->size++; in push_cpool()
[all …]
DsljitNativeARM_T2_32.c2 * Stack-less Just-In-Time compiler
215 static sljit_s32 push_inst16(struct sljit_compiler *compiler, sljit_ins inst) in push_inst16() argument
220 ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_u16)); in push_inst16()
223 compiler->size++; in push_inst16()
227 static sljit_s32 push_inst32(struct sljit_compiler *compiler, sljit_ins inst) in push_inst32() argument
229 sljit_u16 *ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst32()
233 compiler->size += 2; in push_inst32()
237 static SLJIT_INLINE sljit_s32 emit_imm32_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm32_const() argument
239 FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) in emit_imm32_const()
241 return push_inst32(compiler, MOVT | RD4(dst) in emit_imm32_const()
[all …]
DsljitNativeX86_common.c2 * Stack-less Just-In-Time compiler
286 #define INC_SIZE(s) (*inst++ = U8(s), compiler->size += (s))
583 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
600 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code()
601 reverse_buf(compiler); in sljit_generate_code()
604 code = (sljit_u8*)SLJIT_MALLOC_EXEC(compiler->size, compiler->exec_allocator_data); in sljit_generate_code()
606 buf = compiler->buf; in sljit_generate_code()
609 label = compiler->labels; in sljit_generate_code()
610 jump = compiler->jumps; in sljit_generate_code()
611 const_ = compiler->consts; in sljit_generate_code()
[all …]
DsljitNativeX86_32.c2 * Stack-less Just-In-Time compiler
33 static sljit_s32 emit_do_imm(struct sljit_compiler *compiler, sljit_u8 opcode, sljit_sw imm) in emit_do_imm() argument
37 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + sizeof(sljit_sw)); in emit_do_imm()
46 static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_uw size, in emit_x86_instruction() argument
132 inst = (sljit_u8*)ensure_buf(compiler, 1 + inst_size); in emit_x86_instruction()
262 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter() argument
275 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
276 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
279 FAIL_IF(emit_endbranch(compiler)); in sljit_emit_enter()
300 compiler->args_size = 0; in sljit_emit_enter()
[all …]
DsljitNativeARM_64.c2 * Stack-less Just-In-Time compiler
144 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument
146 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
149 compiler->size++; in push_inst()
153 static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm64_const() argument
155 FAIL_IF(push_inst(compiler, MOVZ | RD(dst) | ((sljit_ins)(imm & 0xffff) << 5))); in emit_imm64_const()
156 …FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((sljit_ins)(imm >> 16) & 0xffff) << 5) | (1 << 21))… in emit_imm64_const()
157 …FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((sljit_ins)(imm >> 32) & 0xffff) << 5) | (2 << 21))… in emit_imm64_const()
158 return push_inst(compiler, MOVK | RD(dst) | ((sljit_ins)(imm >> 48) << 5) | (3 << 21)); in emit_imm64_const()
231 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
[all …]
DsljitNativeRISCV_common.c2 * Stack-less Just-In-Time compiler
152 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument
154 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
157 compiler->size++; in push_inst()
161 static sljit_s32 push_imm_s_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_sw imm) in push_imm_s_inst() argument
163 return push_inst(compiler, ins | IMM_S(imm)); in push_imm_s_inst()
373 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
391 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code()
392 reverse_buf(compiler); in sljit_generate_code()
394 …code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_… in sljit_generate_code()
[all …]
DsljitNativeS390X.c2 * Stack-less Just-In-Time compiler
168 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument
170 sljit_ins *ibuf = (sljit_ins *)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
173 compiler->size++; in push_inst()
202 static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 type) { in get_cc() argument
210 if (SLJIT_ADD_SUB_NO_COMPARE(compiler->status_flags_state)) { in get_cc()
211 sljit_s32 type = GET_FLAG_TYPE(compiler->status_flags_state); in get_cc()
225 if (SLJIT_ADD_SUB_NO_COMPARE(compiler->status_flags_state)) { in get_cc()
226 sljit_s32 type = GET_FLAG_TYPE(compiler->status_flags_state); in get_cc()
246 if (compiler->status_flags_state & SLJIT_CURRENT_FLAGS_COMPARE) in get_cc()
[all …]
DsljitNativeMIPS_common.c2 * Stack-less Just-In-Time compiler
327 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument
329 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
335 compiler->size++; in push_inst()
336 compiler->delay_slot = delay_slot; in push_inst()
570 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
588 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code()
589 reverse_buf(compiler); in sljit_generate_code()
591 …code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_… in sljit_generate_code()
593 buf = compiler->buf; in sljit_generate_code()
[all …]
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_cross_c.cpp151 unique_ptr<Compiler> compiler; member
263 spvc_capture_mode mode, spvc_compiler *compiler) in spvc_context_create_compiler() argument
286 comp->compiler.reset(new Compiler(move(parsed_ir->parsed))); in spvc_context_create_compiler()
288 comp->compiler.reset(new Compiler(parsed_ir->parsed)); in spvc_context_create_compiler()
294 comp->compiler.reset(new CompilerGLSL(move(parsed_ir->parsed))); in spvc_context_create_compiler()
296 comp->compiler.reset(new CompilerGLSL(parsed_ir->parsed)); in spvc_context_create_compiler()
303 comp->compiler.reset(new CompilerHLSL(move(parsed_ir->parsed))); in spvc_context_create_compiler()
305 comp->compiler.reset(new CompilerHLSL(parsed_ir->parsed)); in spvc_context_create_compiler()
312 comp->compiler.reset(new CompilerMSL(move(parsed_ir->parsed))); in spvc_context_create_compiler()
314 comp->compiler.reset(new CompilerMSL(parsed_ir->parsed)); in spvc_context_create_compiler()
[all …]
/third_party/mesa3d/src/gallium/drivers/r300/
Dmeson.build63 'compiler/memory_pool.c',
64 'compiler/memory_pool.h',
65 'compiler/r300_fragprog.c',
66 'compiler/r300_fragprog_emit.c',
67 'compiler/r300_fragprog.h',
68 'compiler/r300_fragprog_swizzle.c',
69 'compiler/r300_fragprog_swizzle.h',
70 'compiler/r3xx_fragprog.c',
71 'compiler/r3xx_vertprog.c',
72 'compiler/r3xx_vertprog_dump.c',
[all …]
/third_party/typescript/tests/baselines/reference/
DdoYouNeedToChangeYourTargetLibraryES2015.errors.txt1compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(3,26): error TS2583: Cannot find name 'Reflec…
2compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(4,30): error TS2583: Cannot find name 'Reflec…
3compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(5,35): error TS2583: Cannot find name 'Reflec…
4compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(6,35): error TS2583: Cannot find name 'Reflec…
5compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(7,24): error TS2583: Cannot find name 'Reflec…
6compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(8,45): error TS2583: Cannot find name 'Reflec…
7compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(9,35): error TS2583: Cannot find name 'Reflec…
8compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(10,33): error TS2583: Cannot find name 'Refle…
9compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(11,28): error TS2583: Cannot find name 'Refle…
10compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(12,38): error TS2583: Cannot find name 'Refle…
[all …]
DdoYouNeedToChangeYourTargetLibraryES2016Plus.errors.txt1compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(2,32): error TS2550: Property 'includes' …
2compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(5,31): error TS2550: Property 'padStart' …
3compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(6,29): error TS2550: Property 'padEnd' do…
4compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(7,44): error TS2550: Property 'values' do…
5compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(8,45): error TS2550: Property 'entries' d…
6compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(9,63): error TS2550: Property 'getOwnProp…
7compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(10,64): error TS2550: Property 'formatToP…
8compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(11,21): error TS2583: Cannot find name 'A…
9compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(12,35): error TS2583: Cannot find name 'S…
10compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(15,50): error TS2550: Property 'finally' …
[all …]
DbigintWithoutLib.errors.txt1 …/compiler/bigintWithoutLib.ts(4,25): error TS2583: Cannot find name 'BigInt'. Do you need to chang…
2 …/compiler/bigintWithoutLib.ts(5,13): error TS2583: Cannot find name 'BigInt'. Do you need to chang…
3 …/compiler/bigintWithoutLib.ts(6,5): error TS2583: Cannot find name 'BigInt'. Do you need to change…
4 …/compiler/bigintWithoutLib.ts(7,13): error TS2583: Cannot find name 'BigInt'. Do you need to chang…
5 tests/cases/compiler/bigintWithoutLib.ts(7,30): error TS2737: BigInt literals are not available whe…
6 …/compiler/bigintWithoutLib.ts(8,13): error TS2583: Cannot find name 'BigInt'. Do you need to chang…
7 tests/cases/compiler/bigintWithoutLib.ts(8,31): error TS2737: BigInt literals are not available whe…
8 tests/cases/compiler/bigintWithoutLib.ts(9,1): error TS2322: Type 'Object' is not assignable to typ…
9 tests/cases/compiler/bigintWithoutLib.ts(11,32): error TS2554: Expected 0 arguments, but got 1.
10 tests/cases/compiler/bigintWithoutLib.ts(13,38): error TS2554: Expected 0 arguments, but got 1.
[all …]
DprivacyFunctionCannotNameParameterTypeDeclFile.types1 === tests/cases/compiler/privacyFunctionCannotNameParameterTypeDeclFile_consumer.ts ===
9 >myPublicStaticMethod : (param?: import("tests/cases/compiler/privacyFunctionCannotNameParameterTyp…
10 >param : import("tests/cases/compiler/privacyFunctionCannotNameParameterTypeDeclFile_Widgets").Widg…
11 >exporter.createExportedWidget1() : import("tests/cases/compiler/privacyFunctionCannotNameParameter…
12 >exporter.createExportedWidget1 : () => import("tests/cases/compiler/privacyFunctionCannotNameParam…
14 >createExportedWidget1 : () => import("tests/cases/compiler/privacyFunctionCannotNameParameterTypeD…
17 >myPrivateStaticMethod : (param?: import("tests/cases/compiler/privacyFunctionCannotNameParameterTy…
18 >param : import("tests/cases/compiler/privacyFunctionCannotNameParameterTypeDeclFile_Widgets").Widg…
19 >exporter.createExportedWidget1() : import("tests/cases/compiler/privacyFunctionCannotNameParameter…
20 >exporter.createExportedWidget1 : () => import("tests/cases/compiler/privacyFunctionCannotNameParam…
[all …]
/third_party/protobuf/
DBUILD.gn150 "src/google/protobuf/compiler/importer.cc",
151 "src/google/protobuf/compiler/parser.cc",
231 "src/google/protobuf/compiler/importer.cc",
232 "src/google/protobuf/compiler/parser.cc",
306 "src/google/protobuf/compiler/code_generator.cc",
307 "src/google/protobuf/compiler/command_line_interface.cc",
308 "src/google/protobuf/compiler/cpp/cpp_enum.cc",
309 "src/google/protobuf/compiler/cpp/cpp_enum_field.cc",
310 "src/google/protobuf/compiler/cpp/cpp_extension.cc",
311 "src/google/protobuf/compiler/cpp/cpp_field.cc",
[all …]
/third_party/mesa3d/src/freedreno/ir3/
Dir3_compiler.c67 ir3_compiler_destroy(struct ir3_compiler *compiler) in ir3_compiler_destroy() argument
69 disk_cache_destroy(compiler->disk_cache); in ir3_compiler_destroy()
70 ralloc_free(compiler); in ir3_compiler_destroy()
155 struct ir3_compiler *compiler = rzalloc(NULL, struct ir3_compiler); in ir3_compiler_create() local
165 compiler->dev = dev; in ir3_compiler_create()
166 compiler->dev_id = dev_id; in ir3_compiler_create()
167 compiler->gen = fd_dev_gen(dev_id); in ir3_compiler_create()
168 compiler->robust_buffer_access2 = options->robust_buffer_access2; in ir3_compiler_create()
171 compiler->local_mem_size = 32 * 1024; in ir3_compiler_create()
173 compiler->branchstack_size = 64; in ir3_compiler_create()
[all …]
/third_party/protobuf/src/
DMakefile.am53 google/protobuf/compiler/plugin.proto
145 google/protobuf/compiler/code_generator.h \
146 google/protobuf/compiler/command_line_interface.h \
147 google/protobuf/compiler/importer.h \
148 google/protobuf/compiler/parser.h \
149 google/protobuf/compiler/plugin.h \
150 google/protobuf/compiler/plugin.pb.h \
151 google/protobuf/compiler/cpp/cpp_generator.h \
152 google/protobuf/compiler/csharp/csharp_generator.h \
153 google/protobuf/compiler/csharp/csharp_names.h \
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DShaderLang.cpp8 // Implement the top-level of interface to the compiler,
14 #include "compiler/translator/Compiler.h"
15 #include "compiler/translator/InitializeDll.h"
16 #include "compiler/translator/glslang_wrapper.h"
17 #include "compiler/translator/length_limits.h"
19 # include "compiler/translator/TranslatorHLSL.h"
22 #include "compiler/translator/VariablePacker.h"
45 // and the shading language compiler.
49 const std::vector<VarT> *GetVariableList(const TCompiler *compiler);
52 const std::vector<InterfaceBlock> *GetVariableList(const TCompiler *compiler) in GetVariableList() argument
[all …]
/third_party/typescript/tests/baselines/reference/docker/
Dvue-next.log6 Rolling up type definitions for compiler-core...
8 … use TypeScript X.X.X-insiders.xxxxxxxx which is newer than the bundled compiler engine; consider …
9 Writing: /vue-next/temp/compiler-core.api.json
10 The API report is up to date: temp/compiler-core.api.md
11 Writing package typings: /vue-next/packages/compiler-core/dist/compiler-core.d.ts
12 Writing package typings: /vue-next/dist/compiler-core.d.ts
14 Rolling up type definitions for compiler-dom...
16 … use TypeScript X.X.X-insiders.xxxxxxxx which is newer than the bundled compiler engine; consider …
17 Writing: /vue-next/temp/compiler-dom.api.json
18 The API report is up to date: temp/compiler-dom.api.md
[all …]
/third_party/node/deps/v8/src/builtins/
Dbuiltins-ic-gen.cc13 void Builtins::Generate_LoadIC(compiler::CodeAssemblerState* state) { in Generate_LoadIC()
18 compiler::CodeAssemblerState* state) { in Generate_LoadIC_Megamorphic()
22 void Builtins::Generate_LoadIC_Noninlined(compiler::CodeAssemblerState* state) { in Generate_LoadIC_Noninlined()
26 void Builtins::Generate_LoadIC_NoFeedback(compiler::CodeAssemblerState* state) { in Generate_LoadIC_NoFeedback()
30 void Builtins::Generate_LoadICTrampoline(compiler::CodeAssemblerState* state) { in Generate_LoadICTrampoline()
34 void Builtins::Generate_LoadICBaseline(compiler::CodeAssemblerState* state) { in Generate_LoadICBaseline()
39 compiler::CodeAssemblerState* state) { in Generate_LoadICTrampoline_Megamorphic()
43 void Builtins::Generate_LoadSuperIC(compiler::CodeAssemblerState* state) { in Generate_LoadSuperIC()
48 compiler::CodeAssemblerState* state) { in Generate_LoadSuperICBaseline()
52 void Builtins::Generate_KeyedLoadIC(compiler::CodeAssemblerState* state) { in Generate_KeyedLoadIC()
[all …]

12345678910>>...453