/external/llvm/test/Assembler/ |
2003-08-21-ConstantExprCast-Fold.ll | 3 @A = external global { float } ; <{ float }*> [#uses=2] 4 global i32* bitcast ({ float }* @A to i32*) ; <i32**>:0 [#uses=0]
|
2008-10-14-QuoteInName.ll | 3 @"a\22quote" = global i32 0
|
ConstantExprFoldCast.ll | 5 @A = global i32* bitcast (i8* null to i32*) ; Cast null -> fold 6 @B = global i32** bitcast (i32** @A to i32**) ; Cast to same type -> fold 7 @C = global i32 trunc (i64 42 to i32) ; Integral casts 8 @D = global i32* bitcast(float* bitcast (i32* @C to float*) to i32*) ; cast of cast ptr->ptr 9 @E = global i32 ptrtoint(float* inttoptr (i8 5 to float*) to i32) ; i32 -> ptr -> i32 12 @F = global i32* inttoptr (i32 add (i32 5, i32 -5) to i32*) 13 @G = global i32* inttoptr (i32 sub (i32 5, i32 5) to i32*)
|
ConstantExprFold.ll | 6 @A = global i64 0 8 global i64* inttoptr (i64 add (i64 ptrtoint (i64* @A to i64), i64 0) to i64*) ; X + 0 == X 9 global i64* inttoptr (i64 sub (i64 ptrtoint (i64* @A to i64), i64 0) to i64*) ; X - 0 == X 10 global i64* inttoptr (i64 mul (i64 ptrtoint (i64* @A to i64), i64 0) to i64*) ; X * 0 == 0 11 global i64* inttoptr (i64 sdiv (i64 ptrtoint (i64* @A to i64), i64 1) to i64*) ; X / 1 == X 12 global i64* inttoptr (i64 srem (i64 ptrtoint (i64* @A to i64), i64 1) to i64*) ; X % 1 == 0 13 global i64* inttoptr (i64 and (i64 ptrtoint (i64* @A to i64), i64 0) to i64*) ; X & 0 == 0 14 global i64* inttoptr (i64 and (i64 ptrtoint (i64* @A to i64), i64 -1) to i64*) ; X & -1 == X 15 global i64 or (i64 ptrtoint (i64* @A to i64), i64 -1) ; X | -1 == -1 16 global i64* inttoptr (i64 xor (i64 ptrtoint (i64* @A to i64), i64 0) to i64*) ; X ^ 0 == [all...] |
/external/llvm/test/CodeGen/X86/ |
2005-02-14-IllegalAssembler.ll | 3 @A = external global i32 ; <i32*> [#uses=1] 4 @Y = global i32* getelementptr (i32* @A, i32 -1) ; <i32**> [#uses=0]
|
weak.ll | 2 @a = extern_weak global i32 ; <i32*> [#uses=1] 3 @b = global i32* @a ; <i32**> [#uses=0]
|
i128-and-beyond.ll | 6 @x = global i128 -1 7 @y = global i256 -1 8 @z = global i512 -1
|
compiler_used.ll | 4 @X = internal global i8 4 5 @Y = internal global i32 123 6 @Z = internal global i8 4 8 @llvm.used = appending global [1 x i8*] [ i8* @Z ], section "llvm.metadata" 9 @llvm.compiler_used = appending global [2 x i8*] [ i8* @X, i8* bitcast (i32* @Y to i8*)], section "llvm.metadata"
|
/external/qemu/distrib/sdl-1.2.12/src/hermes/ |
common.inc | 5 GLOBAL %1:function hidden 7 GLOBAL %1
|
/external/llvm/test/Linker/ |
2004-12-03-DisagreeingType.ll | 1 ; RUN: echo {@G = weak global \{\{\{\{double\}\}\}\} zeroinitializer } | \ 6 ; When linked, the global above should be eliminated, being merged with the 7 ; global below. 9 @G = global double 1.0
|
link-type-names.ll | 1 ; RUN: echo "%X = type { i32 } @G2 = global %X { i32 4 }" > %t.ll 6 @G = global %X { i32 4 } 9 ; CHECK: @G = global %X { i32 4 } 10 ; CHECK: @G2 = global %X { i32 4 }
|
/external/llvm/test/CodeGen/PowerPC/ |
i128-and-beyond.ll | 6 @x = global i128 -1 7 @y = global i256 -1 8 @z = global i512 -1
|
/external/llvm/test/Feature/ |
constpointer.ll | 5 ; This testcase is primarily used for testing that global values can be used as 13 @t3 = global i32* @t1 ;; Forward reference 14 @t1 = global i32 4 15 @t4 = global i32** @t3 ;; reference to reference 17 @t2 = global i32* @t1 19 global float * @2 ;; Forward numeric reference 20 global float * @2 ;; Duplicate forward numeric reference 21 global float 0.0 22 global float * @2 ;; Numeric reference 25 @fptr = global void() * @f ;; Forward ref method def [all...] |
/external/llvm/test/Integer/ |
constpointer_bt.ll | 5 ; This testcase is primarily used for testing that global values can be used as 13 @t3 = global i40 * @t1 ;; Forward reference 14 @t1 = global i40 4 15 @t4 = global i40 ** @t3 ;; reference to reference 17 @t2 = global i40 * @t1 19 global float * @2 ;; Forward numeric reference 20 global float * @2 ;; Duplicate forward numeric reference 21 global float 0.0 22 global float * @2 ;; Numeric reference 25 @fptr = global void() * @f ;; Forward ref method def [all...] |
/external/clang/test/SemaCXX/ |
warn-global-constructors.cpp | 6 // These should never require global constructors. 11 // This global constructor is avoidable based on initialization order. 12 int d = b; // expected-warning {{global constructor}} 14 // These global constructors are unavoidable. 15 int e = opaque_int(); // expected-warning {{global constructor}} 16 int f = b; // expected-warning {{global constructor}} 24 A d = { opaque_int() }; // expected-warning {{global constructor}} 26 A f = A(a); // expected-warning {{global constructor}} 27 A g(a); // expected-warning {{global constructor}} 34 A a; // expected-warning {{global constructor} [all...] |
/external/llvm/test/Transforms/GlobalDCE/ |
2002-08-17-WorkListTest.ll | 4 ; RUN: opt < %s -globaldce -S | not grep global 6 @t0 = internal global [4 x i8] c"foo\00" ; <[4 x i8]*> [#uses=1] 7 @t1 = internal global [4 x i8] c"bar\00" ; <[4 x i8]*> [#uses=1] 8 @s1 = internal global [1 x i8*] [ i8* getelementptr ([4 x i8]* @t0, i32 0, i32 0) ] ; <[1 x i8*]*> [#uses=0] 9 @s2 = internal global [1 x i8*] [ i8* getelementptr ([4 x i8]* @t1, i64 0, i64 0) ] ; <[1 x i8*]*> [#uses=0] 10 @b = internal global i32* @a ; <i32**> [#uses=0] 11 @a = internal global i32 7 ; <i32*> [#uses=1]
|
/external/clang/test/SemaObjCXX/ |
objc-decls-inside-namespace.mm | 5 @protocol P; //expected-error{{Objective-C declarations may only appear in global scope}} 7 @class Bar; //expected-error{{Objective-C declarations may only appear in global scope}} 9 @compatibility_alias Foo Bar; //expected-error{{Objective-C declarations may only appear in global scope}} 11 @interface A //expected-error{{Objective-C declarations may only appear in global scope}} 14 @implementation A //expected-error{{Objective-C declarations may only appear in global scope}} 17 @protocol P //expected-error{{Objective-C declarations may only appear in global scope}} 20 @interface A(C) //expected-error{{Objective-C declarations may only appear in global scope}} 23 @implementation A(C) //expected-error{{Objective-C declarations may only appear in global scope}} 26 @interface B @end //expected-error{{Objective-C declarations may only appear in global scope}} 27 @implementation B //expected-error{{Objective-C declarations may only appear in global scope} [all...] |
/external/libffi/testsuite/lib/ |
target-libpath.exp | 35 global ld_library_path 36 global orig_environment_saved 37 global orig_ld_library_path_saved 38 global orig_ld_run_path_saved 39 global orig_shlib_path_saved 40 global orig_ld_libraryn32_path_saved 41 global orig_ld_library64_path_saved 42 global orig_ld_library_path_32_saved 43 global orig_ld_library_path_64_saved 44 global orig_dyld_library_path_save [all...] |
/external/clang/test/CodeGen/ |
no-common.c | 4 // CHECK-DEFAULT: @x = common global 5 // CHECK-NOCOMMON: @x = global 8 // CHECK-DEFAULT: @ABC = global 9 // CHECK-NOCOMMON: @ABC = global 13 // CHECK-DEFAULT: @y = common global 14 // CHECK-NOCOMMON: @y = common global
|
/external/elfutils/libelf/ |
libelf.map | 2 global: 101 global: 107 global: 115 global: 120 global: 128 global:
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/ |
global-001.js | 2 File Name: global-001 4 ECMA Section: The global object 7 The global object does not have a [[Construct]] property; it is not 8 possible to use the global object as a constructor with the new operator. 14 var SECTION = "global-001"; 16 var TITLE = "The Global Object";
|
global-002.js | 2 File Name: global-002 4 ECMA Section: The global object 7 The global object does not have a [[Construct]] property; it is not 8 possible to use the global object as a constructor with the new operator. 14 var SECTION = "global-002"; 16 var TITLE = "The Global Object";
|
/external/wpa_supplicant_6/wpa_supplicant/ |
main_none.c | 25 struct wpa_global *global; local 30 global = wpa_supplicant_init(¶ms); 31 if (global == NULL) 37 if (wpa_supplicant_add_iface(global, &iface) == NULL) 41 exitcode = wpa_supplicant_run(global); 43 wpa_supplicant_deinit(global);
|
main_symbian.cpp | 27 struct wpa_global *global; local 32 global = wpa_supplicant_init(¶ms); 33 if (global == NULL) 39 if (wpa_supplicant_add_iface(global, &iface) == NULL) 43 exitcode = wpa_supplicant_run(global); 45 wpa_supplicant_deinit(global);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
main_none.c | 19 struct wpa_global *global; local 24 global = wpa_supplicant_init(¶ms); 25 if (global == NULL) 31 if (wpa_supplicant_add_iface(global, &iface) == NULL) 35 exitcode = wpa_supplicant_run(global); 37 wpa_supplicant_deinit(global);
|