HomeSort by relevance Sort by last modified time
    Searched refs:Undef (Results 1 - 25 of 30) sorted by null

1 2

  /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/valgrind/main/memcheck/tests/
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)
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
    [all...]
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/include/llvm/CodeGen/
MachineInstrBuilder.h 35 Undef = 0x20,
39 DefineNoRead = Define | Undef,
73 flags & RegState::Undef,
401 return B ? RegState::Undef : 0;
  /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));
275 #undef CHECK
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 517 Value *Undef = UndefValue::get(Phi.getType());
518 Phi.addIncoming(Undef, From);
540 Value *Undef = UndefValue::get(Phi->getType());
542 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
543 Updater.AddAvailableValue(To, Undef);
555 Updater.AddAvailableValue(Dominator.getResult(), Undef);
845 Value *Undef = UndefValue::get(II->getType());
847 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
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...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 782 Value *Undef = UndefValue::get(FirstPhi.getType());
784 ReplaceInstUsesWith(*PHIsToSlice[i], Undef);
785 return ReplaceInstUsesWith(FirstPhi, Undef);
    [all...]
InstCombineSimplifyDemanded.cpp 719 // INT_MIN % -1 (== undef) by accident.
    [all...]
InstCombineCalls.cpp 408 // X + undef -> undef
442 // undef - X -> undef
443 // X - undef -> undef
500 // X * undef -> undef
671 // ones undef
677 Value *Undef = UndefValue::get(Vec->getType())
    [all...]
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
define_test.cpp 721 TEST_F(DefineTest, Undef)
725 "#undef foo\n"
737 const char* input = "#undef __LINE__\n"
739 "#undef __FILE__\n"
741 "#undef __VERSION__\n"
743 "#undef GL_ES\n"
778 "#undef foo\n"
797 "#undef x \n"
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 375 } Undef;
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 95 /// BUILD_VECTOR where all of the elements are ~0 or undef.
105 // Skip over all of the undef values.
106 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
109 // Do not accept an all-undef vector.
136 N->getOperand(i).getOpcode() != ISD::UNDEF)
143 /// BUILD_VECTOR where all of the elements are 0 or undef.
153 if (N->getOperand(i).getOpcode() == ISD::UNDEF)
176 // Do not accept an all-undef vector.
183 /// all ConstantSDNode or undef.
190 if (Op.getOpcode() == ISD::UNDEF)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 582 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty);
583 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
    [all...]
ItaniumCXXABI.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ExpandPseudoInsts.cpp 644 .addReg(SrcH, RegState::Undef)
AArch64InstrInfo.cpp     [all...]
AArch64ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.cpp 183 .addReg(DestReg, RegState::Undef)
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
X86ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/
IfConversion.cpp     [all...]

Completed in 1029 milliseconds

1 2