HomeSort by relevance Sort by last modified time
    Searched refs:llvm (Results 26 - 50 of 2675) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/compile/linkloader/utils/
raw_ostream.h 20 #include <llvm/Support/raw_ostream.h>
21 #include <llvm/Support/Format.h>
23 extern llvm::raw_ostream &out();
31 extern llvm::raw_ostream &operator<<(llvm::raw_ostream &, MyFormat const &);
rsl_assert.cpp 19 #include <llvm/Support/raw_ostream.h>
32 llvm::errs() << "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n";
33 llvm::errs() << "rslAssert [" << file << ":" << line << "] " << expr << "\n";
34 llvm::errs() << "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n";
  /external/llvm/tools/
Makefile 3 # The LLVM Compiler Infrastructure
23 # wider LLVM infrastructure (including Clang).
29 DIRS := llvm-config
30 PARALLEL_DIRS := opt llvm-as llvm-dis \
31 llc llvm-ranlib llvm-ar llvm-nm \
32 llvm-ld llvm-prof llvm-link
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.h 1 //===--- CodeGenTBAA.h - TBAA information for LLVM CodeGen ------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
18 #include "clang/Basic/LLVM.h"
19 #include "llvm/ADT/DenseMap.h"
21 namespace llvm { namespace
37 /// while lowering AST types to LLVM types.
40 llvm::LLVMContext& VMContext;
44 /// MetadataCache - This maps clang::Types to llvm::MDNodes describing them.
45 llvm::DenseMap<const Type *, llvm::MDNode *> MetadataCache
    [all...]
CGBuilder.h 3 // The LLVM Compiler Infrastructure
13 #include "llvm/Support/IRBuilder.h"
20 typedef llvm::IRBuilder<false> CGBuilderTy;
22 typedef llvm::IRBuilder<> CGBuilderTy;
CodeGenModule.h 1 //===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
10 // This is the internal per-translation-unit state used for llvm translation.
26 #include "llvm/Module.h"
27 #include "llvm/ADT/DenseMap.h"
28 #include "llvm/ADT/StringMap.h"
29 #include "llvm/ADT/StringSet.h"
30 #include "llvm/ADT/SmallPtrSet.h"
31 #include "llvm/Support/ValueHandle.h"
33 namespace llvm { namespace
    [all...]
  /external/llvm/lib/Target/ARM/TargetInfo/
ARMTargetInfo.cpp 3 // The LLVM Compiler Infrastructure
11 #include "llvm/Module.h"
12 #include "llvm/Support/TargetRegistry.h"
13 using namespace llvm;
15 Target llvm::TheARMTarget, llvm::TheThumbTarget;
  /external/llvm/lib/Target/PTX/TargetInfo/
PTXTargetInfo.cpp 3 // The LLVM Compiler Infrastructure
11 #include "llvm/Module.h"
12 #include "llvm/Support/TargetRegistry.h"
14 using namespace llvm;
16 Target llvm::ThePTX32Target;
17 Target llvm::ThePTX64Target;
20 // see llvm/ADT/Triple.h
  /external/llvm/lib/Target/PowerPC/TargetInfo/
PowerPCTargetInfo.cpp 3 // The LLVM Compiler Infrastructure
11 #include "llvm/Module.h"
12 #include "llvm/Support/TargetRegistry.h"
13 using namespace llvm;
15 Target llvm::ThePPC32Target, llvm::ThePPC64Target;
  /external/llvm/lib/Target/Sparc/TargetInfo/
SparcTargetInfo.cpp 3 // The LLVM Compiler Infrastructure
11 #include "llvm/Module.h"
12 #include "llvm/Support/TargetRegistry.h"
13 using namespace llvm;
15 Target llvm::TheSparcTarget;
16 Target llvm::TheSparcV9Target;
  /external/llvm/lib/Target/X86/TargetInfo/
X86TargetInfo.cpp 3 // The LLVM Compiler Infrastructure
11 #include "llvm/Module.h"
12 #include "llvm/Support/TargetRegistry.h"
13 using namespace llvm;
15 Target llvm::TheX86_32Target, llvm::TheX86_64Target;
  /external/llvm/bindings/ocaml/llvm/
Makefile 1 ##===- bindings/ocaml/llvm/Makefile ------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
10 # This is the makefile for the Objective Caml Llvm interface.
15 LIBRARYNAME := llvm
17 UsedOcamLibs := llvm
25 DestMETA := $(PROJ_libocamldir)/META.llvm
28 copy-meta: $(OcamlDir)/META.llvm
30 $(OcamlDir)/META.llvm: META.llvm
33 install-meta:: $(ObjDir)/META.llvm
    [all...]
  /external/llvm/lib/MC/MCDisassembler/
EDDisassembler.h 1 //===-- EDDisassembler.h - LLVM Enhanced Disassembler -----------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
21 #include "llvm/ADT/OwningPtr.h"
22 #include "llvm/ADT/Triple.h"
23 #include "llvm/Support/raw_ostream.h"
24 #include "llvm/Support/Mutex.h"
30 namespace llvm { namespace
77 llvm::Triple::ArchType Arch;
107 static EDDisassembler *getDisassembler(llvm::Triple::ArchType arch,
116 static EDDisassembler *getDisassembler(llvm::StringRef str
    [all...]
  /external/llvm/lib/Target/CppBackend/TargetInfo/
CppBackendTargetInfo.cpp 3 // The LLVM Compiler Infrastructure
11 #include "llvm/Module.h"
12 #include "llvm/Support/TargetRegistry.h"
13 using namespace llvm;
15 Target llvm::TheCppBackendTarget;
  /external/mesa3d/src/glsl/
ir_to_llvm.h 4 #include "llvm/Module.h"
7 struct llvm::Module * glsl_ir_to_llvm_module(struct exec_list *ir, llvm::Module * mod,
  /external/clang/include/clang/CodeGen/
ModuleBuilder.h 1 //===--- CodeGen/ModuleBuilder.h - Build LLVM from ASTs ---------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
20 namespace llvm { namespace
32 virtual llvm::Module* GetModule() = 0;
33 virtual llvm::Module* ReleaseModule() = 0;
42 llvm::LLVMContext& C);
  /external/clang/include/clang/Frontend/
FrontendPluginRegistry.h 3 // The LLVM Compiler Infrastructure
14 #include "llvm/Support/Registry.h"
19 typedef llvm::Registry<PluginASTAction> FrontendPluginRegistry;
  /external/llvm/include/llvm/CodeGen/
GCs.h 3 // The LLVM Compiler Infrastructure
17 namespace llvm { namespace
  /external/llvm/include/llvm/MC/
MCAsmInfoCOFF.h 3 // The LLVM Compiler Infrastructure
13 #include "llvm/MC/MCAsmInfo.h"
15 namespace llvm { namespace
MCAsmInfoDarwin.h 3 // The LLVM Compiler Infrastructure
18 #include "llvm/MC/MCAsmInfo.h"
20 namespace llvm { namespace
  /external/llvm/include/llvm/TableGen/
Main.h 1 //===- llvm/TableGen/Main.h - tblgen entry point ----------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
17 namespace llvm { namespace
  /external/llvm/lib/MC/MCParser/
MCTargetAsmParser.cpp 3 // The LLVM Compiler Infrastructure
10 #include "llvm/MC/MCTargetAsmParser.h"
11 using namespace llvm;
  /external/llvm/lib/Support/
Valgrind.cpp 3 // The LLVM Compiler Infrastructure
16 #include "llvm/Support/Valgrind.h"
17 #include "llvm/Config/config.h"
32 bool llvm::sys::RunningOnValgrind() {
38 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) {
47 bool llvm::sys::RunningOnValgrind() {
51 void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) {
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCAsmInfo.h 3 // The LLVM Compiler Infrastructure
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/MC/MCAsmInfo.h"
20 namespace llvm { namespace
28 } // namespace llvm
  /external/mesa3d/src/pixelflinger2/
texture.h 23 namespace llvm namespace
31 void DeclareTextureFunctions(llvm::Module * mod);
32 void AddTextureFunctionMappings(llvm::Module * mod, llvm::ExecutionEngine * ee);

Completed in 939 milliseconds

12 3 4 5 6 7 8 91011>>