Home
last modified time | relevance | path

Searched refs:IsActive (Results 1 – 11 of 11) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DDescriptor.cpp57 bool IsActive, Descriptor *D) { in ctorArrayDesc() argument
73 Desc->IsActive = IsActive; in ctorArrayDesc()
77 Fn(B, ElemLoc, Desc->IsConst, Desc->IsMutable, IsActive, D->ElemDesc); in ctorArrayDesc()
118 bool IsActive, Descriptor *D) { in ctorRecord() argument
126 Desc->IsActive = IsActive && !IsUnion; in ctorRecord()
130 Fn(B, Ptr + SubOff, Desc->IsConst, Desc->IsMutable, Desc->IsActive, F); in ctorRecord()
H A DDescriptor.h32 bool IsMutable, bool IsActive,
178 unsigned IsActive : 1; member
H A DPointer.cpp180 getInlineDesc()->IsActive = true; in activate()
H A DPointer.h242 bool isActive() const { return Base == 0 || getInlineDesc()->IsActive; } in isActive()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCleanup.h74 unsigned IsActive : 1; variable
296 CleanupBits.IsActive = true; in EHCleanupScope()
317 bool isActive() const { return CleanupBits.IsActive; } in isActive()
318 void setActive(bool A) { CleanupBits.IsActive = A; } in setActive()
H A DCGCleanup.cpp568 llvm::Value *IsActive in EmitCleanup() local
570 CGF.Builder.CreateCondBr(IsActive, CleanupBB, ContBB); in EmitCleanup()
654 bool IsActive = Scope.isActive(); in PopCleanupBlock() local
680 bool HasFallthrough = (FallthroughSource != nullptr && IsActive); in PopCleanupBlock()
705 if (Scope.isNormalCleanup() && HasPrebranchedFallthrough && !IsActive) { in PopCleanupBlock()
817 assert(!IsActive && "source without fallthrough for active cleanup"); in PopCleanupBlock()
861 assert(!BranchThroughDest || !IsActive); in PopCleanupBlock()
957 assert(!IsActive); in PopCleanupBlock()
1027 if (EHActiveFlag.isValid() || IsActive) { in PopCleanupBlock()
H A DCGOpenMPRuntimeGPU.cpp1384 llvm::Value *IsActive = in emitWorkerLoop() local
1386 Bld.CreateCondBr(IsActive, ExecuteBB, BarrierBB); in emitWorkerLoop()
H A DCGCall.cpp4316 llvm::Instruction *IsActive = Builder.CreateUnreachable(); in EmitCallArg() local
4317 args.addArgCleanupDeactivation(EHStack.getInnermostEHScope(), IsActive); in EmitCallArg()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDiagnostic.h1272 mutable bool IsActive = false; variable
1282 IsActive(true) { in DiagnosticBuilder()
1295 IsActive = false; in Clear()
1300 bool isActive() const { return IsActive; } in isActive()
1329 IsActive = D.IsActive; in DiagnosticBuilder()
/netbsd/external/apache2/llvm/dist/clang/lib/Driver/
H A DDriver.cpp2505 bool IsActive = false; member in __anon213d79a20a11::OffloadingActionBuilder::CudaActionBuilderBase
2544 IsActive = false; in addDeviceDepences()
2549 IsActive = true; in addDeviceDepences()
2617 return IsActive ? ABRT_Success : ABRT_Inactive; in addDeviceDepences()
2798 if (!IsActive) in getDeviceDependences()
/netbsd/external/apache2/llvm/dist/clang/docs/
H A DConstantInterpreter.rst202 * **IsActive**: indicates if the field is the active field of a union.