HomeSort by relevance Sort by last modified time
    Searched defs:Hint (Results 1 - 25 of 40) 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 44 /// spill weight and allocation hint.
54 DenseMap<unsigned, float> Hint;
64 /// \brief (re)compute li's spill weight and allocation hint.
MachineRegisterInfo.h 62 /// registers. For each virtual register, it keeps a register and hint type
63 /// pair making up the allocation hint. Hint type is target specific except
65 /// register for allocation. For example, if the hint is <0, 1024>, it means
67 /// register of the hint.
597 /// setRegAllocationHint - Specify a register allocation hint for the
604 /// getRegAllocationHint - Return the register allocation hint for the
611 /// getSimpleHint - Return the preferred register allocation hint, or 0 if a
612 /// standard simple hint (Type == 0) is not set.
614 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 270 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
274 // TRI::getRegAllocationHints to interpret those hint types.
275 assert(Hint.first == 0 && "Target must implement TRI::getRegAllocationHints");
278 unsigned Phys = Hint.second;
282 // Check that Phys is a valid hint in VirtReg's register class.
VirtRegMap.cpp 84 unsigned Hint = MRI->getSimpleHint(VirtReg);
85 if (!Hint)
87 if (TargetRegisterInfo::isVirtualRegister(Hint))
88 Hint = getPhys(Hint);
89 return getPhys(VirtReg) == Hint;
93 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(VirtReg);
94 if (TargetRegisterInfo::isPhysicalRegister(Hint.second))
96 if (TargetRegisterInfo::isVirtualRegister(Hint.second))
97 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/clang/lib/Sema/
DeclSpec.cpp     [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 324 outs() << " Hint/Ord Name\n";
333 uint16_t Hint;
335 if (Obj->getHintName(entry->getHintNameRVA(), Hint, Name))
337 outs() << format(" % 6d ", Hint) << Name << "\n";
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 223 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
226 switch (Hint.first) {
240 // the paired register as the first hint.
242 if (VRM && VRM->hasPhys(Hint.second)) {
243 PairedPhys = getPairedGPR(VRM->getPhys(Hint.second), Odd, this);
270 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
271 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
272 Hint.first == (unsigned)ARMRI::RegPairEven) &&
273 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
276 // pair allocation hint must be updated to reflect the relationshi
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
gles2_implementation_impl_autogen.h     [all...]
gles2_cmd_helper_autogen.h 764 void Hint(GLenum target, GLenum mode) {
765 gles2::cmds::Hint* c = GetCmdSpace<gles2::cmds::Hint>();
    [all...]
gles2_interface_stub_impl_autogen.h 314 void GLES2InterfaceStub::Hint(GLenum /* target */, GLenum /* mode */) {
    [all...]
gles2_trace_implementation_impl_autogen.h 547 void GLES2TraceImplementation::Hint(GLenum target, GLenum mode) {
548 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::Hint");
549 gl_->Hint(target, mode);
    [all...]
  /external/chromium_org/mojo/examples/pepper_container_app/
ppb_opengles2_thunk.cc 772 void Hint(PP_Resource context_id, GLenum target, GLenum 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 341 const DisplayHint Hint;
360 PathDiagnosticPiece(StringRef s, Kind k, DisplayHint hint = Below);
362 PathDiagnosticPiece(Kind k, DisplayHint hint = Below);
379 /// getDisplayHint - Return a hint indicating where the diagnostic should
381 DisplayHint getDisplayHint() const { return Hint; }
468 /// \brief Constructs a Stack hint for the given symbol.
470 /// The class knows how to construct the stack hint message based on
473 /// The hint can be customized by redefining 'getMessageForX()' methods.
502 /// supply a message that will be used to construct an extra hint on the
532 /// Produce the hint for the given node. The node contains
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 228 FixItHint Hint;
231 Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
232 Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
    [all...]
  /external/clang/lib/Parse/
ParsePragma.cpp 613 LoopHint Hint;
614 Hint.LoopLoc =
617 Hint.OptionLoc =
620 Hint.ValueLoc =
623 Hint.Range =
626 // FIXME: We should allow non-type template parameters for the loop hint
629 Hint.ValueExpr = Actions.ActOnNumericConstant(Info->Value).get();
631 Hint.ValueExpr = nullptr;
633 return Hint;
    [all...]
ParseStmt.cpp     [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 291 void (*Hint)(PP_Resource context, GLenum target, GLenum mode);
  /external/chromium_org/ppapi/shared_impl/
ppb_opengles2_shared.cc 784 void Hint(PP_Resource context_id, GLenum target, GLenum mode) {
787 ToGles2Impl(&enter)->Hint(target, mode);
    [all...]
  /external/chromium_org/v8/src/arm64/
macro-assembler-arm64-inl.h 833 void MacroAssembler::Hint(SystemHint code) {
835 hint(code);
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 45 /// This kind of hint should be used when we are certain that the
54 /// insertion hint.
67 /// \brief Empty code modification hint, indicating that no code
75 /// \brief Create a code modification hint that inserts the given
80 FixItHint Hint;
81 Hint.RemoveRange =
83 Hint.CodeToInsert = Code;
84 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
85 return Hint;
88 /// \brief Create a code modification hint that inserts the give
    [all...]

Completed in 1627 milliseconds

1 2