| /NextBSD/contrib/llvm/lib/Transforms/Scalar/ |
| HD | SCCP.cpp | 87 bool isUndefined() const { return getLatticeValue() == undefined; } in isUndefined() function in __anon2d4796cb0111::LatticeVal 114 if (isUndefined()) { in markConstant() 141 assert(isUndefined() && "Can't force a defined value!"); in markForcedConstant() 350 if (IV.isOverdefined() || MergeWithV.isUndefined()) in mergeInValue() 354 else if (IV.isUndefined()) in mergeInValue() 532 if (!BCValue.isUndefined()) in getFeasibleSuccessors() 558 if (!SCValue.isUndefined()) in getFeasibleSuccessors() 602 return !BCValue.isUndefined(); in isEdgeFeasible() 620 return !SCValue.isUndefined(); in isEdgeFeasible() 677 if (IV.isUndefined()) continue; // Doesn't influence PHI node. in visitPHINode() [all …]
|
| /NextBSD/contrib/llvm/lib/MC/ |
| HD | MCObjectWriter.cpp | 30 if (SA.isUndefined() || SB.isUndefined()) in isSymbolRefDifferenceFullyResolved()
|
| HD | MachObjectWriter.cpp | 43 if (S.isUndefined()) in doesSymbolRequireExternRelocation() 88 if (Target.getSymA() && Target.getSymA()->getSymbol().isUndefined()) in getSymbolAddress() 91 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined()) in getSymbolAddress() 345 if (IsAlias && Symbol->isUndefined()) in writeNlist() 347 else if (Symbol->isUndefined()) in writeNlist() 360 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined())) in writeNlist() 364 if (IsAlias && Symbol->isUndefined()) in writeNlist() 537 if (!Symbol.isExternal() && !Symbol.isUndefined()) in computeSymbolTable() 544 if (Symbol.isUndefined()) { in computeSymbolTable() 563 if (Symbol.isExternal() || Symbol.isUndefined()) in computeSymbolTable()
|
| HD | MCMachOStreamer.cpp | 181 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitLabel() 335 if (Symbol->isUndefined()) in EmitSymbolAttribute() 357 if (Symbol->isUndefined()) in EmitSymbolAttribute() 385 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitCommonSymbol() 412 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitZerofill()
|
| HD | ELFObjectWriter.cpp | 399 if (!Symbol.isUndefined() && !Rest.startswith("@@@")) in executePostLayoutBinding() 403 if (Symbol.isUndefined() && Rest.startswith("@@") && in executePostLayoutBinding() 535 if (Sym->isUndefined()) in shouldRelocateWithSymbol() 640 if (SymB.isUndefined()) in recordRelocation() 679 if (!RelocateWithSymbol && SymA && !SymA->isUndefined()) in recordRelocation() 692 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr; in recordRelocation() 734 if (Symbol.isVariable() && Symbol.isUndefined()) { in isInSymtab() 740 if (Symbol.isUndefined() && !Symbol.isBindingSet()) in isInSymtab() 787 if (Symbol.isTemporary() && Symbol.isUndefined()) in computeSymbolTable() 801 } else if (Symbol.isUndefined()) { in computeSymbolTable()
|
| HD | MCELFStreamer.cpp | 110 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitLabel() 167 if (Begin->isUndefined()) { in ChangeSection()
|
| HD | WinCOFFStreamer.cpp | 80 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitLabel()
|
| HD | MCExpr.cpp | 474 if (SA.isUndefined() || SB.isUndefined()) in AttemptToFoldSymbolOffsetDifference()
|
| HD | MCContext.cpp | 133 if (OldSym && OldSym->isUndefined()) { in getOrCreateSectionSymbol()
|
| HD | MCAsmStreamer.cpp | 308 assert(Symbol->isUndefined() && "Cannot define a symbol twice!"); in EmitLabel()
|
| HD | MCAssembler.cpp | 444 if (A->getKind() != MCSymbolRefExpr::VK_None || SA.isUndefined()) { in evaluateFixup()
|
| /NextBSD/contrib/llvm/lib/Target/X86/MCTargetDesc/ |
| HD | X86MachObjectWriter.cpp | 176 if (A->isUndefined() || B->isUndefined()) { in RecordX86_64Relocation() 177 StringRef Name = A->isUndefined() ? A->getName() : B->getName(); in RecordX86_64Relocation() 547 if (!A->isUndefined()) in RecordX86Relocation()
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | LazyValueInfo.cpp | 108 bool isUndefined() const { return Tag == undefined; } in isUndefined() function in __anon50e03b1b0111::LVILatticeVal 148 assert(isUndefined()); in markConstant() 166 assert(isUndefined() || isConstant()); in markNotConstant() 183 assert(isUndefined()); in markConstantRange() 195 if (RHS.isUndefined() || isOverdefined()) return false; in mergeIn() 198 if (isUndefined()) { in mergeIn() 277 if (Val.isUndefined()) in operator <<()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Lex/ |
| HD | MacroInfo.h | 375 bool isUndefined() const { return UndefLoc.isValid(); } in isUndefined() function 400 return !Def.isUndefined(); in isDefined()
|
| HD | Preprocessor.h | 840 if (!MD || MD->getDefinition().isUndefined()) in getLocalMacroDirective()
|
| /NextBSD/contrib/llvm/include/llvm/Object/ |
| HD | ELFTypes.h | 195 bool isDefined() const { return !isUndefined(); } 207 bool isUndefined() const { return st_shndx == ELF::SHN_UNDEF; }
|
| HD | COFF.h | 345 bool isUndefined() const { in isUndefined() function 365 return isUndefined() || isWeakExternal(); in isAnyUndefined()
|
| /NextBSD/contrib/llvm/include/llvm/MC/ |
| HD | MCSymbol.h | 258 bool isUndefined() const { return !isDefined(); } in isUndefined() function
|
| /NextBSD/contrib/llvm/tools/clang/lib/Lex/ |
| HD | MacroInfo.cpp | 201 return (!Def.isUndefined() || in findDirectiveAtLoc()
|
| /NextBSD/contrib/llvm/lib/MC/MCParser/ |
| HD | DarwinAsmParser.cpp | 732 if (!Sym->isUndefined()) in parseDirectiveTBSS() 817 if (!Sym->isUndefined()) in parseDirectiveZerofill()
|
| HD | AsmParser.cpp | 904 if (IDVal == "b" && Sym->isUndefined()) in parsePrimaryExpr() 1347 if (!Sym->isUndefined() || Sym->isVariable()) in parseStatement() 3753 if (!Sym->isUndefined()) in parseDirectiveComm() 4003 TheCondState.CondMet = (Sym && !Sym->isUndefined()); in parseDirectiveIfdef() 4005 TheCondState.CondMet = (!Sym || Sym->isUndefined()); in parseDirectiveIfdef() 4806 else if (Sym->isUndefined() && !Sym->isUsed() && !Sym->isVariable()) in parseAssignmentExpression() 4810 else if (!Sym->isUndefined() && (!Sym->isVariable() || !allow_redef)) in parseAssignmentExpression()
|
| /NextBSD/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| HD | PPCMachObjectWriter.cpp | 359 if (!A->isUndefined()) in RecordPPCRelocation()
|
| /NextBSD/contrib/llvm/lib/Target/ARM/MCTargetDesc/ |
| HD | ARMMachObjectWriter.cpp | 416 if (!A->isUndefined()) in recordRelocation()
|
| /NextBSD/contrib/llvm/lib/Target/AArch64/MCTargetDesc/ |
| HD | AArch64AsmBackend.cpp | 502 if (!Val.getSymA() || Val.getSymA()->getSymbol().isUndefined()) in isByteSwappedFixup()
|
| /NextBSD/contrib/llvm/lib/Target/X86/ |
| HD | X86AsmPrinter.cpp | 573 if (Sym->isUndefined()) in GetCPISymbol()
|