diff --git a/clang/include/clang/AST/GlobalDecl.h b/clang/include/clang/AST/GlobalDecl.h --- a/clang/include/clang/AST/GlobalDecl.h +++ b/clang/include/clang/AST/GlobalDecl.h @@ -90,6 +90,20 @@ GlobalDecl(const VarDecl *D, DynamicInitKind StubKind) : Value(D, unsigned(StubKind)) {} + static GlobalDecl Create(const DeclContext *DC) { + GlobalDecl GD; + if (auto *CD = dyn_cast(DC)) + GD = GlobalDecl(CD, Ctor_Complete); + else if (auto *DD = dyn_cast(DC)) + GD = GlobalDecl(DD, Dtor_Complete); + else if (isa(DC) && + cast(DC)->hasAttr()) + GD = GlobalDecl(cast(DC)); + else + GD = GlobalDecl(cast(DC)); + return GD; + } + GlobalDecl getCanonicalDecl() const { GlobalDecl CanonGD; CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl()); diff --git a/clang/include/clang/AST/VTableBuilder.h b/clang/include/clang/AST/VTableBuilder.h --- a/clang/include/clang/AST/VTableBuilder.h +++ b/clang/include/clang/AST/VTableBuilder.h @@ -253,7 +253,7 @@ OwningArrayRef VTableComponents; /// Contains thunks needed by vtables, sorted by indices. - OwningArrayRef VTableThunks; + std::vector VTableThunks; /// Address points for all vtables. AddressPointsMapTy AddressPoints; diff --git a/clang/include/clang/Basic/ABI.h b/clang/include/clang/Basic/ABI.h --- a/clang/include/clang/Basic/ABI.h +++ b/clang/include/clang/Basic/ABI.h @@ -176,32 +176,30 @@ /// The \c this pointer adjustment as well as an optional return /// adjustment for a thunk. struct ThunkInfo { + /// Holds a pointer to the overridden method this thunk is for, + /// CAUTION: In the unlikely event you need to sort ThunkInfos, consider using + /// an ABI-specific comparator. + const CXXMethodDecl *BaseMethod; + /// The \c this pointer adjustment. ThisAdjustment This; /// The return adjustment. ReturnAdjustment Return; - /// Holds a pointer to the overridden method this thunk is for, - /// if needed by the ABI to distinguish different thunks with equal - /// adjustments. Otherwise, null. - /// CAUTION: In the unlikely event you need to sort ThunkInfos, consider using - /// an ABI-specific comparator. - const CXXMethodDecl *Method; + ThunkInfo() = delete; - ThunkInfo() : Method(nullptr) { } - - ThunkInfo(const ThisAdjustment &This, const ReturnAdjustment &Return, - const CXXMethodDecl *Method = nullptr) - : This(This), Return(Return), Method(Method) {} + ThunkInfo(const CXXMethodDecl *BaseMethod, const ThisAdjustment &This, + const ReturnAdjustment &Return) + : BaseMethod(BaseMethod), This(This), Return(Return) {} friend bool operator==(const ThunkInfo &LHS, const ThunkInfo &RHS) { - return LHS.This == RHS.This && LHS.Return == RHS.Return && - LHS.Method == RHS.Method; + return LHS.BaseMethod == RHS.BaseMethod && LHS.This == RHS.This && + LHS.Return == RHS.Return; } bool isEmpty() const { - return This.isEmpty() && Return.isEmpty() && Method == nullptr; + return BaseMethod == nullptr && This.isEmpty() && Return.isEmpty(); } }; diff --git a/clang/lib/AST/ItaniumMangle.cpp b/clang/lib/AST/ItaniumMangle.cpp --- a/clang/lib/AST/ItaniumMangle.cpp +++ b/clang/lib/AST/ItaniumMangle.cpp @@ -1677,21 +1677,6 @@ Out << 'E'; } -static GlobalDecl getParentOfLocalEntity(const DeclContext *DC) { - GlobalDecl GD; - // The Itanium spec says: - // For entities in constructors and destructors, the mangling of the - // complete object constructor or destructor is used as the base function - // name, i.e. the C1 or D1 version. - if (auto *CD = dyn_cast(DC)) - GD = GlobalDecl(CD, Ctor_Complete); - else if (auto *DD = dyn_cast(DC)) - GD = GlobalDecl(DD, Dtor_Complete); - else - GD = GlobalDecl(cast(DC)); - return GD; -} - void CXXNameMangler::mangleLocalName(GlobalDecl GD, const AbiTagList *AdditionalAbiTags) { const Decl *D = GD.getDecl(); @@ -1714,7 +1699,7 @@ else if (const BlockDecl *BD = dyn_cast(DC)) mangleBlockForPrefix(BD); else - mangleFunctionEncoding(getParentOfLocalEntity(DC)); + mangleFunctionEncoding(GlobalDecl::Create(DC)); // Implicit ABI tags (from namespace) are not available in the following // entity; reset to actually emitted tags, which are available. diff --git a/clang/lib/AST/Mangle.cpp b/clang/lib/AST/Mangle.cpp --- a/clang/lib/AST/Mangle.cpp +++ b/clang/lib/AST/Mangle.cpp @@ -510,16 +510,7 @@ private: bool writeFuncOrVarName(const NamedDecl *D, raw_ostream &OS) { if (MC->shouldMangleDeclName(D)) { - GlobalDecl GD; - if (const auto *CtorD = dyn_cast(D)) - GD = GlobalDecl(CtorD, Ctor_Complete); - else if (const auto *DtorD = dyn_cast(D)) - GD = GlobalDecl(DtorD, Dtor_Complete); - else if (D->hasAttr()) - GD = GlobalDecl(cast(D)); - else - GD = GlobalDecl(D); - MC->mangleName(GD, OS); + MC->mangleName(GlobalDecl::Create(D->getDeclContext()), OS); return false; } else { IdentifierInfo *II = D->getIdentifier(); diff --git a/clang/lib/AST/MicrosoftMangle.cpp b/clang/lib/AST/MicrosoftMangle.cpp --- a/clang/lib/AST/MicrosoftMangle.cpp +++ b/clang/lib/AST/MicrosoftMangle.cpp @@ -3467,10 +3467,10 @@ mangleThunkThisAdjustment(AS, Thunk.This, Mangler, MHO); if (!Thunk.Return.isEmpty()) - assert(Thunk.Method != nullptr && + assert(Thunk.BaseMethod != nullptr && "Thunk info should hold the overridee decl"); - const CXXMethodDecl *DeclForFPT = Thunk.Method ? Thunk.Method : MD; + const CXXMethodDecl *DeclForFPT = Thunk.BaseMethod ? Thunk.BaseMethod : MD; Mangler.mangleFunctionType( DeclForFPT->getType()->castAs(), MD); } diff --git a/clang/lib/AST/VTableBuilder.cpp b/clang/lib/AST/VTableBuilder.cpp --- a/clang/lib/AST/VTableBuilder.cpp +++ b/clang/lib/AST/VTableBuilder.cpp @@ -913,7 +913,8 @@ /// AddMethod - Add a single virtual member function to the vtable /// components vector. - void AddMethod(const CXXMethodDecl *MD, ReturnAdjustment ReturnAdjustment); + void AddMethod(const CXXMethodDecl *BaseMethod, const CXXMethodDecl *MD, + ReturnAdjustment ReturnAdjustment); /// IsOverriderUsed - Returns whether the overrider will ever be used in this /// part of the vtable. @@ -1130,7 +1131,8 @@ // While the thunk itself might be needed by vtables in subclasses or // in construction vtables, there doesn't seem to be a reason for using // the thunk in this vtable. Still, we do so to match gcc. - if (VTableThunks.lookup(VTableIndex).Return.isEmpty()) + auto it = VTableThunks.find(VTableIndex); + if (it == VTableThunks.end() || it->second.Return.isEmpty()) continue; } @@ -1140,12 +1142,26 @@ if (ThisAdjustment.isEmpty()) continue; - // Add it. - VTableThunks[VTableIndex].This = ThisAdjustment; + auto ApplyThisAdjustment = [&](unsigned Idx) { + Optional TI; + + auto it = VTableThunks.find(Idx); + if (it != VTableThunks.end()) { + TI = it->second; + TI->This = ThisAdjustment; + } else + TI = {MD, ThisAdjustment, ReturnAdjustment()}; + + // Override it. Note that there may or may not be a thunk already. + VTableThunks.erase(Idx); + VTableThunks.insert({Idx, *TI}); + }; + + ApplyThisAdjustment(VTableIndex); if (isa(MD)) { // Add an adjustment for the deleting destructor as well. - VTableThunks[VTableIndex + 1].This = ThisAdjustment; + ApplyThisAdjustment(VTableIndex + 1); } } @@ -1300,7 +1316,8 @@ return Adjustment; } -void ItaniumVTableBuilder::AddMethod(const CXXMethodDecl *MD, +void ItaniumVTableBuilder::AddMethod(const CXXMethodDecl *BaseMethod, + const CXXMethodDecl *MD, ReturnAdjustment ReturnAdjustment) { if (const CXXDestructorDecl *DD = dyn_cast(MD)) { assert(ReturnAdjustment.isEmpty() && @@ -1311,8 +1328,13 @@ Components.push_back(VTableComponent::MakeDeletingDtor(DD)); } else { // Add the return adjustment if necessary. - if (!ReturnAdjustment.isEmpty()) - VTableThunks[Components.size()].Return = ReturnAdjustment; + if (!ReturnAdjustment.isEmpty()) { + assert(VTableThunks.find(Components.size()) == VTableThunks.end() && + "ZZZ"); + VTableThunks.insert( + {Components.size(), + ThunkInfo(BaseMethod, ThisAdjustment(), ReturnAdjustment)}); + } // Add the function. Components.push_back(VTableComponent::MakeFunction(MD)); @@ -1542,7 +1564,7 @@ // This is a virtual thunk for the most derived class, add it. AddThunk(Overrider.Method, - ThunkInfo(ThisAdjustment, ReturnAdjustment)); + ThunkInfo(MD, ThisAdjustment, ReturnAdjustment)); } } @@ -1608,7 +1630,7 @@ ReturnAdjustment ReturnAdjustment = ComputeReturnAdjustment(ReturnAdjustmentOffset); - AddMethod(Overrider.Method, ReturnAdjustment); + AddMethod(MD, Overrider.Method, ReturnAdjustment); } } @@ -1958,8 +1980,9 @@ if (MD->isDeleted()) Out << " [deleted]"; - ThunkInfo Thunk = VTableThunks.lookup(I); - if (!Thunk.isEmpty()) { + auto it = VTableThunks.find(I); + if (it != VTableThunks.end()) { + ThunkInfo Thunk = it->second; // If this function pointer has a return adjustment, dump it. if (!Thunk.Return.isEmpty()) { Out << "\n [return adjustment: "; @@ -2006,8 +2029,9 @@ if (DD->isPure()) Out << " [pure]"; - ThunkInfo Thunk = VTableThunks.lookup(I); - if (!Thunk.isEmpty()) { + auto it = VTableThunks.find(I); + if (it != VTableThunks.end()) { + ThunkInfo Thunk = it->second; // If this destructor has a 'this' pointer adjustment, dump it. if (!Thunk.This.isEmpty()) { Out << "\n [this adjustment: "; @@ -2120,7 +2144,7 @@ ThunkInfoVectorTy ThunksVector = Thunks[MD]; llvm::sort(ThunksVector, [](const ThunkInfo &LHS, const ThunkInfo &RHS) { - assert(LHS.Method == nullptr && RHS.Method == nullptr); + assert(LHS.BaseMethod == nullptr && RHS.BaseMethod == nullptr); return std::tie(LHS.This, LHS.Return) < std::tie(RHS.This, RHS.Return); }); @@ -2515,7 +2539,9 @@ /// components vector. void AddMethod(const CXXMethodDecl *MD, ThunkInfo TI) { if (!TI.isEmpty()) { - VTableThunks[Components.size()] = TI; + assert(VTableThunks.find(Components.size()) == VTableThunks.end() && + "ZZZ"); + VTableThunks.insert({Components.size(), TI}); AddThunk(MD, TI); } if (const CXXDestructorDecl *DD = dyn_cast(MD)) { @@ -3092,8 +3118,7 @@ } AddMethod(FinalOverriderMD, - ThunkInfo(ThisAdjustmentOffset, ReturnAdjustment, - ForceReturnAdjustmentMangling ? MD : nullptr)); + ThunkInfo(MD, ThisAdjustmentOffset, ReturnAdjustment)); } } @@ -3111,11 +3136,11 @@ const ReturnAdjustment &R = TI.Return; bool Multiline = false; const char *LinePrefix = "\n "; - if (!R.isEmpty() || TI.Method) { + if (!R.isEmpty() || TI.BaseMethod) { if (!ContinueFirstLine) Out << LinePrefix; Out << "[return adjustment (to type '" - << TI.Method->getReturnType().getCanonicalType().getAsString() + << TI.BaseMethod->getReturnType().getCanonicalType().getAsString() << "'): "; if (R.Virtual.Microsoft.VBPtrOffset) Out << "vbptr at offset " << R.Virtual.Microsoft.VBPtrOffset << ", "; @@ -3179,9 +3204,11 @@ if (MD->isDeleted()) Out << " [deleted]"; - ThunkInfo Thunk = VTableThunks.lookup(I); - if (!Thunk.isEmpty()) + auto it = VTableThunks.find(I); + if (it != VTableThunks.end()) { + ThunkInfo Thunk = it->second; dumpMicrosoftThunkAdjustment(Thunk, Out, /*ContinueFirstLine=*/false); + } break; } @@ -3195,8 +3222,9 @@ if (DD->isPure()) Out << " [pure]"; - ThunkInfo Thunk = VTableThunks.lookup(I); - if (!Thunk.isEmpty()) { + auto it = VTableThunks.find(I); + if (it != VTableThunks.end()) { + ThunkInfo Thunk = it->second; assert(Thunk.Return.isEmpty() && "No return adjustment needed for destructors!"); dumpMicrosoftThunkAdjustment(Thunk, Out, /*ContinueFirstLine=*/false); diff --git a/clang/lib/CodeGen/CGVTables.cpp b/clang/lib/CodeGen/CGVTables.cpp --- a/clang/lib/CodeGen/CGVTables.cpp +++ b/clang/lib/CodeGen/CGVTables.cpp @@ -153,19 +153,16 @@ // no-op thunk for the regular definition) call va_start/va_end. // There's a bit of per-call overhead for this solution, but it's // better for codesize if the definition is long. -llvm::Function * -CodeGenFunction::GenerateVarArgsThunk(llvm::Function *Fn, - const CGFunctionInfo &FnInfo, - GlobalDecl GD, const ThunkInfo &Thunk) { +llvm::Function *CodeGenFunction::GenerateVarArgsThunk( + llvm::Function *Fn, const CGFunctionInfo &FnInfo, GlobalDecl GD, + llvm::FunctionCallee Callee, const ThunkInfo &Thunk) { const CXXMethodDecl *MD = cast(GD.getDecl()); const FunctionProtoType *FPT = MD->getType()->castAs(); QualType ResultType = FPT->getReturnType(); // Get the original function assert(FnInfo.isVariadic()); - llvm::Type *Ty = CGM.getTypes().GetFunctionType(FnInfo); - llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true); - llvm::Function *BaseFn = cast(Callee); + llvm::Function *BaseFn = cast(Callee.getCallee()); // Cloning can't work if we don't have a definition. The Microsoft ABI may // require thunks when a definition is not available. Emit an error in these @@ -289,9 +286,9 @@ FinishFunction(); } -void CodeGenFunction::EmitCallAndReturnForThunk(llvm::FunctionCallee Callee, - const ThunkInfo *Thunk, - bool IsUnprototyped) { +void CodeGenFunction::EmitCallAndReturnForThunk( + llvm::FunctionCallee Callee, const CGFunctionInfo &CalleeFnInfo, + const ThunkInfo *Thunk, bool IsUnprototyped) { assert(isa(CurGD.getDecl()) && "Please use a new CGF for this thunk"); const CXXMethodDecl *MD = cast(CurGD.getDecl()); @@ -370,7 +367,7 @@ // Now emit our call. llvm::CallBase *CallOrInvoke; - RValue RV = EmitCall(*CurFnInfo, CGCallee::forDirect(Callee, CurGD), Slot, + RValue RV = EmitCall(CalleeFnInfo, CGCallee::forDirect(Callee, CurGD), Slot, CallArgs, &CallOrInvoke); // Consider return adjustment if we have ThunkInfo. @@ -443,31 +440,16 @@ FinishThunk(); } -void CodeGenFunction::generateThunk(llvm::Function *Fn, - const CGFunctionInfo &FnInfo, GlobalDecl GD, +void CodeGenFunction::generateThunk(llvm::Function *ThunkFn, + const CGFunctionInfo &ThunkFnInfo, + GlobalDecl CD, llvm::FunctionCallee Callee, + const CGFunctionInfo &CalleeFnInfo, const ThunkInfo &Thunk, bool IsUnprototyped) { - StartThunk(Fn, GD, FnInfo, IsUnprototyped); - // Create a scope with an artificial location for the body of this function. - auto AL = ApplyDebugLocation::CreateArtificial(*this); - - // Get our callee. Use a placeholder type if this method is unprototyped so - // that CodeGenModule doesn't try to set attributes. - llvm::Type *Ty; - if (IsUnprototyped) - Ty = llvm::StructType::get(getLLVMContext()); - else - Ty = CGM.getTypes().GetFunctionType(FnInfo); - - llvm::Constant *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true); - - // Fix up the function type for an unprototyped musttail call. - if (IsUnprototyped) - Callee = llvm::ConstantExpr::getBitCast(Callee, Fn->getType()); + StartThunk(ThunkFn, CD, ThunkFnInfo, IsUnprototyped); // Make the call and return the result. - EmitCallAndReturnForThunk(llvm::FunctionCallee(Fn->getFunctionType(), Callee), - &Thunk, IsUnprototyped); + EmitCallAndReturnForThunk(Callee, CalleeFnInfo, &Thunk, IsUnprototyped); } static bool shouldEmitVTableThunk(CodeGenModule &CGM, const CXXMethodDecl *MD, @@ -512,12 +494,20 @@ if (!shouldEmitVTableThunk(CGM, MD, IsUnprototyped, ForVTable)) return Thunk; - // Arrange a function prototype appropriate for a function definition. In some + // Arrange a thunk function prototype appropriate for a function def. In some // cases in the MS ABI, we may need to build an unprototyped musttail thunk. - const CGFunctionInfo &FnInfo = + assert(TI.BaseMethod && "Thunk should know it't base method!"); + GlobalDecl BaseGD = GlobalDecl::Create(TI.BaseMethod); + const CGFunctionInfo &ThunkFnInfo = + IsUnprototyped + ? CGM.getTypes().arrangeUnprototypedMustTailThunk(TI.BaseMethod) + : CGM.getTypes().arrangeGlobalDeclaration(BaseGD); + llvm::FunctionType *ThunkFnTy = CGM.getTypes().GetFunctionType(ThunkFnInfo); + + const CGFunctionInfo &BaseFnInfo = IsUnprototyped ? CGM.getTypes().arrangeUnprototypedMustTailThunk(MD) : CGM.getTypes().arrangeGlobalDeclaration(GD); - llvm::FunctionType *ThunkFnTy = CGM.getTypes().GetFunctionType(FnInfo); + llvm::FunctionType *BaseFnTy = CGM.getTypes().GetFunctionType(BaseFnInfo); // If the type of the underlying GlobalValue is wrong, we'll have to replace // it. It should be a declaration. @@ -531,7 +521,7 @@ OldThunkFn->setName(StringRef()); ThunkFn = llvm::Function::Create(ThunkFnTy, llvm::Function::ExternalLinkage, Name.str(), &CGM.getModule()); - CGM.SetLLVMFunctionAttributes(MD, FnInfo, ThunkFn); + CGM.SetLLVMFunctionAttributes(BaseGD, ThunkFnInfo, ThunkFn); // If needed, replace the old thunk with a bitcast. if (!OldThunkFn->use_empty()) { @@ -587,14 +577,16 @@ } } + llvm::FunctionCallee Callee(BaseFnTy, CGM.GetAddrOfFunction(GD, BaseFnTy)); if (ShouldCloneVarArgs) { if (UseAvailableExternallyLinkage) return ThunkFn; - ThunkFn = - CodeGenFunction(CGM).GenerateVarArgsThunk(ThunkFn, FnInfo, GD, TI); + ThunkFn = CodeGenFunction(CGM).GenerateVarArgsThunk(ThunkFn, ThunkFnInfo, + GD, Callee, TI); } else { // Normal thunk body generation. - CodeGenFunction(CGM).generateThunk(ThunkFn, FnInfo, GD, TI, IsUnprototyped); + CodeGenFunction(CGM).generateThunk(ThunkFn, ThunkFnInfo, GD, Callee, + BaseFnInfo, TI, IsUnprototyped); } setThunkProperties(CGM, TI, ThunkFn, ForVTable, GD); @@ -694,6 +686,28 @@ builder.add(llvm::ConstantInt::get(CGM.Int32Ty, offset.getQuantity())); } +static GlobalDecl +GetGlobalDeclForVTableComponent(const VTableComponent &component) { + GlobalDecl GD; + + // Get the right global decl. + switch (component.getKind()) { + default: + llvm_unreachable("Unexpected vtable component kind"); + case VTableComponent::CK_FunctionPointer: + GD = component.getFunctionDecl(); + break; + case VTableComponent::CK_CompleteDtorPointer: + GD = GlobalDecl(component.getDestructorDecl(), Dtor_Complete); + break; + case VTableComponent::CK_DeletingDtorPointer: + GD = GlobalDecl(component.getDestructorDecl(), Dtor_Deleting); + break; + } + + return GD; +} + void CodeGenVTables::addVTableComponent(ConstantArrayBuilder &builder, const VTableLayout &layout, unsigned componentIndex, @@ -727,22 +741,7 @@ case VTableComponent::CK_FunctionPointer: case VTableComponent::CK_CompleteDtorPointer: case VTableComponent::CK_DeletingDtorPointer: { - GlobalDecl GD; - - // Get the right global decl. - switch (component.getKind()) { - default: - llvm_unreachable("Unexpected vtable component kind"); - case VTableComponent::CK_FunctionPointer: - GD = component.getFunctionDecl(); - break; - case VTableComponent::CK_CompleteDtorPointer: - GD = GlobalDecl(component.getDestructorDecl(), Dtor_Complete); - break; - case VTableComponent::CK_DeletingDtorPointer: - GD = GlobalDecl(component.getDestructorDecl(), Dtor_Deleting); - break; - } + GlobalDecl GD = GetGlobalDeclForVTableComponent(component); if (CGM.getLangOpts().CUDA) { // Emit NULL for methods we can't codegen on this diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2164,6 +2164,7 @@ const CGFunctionInfo &FnInfo, bool IsUnprototyped); void EmitCallAndReturnForThunk(llvm::FunctionCallee Callee, + const CGFunctionInfo &CalleeFnInfo, const ThunkInfo *Thunk, bool IsUnprototyped); void FinishThunk(); @@ -2173,13 +2174,16 @@ llvm::FunctionCallee Callee); /// Generate a thunk for the given method. - void generateThunk(llvm::Function *Fn, const CGFunctionInfo &FnInfo, - GlobalDecl GD, const ThunkInfo &Thunk, - bool IsUnprototyped); + void generateThunk(llvm::Function *ThunkFn, const CGFunctionInfo &ThunkFnInfo, + GlobalDecl CD, llvm::FunctionCallee Callee, + const CGFunctionInfo &CalleeFnInfo, const ThunkInfo &Thunk, + bool IsUnprototype); llvm::Function *GenerateVarArgsThunk(llvm::Function *Fn, const CGFunctionInfo &FnInfo, - GlobalDecl GD, const ThunkInfo &Thunk); + GlobalDecl GD, + llvm::FunctionCallee Callee, + const ThunkInfo &Thunk); void EmitCtorPrologue(const CXXConstructorDecl *CD, CXXCtorType Type, FunctionArgList &Args); diff --git a/clang/test/CodeGenCXX/thunk-linkonce-odr.cpp b/clang/test/CodeGenCXX/thunk-linkonce-odr.cpp --- a/clang/test/CodeGenCXX/thunk-linkonce-odr.cpp +++ b/clang/test/CodeGenCXX/thunk-linkonce-odr.cpp @@ -29,5 +29,5 @@ // Thunks should be marked as "linkonce ODR" not "weak". // -// CHECK: define linkonce_odr i32 @_ZThn{{[48]}}_N1D1fEv // CHECK: define linkonce_odr i32 @_ZThn{{[48]}}_N1C1fEv +// CHECK: define linkonce_odr i32 @_ZThn{{[48]}}_N1D1fEv diff --git a/clang/test/CodeGenCXX/thunk-returning-memptr.cpp b/clang/test/CodeGenCXX/thunk-returning-memptr.cpp --- a/clang/test/CodeGenCXX/thunk-returning-memptr.cpp +++ b/clang/test/CodeGenCXX/thunk-returning-memptr.cpp @@ -23,5 +23,5 @@ // Because of the tail call, the return value cannot be copied into a local // alloca. (PR39901) -// CHECK-LABEL: define linkonce_odr void @_ZThn4_N1C1fEv({ i32, i32 }* noalias sret({ i32, i32 }) align 4 %agg.result, %struct.C* {{[^,]*}} %this) +// CHECK-LABEL: define linkonce_odr void @_ZThn4_N1C1fEv({ i32, i32 }* noalias sret({ i32, i32 }) align 4 %agg.result, %struct.B* {{[^,]*}} %this.coerce) // CHECK: tail call void @_ZN1C1fEv({ i32, i32 }* sret({ i32, i32 }) align 4 %agg.result diff --git a/clang/test/CodeGenCXX/thunk-wrong-return-type.cpp b/clang/test/CodeGenCXX/thunk-wrong-return-type.cpp new file mode 100644 --- /dev/null +++ b/clang/test/CodeGenCXX/thunk-wrong-return-type.cpp @@ -0,0 +1,25 @@ +// RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple %s -emit-llvm -o - %s | FileCheck %s + +struct A {}; +struct alignas(32) B : virtual A { + char c[32]; +}; +struct Pad { + char c[7]; +}; +struct C : B, Pad, virtual A {}; + +struct X { + virtual A &f(); +}; +struct U { + virtual ~U(); +}; +C c; +struct Y : U, X { + virtual B &f() override { return c; } +}; + +Y y; + +// CHECK: define linkonce_odr nonnull align 1 dereferenceable(1) %struct.A.8* @_ZTchn8_v0_n24_N1Y1fEv(%struct.X.7* nonnull dereferenceable(8) %this.coerce) #1 comdat align 2 { diff --git a/clang/test/CodeGenCXX/thunk-wrong-this.cpp b/clang/test/CodeGenCXX/thunk-wrong-this.cpp new file mode 100644 --- /dev/null +++ b/clang/test/CodeGenCXX/thunk-wrong-this.cpp @@ -0,0 +1,21 @@ +// RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple %s -emit-llvm -o - %s | FileCheck %s + +class Base1 { + virtual void Foo1(); +}; + +class Base2 { + virtual void Foo2(); +}; + +class alignas(16) Obj : public Base1, public Base2 { + void Foo1() override; + void Foo2() override; + ~Obj(); +}; + +void Obj::Foo1() {} +void Obj::Foo2() {} + +// CHECK: define dso_local void @_ZThn8_N3Obj4Foo2Ev(%class.Base2.2* nonnull dereferenceable(8) %this.coerce) #1 align 2 { +// CHECK: tail call void @_ZN3Obj4Foo2Ev(%class.Obj.0* nonnull dereferenceable(16) %2) diff --git a/llvm/CMakeLists.txt.user.WORKING b/llvm/CMakeLists.txt.user.WORKING new file mode 100644 --- /dev/null +++ b/llvm/CMakeLists.txt.user.WORKING @@ -0,0 +1,17000 @@ + + + + + + EnvironmentId + {1c8584e0-7976-4d80-96f0-0af72fb86b25} + + + ProjectExplorer.Project.ActiveTarget + 0 + + + ProjectExplorer.Project.EditorSettings + + true + false + true + + Cpp + + CppGlobal + + + 1 + UTF-8 + false + 4 + true + 80 + true + true + 1 + false + false + 1 + true + true + 0 + 8 + true + 1 + true + true + true + *.md, *.MD, Makefile + false + true + + + + ProjectExplorer.Project.PluginSettings + + + true + Builtin.Questionable + + false + true + Builtin.DefaultTidyAndClazy + 4 + + + + true + + + + + + ProjectExplorer.Project.Target.0 + + Desktop + Clang11 + Clang11 + {902b5063-efe2-4504-a53b-9155ab2e3229} + 0 + 2 + 376 + + -GCodeBlocks - Ninja +-DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable} +-DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX} +-DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C} +-DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx} +-DBUILD_SHARED_LIBS:BOOL=ON +-DCMAKE_BUILD_TYPE:STRING=Release +-DCMAKE_CXX_COMPILER:STRING=/usr/lib/llvm/11/bin/clang++-11 +-DCMAKE_CXX_FLAGS:STRING=-O3 -march=native -g -ggdb -DDEBUG -UNDEBUG -gz=zlib -ftime-trace +-DCMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -march=native -g -ggdb -DDEBUG -UNDEBUG -gz=zlib -ftime-trace +-DCMAKE_C_COMPILER:STRING=/usr/lib/llvm/11/bin/clang-11 +-DCMAKE_C_FLAGS:STRING=-O3 -march=native -g -ggdb -DDEBUG -UNDEBUG -gz=zlib -ftime-trace +-DCMAKE_C_FLAGS_RELEASE:STRING=-O3 -march=native -g -ggdb -DDEBUG -UNDEBUG -gz=zlib -ftime-trace +-DCMAKE_EXE_LINKER_FLAGS:STRING=-Wl,--compress-debug-sections=zlib -Wl,--gdb-index +-DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON +-DCMAKE_MODULE_LINKER_FLAGS:STRING=-Wl,--compress-debug-sections=zlib -Wl,--gdb-index +-DCMAKE_PREFIX_PATH:STRING=/usr +-DCMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,--compress-debug-sections=zlib -Wl,--gdb-index +-DCMAKE_STATIC_LINKER_FLAGS:STRING= +-DLIBOMP_USE_VERSION_SYMBOLS:BOOL=OFF +-DLLVM_ABI_BREAKING_CHECKS:STRING=FORCE_ON +-DLLVM_BUILD_BENCHMARKS:BOOL=ON +-DLLVM_BUILD_LLVM_DYLIB:BOOL=OFF +-DLLVM_BUILD_TESTS:BOOL=ON +-DLLVM_CCACHE_BUILD:BOOL=ON +-DLLVM_CCACHE_DIR:STRING=/builddirs/llvm-project/ccache-Clang11 +-DLLVM_CCACHE_MAXSIZE:STRING=64G +-DLLVM_ENABLE_ASSERTIONS:BOOL=ON +-DLLVM_ENABLE_EH:BOOL=ON +-DLLVM_ENABLE_PROJECTS:STRING=clang;clang-tools-extra;compiler-rt;libcxx;libcxxabi;libunwind;lld;openmp;polly;lldb +-DLLVM_ENABLE_RTTI:BOOL=ON +-DLLVM_ENABLE_SPHINX:BOOL=ON +-DLLVM_ENABLE_Z3_SOLVER:BOOL=OFF +-DLLVM_USE_SPLIT_DWARF:BOOL=ON +-DQT_QMAKE_EXECUTABLE:STRING=/usr/lib/qt5/bin/qmake +-DSPHINX_WARNINGS_AS_ERRORS:BOOL=OFF + /builddirs/llvm-project/build-Clang11 + + + + opt + + true + Build + CMakeProjectManager.MakeStep + + 1 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + + clean + + true + Build + CMakeProjectManager.MakeStep + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + + Default + CMakeProjectManager.CMakeBuildConfiguration + + + -GCodeBlocks - Ninja +-DQT_QMAKE_EXECUTABLE:STRING=%{Qt:qmakeExecutable} +-DCMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX} +-DCMAKE_C_COMPILER:STRING=%{Compiler:Executable:C} +-DCMAKE_CXX_COMPILER:STRING=%{Compiler:Executable:Cxx} +-DBUILD_SHARED_LIBS:BOOL=OFF +-DCMAKE_BUILD_TYPE:STRING=Release +-DCMAKE_CXX_COMPILER:STRING=/usr/lib/llvm/11/bin/clang++-11 +-DCMAKE_CXX_FLAGS:STRING=-O3 -march=native -DNDEBUG -g0 -ginline-line-tables -ftime-trace +-DCMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -march=native -DNDEBUG -g0 -ginline-line-tables -ftime-trace +-DCMAKE_C_COMPILER:STRING=/usr/lib/llvm/11/bin/clang-11 +-DCMAKE_C_FLAGS:STRING=-O3 -march=native -DNDEBUG -g0 -ginline-line-tables -ftime-trace +-DCMAKE_C_FLAGS_RELEASE:STRING=-O3 -march=native -DNDEBUG -g0 -ginline-line-tables -ftime-trace +-DCMAKE_EXE_LINKER_FLAGS:STRING= +-DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON +-DCMAKE_INSTALL_PREFIX:PATH=/opt/llvm-s1 +-DCMAKE_MODULE_LINKER_FLAGS:STRING= +-DCMAKE_PREFIX_PATH:STRING=/usr +-DCMAKE_SHARED_LINKER_FLAGS:STRING= +-DCMAKE_STATIC_LINKER_FLAGS:STRING= +-DLIBCXX_INCLUDE_BENCHMARKS:BOOL=OFF +-DLIBOMP_USE_VERSION_SYMBOLS:BOOL=OFF +-DLLVM_ABI_BREAKING_CHECKS:STRING=FORCE_OFF +-DLLVM_BUILD_BENCHMARKS:BOOL=OFF +-DLLVM_BUILD_LLVM_DYLIB:BOOL=OFF +-DLLVM_BUILD_TESTS:BOOL=ON +-DLLVM_CCACHE_BUILD:BOOL=ON +-DLLVM_CCACHE_DIR:STRING=/builddirs/llvm-project/ccache-Clang11-Release +-DLLVM_BUILD_LLVM_C_DYLIB=OFF +-DLLVM_CCACHE_MAXSIZE:STRING=64G +-DLLVM_DEFAULT_TARGET_TRIPLE:STRING=x86_64-unknown-linux-gnu +-DLLVM_ENABLE_ASSERTIONS:BOOL=OFF +-DLLVM_ENABLE_EH:BOOL=OFF +-DLLVM_ENABLE_PROJECTS:STRING=clang +-DLLVM_ENABLE_RTTI:BOOL=OFF +-DLLVM_ENABLE_SPHINX:BOOL=ON +-DLLVM_ENABLE_Z3_SOLVER:BOOL=OFF +-DLLVM_FORCE_ENABLE_STATS:BOOL=ON +-DLLVM_INCLUDE_BENCHMARKS:BOOL=OFF +-DLLVM_TARGETS_TO_BUILD:STRING=X86 +-DLLVM_USE_SPLIT_DWARF:BOOL=ON +-DQT_QMAKE_EXECUTABLE:STRING=/usr/lib/qt5/bin/qmake +-DSPHINX_WARNINGS_AS_ERRORS:BOOL=OFF + /builddirs/llvm-project/build-Clang11-Release + + + + opt + + true + Build + CMakeProjectManager.MakeStep + + 1 + Build + Build + ProjectExplorer.BuildSteps.Build + + + + + clean + + true + Build + CMakeProjectManager.MakeStep + + 1 + Clean + Clean + ProjectExplorer.BuildSteps.Clean + + 2 + false + + + Release + CMakeProjectManager.CMakeBuildConfiguration + + 2 + + + 0 + Deploy + Deploy + ProjectExplorer.BuildSteps.Deploy + + 1 + + false + ProjectExplorer.DefaultDeployConfiguration + + + + 0 + Deploy + Deploy + ProjectExplorer.BuildSteps.Deploy + + 1 + + false + Deploy Configuration2 + ProjectExplorer.DefaultDeployConfiguration + + + + 0 + Deploy + Deploy + ProjectExplorer.BuildSteps.Deploy + + 1 + + false + Deploy Configuration22 + ProjectExplorer.DefaultDeployConfiguration + + 3 + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-tblgen +/repositories/llvm-project/llvm/utils/TableGen/ + llvm-tblgen +/repositories/llvm-project/llvm/utils/TableGen/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.FileCheck +/repositories/llvm-project/llvm/utils/FileCheck/ + FileCheck +/repositories/llvm-project/llvm/utils/FileCheck/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.bugpoint +/repositories/llvm-project/llvm/tools/bugpoint/ + bugpoint +/repositories/llvm-project/llvm/tools/bugpoint/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DemangleTests +/repositories/llvm-project/llvm/unittests/Demangle/ + DemangleTests +/repositories/llvm-project/llvm/unittests/Demangle/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ExecutionEngineTests +/repositories/llvm-project/llvm/unittests/ExecutionEngine/ + ExecutionEngineTests +/repositories/llvm-project/llvm/unittests/ExecutionEngine/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.JITLinkTests +/repositories/llvm-project/llvm/unittests/ExecutionEngine/JITLink/ + JITLinkTests +/repositories/llvm-project/llvm/unittests/ExecutionEngine/JITLink/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.OrcJITTests +/repositories/llvm-project/llvm/unittests/ExecutionEngine/Orc/ + OrcJITTests +/repositories/llvm-project/llvm/unittests/ExecutionEngine/Orc/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.MCJITTests +/repositories/llvm-project/llvm/unittests/ExecutionEngine/MCJIT/ + MCJITTests +/repositories/llvm-project/llvm/unittests/ExecutionEngine/MCJIT/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.FuzzMutateTests +/repositories/llvm-project/llvm/unittests/FuzzMutate/ + FuzzMutateTests +/repositories/llvm-project/llvm/unittests/FuzzMutate/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.IRTests +/repositories/llvm-project/llvm/unittests/IR/ + IRTests +/repositories/llvm-project/llvm/unittests/IR/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LineEditorTests +/repositories/llvm-project/llvm/unittests/LineEditor/ + LineEditorTests +/repositories/llvm-project/llvm/unittests/LineEditor/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LinkerTests +/repositories/llvm-project/llvm/unittests/Linker/ + LinkerTests +/repositories/llvm-project/llvm/unittests/Linker/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.MCTests +/repositories/llvm-project/llvm/unittests/MC/ + MCTests +/repositories/llvm-project/llvm/unittests/MC/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.dsymutil +/repositories/llvm-project/llvm/tools/dsymutil/ + dsymutil +/repositories/llvm-project/llvm/tools/dsymutil/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.MITests +/repositories/llvm-project/llvm/unittests/MI/ + MITests +/repositories/llvm-project/llvm/unittests/MI/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ObjectTests +/repositories/llvm-project/llvm/unittests/Object/ + ObjectTests +/repositories/llvm-project/llvm/unittests/Object/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ObjectYAMLTests +/repositories/llvm-project/llvm/unittests/ObjectYAML/ + ObjectYAMLTests +/repositories/llvm-project/llvm/unittests/ObjectYAML/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.OptionTests +/repositories/llvm-project/llvm/unittests/Option/ + OptionTests +/repositories/llvm-project/llvm/unittests/Option/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.RemarksTests +/repositories/llvm-project/llvm/unittests/Remarks/ + RemarksTests +/repositories/llvm-project/llvm/unittests/Remarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.PluginsTests +/repositories/llvm-project/llvm/unittests/Passes/ + PluginsTests +/repositories/llvm-project/llvm/unittests/Passes/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ProfileDataTests +/repositories/llvm-project/llvm/unittests/ProfileData/ + ProfileDataTests +/repositories/llvm-project/llvm/unittests/ProfileData/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.SupportTests +/repositories/llvm-project/llvm/unittests/Support/ + SupportTests +/repositories/llvm-project/llvm/unittests/Support/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DynamicLibraryTests +/repositories/llvm-project/llvm/unittests/Support/DynamicLibrary/ + DynamicLibraryTests +/repositories/llvm-project/llvm/unittests/Support/DynamicLibrary/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.TextAPITests +/repositories/llvm-project/llvm/unittests/TextAPI/ + TextAPITests +/repositories/llvm-project/llvm/unittests/TextAPI/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llc +/repositories/llvm-project/llvm/tools/llc/ + llc +/repositories/llvm-project/llvm/tools/llc/ + -o - -debug -mcpu=bdver2 /tmp/test.ll + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.AArch64Tests +/repositories/llvm-project/llvm/unittests/Target/AArch64/ + AArch64Tests +/repositories/llvm-project/llvm/unittests/Target/AArch64/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.WebAssemblyTests +/repositories/llvm-project/llvm/unittests/Target/WebAssembly/ + WebAssemblyTests +/repositories/llvm-project/llvm/unittests/Target/WebAssembly/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.IPOTests +/repositories/llvm-project/llvm/unittests/Transforms/IPO/ + IPOTests +/repositories/llvm-project/llvm/unittests/Transforms/IPO/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ScalarTests +/repositories/llvm-project/llvm/unittests/Transforms/Scalar/ + ScalarTests +/repositories/llvm-project/llvm/unittests/Transforms/Scalar/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.UtilsTests +/repositories/llvm-project/llvm/unittests/Transforms/Utils/ + UtilsTests +/repositories/llvm-project/llvm/unittests/Transforms/Utils/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.VectorizeTests +/repositories/llvm-project/llvm/unittests/Transforms/Vectorize/ + VectorizeTests +/repositories/llvm-project/llvm/unittests/Transforms/Vectorize/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.XRayTests +/repositories/llvm-project/llvm/unittests/XRay/ + XRayTests +/repositories/llvm-project/llvm/unittests/XRay/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.CFIVerifyTests +/repositories/llvm-project/llvm/unittests/tools/llvm-cfi-verify/ + CFIVerifyTests +/repositories/llvm-project/llvm/unittests/tools/llvm-cfi-verify/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisTests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/ + LLVMExegesisTests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisX86Tests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/X86/ + LLVMExegesisX86Tests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/X86/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.lli +/repositories/llvm-project/llvm/tools/lli/ + lli +/repositories/llvm-project/llvm/tools/lli/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisARMTests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/ARM/ + LLVMExegesisARMTests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/ARM/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisAArch64Tests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/AArch64/ + LLVMExegesisAArch64Tests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/AArch64/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisPowerPCTests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/PowerPC/ + LLVMExegesisPowerPCTests +/repositories/llvm-project/llvm/unittests/tools/llvm-exegesis/PowerPC/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DummyYAML +/repositories/llvm-project/llvm/benchmarks/ + DummyYAML +/repositories/llvm-project/llvm/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.polly-isl-test +/repositories/llvm-project/polly/lib/External/ + polly-isl-test +/repositories/llvm-project/polly/lib/External/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.IslTests +/repositories/llvm-project/polly/unittests/Isl/ + IslTests +/repositories/llvm-project/polly/unittests/Isl/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.FlattenTests +/repositories/llvm-project/polly/unittests/Flatten/ + FlattenTests +/repositories/llvm-project/polly/unittests/Flatten/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DeLICMTests +/repositories/llvm-project/polly/unittests/DeLICM/ + DeLICMTests +/repositories/llvm-project/polly/unittests/DeLICM/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ScopPassManagerTests +/repositories/llvm-project/polly/unittests/ScopPassManager/ + ScopPassManagerTests +/repositories/llvm-project/polly/unittests/ScopPassManager/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ScheduleOptimizerTests +/repositories/llvm-project/polly/unittests/ScheduleOptimizer/ + ScheduleOptimizerTests +/repositories/llvm-project/polly/unittests/ScheduleOptimizer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.lli-child-target +/repositories/llvm-project/llvm/tools/lli/ChildTarget/ + lli-child-target +/repositories/llvm-project/llvm/tools/lli/ChildTarget/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ISLToolsTests +/repositories/llvm-project/polly/unittests/Support/ + ISLToolsTests +/repositories/llvm-project/polly/unittests/Support/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.vector_operations_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + vector_operations_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.algorithms_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + algorithms_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.filesystem_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + filesystem_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.algorithms.partition_point_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + algorithms.partition_point_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.string_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + string_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ordered_set_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + ordered_set_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.stringstream_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + stringstream_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.function_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + function_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.unordered_set_operations_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + unordered_set_operations_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-as +/repositories/llvm-project/llvm/tools/llvm-as/ + llvm-as +/repositories/llvm-project/llvm/tools/llvm-as/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.util_smartptr_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + util_smartptr_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-tblgen +/repositories/llvm-project/clang/utils/TableGen/ + clang-tblgen +/repositories/llvm-project/clang/utils/TableGen/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.diagtool +/repositories/llvm-project/clang/tools/diagtool/ + diagtool +/repositories/llvm-project/clang/tools/diagtool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang +/repositories/llvm-project/clang/tools/driver/ + clang +/repositories/llvm-project/clang/tools/driver/ + -instcombine -debug /tmp/test.zzz + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-diff +/repositories/llvm-project/clang/tools/clang-diff/ + clang-diff +/repositories/llvm-project/clang/tools/clang-diff/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-format +/repositories/llvm-project/clang/tools/clang-format/ + clang-format +/repositories/llvm-project/clang/tools/clang-format/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-fuzzer +/repositories/llvm-project/clang/tools/clang-fuzzer/ + clang-fuzzer +/repositories/llvm-project/clang/tools/clang-fuzzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-import-test +/repositories/llvm-project/clang/tools/clang-import-test/ + clang-import-test +/repositories/llvm-project/clang/tools/clang-import-test/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-offload-bundler +/repositories/llvm-project/clang/tools/clang-offload-bundler/ + clang-offload-bundler +/repositories/llvm-project/clang/tools/clang-offload-bundler/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-scan-deps +/repositories/llvm-project/clang/tools/clang-scan-deps/ + clang-scan-deps +/repositories/llvm-project/clang/tools/clang-scan-deps/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-bcanalyzer +/repositories/llvm-project/llvm/tools/llvm-bcanalyzer/ + llvm-bcanalyzer +/repositories/llvm-project/llvm/tools/llvm-bcanalyzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.c-index-test +/repositories/llvm-project/clang/tools/c-index-test/ + c-index-test +/repositories/llvm-project/clang/tools/c-index-test/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-rename +/repositories/llvm-project/clang/tools/clang-rename/ + clang-rename +/repositories/llvm-project/clang/tools/clang-rename/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-refactor +/repositories/llvm-project/clang/tools/clang-refactor/ + clang-refactor +/repositories/llvm-project/clang/tools/clang-refactor/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.arcmt-test +/repositories/llvm-project/clang/tools/arcmt-test/ + arcmt-test +/repositories/llvm-project/clang/tools/arcmt-test/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.c-arcmt-test +/repositories/llvm-project/clang/tools/c-arcmt-test/ + c-arcmt-test +/repositories/llvm-project/clang/tools/c-arcmt-test/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-check +/repositories/llvm-project/clang/tools/clang-check/ + clang-check +/repositories/llvm-project/clang/tools/clang-check/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-extdef-mapping +/repositories/llvm-project/clang/tools/clang-extdef-mapping/ + clang-extdef-mapping +/repositories/llvm-project/clang/tools/clang-extdef-mapping/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-apply-replacements +/repositories/llvm-project/clang-tools-extra/clang-apply-replacements/tool/ + clang-apply-replacements +/repositories/llvm-project/clang-tools-extra/clang-apply-replacements/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-reorder-fields +/repositories/llvm-project/clang-tools-extra/clang-reorder-fields/tool/ + clang-reorder-fields +/repositories/llvm-project/clang-tools-extra/clang-reorder-fields/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.modularize +/repositories/llvm-project/clang-tools-extra/modularize/ + modularize +/repositories/llvm-project/clang-tools-extra/modularize/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-c-test +/repositories/llvm-project/llvm/tools/llvm-c-test/ + llvm-c-test +/repositories/llvm-project/llvm/tools/llvm-c-test/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-tidy +/repositories/llvm-project/clang-tools-extra/clang-tidy/tool/ + clang-tidy +/repositories/llvm-project/clang-tools-extra/clang-tidy/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-change-namespace +/repositories/llvm-project/clang-tools-extra/clang-change-namespace/tool/ + clang-change-namespace +/repositories/llvm-project/clang-tools-extra/clang-change-namespace/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-doc +/repositories/llvm-project/clang-tools-extra/clang-doc/tool/ + clang-doc +/repositories/llvm-project/clang-tools-extra/clang-doc/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-include-fixer +/repositories/llvm-project/clang-tools-extra/clang-include-fixer/tool/ + clang-include-fixer +/repositories/llvm-project/clang-tools-extra/clang-include-fixer/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.find-all-symbols +/repositories/llvm-project/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/ + find-all-symbols +/repositories/llvm-project/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-move +/repositories/llvm-project/clang-tools-extra/clang-move/tool/ + clang-move +/repositories/llvm-project/clang-tools-extra/clang-move/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-query +/repositories/llvm-project/clang-tools-extra/clang-query/tool/ + clang-query +/repositories/llvm-project/clang-tools-extra/clang-query/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.pp-trace +/repositories/llvm-project/clang-tools-extra/pp-trace/ + pp-trace +/repositories/llvm-project/clang-tools-extra/pp-trace/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.tool-template +/repositories/llvm-project/clang-tools-extra/tool-template/ + tool-template +/repositories/llvm-project/clang-tools-extra/tool-template/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangApplyReplacementsTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-apply-replacements/ + ClangApplyReplacementsTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-apply-replacements/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-cat +/repositories/llvm-project/llvm/tools/llvm-cat/ + llvm-cat +/repositories/llvm-project/llvm/tools/llvm-cat/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangChangeNamespaceTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-change-namespace/ + ClangChangeNamespaceTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-change-namespace/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangDocTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-doc/ + ClangDocTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-doc/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangIncludeFixerTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-include-fixer/ + ClangIncludeFixerTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-include-fixer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.FindAllSymbolsTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-include-fixer/find-all-symbols/ + FindAllSymbolsTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-include-fixer/find-all-symbols/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangMoveTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-move/ + ClangMoveTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-move/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangQueryTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-query/ + ClangQueryTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-query/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangTidyTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-tidy/ + ClangTidyTests +/repositories/llvm-project/clang-tools-extra/unittests/clang-tidy/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clangd-fuzzer +/repositories/llvm-project/clang-tools-extra/clangd/fuzzer/ + clangd-fuzzer +/repositories/llvm-project/clang-tools-extra/clangd/fuzzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clangd +/repositories/llvm-project/clang-tools-extra/clangd/tool/ + clangd +/repositories/llvm-project/clang-tools-extra/clangd/tool/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clangd-indexer +/repositories/llvm-project/clang-tools-extra/clangd/indexer/ + clangd-indexer +/repositories/llvm-project/clang-tools-extra/clangd/indexer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-cfi-verify +/repositories/llvm-project/llvm/tools/llvm-cfi-verify/ + llvm-cfi-verify +/repositories/llvm-project/llvm/tools/llvm-cfi-verify/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.dexp +/repositories/llvm-project/clang-tools-extra/clangd/index/dex/dexp/ + dexp +/repositories/llvm-project/clang-tools-extra/clangd/index/dex/dexp/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.IndexBenchmark +/repositories/llvm-project/clang-tools-extra/clangd/benchmarks/ + IndexBenchmark +/repositories/llvm-project/clang-tools-extra/clangd/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangdTests +/repositories/llvm-project/clang-tools-extra/clangd/unittests/ + ClangdTests +/repositories/llvm-project/clang-tools-extra/clangd/unittests/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.clang-interpreter +/repositories/llvm-project/clang/examples/clang-interpreter/ + clang-interpreter +/repositories/llvm-project/clang/examples/clang-interpreter/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BasicTests +/repositories/llvm-project/clang/unittests/Basic/ + BasicTests +/repositories/llvm-project/clang/unittests/Basic/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LexTests +/repositories/llvm-project/clang/unittests/Lex/ + LexTests +/repositories/llvm-project/clang/unittests/Lex/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangDriverTests +/repositories/llvm-project/clang/unittests/Driver/ + ClangDriverTests +/repositories/llvm-project/clang/unittests/Driver/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangAnalysisTests +/repositories/llvm-project/clang/unittests/Analysis/ + ClangAnalysisTests +/repositories/llvm-project/clang/unittests/Analysis/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.StaticAnalysisTests +/repositories/llvm-project/clang/unittests/StaticAnalyzer/ + StaticAnalysisTests +/repositories/llvm-project/clang/unittests/StaticAnalyzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.FrontendTests +/repositories/llvm-project/clang/unittests/Frontend/ + FrontendTests +/repositories/llvm-project/clang/unittests/Frontend/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-PerfectShuffle +/repositories/llvm-project/llvm/utils/PerfectShuffle/ + llvm-PerfectShuffle +/repositories/llvm-project/llvm/utils/PerfectShuffle/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-cov +/repositories/llvm-project/llvm/tools/llvm-cov/ + llvm-cov +/repositories/llvm-project/llvm/tools/llvm-cov/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ASTMatchersTests +/repositories/llvm-project/clang/unittests/ASTMatchers/ + ASTMatchersTests +/repositories/llvm-project/clang/unittests/ASTMatchers/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DynamicASTMatchersTests +/repositories/llvm-project/clang/unittests/ASTMatchers/Dynamic/ + DynamicASTMatchersTests +/repositories/llvm-project/clang/unittests/ASTMatchers/Dynamic/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ASTTests +/repositories/llvm-project/clang/unittests/AST/ + ASTTests +/repositories/llvm-project/clang/unittests/AST/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.CrossTUTests +/repositories/llvm-project/clang/unittests/CrossTU/ + CrossTUTests +/repositories/llvm-project/clang/unittests/CrossTU/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ToolingTests +/repositories/llvm-project/clang/unittests/Tooling/ + ToolingTests +/repositories/llvm-project/clang/unittests/Tooling/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.SyntaxTests +/repositories/llvm-project/clang/unittests/Tooling/Syntax/ + SyntaxTests +/repositories/llvm-project/clang/unittests/Tooling/Syntax/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.FormatTests +/repositories/llvm-project/clang/unittests/Format/ + FormatTests +/repositories/llvm-project/clang/unittests/Format/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.RewriteTests +/repositories/llvm-project/clang/unittests/Rewrite/ + RewriteTests +/repositories/llvm-project/clang/unittests/Rewrite/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.SemaTests +/repositories/llvm-project/clang/unittests/Sema/ + SemaTests +/repositories/llvm-project/clang/unittests/Sema/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangCodeGenTests +/repositories/llvm-project/clang/unittests/CodeGen/ + ClangCodeGenTests +/repositories/llvm-project/clang/unittests/CodeGen/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-cvtres +/repositories/llvm-project/llvm/tools/llvm-cvtres/ + llvm-cvtres +/repositories/llvm-project/llvm/tools/llvm-cvtres/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.libclangTests +/repositories/llvm-project/clang/unittests/libclang/ + libclangTests +/repositories/llvm-project/clang/unittests/libclang/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ClangRenameTests +/repositories/llvm-project/clang/unittests/Rename/ + ClangRenameTests +/repositories/llvm-project/clang/unittests/Rename/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.IndexTests +/repositories/llvm-project/clang/unittests/Index/ + IndexTests +/repositories/llvm-project/clang/unittests/Index/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.SerializationTests +/repositories/llvm-project/clang/unittests/Serialization/ + SerializationTests +/repositories/llvm-project/clang/unittests/Serialization/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.lld +/repositories/llvm-project/lld/tools/lld/ + lld +/repositories/llvm-project/lld/tools/lld/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DriverTests +/repositories/llvm-project/lld/unittests/DriverTests/ + DriverTests +/repositories/llvm-project/lld/unittests/DriverTests/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.lldMachOTests +/repositories/llvm-project/lld/unittests/MachOTests/ + lldMachOTests +/repositories/llvm-project/lld/unittests/MachOTests/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.LLJITWithObjectCache +/repositories/llvm-project/llvm/examples/LLJITExamples/LLJITWithObjectCache/ + LLJITWithObjectCache +/repositories/llvm-project/llvm/examples/LLJITExamples/LLJITWithObjectCache/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DirectoryWatcherTests +/repositories/llvm-project/clang/unittests/DirectoryWatcher/ + DirectoryWatcherTests +/repositories/llvm-project/clang/unittests/DirectoryWatcher/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.allocation_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + allocation_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-cxxdump +/repositories/llvm-project/llvm/tools/llvm-cxxdump/ + llvm-cxxdump +/repositories/llvm-project/llvm/tools/llvm-cxxdump/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.SpeculativeJIT +/repositories/llvm-project/llvm/examples/SpeculativeJIT/ + SpeculativeJIT +/repositories/llvm-project/llvm/examples/SpeculativeJIT/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-reduce +/repositories/llvm-project/llvm/tools/llvm-reduce/ + llvm-reduce +/repositories/llvm-project/llvm/tools/llvm-reduce/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.deque_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + deque_libcxx +/repositories/llvm-project/libcxx/benchmarks/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.stack_trace_compressor_fuzzer +/repositories/llvm-project/compiler-rt/lib/gwp_asan/ + stack_trace_compressor_fuzzer +/repositories/llvm-project/compiler-rt/lib/gwp_asan/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-ifs +/repositories/llvm-project/llvm/tools/llvm-ifs/ + llvm-ifs +/repositories/llvm-project/llvm/tools/llvm-ifs/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ExceptionDemo +/repositories/llvm-project/llvm/examples/ExceptionDemo/ + ExceptionDemo +/repositories/llvm-project/llvm/examples/ExceptionDemo/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-tblgen2 + CMakeProjectManager.CMakeRunConfiguration.llvm-tblgen + llvm-tblgen + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + FileCheck2 + CMakeProjectManager.CMakeRunConfiguration.FileCheck + FileCheck + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-PerfectShuffle2 + CMakeProjectManager.CMakeRunConfiguration.llvm-PerfectShuffle + llvm-PerfectShuffle + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + count2 + CMakeProjectManager.CMakeRunConfiguration.count + count + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-cxxfilt +/repositories/llvm-project/llvm/tools/llvm-cxxfilt/ + llvm-cxxfilt +/repositories/llvm-project/llvm/tools/llvm-cxxfilt/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + not2 + CMakeProjectManager.CMakeRunConfiguration.not + not + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + yaml-bench2 + CMakeProjectManager.CMakeRunConfiguration.yaml-bench + yaml-bench + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + vector_operations_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.vector_operations_libcxx + vector_operations_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + util_smartptr_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.util_smartptr_libcxx + util_smartptr_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + unordered_set_operations_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.unordered_set_operations_libcxx + unordered_set_operations_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + allocation_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.allocation_libcxx + allocation_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + algorithms_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.algorithms_libcxx + algorithms_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + algorithms.partition_point_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.algorithms.partition_point_libcxx + algorithms.partition_point_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + filesystem_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.filesystem_libcxx + filesystem_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + string_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.string_libcxx + string_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-cxxmap +/repositories/llvm-project/llvm/tools/llvm-cxxmap/ + llvm-cxxmap +/repositories/llvm-project/llvm/tools/llvm-cxxmap/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + deque_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.deque_libcxx + deque_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ordered_set_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.ordered_set_libcxx + ordered_set_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + stringstream_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.stringstream_libcxx + stringstream_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + function_libcxx2 + CMakeProjectManager.CMakeRunConfiguration.function_libcxx + function_libcxx + false + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + polly-isl-test2 + CMakeProjectManager.CMakeRunConfiguration.polly-isl-test + polly-isl-test + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + IslTests2 + CMakeProjectManager.CMakeRunConfiguration.IslTests + IslTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/polly/unittests/Isl + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + FlattenTests2 + CMakeProjectManager.CMakeRunConfiguration.FlattenTests + FlattenTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/polly/unittests/Flatten + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DeLICMTests2 + CMakeProjectManager.CMakeRunConfiguration.DeLICMTests + DeLICMTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/polly/unittests/DeLICM + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ScopPassManagerTests2 + CMakeProjectManager.CMakeRunConfiguration.ScopPassManagerTests + ScopPassManagerTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/polly/unittests/ScopPassManager + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ScheduleOptimizerTests2 + CMakeProjectManager.CMakeRunConfiguration.ScheduleOptimizerTests + ScheduleOptimizerTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/polly/unittests/ScheduleOptimizer + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-diff +/repositories/llvm-project/llvm/tools/llvm-diff/ + llvm-diff +/repositories/llvm-project/llvm/tools/llvm-diff/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ISLToolsTests2 + CMakeProjectManager.CMakeRunConfiguration.ISLToolsTests + ISLToolsTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/polly/unittests/Support + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-ar2 + CMakeProjectManager.CMakeRunConfiguration.llvm-ar + llvm-ar + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-config2 + CMakeProjectManager.CMakeRunConfiguration.llvm-config + llvm-config + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-lto3 + CMakeProjectManager.CMakeRunConfiguration.llvm-lto + llvm-lto + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-profdata2 + CMakeProjectManager.CMakeRunConfiguration.llvm-profdata + llvm-profdata + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-tblgen2 + CMakeProjectManager.CMakeRunConfiguration.clang-tblgen + clang-tblgen + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + diagtool2 + CMakeProjectManager.CMakeRunConfiguration.diagtool + diagtool + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang2 + CMakeProjectManager.CMakeRunConfiguration.clang + clang + /tmp/test.cpp -o - -S -emit-llvm + false + true + false + true + false + /tmp + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-diff2 + CMakeProjectManager.CMakeRunConfiguration.clang-diff + clang-diff + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-format2 + CMakeProjectManager.CMakeRunConfiguration.clang-format + clang-format + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-dis +/repositories/llvm-project/llvm/tools/llvm-dis/ + llvm-dis +/repositories/llvm-project/llvm/tools/llvm-dis/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-fuzzer2 + CMakeProjectManager.CMakeRunConfiguration.clang-fuzzer + clang-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-import-test2 + CMakeProjectManager.CMakeRunConfiguration.clang-import-test + clang-import-test + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-offload-bundler2 + CMakeProjectManager.CMakeRunConfiguration.clang-offload-bundler + clang-offload-bundler + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-scan-deps2 + CMakeProjectManager.CMakeRunConfiguration.clang-scan-deps + clang-scan-deps + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + c-index-test2 + CMakeProjectManager.CMakeRunConfiguration.c-index-test + c-index-test + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-rename2 + CMakeProjectManager.CMakeRunConfiguration.clang-rename + clang-rename + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-refactor2 + CMakeProjectManager.CMakeRunConfiguration.clang-refactor + clang-refactor + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + arcmt-test2 + CMakeProjectManager.CMakeRunConfiguration.arcmt-test + arcmt-test + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + c-arcmt-test2 + CMakeProjectManager.CMakeRunConfiguration.c-arcmt-test + c-arcmt-test + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-check2 + CMakeProjectManager.CMakeRunConfiguration.clang-check + clang-check + -fsanitize=implicit-conversion input.c -S -emit-llvm -o - -O0 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-dwarfdump +/repositories/llvm-project/llvm/tools/llvm-dwarfdump/ + llvm-dwarfdump +/repositories/llvm-project/llvm/tools/llvm-dwarfdump/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-extdef-mapping2 + CMakeProjectManager.CMakeRunConfiguration.clang-extdef-mapping + clang-extdef-mapping + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-apply-replacements2 + CMakeProjectManager.CMakeRunConfiguration.clang-apply-replacements + clang-apply-replacements + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-reorder-fields2 + CMakeProjectManager.CMakeRunConfiguration.clang-reorder-fields + clang-reorder-fields + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + modularize2 + CMakeProjectManager.CMakeRunConfiguration.modularize + modularize + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-tidy2 + CMakeProjectManager.CMakeRunConfiguration.clang-tidy + clang-tidy + --checks=-*,misc-no-recursion -format-style=none -- -std=c++11 -nostdinc++ /repositories/llvm-project/clang-tools-extra/test/clang-tidy/checkers/misc-no-recursion.cpp + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-change-namespace2 + CMakeProjectManager.CMakeRunConfiguration.clang-change-namespace + clang-change-namespace + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-doc2 + CMakeProjectManager.CMakeRunConfiguration.clang-doc + clang-doc + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-include-fixer2 + CMakeProjectManager.CMakeRunConfiguration.clang-include-fixer + clang-include-fixer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + find-all-symbols2 + CMakeProjectManager.CMakeRunConfiguration.find-all-symbols + find-all-symbols + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-move2 + CMakeProjectManager.CMakeRunConfiguration.clang-move + clang-move + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-dwp +/repositories/llvm-project/llvm/tools/llvm-dwp/ + llvm-dwp +/repositories/llvm-project/llvm/tools/llvm-dwp/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-query2 + CMakeProjectManager.CMakeRunConfiguration.clang-query + clang-query + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + pp-trace2 + CMakeProjectManager.CMakeRunConfiguration.pp-trace + pp-trace + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + tool-template2 + CMakeProjectManager.CMakeRunConfiguration.tool-template + tool-template + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangApplyReplacementsTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangApplyReplacementsTests + ClangApplyReplacementsTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/unittests/clang-apply-replacements + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangChangeNamespaceTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangChangeNamespaceTests + ClangChangeNamespaceTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/unittests/clang-change-namespace + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangDocTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangDocTests + ClangDocTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/unittests/clang-doc + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangIncludeFixerTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangIncludeFixerTests + ClangIncludeFixerTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/unittests/clang-include-fixer + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + FindAllSymbolsTests2 + CMakeProjectManager.CMakeRunConfiguration.FindAllSymbolsTests + FindAllSymbolsTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/unittests/clang-include-fixer/find-all-symbols + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangMoveTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangMoveTests + ClangMoveTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/unittests/clang-move + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangQueryTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangQueryTests + ClangQueryTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/unittests/clang-query + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-elfabi +/repositories/llvm-project/llvm/tools/llvm-elfabi/ + llvm-elfabi +/repositories/llvm-project/llvm/tools/llvm-elfabi/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangTidyTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangTidyTests + ClangTidyTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/unittests/clang-tidy + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clangd-fuzzer2 + CMakeProjectManager.CMakeRunConfiguration.clangd-fuzzer + clangd-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clangd2 + CMakeProjectManager.CMakeRunConfiguration.clangd + clangd + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clangd-indexer2 + CMakeProjectManager.CMakeRunConfiguration.clangd-indexer + clangd-indexer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + dexp2 + CMakeProjectManager.CMakeRunConfiguration.dexp + dexp + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + IndexBenchmark2 + CMakeProjectManager.CMakeRunConfiguration.IndexBenchmark + IndexBenchmark + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/clangd/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangdTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangdTests + ClangdTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/clangd/unittests + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-interpreter2 + CMakeProjectManager.CMakeRunConfiguration.clang-interpreter + clang-interpreter + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BasicTests2 + CMakeProjectManager.CMakeRunConfiguration.BasicTests + BasicTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Basic + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LexTests2 + CMakeProjectManager.CMakeRunConfiguration.LexTests + LexTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Lex + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.count +/repositories/llvm-project/llvm/utils/count/ + count +/repositories/llvm-project/llvm/utils/count/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-exegesis +/repositories/llvm-project/llvm/tools/llvm-exegesis/ + llvm-exegesis +/repositories/llvm-project/llvm/tools/llvm-exegesis/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangDriverTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangDriverTests + ClangDriverTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Driver + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangAnalysisTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangAnalysisTests + ClangAnalysisTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Analysis + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + StaticAnalysisTests2 + CMakeProjectManager.CMakeRunConfiguration.StaticAnalysisTests + StaticAnalysisTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/StaticAnalyzer + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + FrontendTests2 + CMakeProjectManager.CMakeRunConfiguration.FrontendTests + FrontendTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Frontend + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ASTMatchersTests2 + CMakeProjectManager.CMakeRunConfiguration.ASTMatchersTests + ASTMatchersTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/ASTMatchers + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DynamicASTMatchersTests2 + CMakeProjectManager.CMakeRunConfiguration.DynamicASTMatchersTests + DynamicASTMatchersTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/ASTMatchers/Dynamic + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ASTTests2 + CMakeProjectManager.CMakeRunConfiguration.ASTTests + ASTTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/AST + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CrossTUTests2 + CMakeProjectManager.CMakeRunConfiguration.CrossTUTests + CrossTUTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/CrossTU + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ToolingTests2 + CMakeProjectManager.CMakeRunConfiguration.ToolingTests + ToolingTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Tooling + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SyntaxTests2 + CMakeProjectManager.CMakeRunConfiguration.SyntaxTests + SyntaxTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Tooling/Syntax + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-extract +/repositories/llvm-project/llvm/tools/llvm-extract/ + llvm-extract +/repositories/llvm-project/llvm/tools/llvm-extract/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + FormatTests2 + CMakeProjectManager.CMakeRunConfiguration.FormatTests + FormatTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Format + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + RewriteTests2 + CMakeProjectManager.CMakeRunConfiguration.RewriteTests + RewriteTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Rewrite + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SemaTests2 + CMakeProjectManager.CMakeRunConfiguration.SemaTests + SemaTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Sema + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangCodeGenTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangCodeGenTests + ClangCodeGenTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/CodeGen + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + libclangTests2 + CMakeProjectManager.CMakeRunConfiguration.libclangTests + libclangTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/libclang + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DirectoryWatcherTests2 + CMakeProjectManager.CMakeRunConfiguration.DirectoryWatcherTests + DirectoryWatcherTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/DirectoryWatcher + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ClangRenameTests2 + CMakeProjectManager.CMakeRunConfiguration.ClangRenameTests + ClangRenameTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Rename + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + IndexTests2 + CMakeProjectManager.CMakeRunConfiguration.IndexTests + IndexTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Index + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SerializationTests2 + CMakeProjectManager.CMakeRunConfiguration.SerializationTests + SerializationTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Serialization + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lld2 + CMakeProjectManager.CMakeRunConfiguration.lld + lld + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-isel-fuzzer +/repositories/llvm-project/llvm/tools/llvm-isel-fuzzer/ + llvm-isel-fuzzer +/repositories/llvm-project/llvm/tools/llvm-isel-fuzzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DriverTests2 + CMakeProjectManager.CMakeRunConfiguration.DriverTests + DriverTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lld/unittests/DriverTests + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lldMachOTests2 + CMakeProjectManager.CMakeRunConfiguration.lldMachOTests + lldMachOTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lld/unittests/MachOTests + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + bugpoint2 + CMakeProjectManager.CMakeRunConfiguration.bugpoint + bugpoint + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + dsymutil2 + CMakeProjectManager.CMakeRunConfiguration.dsymutil + dsymutil + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llc2 + CMakeProjectManager.CMakeRunConfiguration.llc + llc + -simplifycfg-require-and-preserve-domtree=1 < /repositories/llvm-project/llvm/test/CodeGen/Thumb2/2009-08-04-CoalescerBug.ll -mtriple=thumbv7-apple-darwin -mcpu=cortex-a8 -relocation-model=pic -frame-pointer=all -debug + false + true + false + true + false + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lli2 + CMakeProjectManager.CMakeRunConfiguration.lli + lli + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lli-child-target2 + CMakeProjectManager.CMakeRunConfiguration.lli-child-target + lli-child-target + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-as2 + CMakeProjectManager.CMakeRunConfiguration.llvm-as + llvm-as + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-bcanalyzer2 + CMakeProjectManager.CMakeRunConfiguration.llvm-bcanalyzer + llvm-bcanalyzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-c-test2 + CMakeProjectManager.CMakeRunConfiguration.llvm-c-test + llvm-c-test + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-itanium-demangle-fuzzer +/repositories/llvm-project/llvm/tools/llvm-itanium-demangle-fuzzer/ + llvm-itanium-demangle-fuzzer +/repositories/llvm-project/llvm/tools/llvm-itanium-demangle-fuzzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-cat2 + CMakeProjectManager.CMakeRunConfiguration.llvm-cat + llvm-cat + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-cfi-verify2 + CMakeProjectManager.CMakeRunConfiguration.llvm-cfi-verify + llvm-cfi-verify + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-cov2 + CMakeProjectManager.CMakeRunConfiguration.llvm-cov + llvm-cov + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-cvtres2 + CMakeProjectManager.CMakeRunConfiguration.llvm-cvtres + llvm-cvtres + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-cxxdump2 + CMakeProjectManager.CMakeRunConfiguration.llvm-cxxdump + llvm-cxxdump + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-cxxfilt2 + CMakeProjectManager.CMakeRunConfiguration.llvm-cxxfilt + llvm-cxxfilt + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-cxxmap2 + CMakeProjectManager.CMakeRunConfiguration.llvm-cxxmap + llvm-cxxmap + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-diff2 + CMakeProjectManager.CMakeRunConfiguration.llvm-diff + llvm-diff + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-dis2 + CMakeProjectManager.CMakeRunConfiguration.llvm-dis + llvm-dis + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-dwarfdump2 + CMakeProjectManager.CMakeRunConfiguration.llvm-dwarfdump + llvm-dwarfdump + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-jitlink +/repositories/llvm-project/llvm/tools/llvm-jitlink/ + llvm-jitlink +/repositories/llvm-project/llvm/tools/llvm-jitlink/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-dwp2 + CMakeProjectManager.CMakeRunConfiguration.llvm-dwp + llvm-dwp + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-elfabi2 + CMakeProjectManager.CMakeRunConfiguration.llvm-elfabi + llvm-elfabi + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-exegesis2 + CMakeProjectManager.CMakeRunConfiguration.llvm-exegesis + llvm-exegesis + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-extract2 + CMakeProjectManager.CMakeRunConfiguration.llvm-extract + llvm-extract + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-ifs2 + CMakeProjectManager.CMakeRunConfiguration.llvm-ifs + llvm-ifs + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-isel-fuzzer2 + CMakeProjectManager.CMakeRunConfiguration.llvm-isel-fuzzer + llvm-isel-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-itanium-demangle-fuzzer2 + CMakeProjectManager.CMakeRunConfiguration.llvm-itanium-demangle-fuzzer + llvm-itanium-demangle-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-jitlink2 + CMakeProjectManager.CMakeRunConfiguration.llvm-jitlink + llvm-jitlink + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-link2 + CMakeProjectManager.CMakeRunConfiguration.llvm-link + llvm-link + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-lipo2 + CMakeProjectManager.CMakeRunConfiguration.llvm-lipo + llvm-lipo + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-link +/repositories/llvm-project/llvm/tools/llvm-link/ + llvm-link +/repositories/llvm-project/llvm/tools/llvm-link/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-lto22 + CMakeProjectManager.CMakeRunConfiguration.llvm-lto2 + llvm-lto2 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-mc2 + CMakeProjectManager.CMakeRunConfiguration.llvm-mc + llvm-mc + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-mca2 + CMakeProjectManager.CMakeRunConfiguration.llvm-mca + llvm-mca + -mtriple=x86_64-unknown-unknown -mcpu=bdver2 -iterations=100 -resource-pressure=false -timeline -timeline-max-iterations=2 < /repositories/llvm-project/llvm/test/tools/llvm-mca/X86/BdVer2/clear-super-register-1.s -debug + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-microsoft-demangle-fuzzer2 + CMakeProjectManager.CMakeRunConfiguration.llvm-microsoft-demangle-fuzzer + llvm-microsoft-demangle-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-modextract2 + CMakeProjectManager.CMakeRunConfiguration.llvm-modextract + llvm-modextract + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-mt2 + CMakeProjectManager.CMakeRunConfiguration.llvm-mt + llvm-mt + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-nm2 + CMakeProjectManager.CMakeRunConfiguration.llvm-nm + llvm-nm + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-objcopy2 + CMakeProjectManager.CMakeRunConfiguration.llvm-objcopy + llvm-objcopy + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-objdump2 + CMakeProjectManager.CMakeRunConfiguration.llvm-objdump + llvm-objdump + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-opt-fuzzer2 + CMakeProjectManager.CMakeRunConfiguration.llvm-opt-fuzzer + llvm-opt-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-lipo +/repositories/llvm-project/llvm/tools/llvm-lipo/ + llvm-lipo +/repositories/llvm-project/llvm/tools/llvm-lipo/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-opt-report2 + CMakeProjectManager.CMakeRunConfiguration.llvm-opt-report + llvm-opt-report + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-pdbutil2 + CMakeProjectManager.CMakeRunConfiguration.llvm-pdbutil + llvm-pdbutil + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-rc2 + CMakeProjectManager.CMakeRunConfiguration.llvm-rc + llvm-rc + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-readobj2 + CMakeProjectManager.CMakeRunConfiguration.llvm-readobj + llvm-readobj + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-reduce2 + CMakeProjectManager.CMakeRunConfiguration.llvm-reduce + llvm-reduce + -test=test-llvm-reduce.sh input.ll + false + true + false + true + false + /home/lebedevri/CREDUCE/ + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-rtdyld2 + CMakeProjectManager.CMakeRunConfiguration.llvm-rtdyld + llvm-rtdyld + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-size2 + CMakeProjectManager.CMakeRunConfiguration.llvm-size + llvm-size + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-special-case-list-fuzzer2 + CMakeProjectManager.CMakeRunConfiguration.llvm-special-case-list-fuzzer + llvm-special-case-list-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-split2 + CMakeProjectManager.CMakeRunConfiguration.llvm-split + llvm-split + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-stress2 + CMakeProjectManager.CMakeRunConfiguration.llvm-stress + llvm-stress + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-lto2 +/repositories/llvm-project/llvm/tools/llvm-lto2/ + llvm-lto2 +/repositories/llvm-project/llvm/tools/llvm-lto2/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-strings2 + CMakeProjectManager.CMakeRunConfiguration.llvm-strings + llvm-strings + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-symbolizer2 + CMakeProjectManager.CMakeRunConfiguration.llvm-symbolizer + llvm-symbolizer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-undname2 + CMakeProjectManager.CMakeRunConfiguration.llvm-undname + llvm-undname + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-xray2 + CMakeProjectManager.CMakeRunConfiguration.llvm-xray + llvm-xray + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-yaml-numeric-parser-fuzzer2 + CMakeProjectManager.CMakeRunConfiguration.llvm-yaml-numeric-parser-fuzzer + llvm-yaml-numeric-parser-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + obj2yaml2 + CMakeProjectManager.CMakeRunConfiguration.obj2yaml + obj2yaml + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + opt2 + CMakeProjectManager.CMakeRunConfiguration.opt + opt + -S -loop-reduce /repositories/llvm-project/llvm/test/Transforms/LoopStrengthReduce/X86/bad-insertion-point.ll + false + true + false + true + false + /tmp + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + sancov2 + CMakeProjectManager.CMakeRunConfiguration.sancov + sancov + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + sanstats2 + CMakeProjectManager.CMakeRunConfiguration.sanstats + sanstats + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + verify-uselistorder2 + CMakeProjectManager.CMakeRunConfiguration.verify-uselistorder + verify-uselistorder + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-mc +/repositories/llvm-project/llvm/tools/llvm-mc/ + llvm-mc +/repositories/llvm-project/llvm/tools/llvm-mc/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + yaml2obj2 + CMakeProjectManager.CMakeRunConfiguration.yaml2obj + yaml2obj + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BrainF2 + CMakeProjectManager.CMakeRunConfiguration.BrainF + BrainF + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Fibonacci2 + CMakeProjectManager.CMakeRunConfiguration.Fibonacci + Fibonacci + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + HowToUseJIT2 + CMakeProjectManager.CMakeRunConfiguration.HowToUseJIT + HowToUseJIT + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + HowToUseLLJIT2 + CMakeProjectManager.CMakeRunConfiguration.HowToUseLLJIT + HowToUseLLJIT + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithObjectCache2 + CMakeProjectManager.CMakeRunConfiguration.LLJITWithObjectCache + LLJITWithObjectCache + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BuildingAJIT-Ch12 + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch1 + BuildingAJIT-Ch1 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BuildingAJIT-Ch22 + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch2 + BuildingAJIT-Ch2 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BuildingAJIT-Ch32 + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch3 + BuildingAJIT-Ch3 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BuildingAJIT-Ch42 + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch4 + BuildingAJIT-Ch4 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-mca +/repositories/llvm-project/llvm/tools/llvm-mca/ + llvm-mca +/repositories/llvm-project/llvm/tools/llvm-mca/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BuildingAJIT-Ch52 + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch5 + BuildingAJIT-Ch5 + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BuildingAJIT-Ch5-Server2 + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch5-Server + BuildingAJIT-Ch5-Server + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Kaleidoscope-Ch22 + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch2 + Kaleidoscope-Ch2 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Kaleidoscope-Ch32 + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch3 + Kaleidoscope-Ch3 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Kaleidoscope-Ch42 + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch4 + Kaleidoscope-Ch4 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Kaleidoscope-Ch52 + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch5 + Kaleidoscope-Ch5 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Kaleidoscope-Ch62 + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch6 + Kaleidoscope-Ch6 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Kaleidoscope-Ch72 + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch7 + Kaleidoscope-Ch7 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Kaleidoscope-Ch82 + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch8 + Kaleidoscope-Ch8 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Kaleidoscope-Ch92 + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch9 + Kaleidoscope-Ch9 + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.not +/repositories/llvm-project/llvm/utils/not/ + not +/repositories/llvm-project/llvm/utils/not/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-microsoft-demangle-fuzzer +/repositories/llvm-project/llvm/tools/llvm-microsoft-demangle-fuzzer/ + llvm-microsoft-demangle-fuzzer +/repositories/llvm-project/llvm/tools/llvm-microsoft-demangle-fuzzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ModuleMaker2 + CMakeProjectManager.CMakeRunConfiguration.ModuleMaker + ModuleMaker + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SpeculativeJIT2 + CMakeProjectManager.CMakeRunConfiguration.SpeculativeJIT + SpeculativeJIT + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ParallelJIT2 + CMakeProjectManager.CMakeRunConfiguration.ParallelJIT + ParallelJIT + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ADTTests2 + CMakeProjectManager.CMakeRunConfiguration.ADTTests + ADTTests + --gtest_filter=\*Shr\* + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/ADT + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + AnalysisTests2 + CMakeProjectManager.CMakeRunConfiguration.AnalysisTests + AnalysisTests + --gtest_filter=ScalarEvolutionsTest.TestRecursiveGetAddRecExprPHILiterally + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Analysis + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + AsmParserTests2 + CMakeProjectManager.CMakeRunConfiguration.AsmParserTests + AsmParserTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/AsmParser + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BinaryFormatTests2 + CMakeProjectManager.CMakeRunConfiguration.BinaryFormatTests + BinaryFormatTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/BinaryFormat + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BitcodeTests2 + CMakeProjectManager.CMakeRunConfiguration.BitcodeTests + BitcodeTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Bitcode + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BitstreamTests2 + CMakeProjectManager.CMakeRunConfiguration.BitstreamTests + BitstreamTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Bitstream + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CodeGenTests2 + CMakeProjectManager.CMakeRunConfiguration.CodeGenTests + CodeGenTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/CodeGen + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-modextract +/repositories/llvm-project/llvm/tools/llvm-modextract/ + llvm-modextract +/repositories/llvm-project/llvm/tools/llvm-modextract/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + GlobalISelTests2 + CMakeProjectManager.CMakeRunConfiguration.GlobalISelTests + GlobalISelTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/CodeGen/GlobalISel + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DebugInfoCodeViewTests2 + CMakeProjectManager.CMakeRunConfiguration.DebugInfoCodeViewTests + DebugInfoCodeViewTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/DebugInfo/CodeView + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DebugInfoDWARFTests2 + CMakeProjectManager.CMakeRunConfiguration.DebugInfoDWARFTests + DebugInfoDWARFTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/DebugInfo/DWARF + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DebugInfoGSYMTests2 + CMakeProjectManager.CMakeRunConfiguration.DebugInfoGSYMTests + DebugInfoGSYMTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/DebugInfo/GSYM + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DebugInfoMSFTests2 + CMakeProjectManager.CMakeRunConfiguration.DebugInfoMSFTests + DebugInfoMSFTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/DebugInfo/MSF + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DebugInfoPDBTests2 + CMakeProjectManager.CMakeRunConfiguration.DebugInfoPDBTests + DebugInfoPDBTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/DebugInfo/PDB + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DemangleTests2 + CMakeProjectManager.CMakeRunConfiguration.DemangleTests + DemangleTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Demangle + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ExecutionEngineTests2 + CMakeProjectManager.CMakeRunConfiguration.ExecutionEngineTests + ExecutionEngineTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/ExecutionEngine + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + JITLinkTests2 + CMakeProjectManager.CMakeRunConfiguration.JITLinkTests + JITLinkTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/ExecutionEngine/JITLink + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + OrcJITTests2 + CMakeProjectManager.CMakeRunConfiguration.OrcJITTests + OrcJITTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/ExecutionEngine/Orc + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-mt +/repositories/llvm-project/llvm/tools/llvm-mt/ + llvm-mt +/repositories/llvm-project/llvm/tools/llvm-mt/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + MCJITTests2 + CMakeProjectManager.CMakeRunConfiguration.MCJITTests + MCJITTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/ExecutionEngine/MCJIT + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + FuzzMutateTests2 + CMakeProjectManager.CMakeRunConfiguration.FuzzMutateTests + FuzzMutateTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/FuzzMutate + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + IRTests2 + CMakeProjectManager.CMakeRunConfiguration.IRTests + IRTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/IR + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LineEditorTests2 + CMakeProjectManager.CMakeRunConfiguration.LineEditorTests + LineEditorTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/LineEditor + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LinkerTests2 + CMakeProjectManager.CMakeRunConfiguration.LinkerTests + LinkerTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Linker + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + MCTests2 + CMakeProjectManager.CMakeRunConfiguration.MCTests + MCTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/MC + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + MITests2 + CMakeProjectManager.CMakeRunConfiguration.MITests + MITests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/MI + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ObjectTests2 + CMakeProjectManager.CMakeRunConfiguration.ObjectTests + ObjectTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Object + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ObjectYAMLTests2 + CMakeProjectManager.CMakeRunConfiguration.ObjectYAMLTests + ObjectYAMLTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/ObjectYAML + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + OptionTests2 + CMakeProjectManager.CMakeRunConfiguration.OptionTests + OptionTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Option + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-nm +/repositories/llvm-project/llvm/tools/llvm-nm/ + llvm-nm +/repositories/llvm-project/llvm/tools/llvm-nm/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + RemarksTests2 + CMakeProjectManager.CMakeRunConfiguration.RemarksTests + RemarksTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Remarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + PluginsTests2 + CMakeProjectManager.CMakeRunConfiguration.PluginsTests + PluginsTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Passes + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProfileDataTests2 + CMakeProjectManager.CMakeRunConfiguration.ProfileDataTests + ProfileDataTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/ProfileData + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SupportTests2 + CMakeProjectManager.CMakeRunConfiguration.SupportTests + SupportTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Support + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DynamicLibraryTests2 + CMakeProjectManager.CMakeRunConfiguration.DynamicLibraryTests + DynamicLibraryTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Support/DynamicLibrary + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + TextAPITests2 + CMakeProjectManager.CMakeRunConfiguration.TextAPITests + TextAPITests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/TextAPI + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + AArch64Tests2 + CMakeProjectManager.CMakeRunConfiguration.AArch64Tests + AArch64Tests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Target/AArch64 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + WebAssemblyTests2 + CMakeProjectManager.CMakeRunConfiguration.WebAssemblyTests + WebAssemblyTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Target/WebAssembly + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + IPOTests2 + CMakeProjectManager.CMakeRunConfiguration.IPOTests + IPOTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Transforms/IPO + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ScalarTests2 + CMakeProjectManager.CMakeRunConfiguration.ScalarTests + ScalarTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Transforms/Scalar + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-objcopy +/repositories/llvm-project/llvm/tools/llvm-objcopy/ + llvm-objcopy +/repositories/llvm-project/llvm/tools/llvm-objcopy/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + UtilsTests2 + CMakeProjectManager.CMakeRunConfiguration.UtilsTests + UtilsTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Transforms/Utils + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + VectorizeTests2 + CMakeProjectManager.CMakeRunConfiguration.VectorizeTests + VectorizeTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Transforms/Vectorize + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + XRayTests2 + CMakeProjectManager.CMakeRunConfiguration.XRayTests + XRayTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/XRay + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CFIVerifyTests2 + CMakeProjectManager.CMakeRunConfiguration.CFIVerifyTests + CFIVerifyTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/tools/llvm-cfi-verify + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLVMExegesisTests2 + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisTests + LLVMExegesisTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/tools/llvm-exegesis + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLVMExegesisX86Tests2 + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisX86Tests + LLVMExegesisX86Tests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/tools/llvm-exegesis/X86 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLVMExegesisARMTests2 + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisARMTests + LLVMExegesisARMTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/tools/llvm-exegesis/ARM + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLVMExegesisAArch64Tests2 + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisAArch64Tests + LLVMExegesisAArch64Tests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/tools/llvm-exegesis/AArch64 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLVMExegesisPowerPCTests2 + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisPowerPCTests + LLVMExegesisPowerPCTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/tools/llvm-exegesis/PowerPC + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DummyYAML2 + CMakeProjectManager.CMakeRunConfiguration.DummyYAML + DummyYAML + false + true + false + true + /builddirs/llvm-project/build-Clang11/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-objdump +/repositories/llvm-project/llvm/tools/llvm-objdump/ + llvm-objdump +/repositories/llvm-project/llvm/tools/llvm-objdump/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + libclangCrashTests + CMakeProjectManager.CMakeRunConfiguration.libclangCrashTests + libclangCrashTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/libclang/CrashTests + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ARMTests + CMakeProjectManager.CMakeRunConfiguration.ARMTests + ARMTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Target/ARM + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + TableGenTests + CMakeProjectManager.CMakeRunConfiguration.TableGenTests + TableGenTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/TableGen + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-offload-wrapper + CMakeProjectManager.CMakeRunConfiguration.clang-offload-wrapper + clang-offload-wrapper + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lldb-tblgen + CMakeProjectManager.CMakeRunConfiguration.lldb-tblgen + lldb-tblgen + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lldb-argdumper + CMakeProjectManager.CMakeRunConfiguration.lldb-argdumper + lldb-argdumper + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lldb + CMakeProjectManager.CMakeRunConfiguration.lldb + lldb + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lldb-test + CMakeProjectManager.CMakeRunConfiguration.lldb-test + lldb-test + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lldb-instr + CMakeProjectManager.CMakeRunConfiguration.lldb-instr + lldb-instr + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lldb-vscode + CMakeProjectManager.CMakeRunConfiguration.lldb-vscode + lldb-vscode + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-opt-fuzzer +/repositories/llvm-project/llvm/tools/llvm-opt-fuzzer/ + llvm-opt-fuzzer +/repositories/llvm-project/llvm/tools/llvm-opt-fuzzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lldb-server + CMakeProjectManager.CMakeRunConfiguration.lldb-server + lldb-server + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLDBBreakpointTests + CMakeProjectManager.CMakeRunConfiguration.LLDBBreakpointTests + LLDBBreakpointTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Breakpoint + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLDBCoreTests + CMakeProjectManager.CMakeRunConfiguration.LLDBCoreTests + LLDBCoreTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Core + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DisassemblerTests + CMakeProjectManager.CMakeRunConfiguration.DisassemblerTests + DisassemblerTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Disassembler + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + EditlineTests + CMakeProjectManager.CMakeRunConfiguration.EditlineTests + EditlineTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Editline + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ExpressionTests + CMakeProjectManager.CMakeRunConfiguration.ExpressionTests + ExpressionTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Expression + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + HostTests + CMakeProjectManager.CMakeRunConfiguration.HostTests + HostTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Host + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + InterpreterTests + CMakeProjectManager.CMakeRunConfiguration.InterpreterTests + InterpreterTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Interpreter + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LanguageCPlusPlusTests + CMakeProjectManager.CMakeRunConfiguration.LanguageCPlusPlusTests + LanguageCPlusPlusTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Language/CPlusPlus + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + HighlighterTests + CMakeProjectManager.CMakeRunConfiguration.HighlighterTests + HighlighterTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Language/Highlighting + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-opt-report +/repositories/llvm-project/llvm/tools/llvm-opt-report/ + llvm-opt-report +/repositories/llvm-project/llvm/tools/llvm-opt-report/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ObjectFileBreakpadTests + CMakeProjectManager.CMakeRunConfiguration.ObjectFileBreakpadTests + ObjectFileBreakpadTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/ObjectFile/Breakpad + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ObjectFileELFTests + CMakeProjectManager.CMakeRunConfiguration.ObjectFileELFTests + ObjectFileELFTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/ObjectFile/ELF + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ObjectFilePECOFFTests + CMakeProjectManager.CMakeRunConfiguration.ObjectFilePECOFFTests + ObjectFilePECOFFTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/ObjectFile/PECOFF + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLDBPlatformTests + CMakeProjectManager.CMakeRunConfiguration.LLDBPlatformTests + LLDBPlatformTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Platform + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProcessGdbRemoteTests + CMakeProjectManager.CMakeRunConfiguration.ProcessGdbRemoteTests + ProcessGdbRemoteTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Process/gdb-remote + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProcessorTraceTest + CMakeProjectManager.CMakeRunConfiguration.ProcessorTraceTest + ProcessorTraceTest + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProcessPOSIXTest + CMakeProjectManager.CMakeRunConfiguration.ProcessPOSIXTest + ProcessPOSIXTest + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLDBMinidumpTests + CMakeProjectManager.CMakeRunConfiguration.LLDBMinidumpTests + LLDBMinidumpTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Process/minidump + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ScriptInterpreterPythonTests + CMakeProjectManager.CMakeRunConfiguration.ScriptInterpreterPythonTests + ScriptInterpreterPythonTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/ScriptInterpreter/Python + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SignalsTests + CMakeProjectManager.CMakeRunConfiguration.SignalsTests + SignalsTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Signals + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-pdbutil +/repositories/llvm-project/llvm/tools/llvm-pdbutil/ + llvm-pdbutil +/repositories/llvm-project/llvm/tools/llvm-pdbutil/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SymbolTests + CMakeProjectManager.CMakeRunConfiguration.SymbolTests + SymbolTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Symbol + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SymbolFileDWARFTests + CMakeProjectManager.CMakeRunConfiguration.SymbolFileDWARFTests + SymbolFileDWARFTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/SymbolFile/DWARF + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SymbolFileNativePDBTests + CMakeProjectManager.CMakeRunConfiguration.SymbolFileNativePDBTests + SymbolFileNativePDBTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/SymbolFile/NativePDB + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + TargetTests + CMakeProjectManager.CMakeRunConfiguration.TargetTests + TargetTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Target + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + thread_inferior + CMakeProjectManager.CMakeRunConfiguration.thread_inferior + thread_inferior + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/tools/lldb-server + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + environment_check + CMakeProjectManager.CMakeRunConfiguration.environment_check + environment_check + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/tools/lldb-server + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLDBServerTests + CMakeProjectManager.CMakeRunConfiguration.LLDBServerTests + LLDBServerTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/tools/lldb-server/tests + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + Arm64InstEmulationTests + CMakeProjectManager.CMakeRunConfiguration.Arm64InstEmulationTests + Arm64InstEmulationTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/UnwindAssembly/ARM64 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + PPC64InstEmulationTests + CMakeProjectManager.CMakeRunConfiguration.PPC64InstEmulationTests + PPC64InstEmulationTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/UnwindAssembly/PPC64 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + UnwindAssemblyx86Tests + CMakeProjectManager.CMakeRunConfiguration.UnwindAssemblyx86Tests + UnwindAssemblyx86Tests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/UnwindAssembly/x86 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-rc +/repositories/llvm-project/llvm/tools/llvm-rc/ + llvm-rc +/repositories/llvm-project/llvm/tools/llvm-rc/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + UtilityTests + CMakeProjectManager.CMakeRunConfiguration.UtilityTests + UtilityTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Utility + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + lit-cpuid + CMakeProjectManager.CMakeRunConfiguration.lit-cpuid + lit-cpuid + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLVMExegesisMipsTests + CMakeProjectManager.CMakeRunConfiguration.LLVMExegesisMipsTests + LLVMExegesisMipsTests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/tools/llvm-exegesis/Mips + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithJITLink + CMakeProjectManager.CMakeRunConfiguration.LLJITWithJITLink + LLJITWithJITLink + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-objc-fuzzer + CMakeProjectManager.CMakeRunConfiguration.clang-objc-fuzzer + clang-objc-fuzzer + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + X86Tests + CMakeProjectManager.CMakeRunConfiguration.X86Tests + X86Tests + false + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Target/X86 + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITDumpObjects + CMakeProjectManager.CMakeRunConfiguration.LLJITDumpObjects + LLJITDumpObjects + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ExceptionDemo2 + CMakeProjectManager.CMakeRunConfiguration.ExceptionDemo + ExceptionDemo + false + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLDBFormatterTests + CMakeProjectManager.CMakeRunConfiguration.LLDBFormatterTests + LLDBFormatterTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/DataFormatter + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithCustomObjectLinkingLayer + CMakeProjectManager.CMakeRunConfiguration.LLJITWithCustomObjectLinkingLayer + LLJITWithCustomObjectLinkingLayer + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.yaml-bench +/repositories/llvm-project/llvm/utils/yaml-bench/ + yaml-bench +/repositories/llvm-project/llvm/utils/yaml-bench/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-readobj +/repositories/llvm-project/llvm/tools/llvm-readobj/ + llvm-readobj +/repositories/llvm-project/llvm/tools/llvm-readobj/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLVMFrontendTests + CMakeProjectManager.CMakeRunConfiguration.LLVMFrontendTests + LLVMFrontendTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Frontend + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ScudoBenchmarks.x86_64 + CMakeProjectManager.CMakeRunConfiguration.ScudoBenchmarks.x86_64 + ScudoBenchmarks.x86_64 + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/projects/compiler-rt/lib/scudo/standalone/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ScriptInterpreterLuaTests + CMakeProjectManager.CMakeRunConfiguration.ScriptInterpreterLuaTests + ScriptInterpreterLuaTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/ScriptInterpreter/Lua + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithLazyReexports + CMakeProjectManager.CMakeRunConfiguration.LLJITWithLazyReexports + LLJITWithLazyReexports + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + PowerPCTests + CMakeProjectManager.CMakeRunConfiguration.PowerPCTests + PowerPCTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Target/PowerPC + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-ml + CMakeProjectManager.CMakeRunConfiguration.llvm-ml + llvm-ml + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithObjectLinkingLayerPlugin + CMakeProjectManager.CMakeRunConfiguration.LLJITWithObjectLinkingLayerPlugin + LLJITWithObjectLinkingLayerPlugin + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ThinLtoJIT + CMakeProjectManager.CMakeRunConfiguration.ThinLtoJIT + ThinLtoJIT + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-gsymutil + CMakeProjectManager.CMakeRunConfiguration.llvm-gsymutil + llvm-gsymutil + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + BasicOrcV2CBindings + CMakeProjectManager.CMakeRunConfiguration.BasicOrcV2CBindings + BasicOrcV2CBindings + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-rtdyld +/repositories/llvm-project/llvm/tools/llvm-rtdyld/ + llvm-rtdyld +/repositories/llvm-project/llvm/tools/llvm-rtdyld/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithGDBRegistrationListener + CMakeProjectManager.CMakeRunConfiguration.LLJITWithGDBRegistrationListener + LLJITWithGDBRegistrationListener + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + AMDGPUDwarfTests + CMakeProjectManager.CMakeRunConfiguration.AMDGPUDwarfTests + AMDGPUDwarfTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/MC/AMDGPU + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + AMDGPUTests + CMakeProjectManager.CMakeRunConfiguration.AMDGPUTests + AMDGPUTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/Target/AMDGPU + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + APITests + CMakeProjectManager.CMakeRunConfiguration.APITests + APITests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/API + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + OrcV2CBindingsAddObjectFile + CMakeProjectManager.CMakeRunConfiguration.OrcV2CBindingsAddObjectFile + OrcV2CBindingsAddObjectFile + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + OrcV2CBindingsBasicUsage + CMakeProjectManager.CMakeRunConfiguration.OrcV2CBindingsBasicUsage + OrcV2CBindingsBasicUsage + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + OrcV2CBindingsReflectProcessSymbols + CMakeProjectManager.CMakeRunConfiguration.OrcV2CBindingsReflectProcessSymbols + OrcV2CBindingsReflectProcessSymbols + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithInitializers + CMakeProjectManager.CMakeRunConfiguration.LLJITWithInitializers + LLJITWithInitializers + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LanguageObjCTests + CMakeProjectManager.CMakeRunConfiguration.LanguageObjCTests + LanguageObjCTests + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + AdbClientTest + CMakeProjectManager.CMakeRunConfiguration.AdbClientTest + AdbClientTest + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-size +/repositories/llvm-project/llvm/tools/llvm-size/ + llvm-size +/repositories/llvm-project/llvm/tools/llvm-size/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + EmulatorTests + CMakeProjectManager.CMakeRunConfiguration.EmulatorTests + EmulatorTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Instruction + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + MLAnalysisTests + CMakeProjectManager.CMakeRunConfiguration.MLAnalysisTests + MLAnalysisTests + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProcessEventDataTest + CMakeProjectManager.CMakeRunConfiguration.ProcessEventDataTest + ProcessEventDataTest + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ThreadTest + CMakeProjectManager.CMakeRunConfiguration.ThreadTest + ThreadTest + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + AdbClientTests + CMakeProjectManager.CMakeRunConfiguration.AdbClientTests + AdbClientTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Platform/Android + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProcessEventDataTests + CMakeProjectManager.CMakeRunConfiguration.ProcessEventDataTests + ProcessEventDataTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Process + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProcessPOSIXTests + CMakeProjectManager.CMakeRunConfiguration.ProcessPOSIXTests + ProcessPOSIXTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Process/POSIX + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProcessorTraceTests + CMakeProjectManager.CMakeRunConfiguration.ProcessorTraceTests + ProcessorTraceTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Process/Linux + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ThreadTests + CMakeProjectManager.CMakeRunConfiguration.ThreadTests + ThreadTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Thread + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LanguageCLanguagesTests + CMakeProjectManager.CMakeRunConfiguration.LanguageCLanguagesTests + LanguageCLanguagesTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Language/CLanguages + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-special-case-list-fuzzer +/repositories/llvm-project/llvm/tools/llvm-special-case-list-fuzzer/ + llvm-special-case-list-fuzzer +/repositories/llvm-project/llvm/tools/llvm-special-case-list-fuzzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithTargetProcessControl + CMakeProjectManager.CMakeRunConfiguration.LLJITWithTargetProcessControl + LLJITWithTargetProcessControl + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ObjectFileMachOTests + CMakeProjectManager.CMakeRunConfiguration.ObjectFileMachOTests + ObjectFileMachOTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/ObjectFile/MachO + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-libtool-darwin + CMakeProjectManager.CMakeRunConfiguration.llvm-libtool-darwin + llvm-libtool-darwin + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + extract + CMakeProjectManager.CMakeRunConfiguration.extract + extract + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + split-file + CMakeProjectManager.CMakeRunConfiguration.split-file + split-file + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + variant_visit_1_libcxx + CMakeProjectManager.CMakeRunConfiguration.variant_visit_1_libcxx + variant_visit_1_libcxx + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + variant_visit_2_libcxx + CMakeProjectManager.CMakeRunConfiguration.variant_visit_2_libcxx + variant_visit_2_libcxx + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + variant_visit_3_libcxx + CMakeProjectManager.CMakeRunConfiguration.variant_visit_3_libcxx + variant_visit_3_libcxx + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + InterfaceStubTests + CMakeProjectManager.CMakeRunConfiguration.InterfaceStubTests + InterfaceStubTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/InterfaceStub + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITInChildProcess + CMakeProjectManager.CMakeRunConfiguration.LLJITInChildProcess + LLJITInChildProcess + false + true + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-split +/repositories/llvm-project/llvm/tools/llvm-split/ + llvm-split +/repositories/llvm-project/llvm/tools/llvm-split/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithThinLTOSummaries + CMakeProjectManager.CMakeRunConfiguration.LLJITWithThinLTOSummaries + LLJITWithThinLTOSummaries + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + FileCheckTests + CMakeProjectManager.CMakeRunConfiguration.FileCheckTests + FileCheckTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/FileCheck + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + map_libcxx + CMakeProjectManager.CMakeRunConfiguration.map_libcxx + map_libcxx + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/projects/libcxx/benchmarks + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLJITWithOptimizingIRTransform + CMakeProjectManager.CMakeRunConfiguration.LLJITWithOptimizingIRTransform + LLJITWithOptimizingIRTransform + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + DecisionForestBenchmark + CMakeProjectManager.CMakeRunConfiguration.DecisionForestBenchmark + DecisionForestBenchmark + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/tools/extra/clangd/benchmarks/CompletionModel + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + OrcV2CBindingsRemovableCode + CMakeProjectManager.CMakeRunConfiguration.OrcV2CBindingsRemovableCode + OrcV2CBindingsRemovableCode + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + apinotes-test + CMakeProjectManager.CMakeRunConfiguration.apinotes-test + apinotes-test + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-jitlink-executor + CMakeProjectManager.CMakeRunConfiguration.llvm-jitlink-executor + llvm-jitlink-executor + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + ProcessUtilityTests + CMakeProjectManager.CMakeRunConfiguration.ProcessUtilityTests + ProcessUtilityTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/lldb/unittests/Process/Utility + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-yaml-parser-fuzzer + CMakeProjectManager.CMakeRunConfiguration.llvm-yaml-parser-fuzzer + llvm-yaml-parser-fuzzer + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-stress +/repositories/llvm-project/llvm/tools/llvm-stress/ + llvm-stress +/repositories/llvm-project/llvm/tools/llvm-stress/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + llvm-profgen + CMakeProjectManager.CMakeRunConfiguration.llvm-profgen + llvm-profgen + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + LLVMProfgenTests + CMakeProjectManager.CMakeRunConfiguration.LLVMProfgenTests + LLVMProfgenTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/tools/llvm-profgen + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + IntrospectionTests + CMakeProjectManager.CMakeRunConfiguration.IntrospectionTests + IntrospectionTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/tools/clang/unittests/Introspection + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + clang-ast-dump + CMakeProjectManager.CMakeRunConfiguration.clang-ast-dump + clang-ast-dump + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/bin + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + SystemZAsmLexerTests + CMakeProjectManager.CMakeRunConfiguration.SystemZAsmLexerTests + SystemZAsmLexerTests + false + true + true + false + true + /builddirs/llvm-project/build-Clang11/unittests/MC/SystemZ + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-strings +/repositories/llvm-project/llvm/tools/llvm-strings/ + llvm-strings +/repositories/llvm-project/llvm/tools/llvm-strings/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-symbolizer +/repositories/llvm-project/llvm/tools/llvm-symbolizer/ + llvm-symbolizer +/repositories/llvm-project/llvm/tools/llvm-symbolizer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-undname +/repositories/llvm-project/llvm/tools/llvm-undname/ + llvm-undname +/repositories/llvm-project/llvm/tools/llvm-undname/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-xray +/repositories/llvm-project/llvm/tools/llvm-xray/ + llvm-xray +/repositories/llvm-project/llvm/tools/llvm-xray/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-ar +/repositories/llvm-project/llvm/tools/llvm-ar/ + llvm-ar +/repositories/llvm-project/llvm/tools/llvm-ar/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-yaml-numeric-parser-fuzzer +/repositories/llvm-project/llvm/tools/llvm-yaml-numeric-parser-fuzzer/ + llvm-yaml-numeric-parser-fuzzer +/repositories/llvm-project/llvm/tools/llvm-yaml-numeric-parser-fuzzer/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.obj2yaml +/repositories/llvm-project/llvm/tools/obj2yaml/ + obj2yaml +/repositories/llvm-project/llvm/tools/obj2yaml/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.opt +/repositories/llvm-project/llvm/tools/opt/ + opt +/repositories/llvm-project/llvm/tools/opt/ + -instcombine -debug /tmp/test.ll -o - -S + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.sancov +/repositories/llvm-project/llvm/tools/sancov/ + sancov +/repositories/llvm-project/llvm/tools/sancov/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.sanstats +/repositories/llvm-project/llvm/tools/sanstats/ + sanstats +/repositories/llvm-project/llvm/tools/sanstats/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.verify-uselistorder +/repositories/llvm-project/llvm/tools/verify-uselistorder/ + verify-uselistorder +/repositories/llvm-project/llvm/tools/verify-uselistorder/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.yaml2obj +/repositories/llvm-project/llvm/tools/yaml2obj/ + yaml2obj +/repositories/llvm-project/llvm/tools/yaml2obj/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BrainF +/repositories/llvm-project/llvm/examples/BrainF/ + BrainF +/repositories/llvm-project/llvm/examples/BrainF/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Fibonacci +/repositories/llvm-project/llvm/examples/Fibonacci/ + Fibonacci +/repositories/llvm-project/llvm/examples/Fibonacci/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.HowToUseJIT +/repositories/llvm-project/llvm/examples/HowToUseJIT/ + HowToUseJIT +/repositories/llvm-project/llvm/examples/HowToUseJIT/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-config +/repositories/llvm-project/llvm/tools/llvm-config/ + llvm-config +/repositories/llvm-project/llvm/tools/llvm-config/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.HowToUseLLJIT +/repositories/llvm-project/llvm/examples/HowToUseLLJIT/ + HowToUseLLJIT +/repositories/llvm-project/llvm/examples/HowToUseLLJIT/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch1 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ + BuildingAJIT-Ch1 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch2 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ + BuildingAJIT-Ch2 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch3 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ + BuildingAJIT-Ch3 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch4 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ + BuildingAJIT-Ch4 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch5 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ + BuildingAJIT-Ch5 +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BuildingAJIT-Ch5-Server +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/ + BuildingAJIT-Ch5-Server +/repositories/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch2 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter2/ + Kaleidoscope-Ch2 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter2/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch3 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter3/ + Kaleidoscope-Ch3 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter3/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch4 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter4/ + Kaleidoscope-Ch4 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter4/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-lto +/repositories/llvm-project/llvm/tools/llvm-lto/ + llvm-lto +/repositories/llvm-project/llvm/tools/llvm-lto/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch5 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter5/ + Kaleidoscope-Ch5 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter5/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch6 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter6/ + Kaleidoscope-Ch6 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter6/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch7 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter7/ + Kaleidoscope-Ch7 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter7/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch8 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter8/ + Kaleidoscope-Ch8 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter8/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.Kaleidoscope-Ch9 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter9/ + Kaleidoscope-Ch9 +/repositories/llvm-project/llvm/examples/Kaleidoscope/Chapter9/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ModuleMaker +/repositories/llvm-project/llvm/examples/ModuleMaker/ + ModuleMaker +/repositories/llvm-project/llvm/examples/ModuleMaker/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ParallelJIT +/repositories/llvm-project/llvm/examples/ParallelJIT/ + ParallelJIT +/repositories/llvm-project/llvm/examples/ParallelJIT/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.ADTTests +/repositories/llvm-project/llvm/unittests/ADT/ + ADTTests +/repositories/llvm-project/llvm/unittests/ADT/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.AnalysisTests +/repositories/llvm-project/llvm/unittests/Analysis/ + AnalysisTests +/repositories/llvm-project/llvm/unittests/Analysis/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.AsmParserTests +/repositories/llvm-project/llvm/unittests/AsmParser/ + AsmParserTests +/repositories/llvm-project/llvm/unittests/AsmParser/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.llvm-profdata +/repositories/llvm-project/llvm/tools/llvm-profdata/ + llvm-profdata +/repositories/llvm-project/llvm/tools/llvm-profdata/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BinaryFormatTests +/repositories/llvm-project/llvm/unittests/BinaryFormat/ + BinaryFormatTests +/repositories/llvm-project/llvm/unittests/BinaryFormat/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BitcodeTests +/repositories/llvm-project/llvm/unittests/Bitcode/ + BitcodeTests +/repositories/llvm-project/llvm/unittests/Bitcode/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.BitstreamTests +/repositories/llvm-project/llvm/unittests/Bitstream/ + BitstreamTests +/repositories/llvm-project/llvm/unittests/Bitstream/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.CodeGenTests +/repositories/llvm-project/llvm/unittests/CodeGen/ + CodeGenTests +/repositories/llvm-project/llvm/unittests/CodeGen/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.GlobalISelTests +/repositories/llvm-project/llvm/unittests/CodeGen/GlobalISel/ + GlobalISelTests +/repositories/llvm-project/llvm/unittests/CodeGen/GlobalISel/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DebugInfoCodeViewTests +/repositories/llvm-project/llvm/unittests/DebugInfo/CodeView/ + DebugInfoCodeViewTests +/repositories/llvm-project/llvm/unittests/DebugInfo/CodeView/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DebugInfoDWARFTests +/repositories/llvm-project/llvm/unittests/DebugInfo/DWARF/ + DebugInfoDWARFTests +/repositories/llvm-project/llvm/unittests/DebugInfo/DWARF/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DebugInfoGSYMTests +/repositories/llvm-project/llvm/unittests/DebugInfo/GSYM/ + DebugInfoGSYMTests +/repositories/llvm-project/llvm/unittests/DebugInfo/GSYM/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DebugInfoMSFTests +/repositories/llvm-project/llvm/unittests/DebugInfo/MSF/ + DebugInfoMSFTests +/repositories/llvm-project/llvm/unittests/DebugInfo/MSF/ + false + true + false + true + + + dwarf + + cpu-cycles + + + 250 + + -e + cpu-cycles + --call-graph + dwarf,4096 + -F + 250 + + -F + true + 4096 + + 2 + + CMakeProjectManager.CMakeRunConfiguration.DebugInfoPDBTests +/repositories/llvm-project/llvm/unittests/DebugInfo/PDB/ + DebugInfoPDBTests +/repositories/llvm-project/llvm/unittests/DebugInfo/PDB/ + false + true + false + true + + 555 + + + + ProjectExplorer.Project.TargetCount + 1 + + + ProjectExplorer.Project.Updater.FileVersion + 22 + + + Version + 22 + +