HomeSort by: relevance | last modified time | path
    Searched refs:Loc (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_monitor.h 24 Location &Loc;
27 UndefinedBehaviorReport(const char *IssueKind, Location &Loc,
ubsan_monitor.cc 19 Location &Loc,
21 : IssueKind(IssueKind), Loc(Loc), Buffer(Msg.length() + 1) {
62 if (!CurrentUBR->Loc.isSourceLocation()) {
66 SourceLocation SL = CurrentUBR->Loc.getSourceLocation();
72 if (CurrentUBR->Loc.isMemoryLocation())
73 *OutMemoryAddr = (char *)CurrentUBR->Loc.getMemoryLocation();
ubsan_handlers.h 21 SourceLocation Loc;
43 SourceLocation Loc;
64 SourceLocation Loc;
75 SourceLocation Loc;
84 SourceLocation Loc;
93 SourceLocation Loc;
108 SourceLocation Loc;
118 SourceLocation Loc;
136 SourceLocation Loc;
154 SourceLocation Loc;
    [all...]
ubsan_handlers.cc 49 Location Loc = Data->Loc.acquire();
62 if (ignoreReport(Loc.getSourceLocation(), Opts, ET))
66 if (Data->Loc.isInvalid()) {
68 Loc = FallbackLoc;
71 ScopedReport R(Opts, Loc, ET);
75 Diag(Loc, DL_Error, ET, "%0 null pointer of type %1")
79 Diag(Loc, DL_Error, ET, "%0 misaligned address %1 for type %3, "
85 Diag(Loc, DL_Error, ET, "%0 address %1 with insufficient space "
114 SourceLocation Loc = Data->Loc.acquire()
    [all...]
ubsan_handlers_cxx.cc 46 SourceLocation Loc = Data->Loc.acquire();
48 if (ignoreReport(Loc, Opts, ET))
51 ScopedReport R(Opts, Loc, ET);
53 Diag(Loc, DL_Error, ET,
101 SourceLocation Loc = Data->Loc.acquire();
104 if (ignoreReport(Loc, Opts, ET))
107 ScopedReport R(Opts, Loc, ET);
134 Diag(Loc, DL_Error, ET
    [all...]
ubsan_handlers_cxx.h 22 SourceLocation Loc;
ubsan_diag.cc 73 static void MaybeReportErrorSummary(Location Loc, ErrorType Type) {
79 if (Loc.isSourceLocation()) {
80 SourceLocation SLoc = Loc.getSourceLocation();
91 } else if (Loc.isSymbolizedStack()) {
92 const AddressInfo &AI = Loc.getSymbolizedStack()->info;
140 static void RenderLocation(InternalScopedString *Buffer, Location Loc) {
141 switch (Loc.getKind()) {
143 SourceLocation SLoc = Loc.getSourceLocation();
153 Buffer->append("%p", Loc.getMemoryLocation());
156 const AddressInfo &Info = Loc.getSymbolizedStack()->info
    [all...]
ubsan_diag.h 68 Location(SourceLocation Loc) :
69 Kind(LK_Source), SourceLoc(Loc) {}
70 Location(MemoryLocation Loc) :
71 Kind(LK_Memory), MemoryLoc(Loc) {}
137 Location Loc;
209 Diag(Location Loc, DiagLevel Level, ErrorType ET, const char *Message)
210 : Loc(Loc), Level(Level), ET(ET), Message(Message), NumArgs(0),
  /src/sys/external/bsd/acpica/dist/compiler/
dtcompilerparser.tab.c 779 # define YY_LOCATION_PRINT(File, Loc) \
781 (Loc).first_line, (Loc).first_column, \
782 (Loc).last_line, (Loc).last_column)
784 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
dtparser.tab.c 861 # define YY_LOCATION_PRINT(File, Loc) \
863 (Loc).first_line, (Loc).first_column, \
864 (Loc).last_line, (Loc).last_column)
866 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
prparser.tab.c 864 # define YY_LOCATION_PRINT(File, Loc) \
866 (Loc).first_line, (Loc).first_column, \
867 (Loc).last_line, (Loc).last_column)
869 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)

Completed in 29 milliseconds