| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | InterpBlock.h | 54 bool IsWeak = false) 56 IsDynamic(false), IsWeak(IsWeak), Desc(Desc) { in EvalID() 61 bool IsExtern = false, bool IsWeak = false) 63 IsExtern(IsExtern), IsDynamic(false), IsWeak(IsWeak), Desc(Desc) { in EvalID() 77 bool isWeak() const { return IsWeak; } in isWeak() 141 bool IsWeak, bool IsDead) in Block() argument 143 IsDynamic(false), IsWeak(IsWeak), Desc(Desc) { in Block() 176 bool IsWeak = false; variable
|
| H A D | Program.cpp | 161 bool IsWeak = false; in getOrCreateDummy() local 166 IsWeak = VD->isWeak(); in getOrCreateDummy() 193 /*IsExtern=*/false, IsWeak); in getOrCreateDummy() 204 bool IsWeak = VD->isWeak(); in createGlobal() local 220 createGlobal(VD, VD->getType(), IsStatic, IsExtern, IsWeak, Init)) { in createGlobal() 247 bool IsWeak, const Expr *Init) { in createGlobal() argument 267 Ctx.getEvalID(), getCurrentDecl(), Desc, IsStatic, IsExtern, IsWeak); in createGlobal()
|
| H A D | InterpBlock.cpp | 109 : Root(Root), B(~0u, Blk->Desc, Blk->IsStatic, Blk->IsExtern, Blk->IsWeak, in DeadBlock()
|
| H A D | Program.h | 169 bool IsWeak, const Expr *Init = nullptr);
|
| H A D | Disasm.cpp | 547 OS << " Weak: " << IsWeak << "\n"; in dump()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGAtomic.cpp | 239 bool IsWeak = false); 281 bool IsWeak = false); 376 static void emitAtomicCmpXchg(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak, in emitAtomicCmpXchg() argument 390 Pair->setWeak(IsWeak); in emitAtomicCmpXchg() 429 bool IsWeak, Address Dest, Address Ptr, in emitAtomicCmpXchgFailureSet() argument 461 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder, in emitAtomicCmpXchgFailureSet() 486 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, in emitAtomicCmpXchgFailureSet() 491 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder, in emitAtomicCmpXchgFailureSet() 496 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder, in emitAtomicCmpXchgFailureSet() 529 llvm::Value *IsWeak, llvm::Value *FailureOrder, in EmitAtomicOp() argument [all …]
|
| H A D | CodeGenFunction.h | 4271 bool IsWeak = false, AggValueSlot Slot = AggValueSlot::ignored());
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSymbolWasm.h | 19 bool IsWeak = false; variable 75 bool isWeak() const { return IsWeak; } in isWeak() 76 void setWeak(bool isWeak) { IsWeak = isWeak; } in setWeak()
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/Atomic/ |
| H A D | Atomic.cpp | 91 AtomicOrdering Failure, bool IsVolatile, bool IsWeak) { in EmitAtomicCompareExchangeOp() argument 100 Inst->setWeak(IsWeak); in EmitAtomicCompareExchangeOp() 186 AtomicOrdering Failure, bool IsVolatile, bool IsWeak) { in EmitAtomicCompareExchange() argument 192 Failure, IsVolatile, IsWeak); in EmitAtomicCompareExchange()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/Atomic/ |
| H A D | Atomic.h | 93 bool IsVolatile = false, bool IsWeak = false); 98 bool IsVolatile, bool IsWeak);
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | CheckerRegistry.cpp | 295 template <bool IsWeak> void CheckerRegistry::resolveDependencies() { in resolveDependencies() 297 (IsWeak ? Data.WeakDependencies : Data.Dependencies)) { in resolveDependencies() 312 DependencyIt->FullName.starts_with("example") || IsWeak || in resolveDependencies() 317 if (IsWeak) in resolveDependencies()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | ObjectFileInterface.cpp | 164 bool IsWeak = false; in getCOFFObjectFileSymbolInfo() local 179 IsWeak = true; in getCOFFObjectFileSymbolInfo() 212 if (IsWeak) in getCOFFObjectFileSymbolInfo()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Frontend/ |
| H A D | CheckerRegistry.h | 187 template <bool IsWeak> void resolveDependencies();
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | InterfaceStubFunctionsConsumer.cpp | 128 const bool IsWeak = (ND->hasAttr<WeakAttr>() || in WriteNamedDecl() local 138 IsWeak ? llvm::ELF::STB_WEAK : llvm::ELF::STB_GLOBAL, in WriteNamedDecl()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Symbol.h | 204 bool IsWeak() const { return m_is_weak; } in IsWeak() function
|
| H A D | Symtab.h | 259 if (symbol.IsWeak()) in rank()
|
| /freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
| H A D | Instruction.cpp | 1352 void AtomicCmpXchgInst::setWeak(bool IsWeak) { in setWeak() argument 1356 cast<llvm::AtomicCmpXchgInst>(Val)->setWeak(IsWeak); in setWeak()
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | IRExecutionUnit.cpp | 720 !candidate_sc.symbol->IsWeak()) in Resolve()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 3382 bool IsWeak = in BuildInstanceMessage() local 3384 if (!IsWeak && Sel.isUnarySelector()) in BuildInstanceMessage() 3385 IsWeak = ReturnType.getObjCLifetime() & Qualifiers::OCL_Weak; in BuildInstanceMessage() 3386 if (IsWeak && !SemaRef.isUnevaluatedContext() && in BuildInstanceMessage()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 569 void setWeak(bool IsWeak) { setSubclassData<WeakField>(IsWeak); }
|
| /freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Core.h | 4731 LLVM_C_ABI void LLVMSetWeak(LLVMValueRef CmpXchgInst, LLVMBool IsWeak);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | Instruction.h | 2145 LLVM_ABI void setWeak(bool IsWeak);
|
| /freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 6530 const bool IsWeak = Record[OpNum + 4]; in parseFunctionBody() local 6545 cast<AtomicCmpXchgInst>(I)->setWeak(IsWeak); in parseFunctionBody()
|