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

  /external/llvm/include/llvm/CodeGen/
CalcSpillWeights.h 41 /// register such as its spill weight and allocation hint.
46 DenseMap<unsigned, float> Hint;
53 /// hint.
MachineRegisterInfo.h 48 /// registers. For each virtual register, it keeps a register and hint type
49 /// pair making up the allocation hint. Hint type is target specific except
51 /// register for allocation. For example, if the hint is <0, 1024>, it means
53 /// register of the hint.
302 /// setRegAllocationHint - Specify a register allocation hint for the
309 /// getRegAllocationHint - Return the register allocation hint for the
316 /// getSimpleHint - Return the preferred register allocation hint, or 0 if a
317 /// standard simple hint (Type == 0) is not set.
319 std::pair<unsigned, unsigned> Hint = getRegAllocationHint(Reg)
    [all...]
  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 109 const FixItHint &Hint = Diag.fixit_begin()[FixIt];
115 LangOpts, Hint.RemoveRange);
117 return createCXString(Hint.CodeToInsert);
  /external/llvm/lib/CodeGen/
AllocationOrder.h 30 unsigned Hint;
48 // First take the hint.
51 if (Hint)
52 return Hint;
57 if (Reg != Hint)
67 bool isHint(unsigned PhysReg) const { return PhysReg == Hint; }
VirtRegMap.cpp 79 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(virtReg);
80 unsigned physReg = Hint.second;
83 if (Hint.first == 0)
86 return TRI->ResolveRegAllocHint(Hint.first, physReg, *MF);
  /external/clang/lib/Rewrite/
FixItRewriter.cpp 146 const FixItHint &Hint = Info.getFixItHint(Idx);
148 if (Hint.CodeToInsert.empty()) {
149 if (Hint.InsertFromRange.isValid())
150 commit.insertFromRange(Hint.RemoveRange.getBegin(),
151 Hint.InsertFromRange, /*afterToken=*/false,
152 Hint.BeforePreviousInsertions);
154 commit.remove(Hint.RemoveRange);
156 if (Hint.RemoveRange.isTokenRange() ||
157 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd()
    [all...]
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 157 const FixItHint &Hint = *I;
158 if (Hint.CodeToInsert.empty()) {
159 if (Hint.InsertFromRange.isValid())
160 commit.insertFromRange(Hint.RemoveRange.getBegin(),
161 Hint.InsertFromRange, /*afterToken=*/false,
162 Hint.BeforePreviousInsertions);
164 commit.remove(Hint.RemoveRange);
166 if (Hint.RemoveRange.isTokenRange() ||
167 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd()
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 292 /// specified register class with a target-dependent hint.
377 // It's no longer possible to fulfill this hint. Return the default
399 // It's no longer possible to fulfill this hint. Return the default
423 /// ResolveRegAllocHint - Resolves the specified register allocation hint
445 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
446 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
447 Hint.first == (unsigned)ARMRI::RegPairEven) &&
448 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
451 // pair allocation hint must be updated to reflect the relationship
453 unsigned OtherReg = Hint.second
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 279 const DisplayHint Hint;
288 PathDiagnosticPiece(StringRef s, Kind k, DisplayHint hint = Below);
290 PathDiagnosticPiece(Kind k, DisplayHint hint = Below);
297 /// getDisplayHint - Return a hint indicating where the diagnostic should
299 DisplayHint getDisplayHint() const { return Hint; }
374 /// \brief Constructs a Stack hint for the given symbol.
376 /// The class knows how to construct the stack hint message based on
379 /// The hint can be customized by redefining 'getMessageForX()' methods.
412 /// supply a message that will be used to construct an extra hint on the
444 /// Produce the hint for the given node. The node contains
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 183 FixItHint Hint;
186 Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
187 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 41 /// This kind of hint should be used when we are certain that the
50 /// insertion hint.
63 /// \brief Empty code modification hint, indicating that no code
71 /// \brief Create a code modification hint that inserts the given
76 FixItHint Hint;
77 Hint.RemoveRange =
79 Hint.CodeToInsert = Code;
80 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
81 return Hint;
84 /// \brief Create a code modification hint that inserts the give
    [all...]
  /external/v8/src/arm/
constants-arm.h 433 enum Hint { no_hint };
436 inline Hint NegateHint(Hint ignored) { return no_hint; }
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaExpr.cpp     [all...]

Completed in 374 milliseconds