/external/llvm/lib/Target/Mips/ |
CMakeLists.txt | 3 tablegen(LLVM MipsGenRegisterInfo.inc -gen-register-info) 4 tablegen(LLVM MipsGenInstrInfo.inc -gen-instr-info) 5 tablegen(LLVM MipsGenDisassemblerTables.inc -gen-disassembler) 6 tablegen(LLVM MipsGenCodeEmitter.inc -gen-emitter) 7 tablegen(LLVM MipsGenMCCodeEmitter.inc -gen-emitter -mc-emitter) 8 tablegen(LLVM MipsGenAsmWriter.inc -gen-asm-writer) 9 tablegen(LLVM MipsGenDAGISel.inc -gen-dag-isel) 10 tablegen(LLVM MipsGenFastISel.inc -gen-fast-isel) 11 tablegen(LLVM MipsGenCallingConv.inc -gen-callingconv) 12 tablegen(LLVM MipsGenSubtargetInfo.inc -gen-subtarget [all...] |
/external/llvm/test/Assembler/ |
2002-07-25-ReturnPtrFunction.ll | 4 ; RUN: llvm-as < %s | llvm-dis | llvm-as
|
auto_upgrade_intrinsics.ll | 2 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s 4 declare i8 @llvm.ctlz.i8(i8) 5 declare i16 @llvm.ctlz.i16(i16) 6 declare i32 @llvm.ctlz.i32(i32) 7 declare i42 @llvm.ctlz.i42(i42) ; Not a power-of-2 10 declare i32 @llvm.objectsize.i32(i8*, i1) nounwind readonly 17 ; CHECK: call i8 @llvm.ctlz.i8(i8 %a, i1 false) 18 call i8 @llvm.ctlz.i8(i8 %a) 19 ; CHECK: call i16 @llvm.ctlz.i16(i16 %b, i1 false [all...] |
/external/llvm/test/Bitcode/ |
invalid.ll | 1 ; RUN: not llvm-dis < %s.bc 2>&1 | FileCheck %s 3 ; CHECK: llvm-dis{{(\.EXE|\.exe)?}}: Invalid value 6 ; The test checks that LLVM reports the error and doesn't access freed memory
|
/external/llvm/test/CodeGen/X86/GC/ |
fat.ll | 1 ; RUN: not llvm-as < %s >& /dev/null 3 declare void @llvm.gcroot(i8**, i8*) nounwind 8 call void @llvm.gcroot(i8** %st_ptr, i8* null)
|
outside.ll | 1 ; RUN: not llvm-as < %s >& /dev/null 3 declare void @llvm.gcroot(i8**, i8*) 7 call void @llvm.gcroot(i8** %root, i8* null)
|
/external/llvm/test/Feature/ |
README.txt | 1 This directory contains test cases for individual source features of LLVM. 2 It is designed to make sure that the major components of LLVM support all of the 3 features of LLVM, for very small examples. Entire programs should not go here.
|
/external/llvm/test/Linker/ |
2004-02-17-WeakStrongLinkage.ll | 1 ; RUN: llvm-as < %s > %t.out2.bc 2 ; RUN: echo "@me = global i32* null" | llvm-as > %t.out1.bc 3 ; RUN: llvm-link %t.out1.bc %t.out2.bc -o /dev/null
|
linkage.ll | 1 ; RUN: llvm-as %S/Inputs/linkage.a.ll -o %t.1.bc 2 ; RUN: llvm-as %S/Inputs/linkage.b.ll -o %t.2.bc 3 ; RUN: llvm-link %t.1.bc %t.2.bc
|
2008-06-13-LinkOnceRedefinition.ll | 3 ; RUN: llvm-as %s -o %t.foo1.bc 4 ; RUN: llvm-as %s -o %t.foo2.bc 5 ; RUN: echo "define linkonce void @foo(i32 %x) { ret void }" | llvm-as -o %t.foo3.bc 6 ; RUN: llvm-link %t.foo1.bc %t.foo2.bc -S 7 ; RUN: llvm-link %t.foo1.bc %t.foo3.bc -S
|
/external/llvm/test/MC/AArch64/ |
elf-objdump.s | 2 // RUN: llvm-mc -filetype=obj -triple aarch64-none-linux-gnu %s -o - | llvm-objdump -d - 4 // We just want to see if llvm-objdump works at all.
|
/external/llvm/test/Verifier/ |
2006-12-12-IntrinsicDefine.ll | 1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s 2 ; CHECK: llvm intrinsics cannot be defined 5 define void @llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1) {
|
gcread-ptrptr.ll | 1 ; RUN: not llvm-as < %s >& /dev/null 7 declare %obj* @llvm.gcread(%obj*, %obj*) 11 %x = call %obj* @llvm.gcread(%obj* null, %obj* null)
|
gcroot-alloca.ll | 1 ; RUN: not llvm-as < %s >& /dev/null 7 declare void @llvm.gcroot(%obj**, %meta*) 11 call void @llvm.gcroot(%obj** null, %meta* null)
|
gcroot-ptrptr.ll | 1 ; RUN: not llvm-as < %s >& /dev/null 7 declare void @llvm.gcroot(%obj*, %meta*) 12 call void @llvm.gcroot(%obj* %local.obj, %meta* null)
|
gcwrite-ptrptr.ll | 1 ; RUN: not llvm-as < %s >& /dev/null 7 declare void @llvm.gcwrite(%obj*, %obj*, %obj*) 11 call void @llvm.gcwrite(%obj* null, %obj* null, %obj* null)
|
llvm.used-invalid-init.ll | 1 ; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s 3 @llvm.used = appending global [1 x i8*] zeroinitializer, section "llvm.metadata"
|
/external/llvm/test/tools/llvm-objdump/ |
coff-file.test | 1 RUN: llvm-objdump -t %p/Inputs/file.obj.coff-arm | FileCheck %s 4 CHECK-NEXT: AUX /Users/compnerd/work/llvm/test/tools/llvm-readobj/Inputs/file.asm
|
/frameworks/rs/cpu_ref/linkloader/include/ |
ELF.h | 4 #include <llvm/Support/ELF.h> 6 using namespace llvm::ELF; 8 // These definitions are not defined in include/llvm/Support/ELF.h.
|
/art/compiler/sea_ir/code_gen/ |
code_gen_data.cc | 18 #include <llvm/PassManager.h> 19 #include <llvm/Support/TargetRegistry.h> 20 #include <llvm/Support/FormattedStream.h> 21 #include <llvm/Target/TargetMachine.h> 22 #include <llvm/Transforms/IPO.h> 23 #include <llvm/Transforms/IPO/PassManagerBuilder.h> 34 ::llvm::raw_string_ostream out_stream(elf); 35 // Lookup the LLVM target 43 const ::llvm::Target* target = 44 ::llvm::TargetRegistry::lookupTarget(target_triple, errmsg) [all...] |
/art/compiler/dex/portable/ |
mir_to_gbc.h | 20 #include <llvm/ADT/ArrayRef.h> 21 #include <llvm/IR/BasicBlock.h> 22 #include <llvm/IR/IRBuilder.h> 23 #include <llvm/IR/LLVMContext.h> 24 #include <llvm/IR/Module.h> 31 #include "llvm/intrinsic_helper.h" 32 #include "llvm/llvm_compilation_unit.h" 48 llvm::LlvmCompilationUnit* const llvm_compilation_unit); 54 llvm::LlvmCompilationUnit* llvm_compilation_unit) 86 ::llvm::BasicBlock* GetLLVMBlock(int id) [all...] |
/art/compiler/llvm/ |
compiler_llvm.cc | 35 #include <llvm/LinkAllPasses.h> 36 #include <llvm/Support/ManagedStatic.h> 37 #include <llvm/Support/TargetSelect.h> 38 #include <llvm/Support/Threading.h> 50 namespace llvm { namespace 59 // Initialize LLVM internal data structure for multithreading 60 llvm::llvm_start_multithreaded(); 62 // NOTE: Uncomment following line to show the time consumption of LLVM passes 63 // llvm::TimePassesIsEnabled = true; 65 // Initialize LLVM target-specific options 106 namespace llvm { namespace in namespace:art [all...] |
/external/llvm/test/CodeGen/X86/ |
misched-aa-colored.ll | 8 %"class.llvm::SDNode.10.610.970.1930.2050.2290.4090" = type { %"class.llvm::FoldingSetImpl::Node.0.600.960.1920.2040.2280.4080", %"class.llvm::ilist_node.2.602.962.1922.2042.2282.4082", i16, [2 x i8], i32, %"class.llvm::SDUse.4.604.964.1924.2044.2284.4084"*, %"struct.llvm::EVT.8.608.968.1928.2048.2288.4088"*, %"class.llvm::SDUse.4.604.964.1924.2044.2284.4084"*, i16, i16, %"class.llvm::DebugLoc.9.609.969.1929.2049.2289.4089", i32 } 9 %"class.llvm::FoldingSetImpl::Node.0.600.960.1920.2040.2280.4080" = type { i8* } 10 %"class.llvm::ilist_node.2.602.962.1922.2042.2282.4082" = type { %"class.llvm::ilist_half_node.1.601.961.1921.2041.2281.4081", %"class.llvm::SDNode.10.610.970.1930.2050.2290.40 (…) [all...] |
/external/clang/test/CodeGen/ |
lifetime2.c | 1 // RUN: %clang -S -emit-llvm -o - -O2 %s | FileCheck %s -check-prefix=O2 2 // RUN: %clang -S -emit-llvm -o - -O0 %s | FileCheck %s -check-prefix=O0 6 // O0-NOT: @llvm.lifetime.start 9 // O2: @llvm.lifetime.start 13 // O2: @llvm.lifetime.start
|
rtm-builtins.c | 1 // RUN: %clang_cc1 %s -O3 -triple=x86_64-apple-darwin -target-feature +rtm -emit-llvm -o - | FileCheck %s 9 // CHECK: i32 @llvm.x86.xbegin() 15 // CHECK: void @llvm.x86.xend() 21 // CHECK: void @llvm.x86.xabort(i8 2) 26 // CHECK: i32 @llvm.x86.xtest()
|