Home
last modified time | relevance | path

Searched refs:bitcode (Results 1 – 25 of 31) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceClFlags.def75 cl::desc("Allow error recovery when reading PNaCl bitcode."), \
102 X(BitcodeAsText, bool, dev_opt_flag, "bitcode-as-text", \
103 cl::desc("Accept textual form of PNaCl bitcode " \
108 cl::desc("Build ICE instructions when reading bitcode"), cl::init(true)) \
185 X(InputFileFormat, llvm::NaClFileFormat, dev_opt_flag, "bitcode-format", \
188 clEnumValN(llvm::PNaClFormat, "pnacl", "PNaCl bitcode file") \
197 cl::desc("Print out more descriptive PNaCl bitcode parse errors when " \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DMagic.cpp75 return file_magic::bitcode; in identify_magic()
79 return file_magic::bitcode; in identify_magic()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/docs/
DREADME.rst1 Subzero - Fast code generator for PNaCl bitcode
71 The ``pnacl-sz`` program parses a pexe or an LLVM bitcode file and translates it
105 ``inst,pred`` will roughly match the .ll bitcode file. Of particular use
126 test takes a test bitcode file implementing some unit tests, and translates it
185 32-bit integers are indistinguishable in PNaCl bitcode. Sandboxing support for
DALLOCATION.rst5 bitcode parsing and ending with ELF file emission.
10 A single thread is responsible for parsing PNaCl bitcode (possibly concurrently
11 with downloading the bitcode file) and constructing the initial high-level ICE.
DREGALLOC.rst9 is a fast code generator that translates architecture-independent `PNaCl bitcode
10 <https://developer.chrome.com/native-client/reference/pnacl-bitcode-abi>`_ into
11 architecture-specific machine code. PNaCl bitcode is LLVM bitcode that has been
41 translating PNaCl bitcode instructions into native instructions. Sometimes a
138 single basic block. This is largely due to the SSA form of PNaCl bitcode. To
DDESIGN.rst10 bitcode (a ``.pexe`` file), using as much architecture-neutral optimization as
136 some of LLVM's bitcode decoding code (for binary-format ``.pexe`` files), again
138 larger due to including code for parsing text-format bitcode files and forming
201 IR, which is reflected in the ``.pexe`` file's bitcode structure. It has a
249 ICE instructions. High-level instructions consist of the PNaCl/LLVM bitcode
259 <https://developer.chrome.com/native-client/reference/pnacl-bitcode-abi>`_) are
364 Subzero includes an integrated PNaCl bitcode parser for ``.pexe`` files. It
367 translation phase. The bitcode parser also parses global initializer data and
422 file names, line numbers, etc., Subzero would need to handle `LLVM bitcode
897 A reasonably common bitcode pattern is a non-atomic update of a memory
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/
DREADME.rst1 Subzero - Fast code generator for PNaCl bitcode
71 The ``pnacl-sz`` program parses a pexe or an LLVM bitcode file and translates it
105 ``inst,pred`` will roughly match the .ll bitcode file. Of particular use
126 test takes a test bitcode file implementing some unit tests, and translates it
185 32-bit integers are indistinguishable in PNaCl bitcode. Sandboxing support for
DDESIGN.rst10 bitcode (a ``.pexe`` file), using as much architecture-neutral optimization as
136 some of LLVM's bitcode decoding code (for binary-format ``.pexe`` files), again
138 larger due to including code for parsing text-format bitcode files and forming
201 IR, which is reflected in the ``.pexe`` file's bitcode structure. It has a
249 ICE instructions. High-level instructions consist of the PNaCl/LLVM bitcode
259 <https://developer.chrome.com/native-client/reference/pnacl-bitcode-abi>`_) are
364 Subzero includes an integrated PNaCl bitcode parser for ``.pexe`` files. It
367 translation phase. The bitcode parser also parses global initializer data and
422 file names, line numbers, etc., Subzero would need to handle `LLVM bitcode
897 A reasonably common bitcode pattern is a non-atomic update of a memory
[all …]
/third_party/benchmark/cmake/Modules/
DFindLLVMNm.cmake15 DESCRIPTION "list LLVM bitcode and object file’s symbol table"
/third_party/openh264/build/
Dplatform-ios.mk13 …+= -arch $(ARCH) -isysroot $(SDKROOT) -miphoneos-version-min=$(SDK_MIN) -DAPPLE_IOS -fembed-bitcode
/third_party/libwebsockets/contrib/
DiOS.cmake21 # IOS_BITCODE = 1/0: Enable bitcode or not. Only iOS >= 6.0 device build can enable bitcode. Defaul…
75 set(BITCODE_FLAGS "-fembed-bitcode")
77 set(BITCODE_FLAGS "-fembed-bitcode-marker")
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMagic.h23 bitcode, ///< Bitcode file enumerator
/third_party/mesa3d/src/util/
Dvl_vlc.h57 uint16_t bitcode; member
79 dst[src->bitcode >> (16 - bits) | i] = src->entry; in vl_vlc_init_table()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DSymbolicFile.cpp45 case file_magic::bitcode: in createSymbolicFile()
DBinary.cpp72 case file_magic::bitcode: in createBinary()
DIRObjectFile.cpp93 case file_magic::bitcode: in findBitcodeInMemBuffer()
DObjectFile.cpp132 case file_magic::bitcode: in createObjectFile()
DArchiveWriter.cpp357 if (identify_magic(Buf.getBuffer()) == file_magic::bitcode) { in getSymbols()
359 Buf, file_magic::bitcode, &Context); in getSymbols()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/runtime/
Dszrt_ll.ll10 ;; This file implements wrappers for particular bitcode instructions that are
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-lib/
DLibDriver.cpp196 if (Magic != file_magic::coff_object && Magic != file_magic::bitcode && in appendFile()
236 if (Magic == file_magic::coff_object || Magic == file_magic::bitcode) { in appendFile()
/third_party/mesa3d/src/gallium/auxiliary/vl/
Dvl_mpeg12_bitstream.c51 uint32_t bitcode; member
587 dst[src->bitcode << 1 | i] = coeff; in init_dct_coeff_table()
592 dst[src->bitcode << 1 | i] = coeff; in init_dct_coeff_table()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dcrosstest.cfg57 # bitcode patterns.
Dtest_arith.def56 // versions of myFrem() are defined in a separate bitcode file.
/third_party/mesa3d/src/gallium/frontends/clover/
Dmeson.build58 'llvm/codegen/bitcode.cpp',
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DPath.cpp1019 return file_magic::bitcode; in identify_magic()
1023 return file_magic::bitcode; in identify_magic()

12