Searched refs:llvm (Results 51 - 75 of 4004) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/ADT/
H A DNone.h19 namespace llvm { namespace
/external/llvm/lib/MC/
H A DMCAsmInfoELF.cpp15 #include "llvm/MC/MCAsmInfoELF.h"
16 using namespace llvm;
/external/llvm/lib/MC/MCParser/
H A DMCTargetAsmParser.cpp10 #include "llvm/MC/MCTargetAsmParser.h"
11 using namespace llvm;
/external/llvm/lib/Target/PowerPC/TargetInfo/
H A DPowerPCTargetInfo.cpp11 #include "llvm/IR/Module.h"
12 #include "llvm/Support/TargetRegistry.h"
13 using namespace llvm;
15 Target llvm::ThePPC32Target, llvm::ThePPC64Target, llvm::ThePPC64LETarget;
/external/llvm/tools/obj2yaml/
H A Dobj2yaml.h16 #include "llvm/Object/COFF.h"
17 #include "llvm/Support/raw_ostream.h"
20 std::error_code coff2yaml(llvm::raw_ostream &Out,
21 const llvm::object::COFFObjectFile &Obj);
22 std::error_code elf2yaml(llvm::raw_ostream &Out,
23 const llvm::object::ObjectFile &Obj);
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600MachineFunctionInfo.cpp12 using namespace llvm;
H A DSIMachineFunctionInfo.cpp13 using namespace llvm;
/external/clang/lib/CodeGen/
H A DCGDebugInfo.h10 // This is the source-level debug info generator for llvm translation.
22 #include "llvm/ADT/DenseMap.h"
23 #include "llvm/IR/DIBuilder.h"
24 #include "llvm/IR/DebugInfo.h"
25 #include "llvm/IR/ValueHandle.h"
26 #include "llvm/Support/Allocator.h"
28 namespace llvm { namespace
47 /// and is responsible for emitting to llvm globals or pass directly to
54 llvm::DIBuilder DBuilder;
55 llvm
[all...]
H A DCGOpenMPRuntime.h18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/IR/Type.h"
20 #include "llvm/IR/Value.h"
22 namespace llvm { namespace
34 } // namespace llvm
47 /// from http://llvm.org/svn/llvm-project/openmp/trunk/runtime/src/kmp.h
78 llvm::Constant *DefaultOpenMPPSource;
80 typedef llvm::DenseMap<unsigned, llvm
[all...]
H A DCodeGenModule.h10 // This is the internal per-translation-unit state used for llvm translation.
28 #include "llvm/ADT/DenseMap.h"
29 #include "llvm/ADT/SetVector.h"
30 #include "llvm/ADT/SmallPtrSet.h"
31 #include "llvm/ADT/StringMap.h"
32 #include "llvm/IR/CallingConv.h"
33 #include "llvm/IR/Module.h"
34 #include "llvm/IR/ValueHandle.h"
36 namespace llvm { namespace
108 llvm
[all...]
H A DSanitizerBlacklist.h18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/Support/SpecialCaseList.h"
22 namespace llvm { namespace
32 std::unique_ptr<llvm::SpecialCaseList> SCL;
35 SanitizerBlacklist(llvm::SpecialCaseList *SCL) : SCL(SCL) {}
36 bool isIn(const llvm::Module &M,
38 bool isIn(const llvm::Function &F) const;
39 bool isIn(const llvm::GlobalVariable &G,
H A DCodeGenTBAA.h19 #include "llvm/ADT/DenseMap.h"
20 #include "llvm/IR/MDBuilder.h"
22 namespace llvm { namespace
39 TBAAPathTag(const Type *B, const llvm::MDNode *A, uint64_t O)
42 const llvm::MDNode *AccessN;
55 llvm::MDBuilder MDHelper;
57 /// MetadataCache - This maps clang::Types to scalar llvm::MDNodes describing
59 llvm::DenseMap<const Type *, llvm::MDNode *> MetadataCache;
61 llvm
127 namespace llvm { namespace
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.cpp45 #include <llvm-c/Core.h>
46 #include <llvm-c/ExecutionEngine.h>
47 #include <llvm/Target/TargetOptions.h>
48 #include <llvm/ExecutionEngine/ExecutionEngine.h>
49 #include <llvm/ExecutionEngine/JITEventListener.h>
51 #include <llvm/ADT/Triple.h>
52 #include <llvm/ExecutionEngine/JITMemoryManager.h>
54 #include <llvm/Support/CommandLine.h>
55 #include <llvm/Support/PrettyStackTrace.h>
58 #include <llvm/Suppor
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.cpp45 #include <llvm-c/Core.h>
46 #include <llvm-c/ExecutionEngine.h>
47 #include <llvm/Target/TargetOptions.h>
48 #include <llvm/ExecutionEngine/ExecutionEngine.h>
49 #include <llvm/ExecutionEngine/JITEventListener.h>
51 #include <llvm/ADT/Triple.h>
52 #include <llvm/ExecutionEngine/JITMemoryManager.h>
54 #include <llvm/Support/CommandLine.h>
55 #include <llvm/Support/PrettyStackTrace.h>
58 #include <llvm/Suppor
[all...]
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARC.cpp17 #include "llvm-c/Core.h"
18 #include "llvm-c/Initialization.h"
19 #include "llvm/InitializePasses.h"
20 #include "llvm/Support/CommandLine.h"
22 namespace llvm { namespace
26 using namespace llvm;
27 using namespace llvm::objcarc;
30 bool llvm::objcarc::EnableARCOpts;
39 void llvm::initializeObjCARCOpts(PassRegistry &Registry) {
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h1 //===-- llvm-readobj.h ----------------------------------------------------===//
13 #include "llvm/Support/CommandLine.h"
16 namespace llvm { namespace
25 } // namespace llvm
28 extern llvm::cl::list<std::string> InputFilenames;
29 extern llvm::cl::opt<bool> FileHeaders;
30 extern llvm::cl::opt<bool> Sections;
31 extern llvm::cl::opt<bool> SectionRelocations;
32 extern llvm::cl::opt<bool> SectionSymbols;
33 extern llvm
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.h17 #include "llvm/IR/Function.h"
18 #include "llvm/IR/GlobalVariable.h"
19 #include "llvm/IR/IntrinsicInst.h"
20 #include "llvm/IR/Value.h"
26 namespace llvm { namespace
31 void clearAnnotationCache(const llvm::Module *);
33 bool findOneNVVMAnnotation(const llvm::GlobalValue *, std::string, unsigned &);
34 bool findAllNVVMAnnotation(const llvm::GlobalValue *, std::string,
37 bool isTexture(const llvm::Value &);
38 bool isSurface(const llvm
[all...]
/external/lldb/include/lldb/Expression/
H A DIRForTarget.h19 #include "llvm/Pass.h"
23 namespace llvm { namespace
59 class IRForTarget : public llvm::ModulePass
107 /// Implementation of the llvm::ModulePass::runOnModule() function.
122 runOnModule (llvm::Module &llvm_module);
127 /// Implementation of the llvm::ModulePass::assignPassManager()
131 assignPassManager (llvm::PMStack &pass_mgr_stack,
132 llvm::PassManagerType pass_mgr_type = llvm::PMT_ModulePassManager);
137 /// Implementation of the llvm
[all...]
/external/llvm/utils/TableGen/
H A DX86DisassemblerShared.h19 llvm::X86Disassembler::OperandSpecifier
20 operands[llvm::X86Disassembler::X86_MAX_OPERANDS];
21 llvm::X86Disassembler::InstructionContext insnContext;
25 insnContext = llvm::X86Disassembler::IC;
36 llvm::X86Disassembler::InstrUID instructionIDs[256];
51 OpcodeDecision opcodeDecisions[llvm::X86Disassembler::IC_max];
/external/llvm/test/MC/X86/
H A Dx86_nop.s1 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=generic %s | llvm-objdump -d - | FileCheck %s
2 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i386 %s | llvm-objdump -d - | FileCheck %s
3 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i486 %s | llvm-objdump -d - | FileCheck %s
4 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=i586 %s | llvm-objdump -d - | FileCheck %s
5 # RUN: llvm-mc -filetype=obj -triple=i686-pc-linux -mcpu=pentium %s | llvm
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h27 class CompoundValData : public llvm::FoldingSetNode {
29 llvm::ImmutableList<SVal> L;
32 CompoundValData(QualType t, llvm::ImmutableList<SVal> l)
35 typedef llvm::ImmutableList<SVal>::iterator iterator;
39 static void Profile(llvm::FoldingSetNodeID& ID, QualType T,
40 llvm::ImmutableList<SVal> L);
42 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, T, L); }
45 class LazyCompoundValData : public llvm::FoldingSetNode {
55 static void Profile(llvm::FoldingSetNodeID& ID,
59 void Profile(llvm
[all...]
/external/lldb/scripts/
H A Dbuild-lldb-llvm-clang4 # build-lldb-llvm-clang <revision> [Debug|Release|BuildAndIntegration]
5 # build-lldb-llvm-clang <llvm-revision> <clang-revision> [Debug|Release|BuildAndIntegration]
12 echo "Usage:\n build-lldb-llvm-clang <llvm-revision> [<clang-revision> Debug|Release||BuildAndIntegration]"
21 svn co -q -r $LLVM_REVISION http://llvm.org/svn/llvm-project/llvm/trunk llvm
23 # change directory to "./llvm"
[all...]
/external/llvm/docs/_themes/llvm-theme/
H A Dtheme.conf3 stylesheet = llvm-theme.css
/external/llvm/lib/CodeGen/
H A DOcamlGC.cpp10 // This file implements lowering for the llvm.gc* intrinsics compatible with
17 #include "llvm/CodeGen/GCs.h"
18 #include "llvm/CodeGen/GCStrategy.h"
20 using namespace llvm;
32 void llvm::linkOcamlGC() { }
/external/llvm/tools/llvm-ar/
H A DMakefile1 ##===- tools/llvm-ar/Makefile ------------------------------*- Makefile -*-===##
11 TOOLNAME := llvm-ar
12 TOOLALIAS = llvm-ranlib

Completed in 2997 milliseconds

1234567891011>>