HomeSort by relevance Sort by last modified time
    Searched refs:Undef (Results 1 - 23 of 23) 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/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,
351 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));
257 #undef CHECK
  /external/llvm/lib/Target/R600/
AMDGPUStructurizeCFG.cpp 521 Value *Undef = UndefValue::get(Phi.getType());
522 Phi.addIncoming(Undef, From);
545 Value *Undef = UndefValue::get(Phi->getType());
547 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
548 Updater.AddAvailableValue(To, Undef);
560 Updater.AddAvailableValue(Dominator.getResult(), Undef);
847 Value *Undef = UndefValue::get(II->getType());
849 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 786 Value *Undef = UndefValue::get(FirstPhi.getType());
788 ReplaceInstUsesWith(*PHIsToSlice[i], Undef);
789 return ReplaceInstUsesWith(FirstPhi, Undef);
    [all...]
InstCombineSimplifyDemanded.cpp 718 // INT_MIN % -1 (== undef) by accident.
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
priv_storage.h 327 } Undef;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 390 /// NOTE: This routine will set operands of non-leaf non-root nodes to undef in
398 /// will be replaced by undef. If it is B's operand then this gives:
402 /// + + | A, B - operand of B replaced with undef
408 /// Note that such undef operands can only be reached by passing through 'I'.
410 /// then you will never see such an undef operand unless you get back to 'I',
719 Constant *Undef = UndefValue::get(I->getType());
721 Undef, Undef, "", I);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 412 llvm::Value *Undef = llvm::UndefValue::get(Int32Ty);
413 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
    [all...]
ItaniumCXXABI.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 97 /// BUILD_VECTOR where all of the elements are ~0 or undef.
107 // Skip over all of the undef values.
108 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
111 // Do not accept an all-undef vector.
138 N->getOperand(i).getOpcode() != ISD::UNDEF)
145 /// BUILD_VECTOR where all of the elements are 0 or undef.
155 // Skip over all of the undef values.
156 while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
159 // Do not accept an all-undef vector.
178 N->getOperand(i).getOpcode() != ISD::UNDEF)
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 463 // Undef for 0b11 just in case it occurs. Don't want the compiler to optimise
465 enum OpcTypes { SBFM = 0, BFM, UBFM, Undef } Opc;
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
X86ISelDAGToDAG.cpp     [all...]
X86ISelLowering.cpp 75 // Extract from UNDEF is UNDEF.
76 if (Vec.getOpcode() == ISD::UNDEF)
108 // Inserting UNDEF is Result
109 if (Vec.getOpcode() == ISD::UNDEF)
645 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
674 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
675 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
704 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/
IfConversion.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]

Completed in 1191 milliseconds