Searched full:compiler (Results 1 – 25 of 10666) sorted by relevance
12345678910>>...427
41 'compiler/translator/BaseTypes.h',42 'compiler/translator/BuiltInFunctionEmulator.cpp',43 'compiler/translator/BuiltInFunctionEmulator.h',44 'compiler/translator/CodeGen.cpp',45 'compiler/translator/Common.h',46 'compiler/translator/Compiler.cpp',47 'compiler/translator/Compiler.h',48 'compiler/translator/ConstantUnion.h',49 'compiler/translator/DetectCallDepth.cpp',50 'compiler/translator/DetectCallDepth.h',[all …]
32 third_party/angle/src/compiler/translator/BuiltInFunctionEmulator.cpp \33 third_party/angle/src/compiler/translator/CodeGen.cpp \34 third_party/angle/src/compiler/translator/Compiler.cpp \35 third_party/angle/src/compiler/translator/DetectCallDepth.cpp \36 third_party/angle/src/compiler/translator/DetectDiscontinuity.cpp \37 third_party/angle/src/compiler/translator/Diagnostics.cpp \38 third_party/angle/src/compiler/translator/DirectiveHandler.cpp \39 third_party/angle/src/compiler/translator/FlagStd140Structs.cpp \40 third_party/angle/src/compiler/translator/ForLoopUnroll.cpp \41 third_party/angle/src/compiler/translator/InfoSink.cpp \[all …]
10 <Filter Include="src\third_party\compiler">16 <Filter Include="src\compiler">19 <Filter Include="src\compiler\translator">22 <Filter Include="src\compiler\translator\timing">25 <Filter Include="src\compiler\translator\depgraph">51 <ClCompile Include="..\..\src\third_party\compiler\ArrayBoundsClamper.cpp">52 <Filter>src\third_party\compiler</Filter>54 <ClInclude Include="..\..\src\third_party\compiler\ArrayBoundsClamper.h">55 <Filter>src\third_party\compiler</Filter>108 <ClInclude Include="..\..\src\compiler\translator\BaseTypes.h">[all …]
4 <Filter Include="compiler">7 <Filter Include="compiler\preprocessor">13 <ClCompile Include="..\..\src\compiler\preprocessor\ExpressionParser.cpp">14 <Filter>compiler\preprocessor</Filter>16 <ClCompile Include="..\..\src\compiler\preprocessor\Input.cpp">17 <Filter>compiler\preprocessor</Filter>19 <None Include="..\..\src\compiler\preprocessor\ExpressionParser.y">20 <Filter>compiler\preprocessor</Filter>22 <ClCompile Include="..\..\src\compiler\preprocessor\Tokenizer.cpp">23 <Filter>compiler\preprocessor</Filter>[all …]
209 <None Include="..\..\src\compiler\translator\glslang.y"/>210 <None Include="..\..\src\compiler\translator\glslang.l"/>213 <ClInclude Include="..\..\src\third_party\compiler\ArrayBoundsClamper.h"/>224 <ClInclude Include="..\..\src\compiler\translator\BaseTypes.h"/>225 <ClInclude Include="..\..\src\compiler\translator\compilerdebug.h"/>226 <ClInclude Include="..\..\src\compiler\translator\Common.h"/>227 <ClInclude Include="..\..\src\compiler\translator\UnfoldShortCircuitAST.h"/>228 <ClInclude Include="..\..\src\compiler\translator\util.h"/>229 <ClInclude Include="..\..\src\compiler\translator\OutputGLSL.h"/>230 <ClInclude Include="..\..\src\compiler\translator\FlagStd140Structs.h"/>[all …]
3 org.eclipse.jdt.core.compiler.annotation.nonnull=com.android.annotations.NonNull4 org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=com.android.annotations.NonNullByDefault5 org.eclipse.jdt.core.compiler.annotation.nonnullisdefault=disabled6 org.eclipse.jdt.core.compiler.annotation.nullable=com.android.annotations.Nullable7 org.eclipse.jdt.core.compiler.annotation.nullanalysis=enabled8 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled9 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.610 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve11 org.eclipse.jdt.core.compiler.compliance=1.612 org.eclipse.jdt.core.compiler.debug.lineNumber=generate[all …]
28 google/protobuf/compiler/plugin.proto67 google/protobuf/compiler/code_generator.h \68 google/protobuf/compiler/command_line_interface.h \69 google/protobuf/compiler/importer.h \70 google/protobuf/compiler/parser.h \71 google/protobuf/compiler/plugin.h \72 google/protobuf/compiler/plugin.pb.h \73 google/protobuf/compiler/cpp/cpp_generator.h \74 google/protobuf/compiler/java/java_generator.h \75 google/protobuf/compiler/javamicro/javamicro_generator.h \[all …]
... apache/jasper/ org/apache/jasper/compiler/ org/apache/jasper/compiler/tagplugin ...
26 compiler/radeon_code.c \27 compiler/radeon_compiler.c \28 compiler/radeon_compiler_util.c \29 compiler/radeon_emulate_branches.c \30 compiler/radeon_emulate_loops.c \31 compiler/radeon_inline_literals.c \32 compiler/radeon_program.c \33 compiler/radeon_program_print.c \34 compiler/radeon_opcodes.c \35 compiler/radeon_program_alu.c \[all …]
2 * Stack-less Just-In-Time compiler29 static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si reg, sljit_sw imm) in load_immediate() argument32 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_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si … in emit_single_op() argument54 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()[all …]
2 * Stack-less Just-In-Time compiler31 if (SLJIT_UNLIKELY(compiler->error)) \32 return compiler->error; \37 if (SLJIT_UNLIKELY(compiler->error)) \43 if (SLJIT_UNLIKELY(compiler->error)) \50 return compiler->error; \62 compiler->error = SLJIT_ERR_ALLOC_FAILED; \70 compiler->error = SLJIT_ERR_ALLOC_FAILED; \78 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \297 (i) += compiler->locals_offset;[all …]
2 * Stack-less Just-In-Time compiler42 push_inst(compiler, RLDI(reg, reg, 63 - shift, shift, 1))44 static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si reg, sljit_sw imm) in load_immediate() argument52 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()[all …]
2 * Stack-less Just-In-Time compiler184 static sljit_si push_inst16(struct sljit_compiler *compiler, sljit_ins inst) in push_inst16() argument189 ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_uh)); in push_inst16()192 compiler->size++; in push_inst16()196 static sljit_si push_inst32(struct sljit_compiler *compiler, sljit_ins inst) in push_inst32() argument198 sljit_uh *ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst32()202 compiler->size += 2; in push_inst32()206 static SLJIT_INLINE sljit_si emit_imm32_const(struct sljit_compiler *compiler, sljit_si dst, sljit_… in emit_imm32_const() argument208 FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) | in emit_imm32_const()210 return push_inst32(compiler, MOVT | RD4(dst) | in emit_imm32_const()[all …]
2 * Stack-less Just-In-Time compiler129 static sljit_si push_cpool(struct sljit_compiler *compiler) in push_cpool() argument138 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()[all …]
2 * Stack-less Just-In-Time compiler204 static sljit_si push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_si delay_slot) in push_inst() argument208 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() argument374 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()[all …]
2 * Stack-less Just-In-Time compiler258 #define INC_SIZE(s) (*inst++ = (s), compiler->size += (s))445 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument459 check_sljit_generate_code(compiler); in sljit_generate_code()460 reverse_buf(compiler); in sljit_generate_code()463 code = (sljit_ub*)SLJIT_MALLOC_EXEC(compiler->size); in sljit_generate_code()465 buf = compiler->buf; in sljit_generate_code()468 label = compiler->labels; in sljit_generate_code()469 jump = compiler->jumps; in sljit_generate_code()470 const_ = compiler->consts; in sljit_generate_code()[all …]
2 * Stack-less Just-In-Time compiler128 static sljit_si push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument130 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()133 compiler->size++; in push_inst()137 static SLJIT_INLINE sljit_si emit_imm64_const(struct sljit_compiler *compiler, sljit_si dst, sljit_… in emit_imm64_const() argument139 FAIL_IF(push_inst(compiler, MOVZ | RD(dst) | ((imm & 0xffff) << 5))); in emit_imm64_const()140 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 16) & 0xffff) << 5) | (1 << 21))); in emit_imm64_const()141 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 32) & 0xffff) << 5) | (2 << 21))); in emit_imm64_const()142 return push_inst(compiler, MOVK | RD(dst) | ((imm >> 48) << 5) | (3 << 21)); in emit_imm64_const()207 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument[all …]
2 * Stack-less Just-In-Time compiler29 static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si dst_ar, sljit_sw imm) in load_immediate() argument32 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()35 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()37 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(imm >> 16), dst_ar)); in load_immediate()38 …return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SL… in load_immediate()44 FAIL_IF(push_inst(compiler, op_imm | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG)); \46 FAIL_IF(push_inst(compiler, op_imm | S(src1) | T(dst) | IMM(src2), DR(dst))); \50 FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG)); \52 FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | D(dst), DR(dst))); \[all …]
29 # compiler. It sets up the include directories properly.90 configs -= [ "//build/config/compiler:chromium_code" ]91 configs += [ "//build/config/compiler:no_chromium_code" ]104 # specify the LITE_RUNTIME option. The protocol compiler itself (protoc) falls128 "src/google/protobuf/compiler/code_generator.h",129 "src/google/protobuf/compiler/command_line_interface.h",130 "src/google/protobuf/compiler/importer.h",131 "src/google/protobuf/compiler/java/java_doc_comment.cc",132 "src/google/protobuf/compiler/java/java_doc_comment.h",133 "src/google/protobuf/compiler/parser.h",[all …]
28 google/protobuf/compiler/plugin.proto80 google/protobuf/compiler/code_generator.h \81 google/protobuf/compiler/command_line_interface.h \82 google/protobuf/compiler/importer.h \83 google/protobuf/compiler/parser.h \84 google/protobuf/compiler/plugin.h \85 google/protobuf/compiler/plugin.pb.h \86 google/protobuf/compiler/cpp/cpp_generator.h \87 google/protobuf/compiler/java/java_generator.h \88 google/protobuf/compiler/python/python_generator.h[all …]
151 RelativePath="..\src\google\protobuf\compiler\code_generator.h"155 RelativePath="..\src\google\protobuf\compiler\command_line_interface.h"159 RelativePath="..\src\google\protobuf\compiler\subprocess.h"163 RelativePath="..\src\google\protobuf\compiler\zip_writer.h"167 RelativePath="..\src\google\protobuf\compiler\plugin.h"171 RelativePath="..\src\google\protobuf\compiler\plugin.pb.h"175 RelativePath="..\src\google\protobuf\compiler\cpp\cpp_enum.h"179 RelativePath="..\src\google\protobuf\compiler\cpp\cpp_enum_field.h"183 RelativePath="..\src\google\protobuf\compiler\cpp\cpp_extension.h"187 RelativePath="..\src\google\protobuf\compiler\cpp\cpp_field.h"[all …]
21 # This proto compiler supports the nano profile, but should only be used for Android.46 'src/src/google/protobuf/compiler/code_generator.cc',47 'src/src/google/protobuf/compiler/command_line_interface.cc',48 'src/src/google/protobuf/compiler/importer.cc',49 'src/src/google/protobuf/compiler/main.cc',50 'src/src/google/protobuf/compiler/parser.cc',51 'src/src/google/protobuf/compiler/plugin.cc',52 'src/src/google/protobuf/compiler/plugin.pb.cc',53 'src/src/google/protobuf/compiler/subprocess.cc',54 'src/src/google/protobuf/compiler/zip_writer.cc',[all …]
60 "compiler/importer.cc",61 "compiler/parser.cc" ],67 srcs = [ "compiler/code_generator.cc",68 "compiler/command_line_interface.cc",69 "compiler/cpp/cpp_enum.cc",70 "compiler/cpp/cpp_enum.h",71 "compiler/cpp/cpp_enum_field.cc",72 "compiler/cpp/cpp_enum_field.h",73 "compiler/cpp/cpp_extension.cc",74 "compiler/cpp/cpp_extension.h",[all …]