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

  /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 35 Undef = 0x20,
39 DefineNoRead = Define | Undef,
77 flags & RegState::Undef,
411 return B ? RegState::Undef : 0;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombinePHI.cpp 782 Value *Undef = UndefValue::get(FirstPhi.getType());
784 ReplaceInstUsesWith(*PHIsToSlice[i], Undef);
785 return ReplaceInstUsesWith(FirstPhi, Undef);
    [all...]
InstCombineCalls.cpp 510 // This is the value because if undef were NaN, we would return the other
513 // fmin(undef, x) -> x
517 // fmin(x, undef) -> x
779 // ones undef
800 Value *Undef = UndefValue::get(Vec->getType());
805 Vec, Undef, ConstantDataVector::get(
    [all...]
  /external/llvm/unittests/IR/
ConstantsTest.cpp 29 Constant* Undef = UndefValue::get(Int1);
56 // @h = constant i1 undef
57 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One));
64 // @j = constant i1 undef
65 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One));
68 // @m = constant i1 undef
69 EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One));
279 #undef CHECK
  /external/llvm/lib/Target/Hexagon/
HexagonExpandCondsets.cpp 259 /// use will be marked as "undef", otherwise it will be "defined". This
461 // segments, still add the implicit use, but make it "undef".
466 bool Undef = false;
468 Undef = true;
477 Undef = true;
479 if (!Undef) {
560 // Otherwise, remove the current segment, and make the end of it "undef".
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 539 /// NOTE: This routine will set operands of non-leaf non-root nodes to undef in
547 /// will be replaced by undef. If it is B's operand then this gives:
551 /// + + | A, B - operand of B replaced with undef
557 /// Note that such undef operands can only be reached by passing through 'I'.
559 /// then you will never see such an undef operand unless you get back to 'I',
    [all...]
StructurizeCFG.cpp 582 Value *Undef = UndefValue::get(Phi.getType());
583 Phi.addIncoming(Undef, From);
605 Value *Undef = UndefValue::get(Phi->getType());
607 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
608 Updater.AddAvailableValue(To, Undef);
620 Updater.AddAvailableValue(Dominator.getResult(), Undef);
910 Value *Undef = UndefValue::get(II->getType());
912 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 650 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty);
651 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
    [all...]
ItaniumCXXABI.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
X86ISelLowering.cpp 562 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
591 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
592 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
621 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
priv_storage.h 427 } Undef;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 96 /// BUILD_VECTOR where all of the elements are ~0 or undef.
106 // Skip over all of the undef values.
107 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
110 // Do not accept an all-undef vector.
137 N->getOperand(i).getOpcode() != ISD::UNDEF)
144 /// BUILD_VECTOR where all of the elements are 0 or undef.
154 if (N->getOperand(i).getOpcode() == ISD::UNDEF)
177 // Do not accept an all-undef vector.
184 /// all ConstantSDNode or undef.
191 if (Op.getOpcode() == ISD::UNDEF)
    [all...]
DAGCombiner.cpp 740 // FIXME: We blindly ignore splats which include undef which is overly
    [all...]

Completed in 571 milliseconds