OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bitcode
(Results
51 - 75
of
264
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/llvm/lib/Bitcode/Reader/
LLVMBuild.txt
1
;===- ./lib/
Bitcode
/Reader/LLVMBuild.txt -----------------------*- Conf -*--===;
21
parent =
Bitcode
BitReader.cpp
11
#include "llvm/
Bitcode
/ReaderWriter.h"
19
/* Builds a module from the
bitcode
in the specified memory buffer, returning a
/external/llvm/lib/Bitcode/Writer/
LLVMBuild.txt
1
;===- ./lib/
Bitcode
/Writer/LLVMBuild.txt -----------------------*- Conf -*--===;
21
parent =
Bitcode
/external/llvm/test/Bindings/Ocaml/
bitreader.ml
55
(* corrupt the
bitcode
*)
58
output_string oc "not a
bitcode
file\n";
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
LLVMBuild.txt
1
;===- ./lib/
Bitcode
/Reader/LLVMBuild.txt -----------------------*- Conf -*--===;
21
parent =
Bitcode
BitReader.cpp
11
#include "llvm/
Bitcode
/ReaderWriter.h"
19
/* Builds a module from the
bitcode
in the specified memory buffer, returning a
/external/llvm/docs/CommandGuide/
llvm-nm.rst
1
llvm-nm - list LLVM
bitcode
and object file's symbol table
16
The :program:`llvm-nm` utility lists the names of symbols from the LLVM
bitcode
33
Named object is referenced but undefined in this
bitcode
file
79
Because LLVM
bitcode
files typically contain objects that are not considered to
82
symbol in a LLVM
bitcode
file, even symbols which are defined in the
bitcode
lli.rst
1
lli - directly execute programs from LLVM
bitcode
16
**lli** directly executes programs in LLVM
bitcode
format. It takes a program
17
in LLVM
bitcode
format and executes it using a just-in-time compiler, if one is
22
If *filename* is not specified, then **lli** reads the LLVM
bitcode
for the
88
Override the target triple specified in the input
bitcode
file with the
97
encoded in the
bitcode
file. See the output of **llc -help** for a list of
/external/llvm/tools/llvm-dis/
llvm-dis.cpp
11
// llvm-dis [options] - Read LLVM
bitcode
from stdin, write asm to stdout
12
// llvm-dis [options] x.bc - Read LLVM
bitcode
from the x.bc file, write asm
21
#include "llvm/
Bitcode
/ReaderWriter.h"
38
InputFilename(cl::Positional, cl::desc("<input
bitcode
>"), cl::init("-"));
128
// Use the
bitcode
streaming interface
148
errs() << "
bitcode
didn't read correctly.\n";
/external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp
1
//===-- llvm-bcanalyzer.cpp -
Bitcode
Analyzer --------------------------===//
11
// llvm-bcanalyzer [options] - Read LLVM
bitcode
from stdin
12
// llvm-bcanalyzer [options] x.bc - Read LLVM
bitcode
from the x.bc file
16
// --dump - Dump low-level
bitcode
structure in readable format
18
// This tool provides analytical information about a
bitcode
file. It is
19
// intended as an aid to developers of
bitcode
reading and writing software. It
20
// produces on std::out a summary of the
bitcode
file that shows various
22
// detailed and contains information about individual
bitcode
blocks and the
24
// The tool is also able to print a
bitcode
file in a straight forward text
26
// the
bitcode
file (-dump option)
[
all
...]
/external/llvm/tools/bugpoint/
OptimizerDriver.cpp
20
#include "llvm/
Bitcode
/ReaderWriter.h"
48
/// writeProgramToFile - This writes the current "Program" to the named
bitcode
75
// Output the input to the current pass to a
bitcode
file, emit a message
84
outs() << "Emitted
bitcode
to '" << Filename << "'\n";
102
/// runPasses - Run the specified passes on Program, outputting a
bitcode
file
105
/// otherwise return false. If DeleteOutput is set to true, the
bitcode
is
140
errs() << "Error opening
bitcode
file: " << inputFilename.str() << "\n";
146
errs() << "Error writing
bitcode
file: " << inputFilename.str() << "\n";
211
// If we are supposed to delete the
bitcode
file or if the passes crashed,
261
errs() << getToolName() << ": Error reading
bitcode
file '
[
all
...]
ExecutionDriver.cpp
11
// various ways of running LLVM
bitcode
.
53
"compile the
bitcode
. Useful to avoid linking."),
56
"the
bitcode
. Useful for cross-compilation."),
66
"the
bitcode
. Useful for cross-compilation."),
95
cl::desc("Command to compile the
bitcode
(use with -compile-custom) "
100
cl::desc("Command to execute the
bitcode
(use with -run-custom) "
267
// Emit the program to a
bitcode
file...
276
errs() << ToolName << ": Error emitting
bitcode
to file '"
281
// Remove the temporary
bitcode
file when we are done.
304
// Emit the program to a
bitcode
file..
[
all
...]
/frameworks/compile/libbcc/lib/Renderscript/runtime/
rs_structs.h
16
* information, we would not be able to inline the
bitcode
, thus resulting in
73
* information, we would not be able to inline the
bitcode
, thus resulting in
107
* information, we would not be able to inline the
bitcode
, thus resulting in
135
* information, we would not be able to inline the
bitcode
, thus resulting in
167
* information, we would not be able to inline the
bitcode
, thus resulting in
205
* information, we would not be able to inline the
bitcode
, thus resulting in
241
* information, we would not be able to inline the
bitcode
, thus resulting in
/external/llvm/docs/
LinkTimeOptimization.rst
24
treates LLVM
bitcode
files like native object files and allows mixing and
26
bitcode
files. This tight integration between the linker and LLVM optimizer
40
* Input source file ``a.c`` is compiled into LLVM
bitcode
form.
90
% clang -emit-llvm -c a.c -o a.o # <-- a.o is LLVM
bitcode
file
95
visible symbol defined in LLVM
bitcode
file. The linker completes its usual
148
Phase 1 : Read LLVM
Bitcode
Files
152
information. This includes native object files as well as LLVM
bitcode
files.
156
returns that the file is an LLVM
bitcode
file, the linker then iterates over the
172
content of input LLVM
bitcode
files. If dead code stripping is enabled then the
175
Phase 3 : Optimize
Bitcode
File
[
all
...]
/frameworks/rs/
rsScriptC.cpp
230
const uint8_t *
bitcode
,
233
//ALOGE("runCompiler %p %p %p %p %p %i", rsc, this, resName, cacheDir,
bitcode
, bitcodeLen);
237
bcinfo::BitcodeWrapper bcWrapper((const char *)
bitcode
, bitcodeLen);
239
ALOGE("
Bitcode
is not in proper container format (raw or wrapper)");
249
// about the
bitcode
.
256
BT = new bcinfo::BitcodeTranslator((const char *)
bitcode
, bitcodeLen,
259
ALOGE("Failed to translate
bitcode
from version: %u", sdkVersion);
264
bitcode
= (const uint8_t *) BT->getTranslatedBitcode();
280
if (!rsc->mHal.funcs.script.init(rsc, this, resName, cacheDir,
bitcode
, bitcodeLen, 0)) {
/external/llvm/
README.android
43
* This downstreaming could have broken
bitcode
compatibility
44
* Upstream was migrating from 2.7
bitcode
to 3.0
bitcode
.
52
==> * 020a5a4 - remove
bitcode
reader support for LLVM 2.7 metadata encoding. (13 days ago) <Chris Lattner>
54
* Our
bitcode
reader can read both 2.7 and 3.0 versions. Writer is tracking upstream.
CODE_OWNERS.TXT
13
D: LLVM
Bitcode
(lib/
Bitcode
/* include/llvm/
Bitcode
/*)
/external/llvm/examples/ModuleMaker/
ModuleMaker.cpp
11
// emitting it as a
bitcode
file to standard out. This is just to show how
16
#include "llvm/
Bitcode
/ReaderWriter.h"
58
// Output the
bitcode
file to stdout
/external/llvm/lib/Archive/
ArchiveInternals.h
18
#include "llvm/
Bitcode
/Archive.h"
35
/// The ArchiveMemberHeader structure is used internally for
bitcode
73
// Get just the externally visible defined symbols from the
bitcode
/frameworks/compile/slang/BitWriter_2_9/
BitcodeWriterPass.cpp
1
//===---
Bitcode
/Writer/BitcodeWriterPass.cpp -
Bitcode
Writer ------------===//
31
const char *getPassName() const { return "
Bitcode
Writer"; }
/frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriterPass.cpp
1
//===---
Bitcode
/Writer/BitcodeWriterPass.cpp -
Bitcode
Writer ------------===//
31
const char *getPassName() const { return "
Bitcode
Writer"; }
/prebuilts/sdk/tools/linux/
bcc_compat
/external/llvm/include/llvm-c/
BitReader.h
11
|* implements input of the LLVM
bitcode
format. *|
35
/* Builds a module from the
bitcode
in the specified memory buffer, returning a
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitReader.cpp
11
#include "llvm/
Bitcode
/ReaderWriter.h"
19
/* Builds a module from the
bitcode
in the specified memory buffer, returning a
BitReader_2_7.h
22
#include "llvm/
Bitcode
/BitstreamReader.h"
23
#include "llvm/
Bitcode
/LLVMBitCodes.h"
Completed in 345 milliseconds
1
2
3
4
5
6
7
8
9
10
11