Searched full:compiler (Results 1 – 25 of 67) sorted by relevance
123
/build/soong/cc/ |
D | compiler.go | 187 // Sources that were passed to the C/C++ compiler 196 var _ compiler = (*baseCompiler)(nil) 202 func (compiler *baseCompiler) Srcs() android.Paths { 203 return append(android.Paths{}, compiler.srcs...) 206 func (compiler *baseCompiler) appendCflags(flags []string) { 207 compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...) 210 func (compiler *baseCompiler) appendAsflags(flags []string) { 211 compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...) 214 func (compiler *baseCompiler) compilerProps() []interface{} { 215 return []interface{}{&compiler.Properties, &compiler.Proto} [all …]
|
D | object.go | 36 // cc_object runs the compiler without running the linker. It is rarely 44 module.compiler = NewBaseCompiler() 47 module.compiler.appendCflags([]string{"-fno-addrsig"})
|
D | ndk_library.go | 222 module.(*Module).compiler.(*stubDecorator).properties.ApiLevel = versionStrs[i] 229 if compiler, ok := m.compiler.(*stubDecorator); ok { 230 generateStubApiVariants(mctx, compiler) 371 module.compiler = stub
|
D | prebuilt.go | 140 module.compiler = nil 167 module.compiler = nil 228 module.compiler = nil
|
D | cc.go | 18 // into the flags and filenames necessary to pass to the compiler. The final creation of the rules 160 CFlagsDeps android.Paths // Files depended on by compiler flags 291 type compiler interface { interface 363 // the blueprint.Module interface. It delegates to compiler, linker, and installer interfaces 379 compiler compiler member 431 if c.compiler != nil { 432 c.AddProperties(c.compiler.compilerProps()...) 541 if _, ok := c.compiler.(*stubDecorator); ok { 928 if c.compiler != nil { 929 flags = c.compiler.compilerFlags(ctx, flags, deps) [all …]
|
D | ndk_prebuilt.go | 104 module.compiler = nil 119 module.compiler = nil
|
D | llndk_library.go | 180 module.compiler = stub 215 module.compiler = nil
|
/build/soong/java/config/ |
D | kotlin.go | 29 pctx.SourcePathVariable("KotlinCompilerJar", "external/kotlinc/lib/kotlin-compiler.jar") 35 "-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED", 36 "-J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED", 37 "-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED",
|
/build/soong/cc/config/ |
D | arm_device.go | 80 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang 92 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang 101 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang 110 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang 119 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang 128 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang 137 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang 148 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang 157 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang
|
/build/soong/scripts/ |
D | clang-tidy.sh | 17 # Wrapper script to remove clang compiler flags rejected by clang-tidy. 22 # clang-tidy doesn't recognize every flag that clang compiler does.
|
/build/make/target/product/ |
D | profile_boot_common.mk | 42 # Use speed compiler filter since system server doesn't have JIT. 43 PRODUCT_DEX_PREOPT_BOOT_FLAGS += --compiler-filter=speed
|
/build/make/core/combo/ |
D | javac.mk | 1 # Selects a Java compiler.
|
D | HOST_CROSS_windows-x86_64.mk | 17 # Settings to use MinGW as a cross-compiler under Linux
|
D | HOST_CROSS_windows-x86.mk | 17 # Settings to use MinGW as a cross-compiler under Linux
|
D | select.mk | 17 # Select a combo based on the compiler being used.
|
D | TARGET_linux-arm64.mk | 29 # include defines, and compiler settings for the given architecture
|
D | TARGET_linux-mips64.mk | 29 # include defines, and compiler settings for the given architecture
|
D | TARGET_linux-mips.mk | 29 # include defines, and compiler settings for the given architecture
|
/build/kati/testcase/ |
D | flavor.mk | 1 # https://android.googlesource.com/platform/external/compiler-rt/+/master/make/util.mk#44
|
/build/soong/finder/fs/ |
D | readdir.go | 158 _ = b[1] // bounds check hint to compiler; see golang.org/issue/14808 161 _ = b[3] // bounds check hint to compiler; see golang.org/issue/14808 164 _ = b[7] // bounds check hint to compiler; see golang.org/issue/14808
|
/build/kati/ |
D | .travis.yml | 6 compiler:
|
/build/make/core/clang/ |
D | config.mk | 20 # TODO(danalbert): The following checks currently have compiler performance
|
/build/make/target/board/ |
D | go_defaults_common.prop | 29 # set the compiler filter for shared apks to quicken.
|
/build/soong/dexpreopt/ |
D | dexpreopt.go | 383 if !anyHavePrefix(preoptFlags, "--compiler-filter=") { 394 // 'speed' compiler filter. 404 cmd.FlagWithArg("--compiler-filter=", compilerFilter) 455 // Set the compiler reason to 'prebuilt' to identify the oat files produced 524 …// Generating DM files only makes sense for verify, avoid doing for non verify compiler filter APK… 527 contains(module.PreoptFlags, "--compiler-filter=verify")
|
D | config.go | 55 …DefaultCompilerFilter string // default compiler filter to pass to dex2oat, overridden by --c… 56 …SystemServerCompilerFilter string // default compiler filter to pass to dex2oat for system server …
|
123