/external/llvm/unittests/MC/ |
YAMLTest.cpp | 1 //===- llvm/unittest/Object/YAMLTest.cpp - Tests for Object YAML ----------===// 3 // The LLVM Compiler Infrastructure 10 #include "llvm/MC/YAML.h" 11 #include "llvm/Support/YAMLTraits.h" 14 using namespace llvm; 20 namespace llvm { namespace 29 } // end namespace llvm 34 llvm::raw_svector_ostream OS(Buf);
|
/external/llvm/utils/crosstool/ |
create-snapshots.sh | 3 # Creates LLVM SVN snapshots: llvm-$REV.tar.bz2 and llvm-gcc-4.2-$REV.tar.bz2, 4 # where $REV is an SVN revision of LLVM. This is used for creating stable 14 readonly LLVM_PROJECT_SVN="http://llvm.org/svn/llvm-project" 38 for module in "llvm" "llvm-gcc-4.2"; do
|
/frameworks/rs/driver/runtime/ll32/ |
math.ll | 4 declare float @llvm.sqrt.f32(float) 5 declare float @llvm.pow.f32(float, float) 6 declare float @llvm.fabs.f32(float) 7 declare <2 x float> @llvm.fabs.v2f32(<2 x float>) 8 declare <3 x float> @llvm.fabs.v3f32(<3 x float>) 9 declare <4 x float> @llvm.fabs.v4f32(<4 x float>) 12 %1 = tail call float @llvm.sqrt.f32(float %v) 17 %1 = tail call float @llvm.pow.f32(float %v1, float %v2)
|
/art/compiler/llvm/ |
runtime_support_builder_x86.cc | 24 #include <llvm/IR/DerivedTypes.h> 25 #include <llvm/IR/Function.h> 26 #include <llvm/IR/InlineAsm.h> 27 #include <llvm/IR/Module.h> 28 #include <llvm/IR/Type.h> 32 using ::llvm::CallInst; 33 using ::llvm::Function; 34 using ::llvm::FunctionType; 35 using ::llvm::InlineAsm; 36 using ::llvm::Type 41 namespace llvm { namespace in namespace:art [all...] |
runtime_support_builder_arm.cc | 23 #include <llvm/IR/DerivedTypes.h> 24 #include <llvm/IR/Function.h> 25 #include <llvm/IR/InlineAsm.h> 26 #include <llvm/IR/Module.h> 27 #include <llvm/IR/Type.h> 31 using ::llvm::CallInst; 32 using ::llvm::Function; 33 using ::llvm::FunctionType; 34 using ::llvm::InlineAsm; 35 using ::llvm::IntegerType 58 namespace llvm { namespace in namespace:art [all...] |
/external/clang/lib/Driver/ |
ToolChains.h | 3 // The LLVM Compiler Infrastructure 18 #include "llvm/ADT/DenseMap.h" 19 #include "llvm/ADT/Optional.h" 20 #include "llvm/Support/Compiler.h" 80 llvm::Triple GCCTriple; 90 llvm::Optional<Multilib> BiarchSibling; 103 void init(const Driver &D, const llvm::Triple &TargetTriple, 104 const llvm::opt::ArgList &Args); 110 const llvm::Triple &getTriple() const { return GCCTriple; } 136 CollectLibDirsAndTriples(const llvm::Triple &TargetTriple [all...] |
/external/clang/lib/CodeGen/ |
CGObjCMac.cpp | 3 // The LLVM Compiler Infrastructure 28 #include "llvm/ADT/DenseSet.h" 29 #include "llvm/ADT/SetVector.h" 30 #include "llvm/ADT/SmallPtrSet.h" 31 #include "llvm/ADT/SmallString.h" 32 #include "llvm/IR/CallSite.h" 33 #include "llvm/IR/DataLayout.h" 34 #include "llvm/IR/InlineAsm.h" 35 #include "llvm/IR/IntrinsicInst.h" 36 #include "llvm/IR/LLVMContext.h [all...] |
CodeGenFunction.h | 1 //===-- CodeGenFunction.h - Per-Function state for LLVM CodeGen -*- C++ -*-===// 3 // The LLVM Compiler Infrastructure 10 // This is the internal per-function state used for llvm translation. 32 #include "llvm/ADT/ArrayRef.h" 33 #include "llvm/ADT/DenseMap.h" 34 #include "llvm/ADT/SmallVector.h" 35 #include "llvm/IR/ValueHandle.h" 36 #include "llvm/Support/Debug.h" 38 namespace llvm { namespace 97 /// while generating LLVM code [all...] |
SanitizerBlacklist.h | 3 // The LLVM Compiler Infrastructure 17 #include "clang/Basic/LLVM.h" 18 #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 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/InstPrinter/ |
AMDGPUInstPrinter.h | 5 #include "llvm/ADT/StringRef.h" 6 #include "llvm/MC/MCInstPrinter.h" 7 #include "llvm/Support/raw_ostream.h" 9 namespace llvm { namespace 32 } // End namespace llvm
|
/external/clang/test/CodeGen/ |
f16c-builtins.c | 1 // RUN: %clang_cc1 %s -O3 -triple=x86_64-apple-darwin -target-feature +f16c -emit-llvm -o - | FileCheck %s 9 // CHECK: @llvm.x86.vcvtph2ps.128 14 // CHECK: @llvm.x86.vcvtph2ps.256 19 // CHECK: @llvm.x86.vcvtps2ph.128 24 // CHECK: @llvm.x86.vcvtps2ph.256
|
linux-arm-atomic.c | 1 // RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv7-unknown-linux | FileCheck %s 2 // RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv6-unknown-linux | FileCheck %s 3 // RUN: %clang_cc1 %s -emit-llvm -o - -triple=thumbv7-unknown-linux | FileCheck %s 4 // RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv6-unknown-freebsd | FileCheck %s 5 // RUN: %clang_cc1 %s -emit-llvm -o - -triple=armv6-unknown-bitrig | FileCheck %s
|
/external/clang/test/Coverage/ |
codegen.c | 1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -o %t %s 2 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm-bc -o %t %s 3 // RUN: %clang_cc1 -triple i386-unknown-unknown -g -emit-llvm-bc -o %t %s 4 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm-bc -o %t %s 5 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -g -emit-llvm-bc -o %t %s
|
/external/llvm/lib/Target/NVPTX/ |
CMakeLists.txt | 4 tablegen(LLVM NVPTXGenRegisterInfo.inc -gen-register-info) 5 tablegen(LLVM NVPTXGenInstrInfo.inc -gen-instr-info) 6 tablegen(LLVM NVPTXGenAsmWriter.inc -gen-asm-writer) 7 tablegen(LLVM NVPTXGenDAGISel.inc -gen-dag-isel) 8 tablegen(LLVM NVPTXGenSubtargetInfo.inc -gen-subtarget)
|
NVPTXUtilities.h | 3 // The LLVM Compiler Infrastructure 17 #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 &) [all...] |
/external/llvm/test/Bindings/Ocaml/ |
ext_exc.ml | 4 * RUN: %ocamlopt -warn-error A llvm.cmxa llvm_bitreader.cmxa llvm_executionengine.cmxa %t.builddir/ext_exc.ml -o %t 8 let context = Llvm.global_context () 13 ignore (Llvm_bitreader.get_module context (Llvm.MemoryBuffer.of_stdin ())) 18 ignore (Llvm.MemoryBuffer.of_file "/path/to/nonexistent/file") 20 Llvm.IoError _ -> ();;
|
/external/llvm/test/CodeGen/R600/ |
llvm.SI.sendmsg.ll | 11 call void @llvm.SI.sendmsg(i32 34, i32 0); 12 call void @llvm.SI.sendmsg(i32 274, i32 0); 13 call void @llvm.SI.sendmsg(i32 562, i32 0); 14 call void @llvm.SI.sendmsg(i32 3, i32 0); 19 declare void @llvm.SI.sendmsg(i32, i32) #0
|
/external/llvm/test/Linker/ |
redefinition.ll | 3 ; RUN: llvm-as %s -o %t.foo1.bc 4 ; RUN: llvm-as %s -o %t.foo2.bc 5 ; RUN: echo "define void @foo(i32 %x) { ret void }" | llvm-as -o %t.foo3.bc 6 ; RUN: not llvm-link %t.foo1.bc %t.foo2.bc -o %t.bc 2>&1 | FileCheck %s 7 ; RUN: not llvm-link %t.foo1.bc %t.foo3.bc -o %t.bc 2>&1 | FileCheck %s
|
/external/llvm/test/MC/X86/ |
stackmap-nops.ll | 1 ; RUN: llc -mtriple=x86_64-apple-darwin -mcpu=corei7 -disable-fp-elim -filetype=obj %s -o - | llvm-objdump -d - | FileCheck %s 2 ; RUN: llc -mtriple=x86_64-apple-darwin -mcpu=corei7 -disable-fp-elim -filetype=asm %s -o - | llvm-mc -triple=x86_64-apple-darwin -mcpu=corei7 -filetype=obj - | llvm-objdump -d - | FileCheck %s 28 tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 0, i32 0) 29 tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 1, i32 1) 30 tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 2, i32 2) 31 tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 3, i32 3) 32 tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 4, i32 4) 33 tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 5, i32 5) 34 tail call void (i64, i32, ...)* @llvm.experimental.stackmap(i64 6, i32 6 [all...] |
/external/mesa3d/src/gallium/drivers/radeon/InstPrinter/ |
AMDGPUInstPrinter.h | 5 #include "llvm/ADT/StringRef.h" 6 #include "llvm/MC/MCInstPrinter.h" 7 #include "llvm/Support/raw_ostream.h" 9 namespace llvm { namespace 32 } // End namespace llvm
|
/frameworks/compile/libbcc/lib/Support/ |
Disassembler.cpp | 24 #include <llvm/IR/LLVMContext.h> 26 #include <llvm/MC/MCAsmInfo.h> 27 #include <llvm/MC/MCDisassembler.h> 28 #include <llvm/MC/MCInst.h> 29 #include <llvm/MC/MCInstPrinter.h> 30 #include <llvm/MC/MCInstrInfo.h> 31 #include <llvm/MC/MCRegisterInfo.h> 32 #include <llvm/MC/MCSubtargetInfo.h> 34 #include <llvm/Support/MemoryObject.h> 35 #include <llvm/Support/TargetRegistry.h [all...] |
/external/llvm/test/Transforms/GVN/ |
nonescaping-malloc.ll | 14 %"struct.llvm::MallocAllocator" = type <{ i8 }> 15 %"struct.llvm::StringMap<void*,llvm::MallocAllocator>" = type { %"struct.llvm::StringMapImpl", %"struct.llvm::MallocAllocator" } 16 %"struct.llvm::StringMapEntry<void*>" = type { %"struct.llvm::StringMapEntryBase", i8* } 17 %"struct.llvm::StringMapEntryBase" = type { i32 } 18 %"struct.llvm::StringMapImpl" = type { %"struct.llvm::StringMapImpl::ItemBucket"*, i32, i32, i32, i32 [all...] |
/external/clang/www/ |
clang_video-05-25-2007.html | 6 <title>2007 LLVM Developer's Meeting</title> 13 <h1>2007 LLVM Developer's Meeting</h1> 14 Discussion about Clang at the <a href="http://llvm.org/devmtg/2007-05/">2007 LLVM Developer's Meeting</a>. 18 <p><b>Details:</b> New LLVM C Front-end - This talk describes a new from-scratch C frontend (which is aiming to support Objective C and C++ someday) for LLVM, built as a native part of the LLVM system and in the LLVM design style. 22 <li><a href="http://llvm.org/devmtg/2007-05/09-Naroff-CFE.mov">Video (mov file)</a> 23 <li><a href="http://llvm.org/devmtg/2007-05/09-Naroff-CFE.pdf">Lecture slides (PDF)</a [all...] |
/external/llvm/lib/MC/MCParser/ |
MCAsmParser.cpp | 3 // The LLVM Compiler Infrastructure 10 #include "llvm/MC/MCParser/MCAsmParser.h" 11 #include "llvm/ADT/Twine.h" 12 #include "llvm/MC/MCParser/MCAsmLexer.h" 13 #include "llvm/MC/MCParser/MCParsedAsmOperand.h" 14 #include "llvm/MC/MCTargetAsmParser.h" 15 #include "llvm/Support/Debug.h" 16 #include "llvm/Support/SourceMgr.h" 17 #include "llvm/Support/raw_ostream.h" 18 using namespace llvm; [all...] |
/external/llvm/test/Assembler/ |
2007-12-11-AddressSpaces.ll | 1 ; RUN: llvm-as < %s | llvm-dis | grep "addrspace(33)" | count 7 2 ; RUN: llvm-as < %s | llvm-dis | grep "addrspace(42)" | count 2 3 ; RUN: llvm-as < %s | llvm-dis | grep "addrspace(66)" | count 2 4 ; RUN: llvm-as < %s | llvm-dis | grep "addrspace(11)" | count 6 5 ; RUN: llvm-as < %s | llvm-dis | grep "addrspace(22)" | count [all...] |