Home
last modified time | relevance | path

Searched refs:Color (Results 1 – 25 of 58) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp101 enum class Color { Even, Odd };
139 bool colorChain(Chain *G, Color C, MachineBasicBlock &MBB);
140 int scavengeRegister(Chain *G, Color C, MachineBasicBlock &MBB);
146 Color getColor(unsigned Register);
147 Chain *getAndEraseNext(Color PreferredColor, std::vector<Chain*> &L);
200 Color LastColor;
202 Chain(MachineInstr *MI, unsigned Idx, Color C)
211 void add(MachineInstr *MI, unsigned Idx, Color C) {
258 Color getPreferredColor() {
260 return OverrideBalance == 1 ? Color in getPreferredColor()
102 enum class Color { Even, Odd }; global() enum
[all...]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp302 int Color = -1; in ColorSlot() local
310 Color = UsedColors[StackID].find_first(); in ColorSlot()
311 while (Color != -1) { in ColorSlot()
312 if (!Assignments[Color].overlaps(li)) { in ColorSlot()
317 Color = UsedColors[StackID].find_next(Color); in ColorSlot()
321 if (Color != -1 && MFI->getStackID(Color) != MFI->getStackID(FI)) { in ColorSlot()
330 Color = NextColors[StackID]; in ColorSlot()
331 UsedColors[StackID].set(Color); in ColorSlot()
335 assert(MFI->getStackID(Color) == MFI->getStackID(FI)); in ColorSlot()
338 Assignments[Color].add(li, LIUAlloc); in ColorSlot()
[all …]
H A DMachineFunctionPass.cpp144 bool Color = llvm::is_contained( in runOnFunction() local
147 StringRef Removed = Color ? "\033[31m-%l\033[0m\n" : "-%l\n"; in runOnFunction()
148 StringRef Added = Color ? "\033[32m+%l\033[0m\n" : "+%l\n"; in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DEHPersonalities.cpp127 BasicBlock *Color; in colorEHFunclets() local
128 std::tie(Visiting, Color) = Worklist.pop_back_val(); in colorEHFunclets()
131 << Color->getName() << "\n"); in colorEHFunclets()
135 Color = Visiting; in colorEHFunclets()
139 if (!is_contained(Colors, Color)) in colorEHFunclets()
140 Colors.push_back(Color); in colorEHFunclets()
145 dbgs() << " Assigned color \'" << Color->getName() in colorEHFunclets()
149 BasicBlock *SuccColor = Color; in colorEHFunclets()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTDumperUtils.h30 llvm::raw_ostream::Colors Color; member
91 ColorScope(llvm::raw_ostream &OS, bool ShowColors, TerminalColor Color) in ColorScope() argument
94 OS.changeColor(Color.Color, Color.Bold); in ColorScope()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp221 void SelectionDAG::setGraphColor(const SDNode *N, const char *Color) { in setGraphColor() argument
223 NodeGraphAttrs[N] = std::string("color=") + Color; in setGraphColor()
233 bool SelectionDAG::setSubgraphColorHelper(SDNode *N, const char *Color, DenseSet<SDNode *> &visited, in setSubgraphColorHelper() argument
249 setGraphColor(N, Color); in setSubgraphColorHelper()
253 hit_limit = setSubgraphColorHelper(*i, Color, visited, level+1, printed) || hit_limit; in setSubgraphColorHelper()
265 void SelectionDAG::setSubgraphColor(SDNode *N, const char *Color) { in setSubgraphColor() argument
269 if (setSubgraphColorHelper(N, Color, visited, 0, printed)) { in setSubgraphColor()
271 if (strcmp(Color, "red") == 0) { in setSubgraphColor()
273 } else if (strcmp(Color, "yellow") == 0) { in setSubgraphColor()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTextNodeDumper.cpp75 ColorScope Color(OS, ShowColors, NullColor); in Visit() local
81 ColorScope Color(OS, ShowColors, CommentColor); in Visit() local
93 ColorScope Color(OS, ShowColors, AttrColor); in Visit() local
128 ColorScope Color(OS, ShowColors, NullColor); in Visit() local
133 ColorScope Color(OS, ShowColors, StmtColor); in Visit() local
143 ColorScope Color(OS, ShowColors, ErrorsColor); in Visit() local
148 ColorScope Color(OS, ShowColors, ValueKindColor); in Visit() local
162 ColorScope Color(OS, ShowColors, ObjectKindColor); in Visit() local
190 ColorScope Color(OS, ShowColors, NullColor); in Visit() local
196 ColorScope Color(OS, ShowColors, TypeColor); in Visit() local
[all …]
H A DASTDumper.cpp29 ColorScope Color(OS, ShowColors, NullColor); in dumpInvalidDeclContext() local
40 ColorScope Color(OS, ShowColors, DeclKindNameColor); in dumpInvalidDeclContext() local
46 ColorScope Color(OS, ShowColors, DeclNameColor); in dumpInvalidDeclContext() local
76 ColorScope Color(OS, ShowColors, DeclNameColor); in dumpLookups() local
105 ColorScope Color(OS, ShowColors, UndeserializedColor); in dumpLookups() local
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-color-helper.cpp84 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/contrib/llvm-project/llvm/lib/Support/
H A DWithColor.cpp44 WithColor::WithColor(raw_ostream &OS, HighlightColor Color, ColorMode Mode) in WithColor() argument
48 switch (Color) { in WithColor()
143 WithColor &WithColor::changeColor(raw_ostream::Colors Color, bool Bold, in changeColor() argument
146 OS.changeColor(Color, Bold, BG); in changeColor()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DWithColor.h66 /// @param Color ANSI color to use, the special SAVEDCOLOR can be used to
72 raw_ostream &OS, raw_ostream::Colors Color = raw_ostream::SAVEDCOLOR,
75 changeColor(Color, Bold, BG); in OS()
116 /// @param Color ANSI color to use, the special SAVEDCOLOR can be used to
120 WithColor &changeColor(raw_ostream::Colors Color, bool Bold = false,
H A DFormattedStream.h182 raw_ostream &changeColor(enum Colors Color, bool Bold, bool BG) override {
185 raw_ostream::changeColor(Color, Bold, BG);
148 changeColor(enum Colors Color,bool Bold,bool BG) changeColor() argument
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegColoring.cpp290 size_t Color = I; in runOnMachineFunction() local
301 Color = C; in runOnMachineFunction()
306 Register New = SortedIntervals[Color]->reg(); in runOnMachineFunction()
309 UsedColors.set(Color); in runOnMachineFunction()
310 Assignments[Color].push_back(LI); in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DRenderingSupport.h50 raw_ostream::Colors Color,
54 OS.changeColor(Color, Bold, BG);
H A DCoverageViewOptions.h62 raw_ostream::Colors Color) const {
63 return llvm::colored_ostream(OS, Color, Colors);
H A DSourceCoverageViewHTML.cpp970 std::optional<StringRef> Color; in renderLine() local
976 return tag("span", Snippet, std::string(*Color)); in renderLine()
978 return tag("span", Snippet, "region " + std::string(*Color)); in renderLine()
982 return S && (!S->IsGapRegion || (Color && *Color == "red")) && in renderLine()
987 Color = "red"; in renderLine()
995 Color = "red"; in renderLine()
997 Color = "cyan"; in renderLine()
999 Color = std::nullopt; in renderLine()
1001 if (Color) in renderLine()
1006 if (Color && Segments.empty()) in renderLine()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DTextDiagnostic.h48 enum llvm::raw_ostream::Colors Color; member
50 : Start(S), End(E), Color(C){}; in StyleRange()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DMarkupFilter.cpp422 Color = *SGRColor; in trySGR()
424 OS.changeColor(*Color); in trySGR()
436 OS.changeColor(Color == raw_ostream::Colors::BLUE ? raw_ostream::Colors::CYAN in highlight()
453 if (Color) { in restoreColor()
454 OS.changeColor(*Color, Bold); in restoreColor()
464 if (!Color && !Bold) in resetColor()
466 Color.reset(); in resetColor()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp126 raw_ostream::Colors Color = chooseColor(Cycles, Executions, BufferSize); in tryChangeColor() local
127 if (Color == raw_ostream::SAVEDCOLOR) { in tryChangeColor()
131 OS.changeColor(Color, /* bold */ true, /* BG */ false); in tryChangeColor()
/freebsd/contrib/file/magic/Magdir/
H A Dgimp36 >22 belong 0 RGB Color
38 >22 belong 2 Indexed Color
H A Dicc4 # 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/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp655 int Color = NextReservedID; in colorHighLatenciesGroups() local
679 int ProposedColor = Color; in colorHighLatenciesGroups()
756 Color = ++NextReservedID; in colorHighLatenciesGroups()
757 ProposedColor = Color; in colorHighLatenciesGroups()
763 Color = ++NextReservedID; in colorHighLatenciesGroups()
764 ProposedColor = Color; in colorHighLatenciesGroups()
1182 unsigned Color = CurrentColoring[SU->NodeNum]; in createBlocksForVariant() local
1183 if (RealID.find(Color) == RealID.end()) { in createBlocksForVariant()
1187 RealID[Color] = ID; in createBlocksForVariant()
1189 CurrentBlocks[RealID[Color]]->addUnit(SU); in createBlocksForVariant()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/iio/light/
H A Dcm36651.txt1 * Capella CM36651 I2C Proximity and Color Light sensor
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCFGPrinter.h326 std::string Color = getHeatColor(Freq, CFGInfo->getMaxFreq());
332 " fillcolor=\"" + Color + "70\"" +
/freebsd/contrib/libxo/doc/
H A Dfield-roles.rst45 .. index:: Field Roles; Color
48 The Color Role ({C:})
77 Color names are prefixed with either "fg-" or "bg-" to change the
122 good idea. Color should enhance output, but should not be used as the

123