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

  /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/clang/test/SemaCXX/
qualified-id-lookup.cpp 100 struct Undef { // expected-note{{definition of 'Undef' is not complete until the closing '}'}}
103 Undef::type member;
105 static int size = sizeof(Undef); // expected-error{{invalid application of 'sizeof' to an incomplete type 'Undef'}}
110 int Undef::f() {
111 return sizeof(Undef);
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 34 Undef = 0x20,
38 DefineNoRead = Define | Undef,
68 flags & RegState::Undef,
319 return B ? RegState::Undef : 0;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 693 // 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/llvm/lib/Transforms/Scalar/
Reassociate.cpp 422 /// NOTE: This routine will set operands of non-leaf non-root nodes to undef in
430 /// will be replaced by undef. If it is B's operand then this gives:
434 /// + + | A, B - operand of B replaced with undef
440 /// Note that such undef operands can only be reached by passing through 'I'.
442 /// then you will never see such an undef operand unless you get back to 'I',
762 Constant *Undef = UndefValue::get(I->getType());
764 Undef, Undef, "", I);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 366 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty);
367 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
    [all...]
ItaniumCXXABI.cpp 793 RValue Undef = RValue::get(llvm::UndefValue::get(T));
794 return ItaniumCXXABI::EmitReturnFromThunk(CGF, Undef, ResultType);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
X86ISelLowering.cpp 75 // Extract from UNDEF is UNDEF.
76 if (Vec.getOpcode() == ISD::UNDEF)
103 // Inserting UNDEF is Result
104 if (Vec.getOpcode() == ISD::UNDEF)
617 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
644 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
645 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
670 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 311 } Undef;
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 112 /// BUILD_VECTOR where all of the elements are ~0 or undef.
122 // Skip over all of the undef values.
123 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
126 // Do not accept an all-undef vector.
155 N->getOperand(i).getOpcode() != ISD::UNDEF)
162 /// BUILD_VECTOR where all of the elements are 0 or undef.
172 // Skip over all of the undef values.
173 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
176 // Do not accept an all-undef vector.
195 N->getOperand(i).getOpcode() != ISD::UNDEF)
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]

Completed in 868 milliseconds