Searched refs:llvm (Results 376 - 400 of 4004) sorted by relevance

<<11121314151617181920>>

/external/llvm/test/MC/X86/AlignedBundling/
H A Dlock-without-bundle-mode-error.s1 # RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
H A Dunlock-without-lock-error.s1 # RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - 2>&1 | FileCheck %s
/external/llvm/test/MC/X86/
H A Dx86-target-directives.s1 # RUN: not llvm-mc -triple i386 -filetype asm -o - %s 2>&1 | FileCheck %s
/external/llvm/tools/llvm-mc/
H A DAndroid.mk7 # llvm-mc command line tool
11 llvm-mc.cpp \
50 LOCAL_MODULE := llvm-mc
61 include $(LLVM_ROOT_PATH)/llvm.mk
/external/llvm/tools/llvm-nm/
H A DAndroid.mk7 # llvm-nm command line tool
11 llvm-nm.cpp
49 LOCAL_MODULE := llvm-nm
60 include $(LLVM_ROOT_PATH)/llvm.mk
/external/llvm/tools/llvm-readobj/
H A DAndroid.mk7 # llvm-readobj command line tool
16 llvm-readobj.cpp \
36 LOCAL_MODULE := llvm-readobj
47 include $(LLVM_ROOT_PATH)/llvm.mk
H A DError.cpp1 //===- Error.cpp - system_error extensions for llvm-readobj -----*- C++ -*-===//
10 // This defines a new error_category for the llvm-readobj tool.
15 #include "llvm/Support/ErrorHandling.h"
17 using namespace llvm;
28 return "llvm.readobj";
49 namespace llvm { namespace
54 } // namespace llvm
H A DError.h1 //===- Error.h - system_error extensions for llvm-readobj -------*- C++ -*-===//
10 // This declares a new error_category for the llvm-readobj tool.
19 namespace llvm { namespace
35 } // namespace llvm
38 template <> struct is_error_code_enum<llvm::readobj_error> : std::true_type {};
/external/llvm/tools/llvm-rtdyld/
H A DAndroid.mk7 # llvm-rtdyld command line tool
11 llvm-rtdyld.cpp
52 LOCAL_MODULE := llvm-rtdyld
63 include $(LLVM_ROOT_PATH)/llvm.mk
/external/llvm/tools/obj2yaml/
H A DError.cpp11 #include "llvm/Support/ErrorHandling.h"
13 using namespace llvm;
40 namespace llvm { namespace
45 } // namespace llvm
/external/llvm/utils/
H A Dcountloc.sh15 # The script takes one optional option, -topdir, which specifies the top llvm
16 # source directory. If it is not specified then the llvm-config tool is
28 TOPDIR=`llvm-config --src-root`
/external/clang/lib/CodeGen/
H A DCodeGenTypes.h20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/IR/Module.h"
24 namespace llvm { namespace
65 llvm::Module &TheModule;
66 const llvm::DataLayout &TheDataLayout;
78 llvm::DenseMap<const ObjCInterfaceType*, llvm::Type *> InterfaceTypes;
80 /// CGRecordLayouts - This maps llvm struct type with corresponding
82 llvm::DenseMap<const Type*, CGRecordLayout *> CGRecordLayouts;
86 llvm
[all...]
H A DCodeGenPGO.h21 #include "llvm/ADT/StringMap.h"
22 #include "llvm/Support/MemoryBuffer.h"
36 llvm::GlobalValue::LinkageTypes VarLinkage;
40 llvm::GlobalVariable *RegionCounters;
41 std::unique_ptr<llvm::DenseMap<const Stmt *, unsigned>> RegionCounterMap;
42 std::unique_ptr<llvm::DenseMap<const Stmt *, uint64_t>> StmtCountMap;
81 llvm::DenseMap<const Stmt*, uint64_t>::const_iterator
98 llvm::MDNode *createBranchWeights(uint64_t TrueCount, uint64_t FalseCount);
99 llvm::MDNode *createBranchWeights(ArrayRef<uint64_t> Weights);
100 llvm
[all...]
H A DCGValue.h1 //===-- CGValue.h - LLVM CodeGen wrappers for llvm::Value* ------*- C++ -*-===//
10 // These classes implement wrappers around llvm::Value in order to
21 #include "llvm/IR/Value.h"
23 namespace llvm { namespace
41 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1;
43 llvm::PointerIntPair<llvm::Value *, 1, bool> V2;
53 llvm::Value *getScalarVal() const {
60 std::pair<llvm
[all...]
H A DCGCXX.cpp27 #include "llvm/ADT/StringExtras.h"
120 llvm::GlobalValue::LinkageTypes Linkage = getFunctionLinkage(AliasDecl);
123 if (!llvm::GlobalAlias::isValidLinkage(Linkage))
126 llvm::GlobalValue::LinkageTypes TargetLinkage =
131 llvm::GlobalValue *Entry = GetGlobalValue(MangledName);
138 llvm::PointerType *AliasType
144 auto *Ref = cast<llvm::GlobalValue>(GetAddrOfGlobal(TargetDecl));
145 llvm::Constant *Aliasee = Ref;
147 Aliasee = llvm::ConstantExpr::getBitCast(Ref, AliasType);
151 if (llvm
[all...]
H A DCGBlocks.cpp20 #include "llvm/ADT/SmallSet.h"
21 #include "llvm/IR/CallSite.h"
22 #include "llvm/IR/DataLayout.h"
23 #include "llvm/IR/Module.h"
46 static llvm::Constant *buildGlobalBlock(CodeGenModule &CGM,
48 llvm::Constant *blockFn);
51 static llvm::Constant *buildCopyHelper(CodeGenModule &CGM,
57 static llvm::Constant *buildDisposeHelper(CodeGenModule &CGM,
76 static llvm::Constant *buildBlockDescriptor(CodeGenModule &CGM,
80 llvm
[all...]
H A DCGCleanup.cpp37 llvm::Value *V = rv.getScalarVal();
44 llvm::Value *addr = CGF.CreateTempAlloca(V->getType(), "saved-rvalue");
51 llvm::Type *ComplexTy =
52 llvm::StructType::get(V.first->getType(), V.second->getType(),
54 llvm::Value *addr = CGF.CreateTempAlloca(ComplexTy, "saved-complex");
61 llvm::Value *V = rv.getAggregateAddr(); // TODO: volatile?
65 llvm::Value *addr = CGF.CreateTempAlloca(V->getType(), "saved-rvalue");
84 llvm::Value *real =
86 llvm::Value *imag =
254 llvm
[all...]
/external/clang/unittests/Format/
H A DFormatTestProto.cpp12 #include "llvm/Support/Debug.h"
22 static std::string format(llvm::StringRef Code, unsigned Offset,
24 DEBUG(llvm::errs() << "---\n");
25 DEBUG(llvm::errs() << Code << "\n\n");
30 DEBUG(llvm::errs() << "\n" << Result << "\n\n");
34 static std::string format(llvm::StringRef Code) {
40 static void verifyFormat(llvm::StringRef Code) {
/external/lldb/tools/lldb-perf/common/clang/
H A Dbuild-clang.sh3 if [ -d "llvm-build" ]; then
4 echo "Using existing 'llvm-build' directory..."
6 mkdir llvm-build
9 cd llvm-build
11 if [ -d "llvm" ]; then
12 echo "Using existing 'llvm' directory..."
14 svn co --revision 176809 http://llvm.org/svn/llvm-project/llvm/trunk llvm
[all...]
/external/llvm/include/llvm/MC/
H A DMCAsmLayout.h13 #include "llvm/ADT/DenseMap.h"
14 #include "llvm/ADT/SmallVector.h"
16 namespace llvm { namespace
32 typedef llvm::SmallVectorImpl<MCSectionData*>::const_iterator const_iterator;
33 typedef llvm::SmallVectorImpl<MCSectionData*>::iterator iterator;
39 llvm::SmallVector<MCSectionData*, 16> SectionOrder;
77 llvm::SmallVectorImpl<MCSectionData*> &getSectionOrder() {
80 const llvm::SmallVectorImpl<MCSectionData*> &getSectionOrder() const {
118 } // end namespace llvm
/external/llvm/test/MC/Mips/
H A Delf_eflags_nan2008.s1 # RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux -mcpu=mips32 %s -o - | \
2 # RUN: llvm-readobj -h | \
4 # RUN: llvm-mc -triple mipsel-unknown-linux -mcpu=mips32 %s -o -| \
/external/llvm/test/MC/PowerPC/
H A Dppc-machine.s1 # RUN: llvm-mc -triple powerpc-unknown-unknown %s
2 # RUN: llvm-mc -triple powerpc64-unknown-unknown %s
3 # RUN: llvm-mc -triple powerpc64le-unknown-unknown %s
/external/llvm/utils/release/
H A Dmerge.sh56 if ! svn ls http://llvm.org/svn/llvm-project/$proj/trunk > /dev/null 2>&1 ; then
64 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&1
70 svn merge -c $rev https://llvm.org/svn/llvm-project/$proj/trunk . || exit 1
/external/clang/include/clang/Serialization/
H A DModule.h21 #include "llvm/ADT/SetVector.h"
22 #include "llvm/Bitcode/BitstreamReader.h"
26 namespace llvm { namespace
56 llvm::OnDiskIterableChainedHashTable<reader::ASTDeclContextNameLookupTrait>
71 llvm::PointerIntPair<const FileEntry *, 2, unsigned> Val;
163 std::unique_ptr<llvm::MemoryBuffer> Buffer;
172 llvm::BitstreamReader StreamFile;
175 llvm::BitstreamCursor Stream;
196 llvm::BitstreamCursor InputFilesCursor;
213 llvm
[all...]
/external/llvm/bindings/ocaml/transforms/scalar/
H A Dllvm_scalar_opts.mli15 (** See the [llvm::createConstantPropagationPass] function. *)
20 (** See the [llvm::createSCCPPass] function. *)
24 (** See [llvm::createDeadStoreEliminationPass] function. *)
29 (** See The [llvm::createAggressiveDCEPass] function. *)
33 (** See the [llvm::createScalarReplAggregatesPass] function. *)
38 (** See the [llvm::createScalarReplAggregatesPassSSA] function. *)
43 (** See the [llvm::createScalarReplAggregatesWithThreshold] function. *)
49 (** See the [llvm::createIndVarSimplifyPass] function. *)
54 (** See the [llvm::createInstructionCombiningPass] function. *)
60 (** See the [llvm
[all...]

Completed in 7286 milliseconds

<<11121314151617181920>>