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

1 2

  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 103 const FixItHint &Hint = Diag.fixit_begin()[FixIt];
109 LangOpts, Hint.RemoveRange);
111 return cxstring::createDup(Hint.CodeToInsert);
  /external/llvm/include/llvm/CodeGen/
CalcSpillWeights.h 42 /// register such as its spill weight and allocation hint.
48 DenseMap<unsigned, float> Hint;
56 /// hint.
MachineRegisterInfo.h 49 /// registers. For each virtual register, it keeps a register and hint type
50 /// pair making up the allocation hint. Hint type is target specific except
52 /// register for allocation. For example, if the hint is <0, 1024>, it means
54 /// register of the hint.
349 /// setRegAllocationHint - Specify a register allocation hint for the
356 /// getRegAllocationHint - Return the register allocation hint for the
363 /// getSimpleHint - Return the preferred register allocation hint, or 0 if a
364 /// standard simple hint (Type == 0) is not set.
366 std::pair<unsigned, unsigned> Hint = getRegAllocationHint(Reg)
    [all...]
  /external/clang/lib/Rewrite/Frontend/
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/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 262 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
266 // TRI::getRegAllocationHints to interpret those hint types.
267 assert(Hint.first == 0 && "Target must implement TRI::getRegAllocationHints");
270 unsigned Phys = Hint.second;
274 // Check that Phys is a valid hint in VirtReg's register class.
VirtRegMap.cpp 81 unsigned Hint = MRI->getSimpleHint(VirtReg);
82 if (!Hint)
84 if (TargetRegisterInfo::isVirtualRegister(Hint))
85 Hint = getPhys(Hint);
86 return getPhys(VirtReg) == Hint;
90 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(VirtReg);
91 if (TargetRegisterInfo::isPhysicalRegister(Hint.second))
93 if (TargetRegisterInfo::isVirtualRegister(Hint.second))
94 return hasPhys(Hint.second)
    [all...]
  /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 202 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
205 switch (Hint.first) {
219 // the paired register as the first hint.
221 if (VRM && VRM->hasPhys(Hint.second)) {
222 PairedPhys = getPairedGPR(VRM->getPhys(Hint.second), Odd, this);
249 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
250 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
251 Hint.first == (unsigned)ARMRI::RegPairEven) &&
252 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
255 // pair allocation hint must be updated to reflect the relationshi
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
gles2_implementation_impl_autogen.h 827 void GLES2Implementation::Hint(GLenum target, GLenum mode) {
830 helper_->Hint(target, mode);
    [all...]
gles2_cmd_helper_autogen.h 832 void Hint(GLenum target, GLenum mode) {
833 gles2::cmds::Hint* c = GetCmdSpace<gles2::cmds::Hint>();
    [all...]
gles2_interface_stub_impl_autogen.h 258 void GLES2InterfaceStub::Hint(GLenum /* target */, GLenum /* mode */) {
gles2_trace_implementation_impl_autogen.h 470 void GLES2TraceImplementation::Hint(GLenum target, GLenum mode) {
471 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::Hint");
472 gl_->Hint(target, mode);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
dd.h 481 void (*Hint)(struct gl_context *ctx, GLenum target, GLenum mode);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 335 const DisplayHint Hint;
354 PathDiagnosticPiece(StringRef s, Kind k, DisplayHint hint = Below);
356 PathDiagnosticPiece(Kind k, DisplayHint hint = Below);
373 /// getDisplayHint - Return a hint indicating where the diagnostic should
375 DisplayHint getDisplayHint() const { return Hint; }
462 /// \brief Constructs a Stack hint for the given symbol.
464 /// The class knows how to construct the stack hint message based on
467 /// The hint can be customized by redefining 'getMessageForX()' methods.
496 /// supply a message that will be used to construct an extra hint on the
528 /// Produce the hint for the given node. The node contains
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 221 FixItHint Hint;
224 Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
225 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
    [all...]
  /external/mesa3d/src/mesa/main/
dd.h 481 void (*Hint)(struct gl_context *ctx, GLenum target, GLenum mode);
    [all...]
  /external/chromium_org/ppapi/c/
ppb_opengles2.h 186 void (*Hint)(PP_Resource context, GLenum target, GLenum mode);
  /external/chromium_org/ppapi/shared_impl/
ppb_opengles2_shared.cc 434 void Hint(PP_Resource context_id, GLenum target, GLenum mode) {
435 GetGLES(context_id)->Hint(target, mode);
926 &Hint,
  /external/clang/include/clang/Basic/
Diagnostic.h 43 /// This kind of hint should be used when we are certain that the
52 /// insertion hint.
65 /// \brief Empty code modification hint, indicating that no code
73 /// \brief Create a code modification hint that inserts the given
78 FixItHint Hint;
79 Hint.RemoveRange =
81 Hint.CodeToInsert = Code;
82 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
83 return Hint;
86 /// \brief Create a code modification hint that inserts the give
    [all...]
  /external/chromium_org/v8/src/arm/
constants-arm.h 420 enum Hint { no_hint };
423 inline Hint NegateHint(Hint ignored) { return no_hint; }
  /external/v8/src/arm/
constants-arm.h 433 enum Hint { no_hint };
436 inline Hint NegateHint(Hint ignored) { return no_hint; }
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_icd.h 208 void (GLAPIENTRY * Hint)(GLenum, GLenum);
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 758 // hint. If the loop already has a loop id then copy the existing operands.
793 // The expected hint is either a MDString or a MDNode with the first
809 // Check if the hint starts with the vectorizer prefix.
810 StringRef Hint = S->getString();
811 if (!Hint.startswith(Prefix()))
814 Hint = Hint.substr(Prefix().size(), StringRef::npos);
817 getHint(Hint, Args[0]);
821 // Check string hint with one operand.
822 void getHint(StringRef Hint, Value *Arg)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_icd.h 208 void (GLAPIENTRY * Hint)(GLenum, GLenum);
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 1374 milliseconds

1 2