/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/valgrind/memcheck/tests/ |
H A D | origin1-yes.stderr.exp | 2 Undef 1 of 8 (stack, 32 bit) 9 Undef 2 of 8 (stack, 32 bit) 16 Undef 3 of 8 (stack, 64 bit) 23 Undef 4 of 8 (mallocd, 32-bit) 31 Undef 5 of 8 (realloc) 39 Undef 6 of 8 (MALLOCLIKE_BLOCK) 46 Undef 7 of 8 (brk) 50 Undef 8 of 8 (MAKE_MEM_UNDEFINED)
|
H A D | origin3-no.stderr.exp | 2 Undef 1 of 8 (8 bit undef) 12 Undef 2 of 8 (8 bits of 32 undef) 20 Undef 3 of 8 (32 bit undef) 30 Undef 4 of 8 (32 bit undef, unaligned) 40 Undef 5 of 8 (32 bit undef, modified) 50 Undef 6 of 8 (32 bit undef, unaligned, strange, #1) 59 Undef 7 of 8 (32 bit undef, unaligned, strange, #2) 68 Undef 8 of 8 (32 bit undef, unaligned, strange, #3)
|
H A D | origin2-not-quite.stderr.exp | 2 Undef 1 of 3 (64-bit FP) 12 Undef 2 of 3 (32-bit FP) 22 Undef 3 of 3 (int)
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | StructurizeCFG.cpp | 578 Value *Undef = UndefValue::get(Phi.getType()); local 579 Phi.addIncoming(Undef, From); 601 Value *Undef = UndefValue::get(Phi->getType()); local 603 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef); 604 Updater.AddAvailableValue(To, Undef); 616 Updater.AddAvailableValue(Dominator.getResult(), Undef); 906 Value *Undef = UndefValue::get(II->getType()); local 908 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
|
H A D | RewriteStatepointsForGC.cpp | 923 UndefValue *Undef = UndefValue::get(Sel->getType()); 925 return SelectInst::Create(Sel->getCondition(), Undef, 926 Undef, Name, Sel); 928 UndefValue *Undef = UndefValue::get(EE->getVectorOperand()->getType()); 930 return ExtractElementInst::Create(Undef, EE->getIndexOperand(), Name,
|
H A D | Reassociate.cpp | 837 Constant *Undef = UndefValue::get(I->getType()); local 839 Undef, Undef, "", I);
|
/external/llvm/include/llvm/CodeGen/ |
H A D | MachineInstrBuilder.h | 35 Undef = 0x20, enumerator in enum:llvm::RegState::__anon11920 39 DefineNoRead = Define | Undef, 74 flags & RegState::Undef, 401 return B ? RegState::Undef : 0;
|
/external/llvm/test/MC/MachO/ARM/ |
H A D | darwin-ARM-reloc.s | 141 @ CHECK: Type: Undef (0x0)
|
H A D | darwin-Thumb-reloc.s | 103 @ CHECK: Type: Undef (0x0)
|
/external/llvm/unittests/IR/ |
H A D | ConstantsTest.cpp | 30 Constant* Undef = UndefValue::get(Int1); local 58 EXPECT_EQ(Undef, ConstantExpr::getShl(One, One)); 66 EXPECT_EQ(Undef, ConstantExpr::getLShr(One, One)); 70 EXPECT_EQ(Undef, ConstantExpr::getAShr(One, One));
|
/external/clang/test/SemaTemplate/ |
H A D | ms-lookup-template-base-classes.cpp | 526 Undef::staticMethod(); // expected-error {{use of undeclared identifier 'Undef'}}
|
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonExpandCondsets.cpp | 475 bool Undef = false; local 477 Undef = true; 486 Undef = true; 488 if (!Undef) {
|
H A D | HexagonInstrInfo.cpp | 893 .addReg(Reg, RegState::Undef) 894 .addReg(Reg, RegState::Undef); 901 .addReg(Reg, RegState::Undef) 902 .addReg(Reg, RegState::Undef); 3649 // See IfConversion.cpp why we add RegState::Implicit | RegState::Undef 3654 PredRegFlags |= RegState::Undef;
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombinePHI.cpp | 872 Value *Undef = UndefValue::get(FirstPhi.getType()); local 874 ReplaceInstUsesWith(*PHIsToSlice[i], Undef); 875 return ReplaceInstUsesWith(FirstPhi, Undef);
|
H A D | InstCombineSimplifyDemanded.cpp | 816 return nullptr; // Undef. 904 Constant *Undef = UndefValue::get(EltTy); local 909 Elts.push_back(Undef); 918 Elts.push_back(Undef);
|
/external/valgrind/coregrind/m_debuginfo/ |
H A D | priv_storage.h | 427 } Undef; member in union:__anon18698::__anon18699
|
/external/skia/src/core/ |
H A D | SkRemote.cpp | 635 struct Undef { struct in class:SkRemote::final 642 Undef undef{fWrapped};
|
/external/llvm/include/llvm/IR/ |
H A D | IRBuilder.h | 1705 Value *Undef = UndefValue::get(VectorType::get(V->getType(), NumElts)); local 1706 V = CreateInsertElement(Undef, V, ConstantInt::get(I32Ty, 0), 1711 return CreateShuffleVector(V, Undef, Zeros, Name + ".splat");
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 5127 SDValue Undef = getUNDEF(Ptr.getValueType()); local 5128 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef, 5136 SDValue Undef = getUNDEF(Ptr.getValueType()); local 5137 return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef, 5147 SDValue Undef = getUNDEF(Ptr.getValueType()); local 5148 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, 5157 SDValue Undef = getUNDEF(Ptr.getValueType()); local 5158 return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, 5207 SDValue Undef = getUNDEF(Ptr.getValueType()); local 5208 SDValue Ops[] = { Chain, Val, Ptr, Undef }; 5276 SDValue Undef = getUNDEF(Ptr.getValueType()); local [all...] |
/external/llvm/lib/CodeGen/ |
H A D | IfConversion.cpp | 1024 MIB.addReg(Reg.first, RegState::Implicit | RegState::Undef); 1041 MIB.addReg(Reg.first, RegState::Implicit | RegState::Undef);
|
/external/llvm/lib/Target/X86/ |
H A D | X86InstrInfo.cpp | 2598 .addReg(NewSrc, RegState::Define | RegState::Undef, X86::sub_32bit) 5275 MIB.addReg(Reg, RegState::Undef).addReg(Reg, RegState::Undef); 5290 .addReg(Reg, RegState::Undef) 5291 .addReg(Reg, RegState::Undef); 5900 .addReg(Reg, RegState::Undef).addReg(Reg, RegState::Undef); 5906 .addReg(XReg, RegState::Undef).addReg(XReg, RegState::Undef)
|
H A D | X86FrameLowering.cpp | 595 .addReg(ZeroReg, RegState::Undef) 596 .addReg(ZeroReg, RegState::Undef);
|
/external/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 732 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty); local 733 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
|
/external/llvm/lib/CodeGen/MIRParser/ |
H A D | MIParser.cpp | 831 Flags |= RegState::Undef; 943 Flags & RegState::Kill, Flags & RegState::Dead, Flags & RegState::Undef,
|