HomeSort by relevance Sort by last modified time
    Searched defs:Hint (Results 1 - 25 of 34) sorted by null

1 2

  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 105 const FixItHint &Hint = Diag.fixit_begin()[FixIt];
111 LangOpts, Hint.RemoveRange);
113 return cxstring::createDup(Hint.CodeToInsert);
  /external/llvm/include/llvm/CodeGen/
CalcSpillWeights.h 47 /// spill weight and allocation hint.
58 DenseMap<unsigned, float> Hint;
68 /// \brief (re)compute li's spill weight and allocation hint.
MachineRegisterInfo.h 66 /// registers. For each virtual register, it keeps a register and hint type
67 /// pair making up the allocation hint. Hint type is target specific except
69 /// register for allocation. For example, if the hint is <0, 1024>, it means
71 /// register of the hint.
597 /// setRegAllocationHint - Specify a register allocation hint for the
605 /// Specify the preferred register allocation hint for the specified virtual
611 /// getRegAllocationHint - Return the register allocation hint for the
619 /// getSimpleHint - Return the preferred register allocation hint, or 0 if a
620 /// standard simple hint (Type == 0) is not set
    [all...]
  /external/clang/lib/Frontend/Rewrite/
FixItRewriter.cpp 151 const FixItHint &Hint = Info.getFixItHint(Idx);
153 if (Hint.CodeToInsert.empty()) {
154 if (Hint.InsertFromRange.isValid())
155 commit.insertFromRange(Hint.RemoveRange.getBegin(),
156 Hint.InsertFromRange, /*afterToken=*/false,
157 Hint.BeforePreviousInsertions);
159 commit.remove(Hint.RemoveRange);
161 if (Hint.RemoveRange.isTokenRange() ||
162 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd()
    [all...]
  /external/v8/src/compiler/
type-hints.h 18 enum Hint {
28 BinaryOperationHints(Hint left, Hint right, Hint result)
36 Hint left() const { return LeftField::decode(bit_field_); }
37 Hint right() const { return RightField::decode(bit_field_); }
38 Hint result() const { return ResultField::decode(bit_field_); }
39 Hint combined() const { return Combine(Combine(left(), right()), result()); }
41 // Hint 'subtyping' and generalization.
42 static bool Is(Hint h1, Hint h2)
    [all...]
  /system/extras/mmap-perf/
mmapPerf.cpp 52 enum Hint {
57 FileMap(const string &name, size_t size, Hint hint = FILE_MAP_HINT_NONE) : m_name{name}, m_size{size} {
71 switch (hint) {
  /external/clang/lib/Sema/
DeclSpec.cpp     [all...]
  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 85 unsigned Hint = MRI->getSimpleHint(VirtReg);
86 if (!Hint)
88 if (TargetRegisterInfo::isVirtualRegister(Hint))
89 Hint = getPhys(Hint);
90 return getPhys(VirtReg) == Hint;
94 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(VirtReg);
95 if (TargetRegisterInfo::isPhysicalRegister(Hint.second))
97 if (TargetRegisterInfo::isVirtualRegister(Hint.second))
98 return hasPhys(Hint.second)
    [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 318 outs() << " Hint/Ord Name\n";
327 uint16_t Hint;
329 if (Obj->getHintName(entry->getHintNameRVA(), Hint, Name))
331 outs() << format(" % 6d ", Hint) << Name << "\n";
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 40 StringRef Hint = "") {
45 if (!Hint.empty())
46 errs() << Hint << "\n";
55 // Hint for common error of forgetting -sample for sample profiles.
78 StringRef Hint = "";
85 Hint = "Make sure that all profile data to be merged is generated "
93 if (!Hint.empty())
94 errs() << Hint << "\n";
132 // Only show hint the first time an error occurs.
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 98 const FixItHint &Hint = *I;
99 if (Hint.CodeToInsert.empty()) {
100 if (Hint.InsertFromRange.isValid())
101 commit.insertFromRange(Hint.RemoveRange.getBegin(),
102 Hint.InsertFromRange, /*afterToken=*/false,
103 Hint.BeforePreviousInsertions);
105 commit.remove(Hint.RemoveRange);
107 if (Hint.RemoveRange.isTokenRange() ||
108 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd()
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 231 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
234 switch (Hint.first) {
248 // the paired register as the first hint.
249 unsigned Paired = Hint.second;
282 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
283 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
284 Hint.first == (unsigned)ARMRI::RegPairEven) &&
285 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
288 // pair allocation hint must be updated to reflect the relationship
290 unsigned OtherReg = Hint.second
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 345 const DisplayHint Hint;
364 PathDiagnosticPiece(StringRef s, Kind k, DisplayHint hint = Below);
366 PathDiagnosticPiece(Kind k, DisplayHint hint = Below);
383 /// getDisplayHint - Return a hint indicating where the diagnostic should
385 DisplayHint getDisplayHint() const { return Hint; }
471 /// \brief Constructs a Stack hint for the given symbol.
473 /// The class knows how to construct the stack hint message based on
476 /// The hint can be customized by redefining 'getMessageForX()' methods.
505 /// supply a message that will be used to construct an extra hint on the
535 /// Produce the hint for the given node. The node contains
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp     [all...]
  /external/mesa3d/src/mesa/main/
dd.h 481 void (*Hint)(struct gl_context *ctx, GLenum target, GLenum mode);
    [all...]
  /external/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 46 /// This kind of hint should be used when we are certain that the
55 /// insertion hint.
68 /// \brief Empty code modification hint, indicating that no code
76 /// \brief Create a code modification hint that inserts the given
81 FixItHint Hint;
82 Hint.RemoveRange =
84 Hint.CodeToInsert = Code;
85 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
86 return Hint;
89 /// \brief Create a code modification hint that inserts the give
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 266 FixItHint Hint;
269 Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
270 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
    [all...]
  /external/v8/src/arm64/
macro-assembler-arm64-inl.h 870 void MacroAssembler::Hint(SystemHint code) {
872 hint(code);
    [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp     [all...]
  /external/v8/src/arm/
constants-arm.h 430 enum Hint { no_hint };
433 inline Hint NegateHint(Hint ignored) { return no_hint; }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntimage.h 466 USHORT Hint;
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_icd.h 208 void (GLAPIENTRY * Hint)(GLenum, GLenum);
  /external/vixl/src/vixl/a64/
macro-assembler-a64.h     [all...]

Completed in 2676 milliseconds

1 2