HomeSort by relevance Sort by last modified time
    Searched full:extractvalue (Results 226 - 250 of 333) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/CodeGen/ARM/
ldstrex.ll 13 %0 = extractvalue %0 %ldrexd, 1
14 %1 = extractvalue %0 %ldrexd, 0
coalesce-subregs.ll 18 %vld221 = extractvalue { <4 x float>, <4 x float> } %vld2, 1
31 %vld221 = extractvalue { <4 x float>, <4 x float> } %vld2, 1
35 %vld2215 = extractvalue { <4 x float>, <4 x float> } %vld22, 0
46 %vld224 = extractvalue { <4 x float>, <4 x float> } %vld2, 1
56 %vld2215 = extractvalue { <4 x float>, <4 x float> } %vld22, 0
57 %vld2216 = extractvalue { <4 x float>, <4 x float> } %vld22, 1
atomic-op.ll 202 %oldval = extractvalue { i32, i1 } %pair, 0
221 %oldval = extractvalue { i32, i1 } %pair, 0
2010-11-15-SpillEarlyClobber.ll 47 %asmresult1.i.i34.i.i.i = extractvalue %0 %asmtmp.i.i33.i.i.i, 1
eh-dispcont.ll 21 %2 = extractvalue { i8*, i32 } %1, 0
  /external/llvm/test/CodeGen/X86/
widen_load-2.ll 177 %extractVec = extractvalue %i8vec3pack %tmp, 0
179 %extractVec3 = extractvalue %i8vec3pack %tmp2, 0
inline-asm-fpstack.ll 290 %asmresult = extractvalue %complex %0, 0
306 %asmresult = extractvalue %complex %0, 1
329 %asmresult = extractvalue %complex %0, 0
select.ll 11 %t5 = extractvalue %0 %t4, 1
253 %B = extractvalue { i64, i1 } %A, 1
254 %C = extractvalue { i64, i1 } %A, 0
  /external/llvm/test/Instrumentation/MemorySanitizer/
atomics.ll 41 %0 = extractvalue { i32, i1 } %pair, 0
60 %0 = extractvalue { i32, i1 } %pair, 0
  /external/llvm/test/Transforms/DebugIR/
exception.ll 29 %12 = extractvalue { i8*, i32 } %11, 0 ; CHECK-NEXT: !dbg
31 %13 = extractvalue { i8*, i32 } %11, 1 ; CHECK-NEXT: !dbg
  /external/llvm/test/Transforms/InstCombine/
mul.ll 177 %F = extractvalue {i32, i1} %E, 0
178 %G = extractvalue {i32, i1} %E, 1
  /external/llvm/test/Transforms/InstSimplify/
call.ll 8 %overflow = extractvalue {i8, i1} %x, 1
16 %result = extractvalue {i8, i1} %x, 0
  /external/llvm/test/Transforms/SCCP/
undef-resolve.ll 165 ; Make sure we handle extractvalue
168 %e = extractvalue { i64, i64 } undef, 1
  /external/clang/test/CodeGen/
atomic-ops.c 95 // CHECK: [[OLD:%[.0-9A-Z_a-z]+]] = extractvalue { i32, i1 } [[PAIR]], 0
96 // CHECK: [[CMP:%[.0-9A-Z_a-z]+]] = extractvalue { i32, i1 } [[PAIR]], 1
106 // CHECK: [[OLD:%[.0-9A-Z_a-z]+]] = extractvalue { i32, i1 } [[PAIR]], 0
107 // CHECK: [[CMP:%[.0-9A-Z_a-z]+]] = extractvalue { i32, i1 } [[PAIR]], 1
118 // CHECK: [[OLD:%[.0-9A-Z_a-z]+]] = extractvalue { i32, i1 } [[PAIR]], 0
119 // CHECK: [[CMP:%[.0-9A-Z_a-z]+]] = extractvalue { i32, i1 } [[PAIR]], 1
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 85 if (!formValue.extractValue(u->getDebugInfoExtractor(), offset_ptr, u))
165 return FormValue.extractValue(DebugInfoData, &DebugInfoOffset, U);
  /external/llvm/lib/Target/X86/
X86AtomicExpandPass.cpp 227 // %new_loaded = extractvalue { iN, i1 } %pair, 0
228 // %success = extractvalue { iN, i1 } %pair, 1
  /external/llvm/test/CodeGen/SystemZ/
asm-18.ll 27 %new1 = extractvalue { i32, i32, i32, i32 } %res, 0
28 %new2 = extractvalue { i32, i32, i32, i32 } %res, 1
29 %new3 = extractvalue { i32, i32, i32, i32 } %res, 2
30 %new4 = extractvalue { i32, i32, i32, i32 } %res, 3
160 %res1 = extractvalue { i32, i32 } %res, 0
161 %res2 = extractvalue { i32, i32 } %res, 1
183 %res1 = extractvalue { i32, i32 } %res, 0
184 %res2 = extractvalue { i32, i32 } %res, 1
  /external/llvm/test/DebugInfo/
inline-debug-info-multiret.ll 75 %2 = extractvalue { i8*, i32 } %1, 0, !dbg !21
77 %3 = extractvalue { i8*, i32 } %1, 1, !dbg !21
inline-debug-info.ll 93 %2 = extractvalue { i8*, i32 } %1, 0, !dbg !21
95 %3 = extractvalue { i8*, i32 } %1, 1, !dbg !21
  /external/llvm/utils/
llvm.grm 254 | extractvalue "(" ^ ConstVal ^ ConstantIndexList ^ ")"
420 | extractvalue Types ValueRef ^ ConstantIndexList
  /external/llvm/include/llvm/CodeGen/
Analysis.h 34 /// of insertvalue or extractvalue indices that identify a member, return
  /external/llvm/include/llvm/IR/
Instruction.def 173 HANDLE_OTHER_INST(57, ExtractValue, ExtractValueInst)// extract from aggregate
  /external/llvm/lib/CodeGen/
Analysis.cpp 31 /// of insertvalue or extractvalue indices that identify a member, return
217 /// sequence of indices appropriate for an extractvalue to locate the important
381 /// @param Path Set of extractvalue indices leading from the outermost type
592 // an extractvalue would happen at the front of the RetPath list, so since
  /external/llvm/test/CodeGen/Generic/
2009-11-16-BadKillsCrash.ll 67 %eh_ptr = extractvalue { i8*, i32 } %lpad1, 0
  /external/llvm/test/CodeGen/SPARC/
64cond.ll 125 %a1 = extractvalue { i64, i1 } %a0, 1

Completed in 6851 milliseconds

1 2 3 4 5 6 7 8 91011>>