HomeSort by relevance Sort by last modified time
    Searched defs:Undef (Results 1 - 23 of 23) 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,
74 flags & RegState::Undef,
401 return B ? RegState::Undef : 0;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 677 // INT_MIN % -1 (== undef) by accident.
    [all...]
InstCombinePHI.cpp     [all...]
  /external/llvm/unittests/IR/
ConstantsTest.cpp 30 Constant* Undef = UndefValue::get(Int1);
57 // @h = constant i1 undef
58 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One));
65 // @j = constant i1 undef
66 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One));
69 // @m = constant i1 undef
70 EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One));
297 #undef CHECK
  /external/skia/src/core/
SkRemote.cpp 465 #undef O
635 struct Undef {
642 Undef undef{fWrapped};
643 fMatrix .foreach(undef);
644 fMisc .foreach(undef);
645 fPath .foreach(undef);
646 fStroke .foreach(undef);
647 fTextBlob .foreach(undef);
648 fPathEffect .foreach(undef);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonExpandCondsets.cpp 268 /// use will be marked as "undef", otherwise it will be "defined". This
470 // segments, still add the implicit use, but make it "undef".
475 bool Undef = false;
477 Undef = true;
486 Undef = true;
488 if (!Undef) {
569 // Otherwise, remove the current segment, and make the end of it "undef".
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 506 /// NOTE: This routine will set operands of non-leaf non-root nodes to undef in
514 /// will be replaced by undef. If it is B's operand then this gives:
518 /// + + | A, B - operand of B replaced with undef
524 /// Note that such undef operands can only be reached by passing through 'I'.
526 /// then you will never see such an undef operand unless you get back to 'I',
    [all...]
StructurizeCFG.cpp 578 Value *Undef = UndefValue::get(Phi.getType());
579 Phi.addIncoming(Undef, From);
601 Value *Undef = UndefValue::get(Phi->getType());
603 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
604 Updater.AddAvailableValue(To, Undef);
616 Updater.AddAvailableValue(Dominator.getResult(), Undef);
906 Value *Undef = UndefValue::get(II->getType());
908 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 732 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty);
733 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
    [all...]
CGDebugInfo.cpp     [all...]
ItaniumCXXABI.cpp     [all...]
CGBuiltin.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 570 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
599 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
600 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
637 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...]
LoopVectorize.cpp 368 /// incoming value is 'Undef'. While vectorizing we only handled real values
369 /// that were defined inside the loop. Here we fix the 'undef case'.
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 98 /// BUILD_VECTOR where all of the elements are ~0 or undef.
108 // Skip over all of the undef values.
109 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
112 // Do not accept an all-undef vector.
139 N->getOperand(i).getOpcode() != ISD::UNDEF)
146 /// BUILD_VECTOR where all of the elements are 0 or undef.
156 if (Op.getOpcode() == ISD::UNDEF)
178 // Do not accept an all-undef vector.
185 /// all ConstantSDNode or undef.
191 if (Op.getOpcode() == ISD::UNDEF)
    [all...]
DAGCombiner.cpp 797 // FIXME: We blindly ignore splats which include undef which is overly
    [all...]

Completed in 1037 milliseconds