/external/clang/test/SemaCXX/ |
H A D | qualified-id-lookup.cpp | 100 struct Undef { // expected-note{{definition of 'Undef' is not complete until the closing '}'}} struct 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/ |
H A D | ConstantsTest.cpp | 29 Constant* Undef = UndefValue::get(Int1); local 57 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One)); 65 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One)); 69 EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One));
|
/external/llvm/include/llvm/CodeGen/ |
H A D | MachineInstrBuilder.h | 35 Undef = 0x20, enumerator in enum:llvm::RegState::__anon10136 39 DefineNoRead = Define | Undef, 77 flags & RegState::Undef, 411 return B ? RegState::Undef : 0;
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombinePHI.cpp | 782 Value *Undef = UndefValue::get(FirstPhi.getType()); local 784 ReplaceInstUsesWith(*PHIsToSlice[i], Undef); 785 return ReplaceInstUsesWith(FirstPhi, Undef);
|
H A D | InstCombineSimplifyDemanded.cpp | 900 return nullptr; // Undef. 988 Constant *Undef = UndefValue::get(EltTy); local 993 Elts.push_back(Undef); 1002 Elts.push_back(Undef);
|
H A D | InstCombineCalls.cpp | 800 Value *Undef = UndefValue::get(Vec->getType()); local 805 Vec, Undef, ConstantDataVector::get( 1189 // Undef is undef, even after relocation.
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | Reassociate.cpp | 870 Constant *Undef = UndefValue::get(I->getType()); local 872 Undef, Undef, "", I);
|
H A D | StructurizeCFG.cpp | 582 Value *Undef = UndefValue::get(Phi.getType()); local 583 Phi.addIncoming(Undef, From); 605 Value *Undef = UndefValue::get(Phi->getType()); local 607 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef); 608 Updater.AddAvailableValue(To, Undef); 620 Updater.AddAvailableValue(Dominator.getResult(), Undef); 910 Value *Undef = UndefValue::get(II->getType()); local 912 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
|
/external/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 650 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty); local 651 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
|
H A D | ItaniumCXXABI.cpp | 1550 RValue Undef = RValue::get(llvm::UndefValue::get(T)); local 1551 return ItaniumCXXABI::EmitReturnFromThunk(CGF, Undef, ResultType);
|
/external/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelDAGToDAG.cpp | 1162 SDValue Undef = local 1164 return DAG.getTargetInsertSubreg(AArch64::dsub, DL, WideTy, Undef, V64Reg);
|
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonExpandCondsets.cpp | 466 bool Undef = false; local 468 Undef = true; 477 Undef = true; 479 if (!Undef) {
|
/external/llvm/include/llvm/IR/ |
H A D | IRBuilder.h | 1582 Value *Undef = UndefValue::get(VectorType::get(V->getType(), NumElts)); local 1583 V = CreateInsertElement(Undef, V, ConstantInt::get(I32Ty, 0), 1588 return CreateShuffleVector(V, Undef, Zeros, Name + ".splat");
|
/external/llvm/lib/Target/X86/ |
H A D | X86ISelDAGToDAG.cpp | 1868 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, local 1870 SDValue RetVals[] = { Undef, Ret };
|
H A D | X86ISelLowering.cpp | 4086 SDValue Undef = DAG.getUNDEF(ResultVT); local 4087 SDValue Vec256 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Undef, 6006 SDValue Undef = DAG.getUNDEF(ResVT); local 6010 V2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResVT, Undef, V2, ZeroIdx); 6015 V1 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResVT, Undef, V1, ZeroIdx); 10823 SDValue Undef = DAG.getUNDEF(OpVT); local 10832 SDValue Vec2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, OpVT, Undef, 10838 SDValue Vec2 = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, OpVT, Undef, 11947 SDValue Undef = DAG.getUNDEF(InVT); local 11949 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef); 12130 SDValue Undef = DAG.getUNDEF(MVT::v16i8); local 13738 SDValue Undef = DAG.getUNDEF(InVT); local [all...] |
/external/valgrind/coregrind/m_debuginfo/ |
H A D | priv_storage.h | 427 } Undef; member in union:__anon15895::__anon15896
|
/external/llvm/lib/Target/Mips/ |
H A D | MipsISelLowering.cpp | 2152 SDValue Chain = LD->getChain(), Undef = DAG.getUNDEF(VT); local 2162 SDValue LDL = createLoadLR(MipsISD::LDL, DAG, LD, Chain, Undef, 2168 SDValue LWL = createLoadLR(MipsISD::LWL, DAG, LD, Chain, Undef,
|
/external/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 2566 Value *Undef = UndefValue::get(Ty); local 2567 Scalar->replaceAllUsesWith(Undef);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 4836 SDValue Undef = getUNDEF(Ptr.getValueType()); local 4837 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef, 4845 SDValue Undef = getUNDEF(Ptr.getValueType()); local 4846 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef, 4856 SDValue Undef = getUNDEF(Ptr.getValueType()); local 4857 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, 4866 SDValue Undef = getUNDEF(Ptr.getValueType()); local 4867 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, 4916 SDValue Undef = getUNDEF(Ptr.getValueType()); local 4917 SDValue Ops[] = { Chain, Val, Ptr, Undef }; 4985 SDValue Undef = getUNDEF(Ptr.getValueType()); local [all...] |
H A D | DAGCombiner.cpp | 2899 // Undef bits can contribute to a possible optimisation if set, so 3517 // Both shuffle indexes are undef. Propagate Undef. 6939 /// We know that BV is a build_vector node with Constant, ConstantFP or Undef 9006 SDValue Undef = DAG.getUNDEF(N->getValueType(0)); local 9018 Undef.getNode()->dump(&DAG); 9021 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef); local 12178 // shuffle(B, shuffle(A, Undef)) -> shuffle(shuffle(A, Undef), B) 12219 // Propagate Undef. 12230 // Propagate Undef [all...] |