Home
last modified time | relevance | path

Searched refs:Undefined (Results 1 – 25 of 73) sorted by relevance

123

/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DSymbolTable.cpp129 auto *Undef = dyn_cast<Undefined>(Sym); in loadMinGWAutomaticImports()
207 auto *Undef = dyn_cast<Undefined>(Sym); in reportRemainingUndefines()
314 replaceSymbol<Undefined>(S, Name); in addUndefined()
335 auto *U = dyn_cast<Undefined>(S); in addLazy()
358 if (WasInserted || isa<Undefined>(S) || isa<Lazy>(S)) in addAbsolute()
370 if (WasInserted || isa<Undefined>(S) || isa<Lazy>(S)) in addAbsolute()
382 if (WasInserted || isa<Undefined>(S) || isa<Lazy>(S)) in addSynthetic()
437 if (WasInserted || isa<Undefined>(S) || isa<Lazy>(S)) { in addImportData()
452 if (WasInserted || isa<Undefined>(S) || isa<Lazy>(S)) { in addImportThunk()
491 if (!isa<Undefined>(Sym)) in findMangle()
[all …]
H A DSymbols.cpp99 Defined *Undefined::getWeakAlias() { in getWeakAlias()
101 for (Symbol *A = WeakAlias; A; A = cast<Undefined>(A)->WeakAlias) in getWeakAlias()
H A DSymbols.h271 class Undefined : public Symbol {
273 explicit Undefined(StringRef N) : Symbol(UndefinedKind, N) {} in Undefined() function
414 alignas(Undefined) char F[sizeof(Undefined)];
H A DLTO.cpp80 static void undefine(Symbol *S) { replaceSymbol<Undefined>(S, S->getName()); } in undefine()
H A DInputFiles.h53 class Undefined; variable
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DSymbols.h236 class Undefined : public Symbol {
238 Undefined(InputFile *File, StringRefZ Name, uint8_t Binding, uint8_t StOther, in Undefined() function
365 alignas(Undefined) char C[sizeof(Undefined)];
H A DConfig.h116 std::vector<llvm::StringRef> Undefined; member
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DCalledValuePropagation.cpp60 enum CVPLatticeStateTy { Undefined, FunctionSet, Overdefined, Untracked }; enumerator
70 CVPLatticeVal() : LatticeState(Undefined) {} in CVPLatticeVal()
118 : AbstractLatticeFunction(CVPLatticeVal(CVPLatticeVal::Undefined), in CVPLatticeFunc()
/freebsd-12.1/sys/dev/liquidio/
H A Dlio_rss.h64 #error Undefined BYTE_ORDER
/freebsd-12.1/contrib/libc++/include/
H A Dbit114 return 32; // Undefined Behavior.
136 return 64; // Undefined Behavior.
/freebsd-12.1/contrib/llvm/include/llvm/TextAPI/ELF/
H A DELFStub.h43 bool Undefined; member
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/
H A DSanitizerArgs.cpp30 NeedsUbsanRt = Undefined | Integer | ImplicitConversion | Nullability | CFI,
37 Memory | KernelMemory | Leak | Undefined | Integer |
40 RecoverableByDefault = Undefined | Integer | ImplicitConversion | Nullability,
43 LegacyFsanitizeRecoverMask = Undefined | Integer,
45 TrappingSupported = (Undefined & ~Vptr) | UnsignedIntegerOverflow |
110 {"ubsan_blacklist.txt", Undefined | Integer | Nullability}}; in addDefaultBlacklists()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DSanitizers.h88 SanitizerKind::Undefined; in getPPTransparentSanitizers()
H A DSanitizers.def126 SANITIZER_GROUP("undefined", Undefined,
135 SANITIZER_GROUP("undefined-trap", UndefinedTrap, Undefined)
/freebsd-12.1/share/misc/
H A Dusb_hid_usages13 0x00 Undefined
86 0x00 Undefined
193 0x00 Undefined
455 0x00 Undefined
978 0x00 Undefined
1030 0x00 Undefined
1141 0x00 Undefined
1212 0x00 Undefined
1244 0x00 Undefined
1302 0x00 Undefined
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyOps.def18 TIL_OPCODE_DEF(Undefined)
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp271 return new (Arena) til::Undefined(S); in translate()
433 return new (Arena) til::Undefined(UO); in translateUnaryOperator()
470 return new (Arena) til::Undefined(UO); in translateUnaryOperator()
472 return new (Arena) til::Undefined(UO); in translateUnaryOperator()
517 return new (Arena) til::Undefined(BO); in translateBinaryOperator()
555 return new (Arena) til::Undefined(BO); in translateBinaryOperator()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DExternalSemaSource.h85 ReadUndefinedButUsed(llvm::MapVector<NamedDecl *, SourceLocation> &Undefined);
H A DMultiplexExternalSemaSource.h224 llvm::MapVector<NamedDecl *, SourceLocation> &Undefined) override;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp233 llvm::MapVector<NamedDecl *, SourceLocation> &Undefined) { in ReadUndefinedButUsed() argument
235 Sources[i]->ReadUndefinedButUsed(Undefined); in ReadUndefinedButUsed()
H A DSema.cpp628 SmallVectorImpl<std::pair<NamedDecl *, SourceLocation> > &Undefined) { in getUndefinedButUsed()
674 Undefined.push_back(std::make_pair(ND, UndefinedUse.second)); in getUndefinedButUsed()
684 SmallVector<std::pair<NamedDecl *, SourceLocation>, 16> Undefined; in checkUndefinedButUsed() local
685 S.getUndefinedButUsed(Undefined); in checkUndefinedButUsed()
686 if (Undefined.empty()) return; in checkUndefinedButUsed()
688 for (auto Undef : Undefined) { in checkUndefinedButUsed()
1621 llvm::MapVector<NamedDecl *, SourceLocation> &Undefined) {} in ReadUndefinedButUsed() argument
/freebsd-12.1/contrib/llvm/lib/TextAPI/ELF/
H A DTBEHandler.cpp107 IO.mapOptional("Undefined", Symbol.Undefined, false); in mapping()
/freebsd-12.1/contrib/llvm/tools/lld/docs/
H A DNewLLD.rst152 There are basically three types of Symbols: Defined, Undefined, or Lazy.
157 - Undefined symbols represent undefined symbols, which need to be replaced by
179 - If we add Defined and Undefined symbols, the symbol table will keep the
182 - If we add Lazy and Undefined, it will keep the former,
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp222 enum { Overdefined = -3, Undefined = -2 }; in foldCmpLoadFromIndexedGlobal() enumerator
231 int FirstTrueElement = Undefined, SecondTrueElement = Undefined; in foldCmpLoadFromIndexedGlobal()
235 int FirstFalseElement = Undefined, SecondFalseElement = Undefined; in foldCmpLoadFromIndexedGlobal()
243 int TrueRangeEnd = Undefined, FalseRangeEnd = Undefined; in foldCmpLoadFromIndexedGlobal()
288 if (FirstTrueElement == Undefined) in foldCmpLoadFromIndexedGlobal()
292 if (SecondTrueElement == Undefined) in foldCmpLoadFromIndexedGlobal()
305 if (FirstFalseElement == Undefined) in foldCmpLoadFromIndexedGlobal()
353 if (FirstTrueElement == Undefined) in foldCmpLoadFromIndexedGlobal()
359 if (SecondTrueElement == Undefined) in foldCmpLoadFromIndexedGlobal()
373 if (FirstFalseElement == Undefined) in foldCmpLoadFromIndexedGlobal()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp183 Undefined, enumerator
241 bool pop(StringRef Ins, NestingType NT1, NestingType NT2 = Undefined) { in pop()

123