/external/llvm/test/Instrumentation/MemorySanitizer/ |
vector_shift.ll | 46 ; CHECK: = sext i1 {{.*}} to i128 47 ; CHECK: = bitcast i128 {{.*}} to <8 x i16> 61 ; CHECK: = bitcast <8 x i16> {{.*}} to i128 62 ; CHECK: = trunc i128 {{.*}} to i64 64 ; CHECK: = sext i1 {{.*}} to i128 65 ; CHECK: = bitcast i128 {{.*}} to <8 x i16>
|
/external/llvm/test/CodeGen/AArch64/ |
dp-3source.ll | 77 %ext1 = sext i64 %lhs to i128 78 %ext2 = sext i64 %rhs to i128 79 %res = mul i128 %ext1, %ext2 80 %high = lshr i128 %res, 64 81 %val = trunc i128 %high to i64 88 %ext1 = zext i64 %lhs to i128 89 %ext2 = zext i64 %rhs to i128 90 %res = mul i128 %ext1, %ext2 91 %high = lshr i128 %res, 64 92 %val = trunc i128 %high to i6 [all...] |
arm64-aapcs.ll | 5 define i128 @test_i128_align(i32, i128 %arg, i32 %after) { 9 ret i128 %arg 88 ; We weren't marking x7 as used after deciding that the i128 didn't fit into 91 define i128 @test_i128_shadow([7 x i64] %x0_x6, i128 %sp) { 95 ret i128 %sp
|
arm64-abi-varargs.ll | 176 define void @bar2(i32 %x, i128 %s41.coerce) nounwind { 184 %0 = bitcast %struct.s41* %s41 to i128* 185 store i128 %s41.coerce, i128* %0, align 1 187 %2 = bitcast %struct.s41* %s41 to i128* 188 %3 = load i128, i128* %2, align 1 189 call void (i8*, ...) @foo2(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i32 0, i32 0), i32 %1, i128 %3)
|
arm64-illegal-float-ops.ll | 265 define i128 @test_fptosi128(fp128 %a) { 268 %conv.i = fptosi fp128 %a to i128 269 %b = add nsw i128 %conv.i, 48 270 ret i128 %b 289 define i128 @test_fptoui128(fp128 %a) { 292 %conv.i = fptoui fp128 %a to i128 293 %b = add nsw i128 %conv.i, 48 294 ret i128 %b
|
func-argpassing.ll | 9 @var128 = global i128 0 128 define i32 @struct_on_stack(i8 %var0, i16 %var1, i32 %var2, i64 %var3, i128 %var45, 164 define i64 @check_i128_regalign(i32 %val0, i128 %val1, i64 %val2) { 166 store i128 %val1, i128* @var128 176 i32 %stack1, i128 %stack2) { 178 store i128 %stack2, i128* @var128
|
aarch64-wide-shuffle.ll | 3 target datalayout = "e-m:e-i64:64-i128:128-n32:64-S128"
|
analyzecmp.ll | 7 target datalayout = "e-m:e-i64:64-i128:128-n32:64-S128"
|
andandshift.ll | 2 target datalayout = "e-m:e-i64:64-i128:128-n32:64-S128"
|
arm64-clrsb.ll | 3 target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
|
/external/clang/test/OpenMP/ |
atomic_read_codegen.c | 132 // CHECK: [[LD:%.+]] = load atomic i128, i128* bitcast (x86_fp80* 133 // CHECK: [[BITCAST:%.+]] = bitcast x86_fp80* [[LDTEMP:%.*]] to i128* 134 // CHECK: store i128 [[LD]], i128* [[BITCAST]] 197 // CHECK: load atomic i128, i128* 228 // CHECK: [[I128VAL:%.+]] = load atomic i128, i128* bitcast (<4 x i32>* @{{.+}} to i128*) monotoni [all...] |
atomic_write_codegen.c | 136 // CHECK: [[BITCAST:%.+]] = bitcast x86_fp80* [[LDTEMP:%.*]] to i128* 137 // CHECK: [[LD:%.+]] = load i128, i128* [[BITCAST]] 138 // CHECK: store atomic i128 [[LD]], i128* bitcast (x86_fp80* 225 // CHECK: [[BITCAST:%.+]] = bitcast x86_fp80* [[TEMP]] to i128* 226 // CHECK: [[VAL:%.+]] = load i128, i128* [[BITCAST]] 227 // CHECK: store atomic i128 [[VAL]], i128* bitcast (x86_fp80 [all...] |
atomic_update_codegen.cpp | 209 // CHECK: [[OLD:%.+]] = load atomic i128, i128* bitcast (x86_fp80* [[X_ADDR:@.+]] to i128*) monotonic 210 // CHECK: [[BITCAST:%.+]] = bitcast x86_fp80* [[TEMP:%.+]] to i128* 211 // CHECK: store i128 [[OLD]], i128* [[BITCAST]] 220 // CHECK: [[BITCAST:%.+]] = bitcast x86_fp80* [[TEMP]] to i128* 221 // CHECK: [[EXPECTED:%.+]] = load i128, i128* [[BITCAST]] 225 // CHECK: [[BITCAST:%.+]] = bitcast x86_fp80* [[TEMP]] to i128* [all...] |
/external/clang/test/CodeGen/ |
builtins-arm-exclusive.c | 319 // CHECK-ARM64: [[ADDR8:%.*]] = bitcast i128* %addr to i8* 323 // CHECK-ARM64: [[RESHI64:%.*]] = zext i64 [[RESHI]] to i128 324 // CHECK-ARM64: [[RESLO64:%.*]] = zext i64 [[RESLO]] to i128 325 // CHECK-ARM64: [[RESHIHI:%.*]] = shl nuw i128 [[RESHI64]], 64 326 // CHECK-ARM64: [[INTRES:%.*]] = or i128 [[RESHIHI]], [[RESLO64]] 327 // CHECK-ARM64: ret i128 [[INTRES]] 334 // CHECK-ARM64: [[VALLO:%.*]] = trunc i128 %val to i64 335 // CHECK-ARM64: [[VALHI128:%.*]] = lshr i128 %val, 64 336 // CHECK-ARM64: [[VALHI:%.*]] = trunc i128 [[VALHI128]] to i64 337 // CHECK-ARM64: [[ADDR8:%.*]] = bitcast i128* %addr to i8 [all...] |
ppc64-vector.c | 48 // CHECK: define void @test_struct_v16i16(%struct.v16i16* noalias sret %agg.result, [2 x i128] %x.coerce)
|
/external/llvm/test/CodeGen/Mips/llvm-ir/ |
and.ll | 81 define signext i128 @and_i128(i128 signext %a, i128 signext %b) { 97 %r = and i128 %a, %b 98 ret i128 %r
|
or.ll | 81 define signext i128 @or_i128(i128 signext %a, i128 signext %b) { 97 %r = or i128 %a, %b 98 ret i128 %r
|
udiv.ll | 105 define signext i128 @udiv_i128(i128 signext %a, i128 signext %b) { 114 %r = udiv i128 %a, %b 115 ret i128 %r
|
xor.ll | 81 define signext i128 @xor_i128(i128 signext %a, i128 signext %b) { 97 %r = xor i128 %a, %b 98 ret i128 %r
|
/external/llvm/test/Transforms/InstCombine/ |
shift.ll | 521 define i128 @test36(i128 %A, i128 %B) { 523 %tmp27 = shl i128 %A, 64 524 %tmp23 = shl i128 %B, 64 525 %ins = or i128 %tmp23, %tmp27 526 %tmp45 = lshr i128 %ins, 64 527 ret i128 %tmp45 530 ; CHECK: %tmp231 = or i128 %B, %A 531 ; CHECK: %ins = and i128 %tmp231, 1844674407370955161 [all...] |
/external/llvm/test/Transforms/ConstProp/ |
constant-expr.ll | 93 @pr9011_11 = constant <4 x float> bitcast (i128 0 to <4 x float>) 95 @pr9011_12 = constant <4 x i32> bitcast (i128 0 to <4 x i32>) 99 @pr9011_14 = constant i128 bitcast (<4 x float> zeroinitializer to i128) 100 ; CHECK: pr9011_14 = constant i128 0 101 @pr9011_15 = constant i128 bitcast (<4 x i32> zeroinitializer to i128) 102 ; CHECK: pr9011_15 = constant i128 0
|
loads.ll | 121 ; i128 load. 122 define i128 @test9() { 123 %r = load i128, i128* bitcast({i64, i64}* @g3 to i128*) 124 ret i128 %r 128 ; LE: ret i128 2071796475790618158476296315 132 ; BE: ret i128 2268949521066387161080
|
/external/clang/test/CodeGenObjC/ |
fp2ret.m | 24 // CHECK-ARMV7: call i128 bitcast {{.*}} @objc_msgSend to
|
/external/clang/test/Lexer/ |
ms-extensions.c | 13 __int64 x4 = 70000000i128;
|
/external/llvm/lib/Target/X86/ |
README-UNIMPLEMENTED.txt | 14 5) llvm.atomic.cmp.swap.i128.p0i128: PR3462
|