HomeSort by relevance Sort by last modified time
    Searched defs:Undef (Results 1 - 18 of 18) 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/unittests/IR/
ConstantsTest.cpp 27 Constant* Undef = UndefValue::get(Int1);
54 // @h = constant i1 undef
55 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One));
62 // @j = constant i1 undef
63 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One));
66 // @m = constant i1 undef
67 EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One));
257 #undef CHECK
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 35 Undef = 0x20,
39 DefineNoRead = Define | Undef,
73 flags & RegState::Undef,
396 return B ? RegState::Undef : 0;
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 480 // Undef for 0b11 just in case it occurs. Don't want the compiler to optimise
482 enum OpcTypes { SBFM = 0, BFM, UBFM, Undef } Opc;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 718 // 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 469 /// NOTE: This routine will set operands of non-leaf non-root nodes to undef in
477 /// will be replaced by undef. If it is B's operand then this gives:
481 /// + + | A, B - operand of B replaced with undef
487 /// Note that such undef operands can only be reached by passing through 'I'.
489 /// then you will never see such an undef operand unless you get back to 'I',
    [all...]
StructurizeCFG.cpp 513 Value *Undef = UndefValue::get(Phi.getType());
514 Phi.addIncoming(Undef, From);
536 Value *Undef = UndefValue::get(Phi->getType());
538 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
539 Updater.AddAvailableValue(To, Undef);
551 Updater.AddAvailableValue(Dominator.getResult(), Undef);
832 Value *Undef = UndefValue::get(II->getType());
834 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 529 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty);
530 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
    [all...]
ItaniumCXXABI.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
X86ISelLowering.cpp 72 // Extract from UNDEF is UNDEF.
73 if (Vec.getOpcode() == ISD::UNDEF)
121 // Inserting UNDEF is Result
122 if (Vec.getOpcode() == ISD::UNDEF)
690 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
719 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
720 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
749 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 327 } Undef;
    [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 // Skip over all of the undef values.
155 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
158 // Do not accept an all-undef vector.
177 N->getOperand(i).getOpcode() != ISD::UNDEF)
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]

Completed in 302 milliseconds