| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | StackSlotColoring.cpp | 270 int Color = -1; in ColorSlot() local 278 Color = UsedColors[StackID].find_first(); in ColorSlot() 279 while (Color != -1) { in ColorSlot() 285 Color = UsedColors[StackID].find_next(Color); in ColorSlot() 289 if (Color != -1 && MFI->getStackID(Color) != MFI->getStackID(FI)) { in ColorSlot() 298 Color = NextColors[StackID]; in ColorSlot() 299 UsedColors[StackID].set(Color); in ColorSlot() 306 Assignments[Color].push_back(li); in ColorSlot() 314 MFI->setObjectAlignment(Color, Align); in ColorSlot() 317 MFI->setObjectSize(Color, Size); in ColorSlot() [all …]
|
| H A D | WinEHPrepare.cpp | 685 for (BasicBlock *Color : Colors) in colorFunclets() 686 FuncletBlocks[Color].push_back(&BB); in colorFunclets() 837 [&](BasicBlock *Color) { in cloneCommonBlocks() argument 838 return Color != FuncletPadBB; in cloneCommonBlocks()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64A57FPLoadBalancing.cpp | 103 enum class Color { Even, Odd }; enum 148 Color getColor(unsigned Register); 202 Color LastColor; 204 Chain(MachineInstr *MI, unsigned Idx, Color C) in Chain() 260 Color getPreferredColor() { in getPreferredColor() 262 return OverrideBalance == 1 ? Color::Even : Color::Odd; in getPreferredColor() 466 Color PreferredColor = Parity < 0 ? Color::Even : Color::Odd; in colorChainSet() 469 Color C = PreferredColor; in colorChainSet() 491 PreferredColor = Parity < 0 ? Color::Even : Color::Odd; in colorChainSet() 716 return Color::Even; in getColor() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | EHPersonalities.cpp | 100 BasicBlock *Color; in colorEHFunclets() local 101 std::tie(Visiting, Color) = Worklist.pop_back_val(); in colorEHFunclets() 104 << Color->getName() << "\n"); in colorEHFunclets() 108 Color = Visiting; in colorEHFunclets() 112 if (!is_contained(Colors, Color)) in colorEHFunclets() 113 Colors.push_back(Color); in colorEHFunclets() 118 dbgs() << " Assigned color \'" << Color->getName() in colorEHFunclets() 122 BasicBlock *SuccColor = Color; in colorEHFunclets()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | TextNodeDumper.cpp | 61 ColorScope Color(OS, ShowColors, NullColor); in Visit() local 67 ColorScope Color(OS, ShowColors, CommentColor); in Visit() local 79 ColorScope Color(OS, ShowColors, AttrColor); in Visit() local 114 ColorScope Color(OS, ShowColors, NullColor); in Visit() local 119 ColorScope Color(OS, ShowColors, StmtColor); in Visit() local 168 ColorScope Color(OS, ShowColors, NullColor); in Visit() local 182 ColorScope Color(OS, ShowColors, TypeColor); in Visit() local 219 ColorScope Color(OS, ShowColors, NullColor); in Visit() local 289 ColorScope Color(OS, ShowColors, NullColor); in Visit() local 294 ColorScope Color(OS, ShowColors, AttrColor); in Visit() local [all …]
|
| H A D | ASTDumper.cpp | 368 ColorScope Color(OS, ShowColors, UndeserializedColor); in dumpDeclContext() local 397 ColorScope Color(OS, ShowColors, DeclNameColor); in dumpLookups() local 781 ColorScope Color(OS, ShowColors, NullColor); in VisitOMPRequiresDecl() local 786 ColorScope Color(OS, ShowColors, AttrColor); in VisitOMPRequiresDecl() local 844 ColorScope Color(OS, ShowColors, DeclKindNameColor); in VisitCXXRecordDecl() local 872 ColorScope Color(OS, ShowColors, DeclKindNameColor); in VisitCXXRecordDecl() local 886 ColorScope Color(OS, ShowColors, DeclKindNameColor); in VisitCXXRecordDecl() local 904 ColorScope Color(OS, ShowColors, DeclKindNameColor); in VisitCXXRecordDecl() local 921 ColorScope Color(OS, ShowColors, DeclKindNameColor); in VisitCXXRecordDecl() local 935 ColorScope Color(OS, ShowColors, DeclKindNameColor); in VisitCXXRecordDecl() local [all …]
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGPrinter.cpp | 212 void SelectionDAG::setGraphColor(const SDNode *N, const char *Color) { in setGraphColor() argument 214 NodeGraphAttrs[N] = std::string("color=") + Color; in setGraphColor() 224 bool SelectionDAG::setSubgraphColorHelper(SDNode *N, const char *Color, DenseSet<SDNode *> &visited, in setSubgraphColorHelper() argument 240 setGraphColor(N, Color); in setSubgraphColorHelper() 244 hit_limit = setSubgraphColorHelper(*i, Color, visited, level+1, printed) || hit_limit; in setSubgraphColorHelper() 256 void SelectionDAG::setSubgraphColor(SDNode *N, const char *Color) { in setSubgraphColor() argument 260 if (setSubgraphColorHelper(N, Color, visited, 0, printed)) { in setSubgraphColor() 262 if (strcmp(Color, "red") == 0) { in setSubgraphColor() 264 } else if (strcmp(Color, "yellow") == 0) { in setSubgraphColor()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | ASTDumperUtils.h | 25 llvm::raw_ostream::Colors Color; member 84 ColorScope(llvm::raw_ostream &OS, bool ShowColors, TerminalColor Color) in ColorScope() argument 87 OS.changeColor(Color.Color, Color.Bold); in ColorScope()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-xray/ |
| H A D | xray-color-helper.cpp | 84 convertToHSV(const std::tuple<uint8_t, uint8_t, uint8_t> &Color) { in convertToHSV() argument 85 double Scaled[3] = {std::get<0>(Color) / 255.0, std::get<1>(Color) / 255.0, in convertToHSV() 86 std::get<2>(Color) / 255.0}; in convertToHSV() 121 convertToRGB(const std::tuple<double, double, double> &Color) { in convertToRGB() argument 122 const double &H = std::get<0>(Color); in convertToRGB() 123 const double &S = std::get<1>(Color); in convertToRGB() 124 const double &V = std::get<2>(Color); in convertToRGB()
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyRegColoring.cpp | 140 size_t Color = i; in runOnMachineFunction() local 151 Color = C; in runOnMachineFunction() 156 unsigned New = SortedIntervals[Color]->reg; in runOnMachineFunction() 159 UsedColors.set(Color); in runOnMachineFunction() 160 Assignments[Color].push_back(LI); in runOnMachineFunction()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | WithColor.cpp | 22 WithColor::WithColor(raw_ostream &OS, HighlightColor Color, bool DisableColors) in WithColor() argument 26 switch (Color) { in WithColor() 108 WithColor &WithColor::changeColor(raw_ostream::Colors Color, bool Bold, in changeColor() argument 111 OS.changeColor(Color, Bold, BG); in changeColor()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewHTML.cpp | 532 Optional<StringRef> Color; in renderLine() local 537 return tag("span", Snippet, Color.getValue()); in renderLine() 541 return S && (!S->IsGapRegion || (Color && *Color == "red")) && in renderLine() 546 Color = "red"; in renderLine() 554 Color = "red"; in renderLine() 556 Color = "cyan"; in renderLine() 558 Color = None; in renderLine() 560 if (Color.hasValue()) in renderLine() 565 if (Color.hasValue() && Segments.empty()) in renderLine()
|
| H A D | RenderingSupport.h | 51 raw_ostream::Colors Color, 55 OS.changeColor(Color, Bold, BG);
|
| H A D | CoverageViewOptions.h | 48 raw_ostream::Colors Color) const { in colored_ostream() 49 return llvm::colored_ostream(OS, Color, Colors); in colored_ostream()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | WithColor.h | 58 raw_ostream::Colors Color = raw_ostream::SAVEDCOLOR, 61 changeColor(Color, Bold, BG); in OS() 106 WithColor &changeColor(raw_ostream::Colors Color, bool Bold = false,
|
| H A D | FormattedStream.h | 125 raw_ostream &changeColor(enum Colors Color, bool Bold, bool BG) override { in changeColor() argument 126 TheStream->changeColor(Color, Bold, BG); in changeColor()
|
| H A D | raw_ostream.h | 257 virtual raw_ostream &changeColor(enum Colors Color, 260 (void)Color;
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | gimp | 25 >22 belong 0 RGB Color 27 >22 belong 2 Indexed Color
|
| H A D | icc | 4 # icc: file(1) magic for International Color Consortium file formats 7 # Color profiles as per the ICC's "Image technology colour management - 32 # to be for "ColorSync ICC Color Profile" rather than "Kodak Color
|
| /freebsd-12.1/contrib/llvm/tools/llvm-mca/Views/ |
| H A D | TimelineView.cpp | 124 raw_ostream::Colors Color = chooseColor(Cycles, Executions, BufferSize); in tryChangeColor() local 125 if (Color == raw_ostream::SAVEDCOLOR) { in tryChangeColor() 129 OS.changeColor(Color, /* bold */ true, /* BG */ false); in tryChangeColor()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | SIMachineScheduler.cpp | 684 int Color = NextReservedID; in colorHighLatenciesGroups() local 708 int ProposedColor = Color; in colorHighLatenciesGroups() 789 Color = ++NextReservedID; in colorHighLatenciesGroups() 790 ProposedColor = Color; in colorHighLatenciesGroups() 796 Color = ++NextReservedID; in colorHighLatenciesGroups() 797 ProposedColor = Color; in colorHighLatenciesGroups() 1229 unsigned Color = CurrentColoring[SU->NodeNum]; in createBlocksForVariant() local 1230 if (RealID.find(Color) == RealID.end()) { in createBlocksForVariant() 1234 RealID[Color] = ID; in createBlocksForVariant() 1236 CurrentBlocks[RealID[Color]]->addUnit(SU); in createBlocksForVariant() [all …]
|
| /freebsd-12.1/contrib/libxo/doc/ |
| H A D | field-roles.rst | 43 .. index:: Field Roles; Color 46 The Color Role ({C:}) 75 Color names are prefixed with either "fg-" or "bg-" to change the 120 good idea. Color should enhance output, but should not be used as the
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDie.cpp | 292 auto Color = HighlightColor::Enumerator; in dumpAttribute() local 294 Color = HighlightColor::String; in dumpAttribute() 307 WithColor(OS, Color) << Name; in dumpAttribute()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelDAGToDAGHVX.cpp | 117 ColorKind other(ColorKind Color) { in other() 118 if (Color == ColorKind::None) in other() 120 return Color == ColorKind::Red ? ColorKind::Black : ColorKind::Red; in other() 151 auto Color = ColorKind::None; in getUniqueColor() local 156 if (Color == ColorKind::None) in getUniqueColor() 157 Color = ColorN; in getUniqueColor() 158 else if (Color != ColorKind::None && Color != ColorN) in getUniqueColor() 161 return { true, Color }; in getUniqueColor()
|
| /freebsd-12.1/share/examples/csh/ |
| H A D | dot.cshrc | 132 # Color ls 136 # Color on many system utilities
|