HomeSort by relevance Sort by last modified time
    Searched full:llvm (Results 76 - 100 of 14624) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/test/TableGen/
nested-comment.td 1 // RUN: llvm-tblgen < %s
  /external/llvm/test/Verifier/
llvm.compiler_used-invalid-type.ll 1 ; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
3 @llvm.compiler.used = appending global [1 x i32] [i32 0], section "llvm.metadata"
6 ; CHECK-NEXT: [1 x i32]* @llvm.compiler.used
llvm.used-invalid-init2.ll 1 ; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
4 @llvm.used = appending global [2 x i8*] [i8* @a, i8* null], section "llvm.metadata"
6 ; CHECK: invalid llvm.used member
llvm.used-invalid-type.ll 1 ; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
3 @llvm.used = appending global [1 x i32] [i32 0], section "llvm.metadata"
6 ; CHECK-NEXT: [1 x i32]* @llvm.used
llvm.used-invalid-type2.ll 1 ; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
2 @llvm.used = appending global i32 0, section "llvm.metadata"
5 ; CHECK-NEXT: i32* @llvm.used
  /ndk/tests/device/test-libc++/jni/
Android.mk 1 include $(NDK_ROOT)/sources/cxx-stl/llvm-libc++/test/Android.mk
  /art/compiler/llvm/
runtime_support_builder.h 26 namespace llvm { namespace
35 namespace llvm { namespace in namespace:art
42 RuntimeSupportBuilder(::llvm::LLVMContext& context, ::llvm::Module& module, IRBuilder& irb);
45 virtual ::llvm::Value* EmitGetCurrentThread();
46 virtual ::llvm::Value* EmitLoadFromThreadOffset(int64_t offset, ::llvm::Type* type,
48 virtual void EmitStoreToThreadOffset(int64_t offset, ::llvm::Value* value,
50 virtual ::llvm::Value* EmitSetCurrentThread(::llvm::Value* thread)
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
pr15031.ll 19 %"class.llvm::MachineMemOperand" = type { %"struct.llvm::MachinePointerInfo", i64, i32, %"class.llvm::MDNode"*, %"class.llvm::MDNode"* }
20 %"struct.llvm::MachinePointerInfo" = type { %"class.llvm::Value"*, i64 }
21 %"class.llvm::Value" = type { i32 (...)**, i8, i8, i16, %"class.llvm::Type"*, %"class.llvm::Use"*, %"class.llvm::StringMapEntry"*
    [all...]
  /external/llvm/test/Linker/
linkmdnode.ll 1 ; RUN: llvm-as < %s > %t.bc
2 ; RUN: llvm-as < %p/linkmdnode2.ll > %t2.bc
3 ; RUN: llvm-link %t.bc %t2.bc
8 declare i8 @llvm.something(metadata %a)
10 %x = call i8 @llvm.something(metadata !21)
  /external/llvm/test/Feature/
intrinsics.ll 1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
6 declare i1 @llvm.isunordered.f32(float, float)
8 declare i1 @llvm.isunordered.f64(double, double)
11 declare i8 @llvm.ctpop.i8(i8)
13 declare i16 @llvm.ctpop.i16(i16)
15 declare i32 @llvm.ctpop.i32(i32)
17 declare i64 @llvm.ctpop.i64(i64
    [all...]
metadata.ll 1 ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
5 call void @llvm.zonk(metadata !1, i64 0, metadata !1)
11 declare void @llvm.zonk(metadata, i64, metadata) nounwind readnone
  /external/llvm/test/Assembler/
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
13 ; CHECK: call i8 @llvm.ctlz.i8(i8 %a, i1 false)
14 call i8 @llvm.ctlz.i8(i8 %a)
15 ; CHECK: call i16 @llvm.ctlz.i16(i16 %b, i1 false)
16 call i16 @llvm.ctlz.i16(i16 %b
    [all...]
metadata.ll 1 ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
8 call void @llvm.dbg.func.start(metadata !"foo")
16 declare void @llvm.dbg.func.start(metadata) nounwind readnone
  /external/clang/test/CodeGen/
count-builtins.c 1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
10 // CHECK: call i16 @llvm.ctlz.i16
11 // CHECK: call i16 @llvm.cttz.i16
20 // CHECK: call i32 @llvm.ctlz.i32
21 // CHECK: call i32 @llvm.cttz.i32
22 // CHECK: call i32 @llvm.ctpop.i32
30 // CHECK: call i64 @llvm.ctlz.i64
31 // CHECK: call i64 @llvm.cttz.i64
32 // CHECK: call i64 @llvm.ctpop.i64
fp16-ops.c 2 // RUN: %clang_cc1 -emit-llvm -o - -triple arm-none-linux-gnueabi %s | FileCheck %s
14 // CHECK: call float @llvm.convert.from.fp16
17 // CHECK: call float @llvm.convert.from.fp16
20 // CHECK: call float @llvm.convert.from.fp16
22 // CHECK: call i16 @llvm.convert.to.fp16
24 // CHECK: call float @llvm.convert.from.fp16
25 // CHECK: call i16 @llvm.convert.to.fp16
27 // CHECK: call float @llvm.convert.from.fp16
29 // CHECK: call i16 @llvm.convert.to.fp16
31 // CHECK: call float @llvm.convert.from.fp1
    [all...]
  /external/compiler-rt/www/
menu.html.incl 3 <a href="http://llvm.org/">LLVM Home</a>
14 <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits">llvm-commits</a>
15 <a href="http://llvm.org/bugs/">Bug Reports</a>
16 <a href="http://llvm.org/svn/llvm-project/compiler-rt/trunk/">Browse SVN</a>
17 <a href="http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/">Browse ViewVC</a>
  /external/llvm/include/llvm/CodeGen/
LinkAllCodegenComponents.h 1 //===- llvm/Codegen/LinkAllCodegenComponents.h ------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
18 #include "llvm/CodeGen/GCs.h"
19 #include "llvm/CodeGen/Passes.h"
20 #include "llvm/CodeGen/SchedulerRegistry.h"
21 #include "llvm/Target/TargetMachine.h"
34 (void) llvm::createFastRegisterAllocator();
35 (void) llvm::createBasicRegisterAllocator();
36 (void) llvm::createGreedyRegisterAllocator();
37 (void) llvm::createDefaultPBQPRegisterAllocator()
    [all...]
  /external/llvm/lib/Target/SystemZ/
CMakeLists.txt 3 tablegen(LLVM SystemZGenAsmMatcher.inc -gen-asm-matcher)
4 tablegen(LLVM SystemZGenAsmWriter.inc -gen-asm-writer)
5 tablegen(LLVM SystemZGenCallingConv.inc -gen-callingconv)
6 tablegen(LLVM SystemZGenDAGISel.inc -gen-dag-isel)
7 tablegen(LLVM SystemZGenDisassemblerTables.inc -gen-disassembler)
8 tablegen(LLVM SystemZGenMCCodeEmitter.inc -gen-emitter -mc-emitter)
9 tablegen(LLVM SystemZGenInstrInfo.inc -gen-instr-info)
10 tablegen(LLVM SystemZGenRegisterInfo.inc -gen-register-info)
11 tablegen(LLVM SystemZGenSubtargetInfo.inc -gen-subtarget)
  /external/llvm/test/Transforms/GlobalOpt/
compiler-used.ll 3 ; Test that when all members of llvm.compiler.used are found to be redundant
10 @llvm.used = appending global [1 x i8*] [i8* bitcast (void ()* @foo to i8*)], section "llvm.metadata"
12 @llvm.compiler.used = appending global [1 x i8*] [i8* bitcast (void ()* @foo to i8*)], section "llvm.metadata"
14 ; CHECK-NOT: @llvm.compiler.used
15 ; CHECK: @llvm.used = appending global [1 x i8*] [i8* bitcast (void ()* @foo to i8*)], section "llvm.metadata"
16 ; CHECK-NOT: @llvm.compiler.used
  /external/llvm/lib/Target/Sparc/
CMakeLists.txt 3 tablegen(LLVM SparcGenRegisterInfo.inc -gen-register-info)
4 tablegen(LLVM SparcGenInstrInfo.inc -gen-instr-info)
5 tablegen(LLVM SparcGenAsmWriter.inc -gen-asm-writer)
6 tablegen(LLVM SparcGenDAGISel.inc -gen-dag-isel)
7 tablegen(LLVM SparcGenSubtargetInfo.inc -gen-subtarget)
8 tablegen(LLVM SparcGenCallingConv.inc -gen-callingconv)
  /external/llvm/test/Bindings/Ocaml/
bitreader.ml 1 (* RUN: %ocamlopt -warn-error A llvm.cmxa llvm_bitreader.cmxa llvm_bitwriter.cmxa %s -o %t
3 * RUN: llvm-dis < %t.bc
10 let context = Llvm.global_context ()
16 let m = Llvm.create_module context "ocaml_test_module" in
20 Llvm.dispose_module m;
24 let mb = Llvm.MemoryBuffer.of_file fn in
27 Llvm.dispose_module m
29 Llvm.MemoryBuffer.dispose mb;
36 let mb = Llvm.MemoryBuffer.of_file (fn ^ ".bogus") in
37 Llvm.MemoryBuffer.dispose mb
    [all...]
  /external/llvm/include/llvm-c/Transforms/
Scalar.h 3 |* The LLVM Compiler Infrastructure *|
11 |* implements various scalar transformations of the LLVM IR. *|
22 #include "llvm-c/Core.h"
35 /** See llvm::createAggressiveDCEPass function. */
38 /** See llvm::createCFGSimplificationPass function. */
41 /** See llvm::createDeadStoreEliminationPass function. */
44 /** See llvm::createGVNPass function. */
47 /** See llvm::createIndVarSimplifyPass function. */
50 /** See llvm::createInstructionCombiningPass function. */
53 /** See llvm::createJumpThreadingPass function. *
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFDynObjFileFormat.cpp 13 #include <llvm/Support/ELF.h>
22 llvm::ELF::SHT_DYNSYM,
23 llvm::ELF::SHF_ALLOC,
27 llvm::ELF::SHT_STRTAB,
28 llvm::ELF::SHF_ALLOC,
32 llvm::ELF::SHT_PROGBITS,
33 llvm::ELF::SHF_ALLOC,
37 llvm::ELF::SHT_HASH,
38 llvm::ELF::SHF_ALLOC,
42 llvm::ELF::SHT_DYNAMIC
    [all...]
ELFExecFileFormat.cpp 13 #include <llvm/Support/ELF.h>
23 llvm::ELF::SHT_DYNSYM,
24 llvm::ELF::SHF_ALLOC,
28 llvm::ELF::SHT_STRTAB,
29 llvm::ELF::SHF_ALLOC,
33 llvm::ELF::SHT_PROGBITS,
34 llvm::ELF::SHF_ALLOC,
38 llvm::ELF::SHT_HASH,
39 llvm::ELF::SHF_ALLOC,
43 llvm::ELF::SHT_DYNAMIC
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
loader.cpp 4 #include <llvm/Support/CommandLine.h>
5 #include <llvm/Support/IRReader.h>
6 #include <llvm/Support/SourceMgr.h>
7 #include <llvm/LLVMContext.h>
8 #include <llvm/Module.h>
11 #include <llvm-c/Core.h>
13 using namespace llvm;
29 cl::ParseCommandLineOptions(argc, argv, "llvm system compiler\n");

Completed in 591 milliseconds

1 2 34 5 6 7 8 91011>>