Home
last modified time | relevance | path

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

123

/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Dbuild_aot.dart55 ..addFlag('bitcode',
57 help: 'Build the AOT bundle with bitcode. Requires a compatible bitcode engine.',
79 final bool bitcode = argResults['bitcode'];
82 if (bitcode) {
137 bitcode: bitcode,
177 bitcode: false,
208 throwToolExit('Bitcode is only supported with a local engine built with --bitcode.');
216 // Check for bitcode in Flutter binary.
221 throwToolExit('The Flutter.framework at $flutterFrameworkPath does not contain bitcode.');
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/base/
Dbuild_test.dart145 bitcode: false,
157 bitcode: false,
169 bitcode: false,
173 testUsingContext('iOS debug AOT with bitcode uses right flags', () async {
195 bitcode: true,
211 verify(xcode.cc(argThat(contains('-fembed-bitcode')))).called(1);
212 verify(xcode.clang(argThat(contains('-fembed-bitcode')))).called(1);
220 final File assemblyBitcodeFile = fs.file('$assembly.bitcode');
249 bitcode: false,
264 verifyNever(xcode.cc(argThat(contains('-fembed-bitcode'))));
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/
Dbuild.dart93 @required bool bitcode,
95 if (bitcode && platform != TargetPlatform.ios) {
181 if (platform == TargetPlatform.ios && bitcode) {
182 final IOSink sink = fs.file('$assembly.bitcode').openWrite();
202 assemblyPath: bitcode ? '$assembly.bitcode' : assembly,
204 bitcode: bitcode,
218 @required bool bitcode,
235 if (bitcode) '-fembed-bitcode',
251 if (bitcode) '-fembed-bitcode',
/third_party/flutter/skia/third_party/externals/sdl/test/nacl/
DMakefile38 $(call LOG,TRANSLATE,$$@,$(PNACL_TRANSLATE) --allow-llvm-bitcode-input -arch x86-32 $$^ -o $$@)
41 $(call LOG,TRANSLATE,$$@,$(PNACL_TRANSLATE) --allow-llvm-bitcode-input -arch x86-64 $$^ -o $$@)
44 $(call LOG,TRANSLATE,$$@,$(PNACL_TRANSLATE) --allow-llvm-bitcode-input -arch arm $$^ -o $$@)
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_system/targets/
Dios.dart32 final bool bitcode = environment.defines[kBitcodeFlag] == 'true';
50 bitcode: bitcode,
67 bitcode: bitcode,
/third_party/mindspore/cmake/
Dlite_ios.cmake121 message(STATUS "Enabling bitcode support by default. ENABLE_BITCODE not provided!")
124 …message(STATUS "Disabling bitcode support by default on simulators. ENABLE_BITCODE not provided fo…
127 set(ENABLE_BITCODE_INT ${ENABLE_BITCODE} CACHE BOOL "Whether or not to enable bitcode" ${FORCE_CACH…
273 set(BITCODE "-fembed-bitcode")
274 set(CMAKE_XCODE_ATTRIBUTE_BITCODE_GENERATION_MODE bitcode CACHE INTERNAL "")
275 message(STATUS "Enabling bitcode support.")
279 message(STATUS "Disabling bitcode support.")
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/
Dbuild_aot_test.dart35 testUsingContext('build aot validates building with bitcode requires a local engine', () async {
38 equals('Bitcode is only supported with a local engine built with --bitcode.'),
52 testUsingContext('build aot validates Flutter.framework/Flutter contains bitcode', () async {
65 equals('The Flutter.framework at ios_profile/Flutter.framework does not contain bitcode.'),
/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/flutter/flutter/packages/flutter_tools/test/general.shard/build_system/targets/
Ddart_test.dart231 …test('aot_assembly_profile with bitcode sends correct argument to snapshotter (one arch)', () => t…
253 verify(mockXcode.cc(argThat(contains('-fembed-bitcode')))).called(1);
254 verify(mockXcode.clang(argThat(contains('-fembed-bitcode')))).called(1);
261 …test('aot_assembly_profile with bitcode sends correct argument to snapshotter (mutli arch)', () =>…
283 verify(mockXcode.cc(argThat(contains('-fembed-bitcode')))).called(2);
284 verify(mockXcode.clang(argThat(contains('-fembed-bitcode')))).called(2);
/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/ejdb/
Dios-tc.cmake78 # ENABLE_BITCODE: (1|0) Enables or disables bitcode support. Default 1 (true)
227 …e integration issues with it, libarclite_iphoneos.a is currently missung bitcode markers for examp…
237 …e integration issues with it, libarclite_iphoneos.a is currently missung bitcode markers for examp…
348 # Use bitcode or not
350 # Unless specified, enable bitcode support by default
351 message(STATUS "Enabling bitcode support by default. ENABLE_BITCODE not provided!")
354 …message(STATUS "Disabling bitcode support by default on simulators. ENABLE_BITCODE not provided fo…
357 set(ENABLE_BITCODE_INT ${ENABLE_BITCODE} CACHE BOOL "Whether or not to enable bitcode" ${FORCE_CACH…
548 set(BITCODE "-fembed-bitcode")
549 set(CMAKE_XCODE_ATTRIBUTE_BITCODE_GENERATION_MODE "bitcode" CACHE INTERNAL "")
[all …]
/third_party/benchmark/cmake/Modules/
DFindLLVMNm.cmake15 DESCRIPTION "list LLVM bitcode and object file’s symbol table"
/third_party/json/benchmarks/thirdparty/benchmark/cmake/Modules/
DFindLLVMNm.cmake15 DESCRIPTION "list LLVM bitcode and object file’s symbol table"
/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.
/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
/third_party/openh264/build/
Dplatform-ios.mk13 …+= -arch $(ARCH) -isysroot $(SDKROOT) -miphoneos-version-min=$(SDK_MIN) -DAPPLE_IOS -fembed-bitcode
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMagic.h23 bitcode, ///< Bitcode file enumerator
/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/mesa3d/src/gallium/auxiliary/vl/
Dvl_vlc.h61 uint16_t bitcode; member
83 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()
/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/flutter/engine/flutter/tools/
Dgn89 if args.bitcode:
93 gn_args['enable_bitcode'] = args.bitcode

123