HomeSort by relevance Sort by last modified time
    Searched refs:gcc (Results 351 - 375 of 606) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/debug/dwarf/
entry_test.go 55 testRanges(t, "testdata/line-gcc.elf", want)
98 d := elfData(t, "testdata/line-gcc.elf")
type_test.go 37 // As Apple converts gcc to a clang-based front end
143 // cycle.elf built with GCC 4.8.4:
144 // gcc -g -c -o cycle.elf cycle.c
  /toolchain/binutils/binutils-2.27/binutils/
embedspu.sh 30 echo " flags: GCC flags defining PowerPC object file format"
86 # Find a powerpc gcc. Support running from a combined tree build.
87 if test -x "$mydir/../gcc/xgcc"; then
88 CC="$mydir/../gcc/xgcc -B$mydir/../gcc/"
90 find_prog gcc
  /external/e2fsprogs/util/
gen-android-files 47 gcc -o gen_crc32ctable lib/ext2fs/gen_crc32ctable.c
  /external/libxcam/
README.md 49 * install gcc/g++, automake, autoconf, libtool, gawk, pkg-config
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ToolRunner.cpp 157 // Print out the error messages generated by GCC if possible...
444 GCC::FileType LLC::OutputCode(const std::string &Bitcode,
483 return UseIntegratedAssembler ? GCC::ObjectFile : GCC::AsmFile;
504 GCC::FileType FileKind = OutputCode(Bitcode, OutputAsmFile, *Error, Timeout,
511 // Assuming LLC worked, compile the result with GCC and run it.
512 return gcc->ExecuteProgram(OutputAsmFile.str(), Args, FileKind,
533 GCC *gcc = GCC::create(Message, GCCBinary, GCCArgs); local
704 GCC *gcc = GCC::create(Message, GCCBinary, GCCArgs); local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
cgocall.go 9 // gcc-compiled function written by cgo.
17 // gcc-compiled code on) and calls _cgo_Cfunc_f(frame).
30 // The above description skipped over the possibility of the gcc-compiled
34 // To make it possible for gcc-compiled C code to call a Go function p.GoF,
35 // cgo writes a gcc-compiled function named GoF (not p.GoF, since gcc doesn't
36 // know about packages). The gcc-compiled C function f calls GoF.
39 // (in cgo/gcc_$GOARCH.S, a gcc-compiled assembly file) is a two-argument
40 // adapter from the gcc function call ABI to the 6c function call ABI.
41 // It is called from gcc to call 6c functions. In this case it call
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
cgocall.go 9 // gcc-compiled function written by cgo.
17 // gcc-compiled code on) and calls _cgo_Cfunc_f(frame).
30 // The above description skipped over the possibility of the gcc-compiled
34 // To make it possible for gcc-compiled C code to call a Go function p.GoF,
35 // cgo writes a gcc-compiled function named GoF (not p.GoF, since gcc doesn't
36 // know about packages). The gcc-compiled C function f calls GoF.
39 // (in cgo/gcc_$GOARCH.S, a gcc-compiled assembly file) is a two-argument
40 // adapter from the gcc function call ABI to the 6c function call ABI.
41 // It is called from gcc to call 6c functions. In this case it call
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/work/
exec.go 208 // TODO(rsc): Should we include the SWIG version or Fortran/GCC/G++/Objective-C compiler versions?
448 // In a package using cgo, cgo compiles the C, C++ and assembly files with gcc.
451 // In that case gcc only gets the gcc_* files.
456 filter := func(files, nongcc, gcc []string) ([]string, []string) {
459 gcc = append(gcc, f)
464 return nongcc, gcc
651 // gcc-compiled objects (cgoObjects) be listed after the ordinary
1661 func (b *Builder) gcc(a *Action, p *load.Package, workdir, out string, flags []string, cfile string) error { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/work/
exec.go 208 // TODO(rsc): Should we include the SWIG version or Fortran/GCC/G++/Objective-C compiler versions?
448 // In a package using cgo, cgo compiles the C, C++ and assembly files with gcc.
451 // In that case gcc only gets the gcc_* files.
456 filter := func(files, nongcc, gcc []string) ([]string, []string) {
459 gcc = append(gcc, f)
464 return nongcc, gcc
651 // gcc-compiled objects (cgoObjects) be listed after the ordinary
1661 func (b *Builder) gcc(a *Action, p *load.Package, workdir, out string, flags []string, cfile string) error { func
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testsanitizers/
cc_test.go 181 // Compiler does not support "--version" flag: not Clang or GCC.
186 if bytes.HasPrefix(out, []byte("gcc")) {
187 compiler.name = "gcc"
195 // gcc, but does not support gcc's "-dumpversion" flag?!
266 if compiler.name == "gcc" {
  /prebuilts/go/linux-x86/misc/cgo/testsanitizers/
cc_test.go 181 // Compiler does not support "--version" flag: not Clang or GCC.
186 if bytes.HasPrefix(out, []byte("gcc")) {
187 compiler.name = "gcc"
195 // gcc, but does not support gcc's "-dumpversion" flag?!
266 if compiler.name == "gcc" {
  /prebuilts/go/darwin-x86/src/cmd/cgo/
out.go 28 // writeDefs creates output files to be compiled by gc and gcc.
54 // Write C main file for using gcc to resolve imports.
332 // Construct a gcc struct matching the gc argument frame.
333 // Assumes that in gcc, char is 1 byte, short 2 bytes, int 4 bytes, long long 8 bytes.
477 // Wrapper calls into gcc, passing a pointer to the argument frame.
542 // While we process the vars and funcs, also write gcc output.
543 // Gcc output starts with the preamble.
595 // Gcc wrapper unpacks the C argument struct
608 // We're trying to write a gcc struct that matches gc's layout.
610 // gcc has different packing requirements
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cgo/
out.go 28 // writeDefs creates output files to be compiled by gc and gcc.
54 // Write C main file for using gcc to resolve imports.
332 // Construct a gcc struct matching the gc argument frame.
333 // Assumes that in gcc, char is 1 byte, short 2 bytes, int 4 bytes, long long 8 bytes.
477 // Wrapper calls into gcc, passing a pointer to the argument frame.
542 // While we process the vars and funcs, also write gcc output.
543 // Gcc output starts with the preamble.
595 // Gcc wrapper unpacks the C argument struct
608 // We're trying to write a gcc struct that matches gc's layout.
610 // gcc has different packing requirements
    [all...]
  /build/soong/cc/
builder.go 222 // We run gcc/clang with PWD=/proc/self/cwd to remove $TOP from the
400 ccCmd = "gcc"
406 ccCmd = "gcc"
420 case "gcc":
865 Description: "copy gcc library " + libName,
868 "ccCmd": gccCmd(flags.toolchain, "gcc"),
  /prebuilts/go/darwin-x86/misc/cgo/gmp/
gmp.go 15 (gmp, in this example). The third, gcc.c, is a C source file for gcc;
28 Cgo recognizes any use of a qualified identifier C.xxx and uses gcc to
  /prebuilts/go/linux-x86/misc/cgo/gmp/
gmp.go 15 (gmp, in this example). The third, gcc.c, is a C source file for gcc;
28 Cgo recognizes any use of a qualified identifier C.xxx and uses gcc to
  /build/soong/cc/config/
arm_device.go 73 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang
85 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang
94 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang
103 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang
112 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang
121 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang
132 // Fake an ARM compiler flag as these processors support LPAE which GCC/clang
174 // Krait is not supported by GCC, but is supported by Clang, so
179 // gcc is the latter would conflict with any specified/supported -mcpu!
180 // All armv8-a cores supported by gcc 4.9 support crc, so it's saf
    [all...]
mips64_device.go 70 "prebuilts/gcc/${HostPrebuiltTag}/mips/mips64el-linux-android-${mips64GccVersion}")
  /development/build/tools/
windows_sdk.mk 61 $(call dist-for-goals, win_sdk, prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/bin/libwinpthread-1.dll:lib64/libwinpthread-1.dll)
  /device/linaro/bootloader/edk2/OvmfPkg/
build.sh 84 gcc_version=$(gcc -v 2>&1 | tail -1 | awk '{print $3}')
  /external/libffi/testsuite/lib/
libffi.exp 109 # Are we building with GCC?
110 set tmp [grep ../config.status "GCC='yes'"]
111 if { [string match $tmp "GCC='yes'"] } {
115 set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
385 # them out *before* the next test run because gcc-target-compile gets
  /external/linux-kselftest/tools/testing/selftests/
lib.mk 3 CC := $(CROSS_COMPILE)gcc
  /external/one-true-awk/
README 66 compiled this without any changes using gcc -Wall and/or local C
84 This compiles without change on Macintosh OS X using gcc and
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/lib/
libffi.exp 109 # Are we building with GCC?
110 set tmp [grep ../config.status "GCC='yes'"]
111 if { [string match $tmp "GCC='yes'"] } {
115 set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
385 # them out *before* the next test run because gcc-target-compile gets

Completed in 1254 milliseconds

<<11121314151617181920>>