Searched +full:gas +full:- +full:preprocessor (Results 1 – 25 of 55) sorted by relevance
123
/external/libjpeg-turbo/simd/ |
D | CMakeLists.txt | 12 # x86[-64] (NASM) 17 set(CMAKE_ASM_NASM_FLAGS_DEBUG_INIT "-g") 18 set(CMAKE_ASM_NASM_FLAGS_RELWITHDEBINFO_INIT "-g") 45 set(CMAKE_ASM_NASM_FLAGS "${CMAKE_ASM_NASM_FLAGS} -DMACHO") 47 set(CMAKE_ASM_NASM_FLAGS "${CMAKE_ASM_NASM_FLAGS} -DELF") 52 set(CMAKE_ASM_NASM_FLAGS "${CMAKE_ASM_NASM_FLAGS} -DWIN64") 54 set(CMAKE_ASM_NASM_FLAGS "${CMAKE_ASM_NASM_FLAGS} -D__x86_64__") 57 set(CMAKE_ASM_NASM_FLAGS "${CMAKE_ASM_NASM_FLAGS} -DOBJ32") 59 set(CMAKE_ASM_NASM_FLAGS "${CMAKE_ASM_NASM_FLAGS} -DWIN32") 74 if(${var} STREQUAL "-g") [all …]
|
D | gas-preprocessor.in | 1 gas-preprocessor.pl @CMAKE_ASM_COMPILER@ ${1+"$@"}
|
/external/libjpeg-turbo/ |
D | .travis.yml | 5 - /^[0-9]+\.[0-9]+\.[0-9]+/ 6 - /^jpeg-.*/ 10 - os: linux 14 - docker 15 - os: osx 18 - os: linux 23 CFLAGS_RELWITHDEBINFO="-O1 -g -fsanitize=address -fno-omit-frame-pointer" 24 CMAKE_FLAGS="-DENABLE_SHARED=0" 29 - nasm 30 - os: linux [all …]
|
D | BUILDING.md | 1 Building libjpeg-turbo 6 ------------------ 11 - [CMake](http://www.cmake.org) v2.8.12 or later 13 - [NASM](http://www.nasm.us) or [YASM](http://yasm.tortall.net) 14 (if building x86 or x86-64 SIMD extensions) 16 * If using NASM, 2.10 or later (except 2.11.08) is required for an x86-64 Mac 17 build (2.11.08 does not work properly with libjpeg-turbo's x86-64 SIMD code 21 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in 23 libjpeg-turbo, then YASM must be used when building libjpeg-turbo. 34 ARCH=`uname -m` [all …]
|
/external/boringssl/src/crypto/perlasm/ |
D | x86_64-xlate.pl | 2 # Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved. 14 # Unix ABI to Windows one [see cross-reference "card" at the end of 23 # enough to provide for dual-ABI OpenSSL modules development... 29 # - can't use multiple ops per line; 31 # Dual-ABI styling rules. 33 # 1. Adhere to Unix register and stack layout [see cross-reference 41 # ".type name,@abi-omnipotent" instead. 44 # larger than 6, then you *have to* write "abi-omnipotent" code, 48 # 6. Don't use [or hand-code with .byte] "rep ret." "ret" mnemonic is 50 # But on the pros, it's then prefixed with rep automatically:-) [all …]
|
/external/swiftshader/third_party/LLVM/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 12 # Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. 13 ## --------------------- ## 15 ## --------------------- ## 19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 24 alias -g '${1+"$@"}'='"$@"' 27 case `(set -o) 2>/dev/null` in 28 *posix*) set -o posix ;; 54 rm -f conf$$.sh 67 # there to prevent editors from complaining about space-tab. [all …]
|
/external/fec/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 8 ## --------------------- ## 10 ## --------------------- ## 13 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 18 alias -g '${1+"$@"}'='"$@"' 19 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then 20 set -o posix 32 # Work around bugs in pre-3.0 UWIN ksh. 44 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 96 rm -f conf$$.sh [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/ |
D | AsmLexer.cpp | 1 //===- AsmLexer.cpp - Lexer for Assembly Files ----------------------------===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 51 /// ReturnError - Set the error to the specified string at the specified 56 return AsmToken(AsmToken::Error, StringRef(Loc, CurPtr - Loc)); in ReturnError() 65 /// LexFloatLiteral: [0-9]*[.][0-9]*([eE][+-]?[0-9]*)? 80 if (*CurPtr == '-' || *CurPtr == '+') in LexFloatLiteral() 87 StringRef(TokStart, CurPtr - TokStart)); in LexFloatLiteral() 90 /// LexHexFloatLiteral matches essentially (.[0-9a-fA-F]*)?[pP][+-]?[0-9a-fA-F]+ 94 /// The leading "0x[0-9a-fA-F]*" (i.e. integer part) has already been consumed [all …]
|
D | AsmParser.cpp | 1 //===- AsmParser.cpp - Parser for Assembly Files --------------------------===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 78 "asm-macro-max-nesting-depth", cl::init(20), cl::Hidden, 177 /// Are we parsing ms-style inline assembly? 514 /// Maps directive name --> DirectiveKind enum, for 631 // Macro-like directives 656 // .print <double-quotes-string> 659 // Directives to support address-significance tables. 688 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer)->getBuffer()); in AsmParser() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | WritingAnLLVMBackend.rst | 21 The backend of LLVM features a target-independent code generator that may 22 create output for several types of target CPUs --- including X86, PowerPC, 34 -------- 40 -------------------- 44 * `LLVM Language Reference Manual <LangRef.html>`_ --- a reference manual for 47 * :doc:`CodeGenerator` --- a guide to the components (classes and code 51 Formation, SSA-based Optimization, Register Allocation, Prolog/Epilog Code 54 * :doc:`TableGen/index` --- a document that describes the TableGen 55 (``tblgen``) application that manages domain-specific information to support 60 * :doc:`WritingAnLLVMPass` --- The assembly printer is a ``FunctionPass``, as [all …]
|
/external/llvm/docs/ |
D | WritingAnLLVMBackend.rst | 21 The backend of LLVM features a target-independent code generator that may 22 create output for several types of target CPUs --- including X86, PowerPC, 34 -------- 40 -------------------- 44 * `LLVM Language Reference Manual <LangRef.html>`_ --- a reference manual for 47 * :doc:`CodeGenerator` --- a guide to the components (classes and code 51 Formation, SSA-based Optimization, Register Allocation, Prolog/Epilog Code 54 * :doc:`TableGen/index` --- a document that describes the TableGen 55 (``tblgen``) application that manages domain-specific information to support 60 * :doc:`WritingAnLLVMPass` --- The assembly printer is a ``FunctionPass``, as [all …]
|
/external/iputils/ninfod/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 15 ## -------------------- ## 17 ## -------------------- ## 21 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 24 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 26 alias -g '${1+"$@"}'='"$@"' 29 case `(set -o) 2>/dev/null` in #( 31 set -o posix ;; #( 47 if test -z "$BASH_VERSION$ZSH_VERSION" \ 48 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then [all …]
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 9 ## --------------------- ## 11 ## --------------------- ## 15 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 20 alias -g '${1+"$@"}'='"$@"' 23 case `(set -o) 2>/dev/null` in 24 *posix*) set -o posix ;; 50 rm -f conf$$.sh 63 # there to prevent editors from complaining about space-tab. 77 test -z "$as_dir" && as_dir=. [all …]
|
/external/swiftshader/third_party/LLVM/projects/sample/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 11 ## --------------------- ## 13 ## --------------------- ## 16 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 21 alias -g '${1+"$@"}'='"$@"' 24 case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac 48 rm -f conf$$.sh 61 # there to prevent editors from complaining about space-tab. 75 test -z "$as_dir" && as_dir=. 76 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break [all …]
|
/external/fdlibm/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 5 # Report bugs to <FDLIBM COMMENTS <fdlibm-comments AT sun.com>>. 10 ## --------------------- ## 12 ## --------------------- ## 15 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 20 alias -g '${1+"$@"}'='"$@"' 21 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then 22 set -o posix 34 # Work around bugs in pre-3.0 UWIN ksh. 46 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then [all …]
|
/external/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 1 //===- AsmParser.cpp - Parser for Assembly Files --------------------------===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 182 /// \brief Are we parsing ms-style inline assembly? 271 /// parseToken - If current token has the specified kind, eat it and 320 /// \brief Undefine a macro. If no such macro was defined, it's a no-op. 417 /// \brief Maps directive name --> DirectiveKind enum, for 520 // Macro-like directives 570 Lexer.setBuffer(SrcMgr.getMemoryBuffer(CurBuffer)->getBuffer()); in AsmParser() 573 switch (Ctx.getObjectFileInfo()->getObjectFileType()) { in AsmParser() [all …]
|
/external/stressapptest/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 15 ## -------------------- ## 17 ## -------------------- ## 21 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 24 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 26 alias -g '${1+"$@"}'='"$@"' 29 case `(set -o) 2>/dev/null` in #( 31 set -o posix ;; #( 47 if test -z "$BASH_VERSION$ZSH_VERSION" \ 48 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then [all …]
|
/external/cmockery/cmockery_0_1_2/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 10 ## --------------------- ## 12 ## --------------------- ## 15 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then 20 alias -g '${1+"$@"}'='"$@"' 21 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then 22 set -o posix 34 # Work around bugs in pre-3.0 UWIN ksh. 46 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 98 rm -f conf$$.sh [all …]
|
/external/epid-sdk/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 11 ## -------------------- ## 13 ## -------------------- ## 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 22 alias -g '${1+"$@"}'='"$@"' 25 case `(set -o) 2>/dev/null` in #( 27 set -o posix ;; #( 43 if test -z "$BASH_VERSION$ZSH_VERSION" \ [all …]
|
/external/google-breakpad/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 5 # Report bugs to <google-breakpad-dev@googlegroups.com>. 8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 13 ## -------------------- ## 15 ## -------------------- ## 19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 24 alias -g '${1+"$@"}'='"$@"' 27 case `(set -o) 2>/dev/null` in #( 29 set -o posix ;; #( [all …]
|
/external/libpcap/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.69 for pcap 1.9.0-PRE-GIT. 6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 11 ## -------------------- ## 13 ## -------------------- ## 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 22 alias -g '${1+"$@"}'='"$@"' 25 case `(set -o) 2>/dev/null` in #( 27 set -o posix ;; #( [all …]
|
/external/icu/icu4c/source/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 5 # Report bugs to <http://icu-project.org/bugs>. 10 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 15 ## -------------------- ## 17 ## -------------------- ## 21 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 24 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 26 alias -g '${1+"$@"}'='"$@"' 29 case `(set -o) 2>/dev/null` in #( 31 set -o posix ;; #( [all …]
|
/external/tcpdump/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 11 ## -------------------- ## 13 ## -------------------- ## 17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 22 alias -g '${1+"$@"}'='"$@"' 25 case `(set -o) 2>/dev/null` in #( 27 set -o posix ;; #( 43 if test -z "$BASH_VERSION$ZSH_VERSION" \ [all …]
|
/external/strace/ |
D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 5 # Report bugs to <strace-devel@lists.strace.io>. 8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 14 # Copyright (c) 1999-2018 The strace developers. 15 ## -------------------- ## 17 ## -------------------- ## 21 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 24 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 26 alias -g '${1+"$@"}'='"$@"' 29 case `(set -o) 2>/dev/null` in #( [all …]
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | ChangeLog | 3 Date: Mon May 19 09:41:32 2014 -0400 9 Date: Mon May 19 09:37:21 2014 -0400 15 Date: Sun May 11 10:30:22 2014 -0400 21 Date: Sun May 11 10:22:30 2014 -0400 27 Date: Sun May 11 09:56:40 2014 -0400 33 Date: Sun May 11 09:55:28 2014 -0400 39 Date: Sun May 11 09:52:47 2014 -0400 46 Date: Wed Apr 23 19:24:47 2014 -0400 48 Merge pull request #119 from joshtriplett/fastcall-fastball 54 Date: Tue Apr 22 21:17:52 2014 -0700 [all …]
|
123