Home
last modified time | relevance | path

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

123

/build/soong/cc/
Dcompiler.go187 // 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 …]
Dobject.go36 // cc_object runs the compiler without running the linker. It is rarely
44 module.compiler = NewBaseCompiler()
47 module.compiler.appendCflags([]string{"-fno-addrsig"})
Dndk_library.go222 module.(*Module).compiler.(*stubDecorator).properties.ApiLevel = versionStrs[i]
229 if compiler, ok := m.compiler.(*stubDecorator); ok {
230 generateStubApiVariants(mctx, compiler)
371 module.compiler = stub
Dprebuilt.go140 module.compiler = nil
167 module.compiler = nil
228 module.compiler = nil
Dcc.go18 // 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 …]
Dndk_prebuilt.go104 module.compiler = nil
119 module.compiler = nil
Dllndk_library.go180 module.compiler = stub
215 module.compiler = nil
/build/soong/java/config/
Dkotlin.go29 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/
Darm_device.go80 // 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/
Dclang-tidy.sh17 # 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/
Dprofile_boot_common.mk42 # Use speed compiler filter since system server doesn't have JIT.
43 PRODUCT_DEX_PREOPT_BOOT_FLAGS += --compiler-filter=speed
/build/make/core/combo/
Djavac.mk1 # Selects a Java compiler.
DHOST_CROSS_windows-x86_64.mk17 # Settings to use MinGW as a cross-compiler under Linux
DHOST_CROSS_windows-x86.mk17 # Settings to use MinGW as a cross-compiler under Linux
Dselect.mk17 # Select a combo based on the compiler being used.
DTARGET_linux-arm64.mk29 # include defines, and compiler settings for the given architecture
DTARGET_linux-mips64.mk29 # include defines, and compiler settings for the given architecture
DTARGET_linux-mips.mk29 # include defines, and compiler settings for the given architecture
/build/kati/testcase/
Dflavor.mk1 # https://android.googlesource.com/platform/external/compiler-rt/+/master/make/util.mk#44
/build/soong/finder/fs/
Dreaddir.go158 _ = 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.yml6 compiler:
/build/make/core/clang/
Dconfig.mk20 # TODO(danalbert): The following checks currently have compiler performance
/build/make/target/board/
Dgo_defaults_common.prop29 # set the compiler filter for shared apks to quicken.
/build/soong/dexpreopt/
Ddexpreopt.go383 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")
Dconfig.go55 …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