HomeSort by relevance Sort by last modified time
    Searched refs:Undef (Results 1 - 15 of 15) sorted by null

  /external/clang/test/SemaCXX/
qualified-id-lookup.cpp 99 struct Undef { // expected-note{{definition of 'Undef' is not complete until the closing '}'}}
102 Undef::type member;
104 static int size = sizeof(Undef); // expected-error{{invalid application of 'sizeof' to an incomplete type 'Undef'}}
109 int Undef::f() {
110 return sizeof(Undef);
  /external/valgrind/main/memcheck/tests/
origin1-yes.stderr.exp 2 Undef 1 of 8 (stack, 32 bit)
9 Undef 2 of 8 (stack, 32 bit)
16 Undef 3 of 8 (stack, 64 bit)
23 Undef 4 of 8 (mallocd, 32-bit)
31 Undef 5 of 8 (realloc)
39 Undef 6 of 8 (MALLOCLIKE_BLOCK)
46 Undef 7 of 8 (brk)
50 Undef 8 of 8 (MAKE_MEM_UNDEFINED)
origin3-no.stderr.exp 2 Undef 1 of 8 (8 bit undef)
12 Undef 2 of 8 (8 bits of 32 undef)
20 Undef 3 of 8 (32 bit undef)
30 Undef 4 of 8 (32 bit undef, unaligned)
40 Undef 5 of 8 (32 bit undef, modified
    [all...]
origin2-not-quite.stderr.exp 2 Undef 1 of 3 (64-bit FP)
12 Undef 2 of 3 (32-bit FP)
22 Undef 3 of 3 (int)
  /external/llvm/unittests/VMCore/
ConstantsTest.cpp 24 Constant* Undef = UndefValue::get(Int1);
51 // @h = constant i1 undef
52 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One));
59 // @j = constant i1 undef
60 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One));
63 // @m = constant i1 undef
64 EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One));
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 34 Undef = 0x20,
66 flags & RegState::Undef,
259 return B ? RegState::Undef : 0;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 685 // INT_MIN % -1 (== undef) by accident.
    [all...]
InstCombinePHI.cpp 786 Value *Undef = UndefValue::get(FirstPhi.getType());
788 ReplaceInstUsesWith(*PHIsToSlice[i], Undef);
789 return ReplaceInstUsesWith(FirstPhi, Undef);
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 253 } Undef;
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 290 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty);
291 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
    [all...]
ItaniumCXXABI.cpp 789 RValue Undef = RValue::get(llvm::UndefValue::get(T));
790 return ItaniumCXXABI::EmitReturnFromThunk(CGF, Undef, ResultType);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 110 /// BUILD_VECTOR where all of the elements are ~0 or undef.
120 // Skip over all of the undef values.
121 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
124 // Do not accept an all-undef vector.
144 N->getOperand(i).getOpcode() != ISD::UNDEF)
151 /// BUILD_VECTOR where all of the elements are 0 or undef.
161 // Skip over all of the undef values.
162 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
165 // Do not accept an all-undef vector.
184 N->getOperand(i).getOpcode() != ISD::UNDEF)
    [all...]
DAGCombiner.cpp     [all...]

Completed in 118 milliseconds