Searched defs:Undef (Results 1 - 11 of 11) sorted by relevance

/external/llvm/unittests/VMCore/
H A DConstantsTest.cpp24 Constant* Undef = UndefValue::get(Int1); local
52 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One));
60 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One));
64 EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One));
/external/clang/test/SemaCXX/
H A Dqualified-id-lookup.cpp99 struct Undef { // expected-note{{definition of 'Undef' is not complete until the closing '}'}} struct
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/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h34 Undef = 0x20, enumerator in enum:llvm::RegState::__anon7141
37 DefineNoRead = Define | Undef,
67 flags & RegState::Undef,
311 return B ? RegState::Undef : 0;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp840 Constant *Undef = UndefValue::get(EltTy); local
845 Elts.push_back(Undef);
854 Elts.push_back(Undef);
H A DInstCombinePHI.cpp786 Value *Undef = UndefValue::get(FirstPhi.getType()); local
788 ReplaceInstUsesWith(*PHIsToSlice[i], Undef);
789 return ReplaceInstUsesWith(FirstPhi, Undef);
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp297 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty); local
298 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
H A DItaniumCXXABI.cpp793 RValue Undef = RValue::get(llvm::UndefValue::get(T)); local
794 return ItaniumCXXABI::EmitReturnFromThunk(CGF, Undef, ResultType);
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp1616 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, local
1624 SDValue RetVals[] = { Undef, Ret };
1630 SDValue RetVals[] = { Undef, Ret };
1778 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, local
1785 SDValue RetVals[] = { Undef, Ret };
/external/valgrind/main/coregrind/m_debuginfo/
H A Dpriv_storage.h311 } Undef; member in union:__anon12178::__anon12179
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2484 // Undef bits can contribute to a possible optimisation if set, so
5463 /// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
6625 SDValue Undef = DAG.getUNDEF(N->getValueType(0)); local
6629 Undef.getNode()->dump(&DAG);
6632 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef, &DeadNodes); local
H A DSelectionDAG.cpp4220 SDValue Undef = getUNDEF(Ptr.getValueType()); local
4221 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
4231 SDValue Undef = getUNDEF(Ptr.getValueType()); local
4232 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
4283 SDValue Undef = getUNDEF(Ptr.getValueType()); local
4284 SDValue Ops[] = { Chain, Val, Ptr, Undef };
4350 SDValue Undef = getUNDEF(Ptr.getValueType()); local
4351 SDValue Ops[] = { Chain, Val, Ptr, Undef };

Completed in 76 milliseconds