HomeSort by: relevance | last modified time | path
    Searched defs:Undefined (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/InterfaceStub/
ELFStub.h 42 bool Undefined;
  /src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
Symbol.h 38 /// Undefined
39 Undefined = 1U << 3,
84 return (Flags & SymbolFlags::Undefined) == SymbolFlags::Undefined;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
CalledValuePropagation.cpp 60 enum CVPLatticeStateTy { Undefined, FunctionSet, Overdefined, Untracked };
70 CVPLatticeVal() : LatticeState(Undefined) {}
99 /// is empty for lattice values in the undefined, overdefined, and untracked
117 : AbstractLatticeFunction(CVPLatticeVal(CVPLatticeVal::Undefined),
147 /// FunctionSet values and a FunctionSet value with an Undefined value. For
192 OS << "Undefined ";
227 /// pointers as an optimization, since calling these values is undefined
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugFrame.h 40 Undefined,
89 /// Create a location where the value is undefined and not available. This can
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 226 Undefined,
305 bool pop(StringRef Ins, NestingType NT1, NestingType NT2 = Undefined) {
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 487 class Undefined : public SExpr {
489 Undefined(const Stmt *S = nullptr) : SExpr(COP_Undefined), Cstmt(S) {}
490 Undefined(const Undefined &U) : SExpr(U), Cstmt(U.Cstmt) {}
500 typename C::CType compare(const Undefined* E, C& Cmp) const {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
llvm-nm.cpp 68 cl::opt<bool> UndefinedOnly("undefined-only",
69 cl::desc("Show only undefined symbols"),
71 cl::alias UndefinedOnly2("u", cl::desc("Alias for --undefined-only"),
502 outs() << "undefined [lazy bound]) ";
505 outs() << "undefined [private lazy bound]) ";
508 outs() << "undefined [private]) ";
510 outs() << "undefined) ";
837 bool Undefined = SymFlags & SymbolRef::SF_Undefined;
841 if ((!Undefined && UndefinedOnly) || (Undefined && DefinedOnly) |
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 155 enum { Overdefined = -3, Undefined = -2 };
162 // undefined, otherwise set to the first true element. SecondTrueElement is
163 // -2 when undefined, -3 when overdefined and >= 0 when that index is true.
164 int FirstTrueElement = Undefined, SecondTrueElement = Undefined;
168 int FirstFalseElement = Undefined, SecondFalseElement = Undefined;
173 /// This is -2 when undefined, -3 when overdefined, and otherwise the last
174 /// index in the range (inclusive). We use -2 for undefined here because we
176 int TrueRangeEnd = Undefined, FalseRangeEnd = Undefined
    [all...]

Completed in 21 milliseconds