/frameworks/compile/slang/BitWriter_2_9/ |
ReaderWriter_2_9.h | 1 //===-- llvm/Bitcode/ReaderWriter.h - Bitcode reader/writers ----*- C++ -*-===// 10 // This header defines interfaces to read and write LLVM bitcode files/streams. 29 /// getLazyBitcodeModule - Read the header of the specified bitcode buffer 38 /// getBitcodeTargetTriple - Read the header of the specified bitcode 47 /// ParseBitcodeFile - Read the specified bitcode file, returning the module. 64 /// for an LLVM IR bitcode wrapper. 78 /// raw LLVM IR bitcode (without a wrapper). 92 /// LLVM IR bitcode, either with or without a wrapper. 106 /// uint32_t BitcodeOffset; // Offset to traditional bitcode file [all...] |
/frameworks/compile/slang/BitWriter_2_9_func/ |
ReaderWriter_2_9_func.h | 1 //===-- llvm/Bitcode/ReaderWriter.h - Bitcode reader/writers ----*- C++ -*-===// 10 // This header defines interfaces to read and write LLVM bitcode files/streams. 29 /// getLazyBitcodeModule - Read the header of the specified bitcode buffer 38 /// getBitcodeTargetTriple - Read the header of the specified bitcode 47 /// ParseBitcodeFile - Read the specified bitcode file, returning the module. 64 /// for an LLVM IR bitcode wrapper. 78 /// raw LLVM IR bitcode (without a wrapper). 92 /// LLVM IR bitcode, either with or without a wrapper. 106 /// uint32_t BitcodeOffset; // Offset to traditional bitcode file [all...] |
/frameworks/compile/slang/BitWriter_3_2/ |
ReaderWriter_3_2.h | 1 //===-- llvm/Bitcode/ReaderWriter.h - Bitcode reader/writers ----*- C++ -*-===// 10 // This header defines interfaces to read and write LLVM bitcode files/streams. 29 /// getLazyBitcodeModule - Read the header of the specified bitcode buffer 38 /// getBitcodeTargetTriple - Read the header of the specified bitcode 47 /// ParseBitcodeFile - Read the specified bitcode file, returning the module. 64 /// for an LLVM IR bitcode wrapper. 78 /// raw LLVM IR bitcode (without a wrapper). 92 /// LLVM IR bitcode, either with or without a wrapper. 106 /// uint32_t BitcodeOffset; // Offset to traditional bitcode file [all...] |
BitcodeWriterPass.cpp | 1 //===--- Bitcode/Writer/BitcodeWriterPass.cpp - Bitcode Writer ------------===// 26 const char *getPassName() const { return "Bitcode Writer"; }
|
/frameworks/compile/libbcc/bcinfo/tools/ |
main.cpp | 24 #include <llvm/Bitcode/ReaderWriter.h> 50 // information about a supplied bitcode input file. 219 static size_t readBitcode(const char **bitcode) { 244 *bitcode = (const char*) calloc(1, bitcodeSize + 1); 245 size_t nread = fread((void*) *bitcode, 1, bitcodeSize, in); 255 static void releaseBitcode(const char **bitcode) { 256 if (bitcode && *bitcode) { 257 free((void*) *bitcode); 258 *bitcode = NULL 270 const char *bitcode = NULL; local [all...] |
/external/llvm/docs/CommandGuide/ |
llvm-dis.rst | 17 bitcode file and converts it into human-readable LLVM assembly language. 38 write raw bitcode output if the output stream is a terminal. With this option, 39 **llvm-dis** will write raw bitcode regardless of the output device.
|
llvm-as.rst | 13 LLVM assembly language, translates it to LLVM bitcode, and writes the result 37 write raw bitcode output if the output stream is a terminal. With this option, 38 **llvm-as** will write raw bitcode regardless of the output device.
|
llvm-prof.rst | 9 **llvm-prof** [*options*] [*bitcode file*] [*llvmprof.out*] 17 optionally use a specific file with the third program argument), a bitcode file 62 **llvm-prof** returns 1 if it cannot load the bitcode file or the profile
|
/external/llvm/ |
Android.mk | 12 lib/Bitcode/Reader \ 13 lib/Bitcode/Writer \
|
/external/llvm/bindings/ocaml/llvm/ |
META.llvm.in | 20 description = "Bitcode reader for LLVM" 28 description = "Bitcode writer for LLVM"
|
/external/llvm/test/Other/ |
extract.ll | 7 ; llvm-extract uses lazy bitcode loading, so make sure it correctly reads 8 ; from bitcode files in addition to assembly files.
|
/external/llvm/unittests/Bitcode/ |
Makefile | 1 ##===- unittests/Bitcode/Makefile --------------------------*- Makefile -*-===## 11 TESTNAME = Bitcode
|
BitReaderTest.cpp | 1 //===- llvm/unittest/Bitcode/BitReaderTest.cpp - Tests for BitReader ------===// 12 #include "llvm/Bitcode/BitstreamWriter.h" 13 #include "llvm/Bitcode/ReaderWriter.h"
|
/frameworks/compile/libbcc/include/bcinfo/ |
MetadataExtractor.h | 72 * Reads metadata from \p bitcode. 74 * \param bitcode - input bitcode string. 75 * \param bitcodeSize - length of \p bitcode string (in bytes). 77 MetadataExtractor(const char *bitcode, size_t bitcodeSize); 89 * Extract the actual metadata from the supplied bitcode. 181 * \return compiler version that generated this bitcode. 188 * \return compiler optimization level for this bitcode.
|
/frameworks/compile/slang/ |
slang_backend.cpp | 39 #include "llvm/Bitcode/ReaderWriter.h" 238 // Encase the Bitcode in a wrapper containing RS version information. 239 void Backend::WrapBitcode(llvm::raw_string_ostream &Bitcode) { 242 &wrapper, Bitcode.str().length(), getTargetAPI(), 247 // Write out the bitcode wrapper. 250 // Write out the actual encoded bitcode. 251 FormattedOutStream << Bitcode.str(); 350 llvm::raw_string_ostream Bitcode(BCStr); 357 BCEmitPM->add(llvm_2_9::createBitcodeWriterPass(Bitcode)); 363 BCEmitPM->add(llvm_2_9_func::createBitcodeWriterPass(Bitcode)); [all...] |
/frameworks/compile/libbcc/ |
README.rst | 2 libbcc: A Versatile Bitcode Execution Engine for Mobile Devices 9 libbcc is an LLVM bitcode execution engine that compiles the bitcode 20 her own runtime bitcode library (lib*.bc) that differentiates his or 25 * a *just-in-time bitcode compiler*, which translates the LLVM bitcode 37 * libbcc supports bitcode from various language frontends, such as 91 * **bccReadBC** - Set the source bitcode for compilation 95 * **bccLinkBC** - Set the library bitcode for linking
|
/external/llvm/tools/bugpoint/ |
ToolRunner.h | 84 /// LLVM bitcode in a variety of ways. This abstract interface hides this 113 /// compileProgram - Compile the specified program from bitcode to executable 116 virtual void compileProgram(const std::string &Bitcode, std::string *Error, 119 /// OutputCode - Compile the specified program from bitcode to code 123 virtual GCC::FileType OutputCode(const std::string &Bitcode, 131 /// ExecuteProgram - Run the specified bitcode file, emitting output to the 136 virtual int ExecuteProgram(const std::string &Bitcode, 168 /// compileProgram - Compile the specified program from bitcode to executable 171 virtual void compileProgram(const std::string &Bitcode, std::string *Error, 174 virtual int ExecuteProgram(const std::string &Bitcode, [all...] |
/frameworks/compile/libbcc/bcinfo/Wrap/ |
bitcode_wrapperer.cpp | 36 // The magic number that must exist for bitcode wrappers. 44 // Fields defined by Android bitcode header. 50 // PNaCl bitcode version number. 79 ALOGE("Error: input file is not a bitcode file.\n"); 199 ALOGW("Error: bad PNaCl Bitcode version\n"); 227 ALOGE("Error: raw bitcode offset inconsistent with " 303 // If reached, Check if first 4 bytes match bitcode 339 // bitcode. 359 fprintf(stderr, "LLVM Bitcode version:\t%d\n", kLLVMVersionNumber); 360 fprintf(stderr, "Raw bitcode offset:\t%d\n", wrapper_bc_offset_) [all...] |
/external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/ |
nacl.scons | 21 if env.Bit('bitcode'):
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
loader.cpp | 16 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
|
/external/llvm/lib/Bitcode/ |
Makefile | 1 ##===- lib/Bitcode/Makefile --------------------------------*- Makefile -*-===##
|
/external/llvm/lib/Bitcode/Reader/ |
Makefile | 1 ##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===##
|
/external/llvm/lib/Bitcode/Writer/ |
Makefile | 1 ##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===##
|
/external/mesa3d/src/gallium/drivers/radeon/ |
loader.cpp | 16 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
Makefile | 1 ##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===##
|