]> code.delx.au - gnu-emacs/blob - lisp/progmodes/cc-engine.el
*** empty log message ***
[gnu-emacs] / lisp / progmodes / cc-engine.el
1 ;;; cc-engine.el --- core syntax guessing engine for CC mode
2
3 ;; Copyright (C) 1985, 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
6
7 ;; Authors: 2001- Alan Mackenzie
8 ;; 1998- Martin Stjernholm
9 ;; 1992-1999 Barry A. Warsaw
10 ;; 1987 Dave Detlefs and Stewart Clamen
11 ;; 1985 Richard M. Stallman
12 ;; Maintainer: bug-cc-mode@gnu.org
13 ;; Created: 22-Apr-1997 (split from cc-mode.el)
14 ;; Version: See cc-mode.el
15 ;; Keywords: c languages oop
16
17 ;; This file is part of GNU Emacs.
18
19 ;; GNU Emacs is free software; you can redistribute it and/or modify
20 ;; it under the terms of the GNU General Public License as published by
21 ;; the Free Software Foundation; either version 3, or (at your option)
22 ;; any later version.
23
24 ;; GNU Emacs is distributed in the hope that it will be useful,
25 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
26 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ;; GNU General Public License for more details.
28
29 ;; You should have received a copy of the GNU General Public License
30 ;; along with this program; see the file COPYING. If not, write to
31 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
32 ;; Boston, MA 02110-1301, USA.
33
34 ;;; Commentary:
35
36 ;; The functions which have docstring documentation can be considered
37 ;; part of an API which other packages can use in CC Mode buffers.
38 ;; Otoh, undocumented functions and functions with the documentation
39 ;; in comments are considered purely internal and can change semantics
40 ;; or even disappear in the future.
41 ;;
42 ;; (This policy applies to CC Mode as a whole, not just this file. It
43 ;; probably also applies to many other Emacs packages, but here it's
44 ;; clearly spelled out.)
45
46 ;; Hidden buffer changes
47 ;;
48 ;; Various functions in CC Mode use text properties for caching and
49 ;; syntactic markup purposes, and those of them that might modify such
50 ;; properties but still don't modify the buffer in a visible way are
51 ;; said to do "hidden buffer changes". They should be used within
52 ;; `c-save-buffer-state' or a similar function that saves and restores
53 ;; buffer modifiedness, disables buffer change hooks, etc.
54 ;;
55 ;; Interactive functions are assumed to not do hidden buffer changes,
56 ;; except in the specific parts of them that do real changes.
57 ;;
58 ;; Lineup functions are assumed to do hidden buffer changes. They
59 ;; must not do real changes, though.
60 ;;
61 ;; All other functions that do hidden buffer changes have that noted
62 ;; in their doc string or comment.
63 ;;
64 ;; The intention with this system is to avoid wrapping every leaf
65 ;; function that do hidden buffer changes inside
66 ;; `c-save-buffer-state'. It should be used as near the top of the
67 ;; interactive functions as possible.
68 ;;
69 ;; Functions called during font locking are allowed to do hidden
70 ;; buffer changes since the font-lock package run them in a context
71 ;; similar to `c-save-buffer-state' (in fact, that function is heavily
72 ;; inspired by `save-buffer-state' in the font-lock package).
73
74 ;; Use of text properties
75 ;;
76 ;; CC Mode uses several text properties internally to mark up various
77 ;; positions, e.g. to improve speed and to eliminate glitches in
78 ;; interactive refontification.
79 ;;
80 ;; Note: This doc is for internal use only. Other packages should not
81 ;; assume that these text properties are used as described here.
82 ;;
83 ;; 'syntax-table
84 ;; Used to modify the syntax of some characters. It is used to
85 ;; mark the "<" and ">" of angle bracket parens with paren syntax, and
86 ;; to "hide" obtrusive characters in preprocessor lines.
87 ;;
88 ;; This property is used on single characters and is therefore
89 ;; always treated as front and rear nonsticky (or start and end open
90 ;; in XEmacs vocabulary). It's therefore installed on
91 ;; `text-property-default-nonsticky' if that variable exists (Emacs
92 ;; >= 21).
93 ;;
94 ;; 'c-is-sws and 'c-in-sws
95 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
96 ;; speed them up. See the comment blurb before `c-put-is-sws'
97 ;; below for further details.
98 ;;
99 ;; 'c-type
100 ;; This property is used on single characters to mark positions with
101 ;; special syntactic relevance of various sorts. Its primary use is
102 ;; to avoid glitches when multiline constructs are refontified
103 ;; interactively (on font lock decoration level 3). It's cleared in
104 ;; a region before it's fontified and is then put on relevant chars
105 ;; in that region as they are encountered during the fontification.
106 ;; The value specifies the kind of position:
107 ;;
108 ;; 'c-decl-arg-start
109 ;; Put on the last char of the token preceding each declaration
110 ;; inside a declaration style arglist (typically in a function
111 ;; prototype).
112 ;;
113 ;; 'c-decl-end
114 ;; Put on the last char of the token preceding a declaration.
115 ;; This is used in cases where declaration boundaries can't be
116 ;; recognized simply by looking for a token like ";" or "}".
117 ;; `c-type-decl-end-used' must be set if this is used (see also
118 ;; `c-find-decl-spots').
119 ;;
120 ;; 'c-<>-arg-sep
121 ;; Put on the commas that separate arguments in angle bracket
122 ;; arglists like C++ template arglists.
123 ;;
124 ;; 'c-decl-id-start and 'c-decl-type-start
125 ;; Put on the last char of the token preceding each declarator
126 ;; in the declarator list of a declaration. They are also used
127 ;; between the identifiers cases like enum declarations.
128 ;; 'c-decl-type-start is used when the declarators are types,
129 ;; 'c-decl-id-start otherwise.
130 ;;
131 ;; 'c-awk-NL-prop
132 ;; Used in AWK mode to mark the various kinds of newlines. See
133 ;; cc-awk.el.
134
135 ;;; Code:
136
137 (eval-when-compile
138 (let ((load-path
139 (if (and (boundp 'byte-compile-dest-file)
140 (stringp byte-compile-dest-file))
141 (cons (file-name-directory byte-compile-dest-file) load-path)
142 load-path)))
143 (load "cc-bytecomp" nil t)))
144
145 (cc-require 'cc-defs)
146 (cc-require-when-compile 'cc-langs)
147 (cc-require 'cc-vars)
148
149 ;; Silence the compiler.
150 (cc-bytecomp-defun buffer-syntactic-context) ; XEmacs
151
152 \f
153 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
154
155 (defmacro c-declare-lang-variables ()
156 `(progn
157 ,@(apply 'nconc
158 (mapcar (lambda (init)
159 `(,(if (elt init 2)
160 `(defvar ,(car init) nil ,(elt init 2))
161 `(defvar ,(car init) nil))
162 (make-variable-buffer-local ',(car init))))
163 (cdr c-lang-variable-inits)))))
164 (c-declare-lang-variables)
165
166 \f
167 ;;; Internal state variables.
168
169 ;; Internal state of hungry delete key feature
170 (defvar c-hungry-delete-key nil)
171 (make-variable-buffer-local 'c-hungry-delete-key)
172
173 ;; The electric flag (toggled by `c-toggle-electric-state').
174 ;; If t, electric actions (like automatic reindentation, and (if
175 ;; c-auto-newline is also set) auto newlining) will happen when an electric
176 ;; key like `{' is pressed (or an electric keyword like `else').
177 (defvar c-electric-flag t)
178 (make-variable-buffer-local 'c-electric-flag)
179
180 ;; Internal state of auto newline feature.
181 (defvar c-auto-newline nil)
182 (make-variable-buffer-local 'c-auto-newline)
183
184 ;; Included in the mode line to indicate the active submodes.
185 ;; (defvar c-submode-indicators nil)
186 ;; (make-variable-buffer-local 'c-submode-indicators)
187
188 (defun c-calculate-state (arg prevstate)
189 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
190 ;; arg is nil or zero, toggle the state. If arg is negative, turn
191 ;; the state off, and if arg is positive, turn the state on
192 (if (or (not arg)
193 (zerop (setq arg (prefix-numeric-value arg))))
194 (not prevstate)
195 (> arg 0)))
196
197 ;; Dynamically bound cache for `c-in-literal'.
198 (defvar c-in-literal-cache t)
199
200 \f
201 ;; Basic handling of preprocessor directives.
202
203 ;; This is a dynamically bound cache used together with
204 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
205 ;; works as long as point doesn't cross a macro boundary.
206 (defvar c-macro-start 'unknown)
207
208 (defsubst c-query-and-set-macro-start ()
209 (if (symbolp c-macro-start)
210 (setq c-macro-start (save-excursion
211 (c-save-buffer-state ()
212 (and (c-beginning-of-macro)
213 (point)))))
214 c-macro-start))
215
216 (defsubst c-query-macro-start ()
217 (if (symbolp c-macro-start)
218 (save-excursion
219 (c-save-buffer-state ()
220 (and (c-beginning-of-macro)
221 (point))))
222 c-macro-start))
223
224 (defun c-beginning-of-macro (&optional lim)
225 "Go to the beginning of a preprocessor directive.
226 Leave point at the beginning of the directive and return t if in one,
227 otherwise return nil and leave point unchanged.
228
229 Note that this function might do hidden buffer changes. See the
230 comment at the start of cc-engine.el for more info."
231 (when c-opt-cpp-prefix
232 (let ((here (point)))
233 (save-restriction
234 (if lim (narrow-to-region lim (point-max)))
235 (beginning-of-line)
236 (while (eq (char-before (1- (point))) ?\\)
237 (forward-line -1))
238 (back-to-indentation)
239 (if (and (<= (point) here)
240 (looking-at c-opt-cpp-start))
241 t
242 (goto-char here)
243 nil)))))
244
245 (defun c-end-of-macro ()
246 "Go to the end of a preprocessor directive.
247 More accurately, move the point to the end of the closest following
248 line that doesn't end with a line continuation backslash - no check is
249 done that the point is inside a cpp directive to begin with.
250
251 Note that this function might do hidden buffer changes. See the
252 comment at the start of cc-engine.el for more info."
253 (while (progn
254 (end-of-line)
255 (when (and (eq (char-before) ?\\)
256 (not (eobp)))
257 (forward-char)
258 t))))
259
260 (defun c-forward-over-cpp-define-id ()
261 ;; Assuming point is at the "#" that introduces a preprocessor
262 ;; directive, it's moved forward to the end of the identifier which is
263 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
264 ;; is returned in this case, in all other cases nil is returned and
265 ;; point isn't moved.
266 ;;
267 ;; This function might do hidden buffer changes.
268 (when (and c-opt-cpp-macro-define-id
269 (looking-at c-opt-cpp-macro-define-id))
270 (goto-char (match-end 0))))
271
272 (defun c-forward-to-cpp-define-body ()
273 ;; Assuming point is at the "#" that introduces a preprocessor
274 ;; directive, it's moved forward to the start of the definition body
275 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
276 ;; specifies). Non-nil is returned in this case, in all other cases
277 ;; nil is returned and point isn't moved.
278 ;;
279 ;; This function might do hidden buffer changes.
280 (when (and c-opt-cpp-macro-define-start
281 (looking-at c-opt-cpp-macro-define-start)
282 (not (= (match-end 0) (c-point 'eol))))
283 (goto-char (match-end 0))))
284
285 \f
286 ;;; Basic utility functions.
287
288 (defun c-syntactic-content (from to paren-level)
289 ;; Return the given region as a string where all syntactic
290 ;; whitespace is removed or, where necessary, replaced with a single
291 ;; space. If PAREN-LEVEL is given then all parens in the region are
292 ;; collapsed to "()", "[]" etc.
293 ;;
294 ;; This function might do hidden buffer changes.
295
296 (save-excursion
297 (save-restriction
298 (narrow-to-region from to)
299 (goto-char from)
300 (let* ((parts (list nil)) (tail parts) pos in-paren)
301
302 (while (re-search-forward c-syntactic-ws-start to t)
303 (goto-char (setq pos (match-beginning 0)))
304 (c-forward-syntactic-ws)
305 (if (= (point) pos)
306 (forward-char)
307
308 (when paren-level
309 (save-excursion
310 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
311 pos (point))))
312
313 (if (and (> pos from)
314 (< (point) to)
315 (looking-at "\\w\\|\\s_")
316 (save-excursion
317 (goto-char (1- pos))
318 (looking-at "\\w\\|\\s_")))
319 (progn
320 (setcdr tail (list (buffer-substring-no-properties from pos)
321 " "))
322 (setq tail (cddr tail)))
323 (setcdr tail (list (buffer-substring-no-properties from pos)))
324 (setq tail (cdr tail)))
325
326 (when in-paren
327 (when (= (car (parse-partial-sexp pos to -1)) -1)
328 (setcdr tail (list (buffer-substring-no-properties
329 (1- (point)) (point))))
330 (setq tail (cdr tail))))
331
332 (setq from (point))))
333
334 (setcdr tail (list (buffer-substring-no-properties from to)))
335 (apply 'concat (cdr parts))))))
336
337 (defun c-shift-line-indentation (shift-amt)
338 ;; Shift the indentation of the current line with the specified
339 ;; amount (positive inwards). The buffer is modified only if
340 ;; SHIFT-AMT isn't equal to zero.
341 (let ((pos (- (point-max) (point)))
342 (c-macro-start c-macro-start)
343 tmp-char-inserted)
344 (if (zerop shift-amt)
345 nil
346 ;; If we're on an empty line inside a macro, we take the point
347 ;; to be at the current indentation and shift it to the
348 ;; appropriate column. This way we don't treat the extra
349 ;; whitespace out to the line continuation as indentation.
350 (when (and (c-query-and-set-macro-start)
351 (looking-at "[ \t]*\\\\$")
352 (save-excursion
353 (skip-chars-backward " \t")
354 (bolp)))
355 (insert ?x)
356 (backward-char)
357 (setq tmp-char-inserted t))
358 (unwind-protect
359 (let ((col (current-indentation)))
360 (delete-region (c-point 'bol) (c-point 'boi))
361 (beginning-of-line)
362 (indent-to (+ col shift-amt)))
363 (when tmp-char-inserted
364 (delete-char 1))))
365 ;; If initial point was within line's indentation and we're not on
366 ;; a line with a line continuation in a macro, position after the
367 ;; indentation. Else stay at same point in text.
368 (if (and (< (point) (c-point 'boi))
369 (not tmp-char-inserted))
370 (back-to-indentation)
371 (if (> (- (point-max) pos) (point))
372 (goto-char (- (point-max) pos))))))
373
374 (defsubst c-keyword-sym (keyword)
375 ;; Return non-nil if the string KEYWORD is a known keyword. More
376 ;; precisely, the value is the symbol for the keyword in
377 ;; `c-keywords-obarray'.
378 (intern-soft keyword c-keywords-obarray))
379
380 (defsubst c-keyword-member (keyword-sym lang-constant)
381 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
382 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
383 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
384 ;; nil then the result is nil.
385 (get keyword-sym lang-constant))
386
387 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
388 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
389 "\"|"
390 "\""))
391
392 ;; Regexp matching string limit syntax.
393 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
394 "\\s\"\\|\\s|"
395 "\\s\""))
396
397 ;; Regexp matching WS followed by string limit syntax.
398 (defconst c-ws*-string-limit-regexp
399 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
400
401 ;; Holds formatted error strings for the few cases where parse errors
402 ;; are reported.
403 (defvar c-parsing-error nil)
404 (make-variable-buffer-local 'c-parsing-error)
405
406 (defun c-echo-parsing-error (&optional quiet)
407 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
408 (c-benign-error "%s" c-parsing-error))
409 c-parsing-error)
410
411 ;; Faces given to comments and string literals. This is used in some
412 ;; situations to speed up recognition; it isn't mandatory that font
413 ;; locking is in use. This variable is extended with the face in
414 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
415 (defvar c-literal-faces
416 (append '(font-lock-comment-face font-lock-string-face)
417 (when (facep 'font-lock-comment-delimiter-face)
418 ;; New in Emacs 22.
419 '(font-lock-comment-delimiter-face))))
420
421 (defsubst c-put-c-type-property (pos value)
422 ;; Put a c-type property with the given value at POS.
423 (c-put-char-property pos 'c-type value))
424
425 (defun c-clear-c-type-property (from to value)
426 ;; Remove all occurences of the c-type property that has the given
427 ;; value in the region between FROM and TO. VALUE is assumed to not
428 ;; be nil.
429 ;;
430 ;; Note: This assumes that c-type is put on single chars only; it's
431 ;; very inefficient if matching properties cover large regions.
432 (save-excursion
433 (goto-char from)
434 (while (progn
435 (when (eq (get-text-property (point) 'c-type) value)
436 (c-clear-char-property (point) 'c-type))
437 (goto-char (next-single-property-change (point) 'c-type nil to))
438 (< (point) to)))))
439
440 \f
441 ;; Some debug tools to visualize various special positions. This
442 ;; debug code isn't as portable as the rest of CC Mode.
443
444 (cc-bytecomp-defun overlays-in)
445 (cc-bytecomp-defun overlay-get)
446 (cc-bytecomp-defun overlay-start)
447 (cc-bytecomp-defun overlay-end)
448 (cc-bytecomp-defun delete-overlay)
449 (cc-bytecomp-defun overlay-put)
450 (cc-bytecomp-defun make-overlay)
451
452 (defun c-debug-add-face (beg end face)
453 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
454 (while overlays
455 (setq overlay (car overlays)
456 overlays (cdr overlays))
457 (when (eq (overlay-get overlay 'face) face)
458 (setq beg (min beg (overlay-start overlay))
459 end (max end (overlay-end overlay)))
460 (delete-overlay overlay)))
461 (overlay-put (make-overlay beg end) 'face face)))
462
463 (defun c-debug-remove-face (beg end face)
464 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
465 (ol-beg beg) (ol-end end))
466 (while overlays
467 (setq overlay (car overlays)
468 overlays (cdr overlays))
469 (when (eq (overlay-get overlay 'face) face)
470 (setq ol-beg (min ol-beg (overlay-start overlay))
471 ol-end (max ol-end (overlay-end overlay)))
472 (delete-overlay overlay)))
473 (when (< ol-beg beg)
474 (overlay-put (make-overlay ol-beg beg) 'face face))
475 (when (> ol-end end)
476 (overlay-put (make-overlay end ol-end) 'face face))))
477
478 \f
479 ;; `c-beginning-of-statement-1' and accompanying stuff.
480
481 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
482 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
483 ;; better way should be implemented, but this will at least shut up
484 ;; the byte compiler.
485 (defvar c-maybe-labelp)
486
487 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
488
489 ;; Macros used internally in c-beginning-of-statement-1 for the
490 ;; automaton actions.
491 (defmacro c-bos-push-state ()
492 '(setq stack (cons (cons state saved-pos)
493 stack)))
494 (defmacro c-bos-pop-state (&optional do-if-done)
495 `(if (setq state (car (car stack))
496 saved-pos (cdr (car stack))
497 stack (cdr stack))
498 t
499 ,do-if-done
500 (throw 'loop nil)))
501 (defmacro c-bos-pop-state-and-retry ()
502 '(throw 'loop (setq state (car (car stack))
503 saved-pos (cdr (car stack))
504 ;; Throw nil if stack is empty, else throw non-nil.
505 stack (cdr stack))))
506 (defmacro c-bos-save-pos ()
507 '(setq saved-pos (vector pos tok ptok pptok)))
508 (defmacro c-bos-restore-pos ()
509 '(unless (eq (elt saved-pos 0) start)
510 (setq pos (elt saved-pos 0)
511 tok (elt saved-pos 1)
512 ptok (elt saved-pos 2)
513 pptok (elt saved-pos 3))
514 (goto-char pos)
515 (setq sym nil)))
516 (defmacro c-bos-save-error-info (missing got)
517 `(setq saved-pos (vector pos ,missing ,got)))
518 (defmacro c-bos-report-error ()
519 '(unless noerror
520 (setq c-parsing-error
521 (format "No matching `%s' found for `%s' on line %d"
522 (elt saved-pos 1)
523 (elt saved-pos 2)
524 (1+ (count-lines (point-min)
525 (c-point 'bol (elt saved-pos 0))))))))
526
527 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
528 noerror comma-delim)
529 "Move to the start of the current statement or declaration, or to
530 the previous one if already at the beginning of one. Only
531 statements/declarations on the same level are considered, i.e. don't
532 move into or out of sexps (not even normal expression parentheses).
533
534 Stop at statement continuation tokens like \"else\", \"catch\",
535 \"finally\" and the \"while\" in \"do ... while\" if the start point
536 is within the continuation. If starting at such a token, move to the
537 corresponding statement start. If at the beginning of a statement,
538 move to the closest containing statement if there is any. This might
539 also stop at a continuation clause.
540
541 Labels are treated as part of the following statements if
542 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
543 statement start keyword.) Otherwise, each label is treated as a
544 separate statement.
545
546 Macros are ignored \(i.e. skipped over) unless point is within one, in
547 which case the content of the macro is treated as normal code. Aside
548 from any normal statement starts found in it, stop at the first token
549 of the content in the macro, i.e. the expression of an \"#if\" or the
550 start of the definition in a \"#define\". Also stop at start of
551 macros before leaving them.
552
553 Return 'label if stopped at a label, 'same if stopped at the beginning
554 of the current statement, 'up if stepped to a containing statement,
555 'previous if stepped to a preceding statement, 'beginning if stepped
556 from a statement continuation clause to its start clause, or 'macro if
557 stepped to a macro start. Note that 'same and not 'label is returned
558 if stopped at the same label without crossing the colon character.
559
560 LIM may be given to limit the search. If the search hits the limit,
561 point will be left at the closest following token, or at the start
562 position if that is less ('same is returned in this case).
563
564 NOERROR turns off error logging to `c-parsing-error'.
565
566 Normally only ';' and virtual semicolons are considered to delimit
567 statements, but if COMMA-DELIM is non-nil then ',' is treated
568 as a delimiter too.
569
570 Note that this function might do hidden buffer changes. See the
571 comment at the start of cc-engine.el for more info."
572
573 ;; The bulk of this function is a pushdown automaton that looks at statement
574 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
575 ;; purpose is to keep track of nested statements, ensuring that such
576 ;; statments are skipped over in their entirety (somewhat akin to what C-M-p
577 ;; does with nested braces/brackets/parentheses).
578 ;;
579 ;; Note: The position of a boundary is the following token.
580 ;;
581 ;; Beginning with the current token (the one following point), move back one
582 ;; sexp at a time (where a sexp is, more or less, either a token or the
583 ;; entire contents of a brace/bracket/paren pair). Each time a statement
584 ;; boundary is crossed or a "while"-like token is found, update the state of
585 ;; the PDA. Stop at the beginning of a statement when the stack (holding
586 ;; nested statement info) is empty and the position has been moved.
587 ;;
588 ;; The following variables constitute the PDA:
589 ;;
590 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
591 ;; scanned back over, 'boundary if we've just gone back over a
592 ;; statement boundary, or nil otherwise.
593 ;; state: takes one of the values (nil else else-boundary while
594 ;; while-boundary catch catch-boundary).
595 ;; nil means "no "while"-like token yet scanned".
596 ;; 'else, for example, means "just gone back over an else".
597 ;; 'else-boundary means "just gone back over a statement boundary
598 ;; immediately after having gone back over an else".
599 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
600 ;; of error reporting information.
601 ;; stack: The stack onto which the PDA pushes its state. Each entry
602 ;; consists of a saved value of state and saved-pos. An entry is
603 ;; pushed when we move back over a "continuation" token (e.g. else)
604 ;; and popped when we encounter the corresponding opening token
605 ;; (e.g. if).
606 ;;
607 ;;
608 ;; The following diagram briefly outlines the PDA.
609 ;;
610 ;; Common state:
611 ;; "else": Push state, goto state `else'.
612 ;; "while": Push state, goto state `while'.
613 ;; "catch" or "finally": Push state, goto state `catch'.
614 ;; boundary: Pop state.
615 ;; other: Do nothing special.
616 ;;
617 ;; State `else':
618 ;; boundary: Goto state `else-boundary'.
619 ;; other: Error, pop state, retry token.
620 ;;
621 ;; State `else-boundary':
622 ;; "if": Pop state.
623 ;; boundary: Error, pop state.
624 ;; other: See common state.
625 ;;
626 ;; State `while':
627 ;; boundary: Save position, goto state `while-boundary'.
628 ;; other: Pop state, retry token.
629 ;;
630 ;; State `while-boundary':
631 ;; "do": Pop state.
632 ;; boundary: Restore position if it's not at start, pop state. [*see below]
633 ;; other: See common state.
634 ;;
635 ;; State `catch':
636 ;; boundary: Goto state `catch-boundary'.
637 ;; other: Error, pop state, retry token.
638 ;;
639 ;; State `catch-boundary':
640 ;; "try": Pop state.
641 ;; "catch": Goto state `catch'.
642 ;; boundary: Error, pop state.
643 ;; other: See common state.
644 ;;
645 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
646 ;; searching for a "do" which would have opened a do-while. If we didn't
647 ;; find it, we discard the analysis done since the "while", go back to this
648 ;; token in the buffer and restart the scanning there, this time WITHOUT
649 ;; pushing the 'while state onto the stack.
650 ;;
651 ;; In addition to the above there is some special handling of labels
652 ;; and macros.
653
654 (let ((case-fold-search nil)
655 (start (point))
656 macro-start
657 (delims (if comma-delim '(?\; ?,) '(?\;)))
658 (c-stmt-delim-chars (if comma-delim
659 c-stmt-delim-chars-with-comma
660 c-stmt-delim-chars))
661 c-in-literal-cache c-maybe-labelp saved
662 ;; Current position.
663 pos
664 ;; Position of last stmt boundary character (e.g. ;).
665 boundary-pos
666 ;; The position of the last sexp or bound that follows the
667 ;; first found colon, i.e. the start of the nonlabel part of
668 ;; the statement. It's `start' if a colon is found just after
669 ;; the start.
670 after-labels-pos
671 ;; Like `after-labels-pos', but the first such position inside
672 ;; a label, i.e. the start of the last label before the start
673 ;; of the nonlabel part of the statement.
674 last-label-pos
675 ;; The last position where a label is possible provided the
676 ;; statement started there. It's nil as long as no invalid
677 ;; label content has been found (according to
678 ;; `c-nonlabel-token-key'. It's `start' if no valid label
679 ;; content was found in the label. Note that we might still
680 ;; regard it a label if it starts with `c-label-kwds'.
681 label-good-pos
682 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
683 ;; See above.
684 sym
685 ;; Current state in the automaton. See above.
686 state
687 ;; Current saved positions. See above.
688 saved-pos
689 ;; Stack of conses (state . saved-pos).
690 stack
691 ;; Regexp which matches "for", "if", etc.
692 (cond-key (or c-opt-block-stmt-key
693 "\\<\\>")) ; Matches nothing.
694 ;; Return value.
695 (ret 'same)
696 ;; Positions of the last three sexps or bounds we've stopped at.
697 tok ptok pptok)
698
699 (save-restriction
700 (if lim (narrow-to-region lim (point-max)))
701
702 (if (save-excursion
703 (and (c-beginning-of-macro)
704 (/= (point) start)))
705 (setq macro-start (point)))
706
707 ;; Try to skip back over unary operator characters, to register
708 ;; that we've moved.
709 (while (progn
710 (setq pos (point))
711 (c-backward-syntactic-ws)
712 ;; Protect post-++/-- operators just before a virtual semicolon.
713 (and (not (c-at-vsemi-p))
714 (/= (skip-chars-backward "-+!*&~@`#") 0))))
715
716 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
717 ;; done. Later on we ignore the boundaries for statements that don't
718 ;; contain any sexp. The only thing that is affected is that the error
719 ;; checking is a little less strict, and we really don't bother.
720 (if (and (memq (char-before) delims)
721 (progn (forward-char -1)
722 (setq saved (point))
723 (c-backward-syntactic-ws)
724 (or (memq (char-before) delims)
725 (memq (char-before) '(?: nil))
726 (eq (char-syntax (char-before)) ?\()
727 (c-at-vsemi-p))))
728 (setq ret 'previous
729 pos saved)
730
731 ;; Begin at start and not pos to detect macros if we stand
732 ;; directly after the #.
733 (goto-char start)
734 (if (looking-at "\\<\\|\\W")
735 ;; Record this as the first token if not starting inside it.
736 (setq tok start))
737
738 ;; The following while loop goes back one sexp (balanced parens,
739 ;; etc. with contents, or symbol or suchlike) each iteration. This
740 ;; movement is accomplished with a call to scan-sexps approx 130 lines
741 ;; below.
742 (while
743 (catch 'loop ;; Throw nil to break, non-nil to continue.
744 (cond
745 ((save-excursion
746 (and macro-start ; Always NIL for AWK.
747 (progn (skip-chars-backward " \t")
748 (eq (char-before) ?#))
749 (progn (setq saved (1- (point)))
750 (beginning-of-line)
751 (not (eq (char-before (1- (point))) ?\\)))
752 (looking-at c-opt-cpp-start)
753 (progn (skip-chars-forward " \t")
754 (eq (point) saved))))
755 (goto-char saved)
756 (if (and (c-forward-to-cpp-define-body)
757 (progn (c-forward-syntactic-ws start)
758 (< (point) start)))
759 ;; Stop at the first token in the content of the macro.
760 (setq pos (point)
761 ignore-labels t) ; Avoid the label check on exit.
762 (setq pos saved
763 ret 'macro
764 ignore-labels t))
765 (throw 'loop nil))
766
767 ;; Do a round through the automaton if we've just passed a
768 ;; statement boundary or passed a "while"-like token.
769 ((or sym
770 (and (looking-at cond-key)
771 (setq sym (intern (match-string 1)))))
772
773 (when (and (< pos start) (null stack))
774 (throw 'loop nil))
775
776 ;; The PDA state handling.
777 ;;
778 ;; Refer to the description of the PDA in the opening
779 ;; comments. In the following OR form, the first leaf
780 ;; attempts to handles one of the specific actions detailed
781 ;; (e.g., finding token "if" whilst in state `else-boundary').
782 ;; We drop through to the second leaf (which handles common
783 ;; state) if no specific handler is found in the first cond.
784 ;; If a parsing error is detected (e.g. an "else" with no
785 ;; preceding "if"), we throw to the enclosing catch.
786 ;;
787 ;; Note that the (eq state 'else) means
788 ;; "we've just passed an else", NOT "we're looking for an
789 ;; else".
790 (or (cond
791 ((eq state 'else)
792 (if (eq sym 'boundary)
793 (setq state 'else-boundary)
794 (c-bos-report-error)
795 (c-bos-pop-state-and-retry)))
796
797 ((eq state 'else-boundary)
798 (cond ((eq sym 'if)
799 (c-bos-pop-state (setq ret 'beginning)))
800 ((eq sym 'boundary)
801 (c-bos-report-error)
802 (c-bos-pop-state))))
803
804 ((eq state 'while)
805 (if (and (eq sym 'boundary)
806 ;; Since this can cause backtracking we do a
807 ;; little more careful analysis to avoid it:
808 ;; If there's a label in front of the while
809 ;; it can't be part of a do-while.
810 (not after-labels-pos))
811 (progn (c-bos-save-pos)
812 (setq state 'while-boundary))
813 (c-bos-pop-state-and-retry))) ; Can't be a do-while
814
815 ((eq state 'while-boundary)
816 (cond ((eq sym 'do)
817 (c-bos-pop-state (setq ret 'beginning)))
818 ((eq sym 'boundary) ; isn't a do-while
819 (c-bos-restore-pos) ; the position of the while
820 (c-bos-pop-state)))) ; no longer searching for do.
821
822 ((eq state 'catch)
823 (if (eq sym 'boundary)
824 (setq state 'catch-boundary)
825 (c-bos-report-error)
826 (c-bos-pop-state-and-retry)))
827
828 ((eq state 'catch-boundary)
829 (cond
830 ((eq sym 'try)
831 (c-bos-pop-state (setq ret 'beginning)))
832 ((eq sym 'catch)
833 (setq state 'catch))
834 ((eq sym 'boundary)
835 (c-bos-report-error)
836 (c-bos-pop-state)))))
837
838 ;; This is state common. We get here when the previous
839 ;; cond statement found no particular state handler.
840 (cond ((eq sym 'boundary)
841 ;; If we have a boundary at the start
842 ;; position we push a frame to go to the
843 ;; previous statement.
844 (if (>= pos start)
845 (c-bos-push-state)
846 (c-bos-pop-state)))
847 ((eq sym 'else)
848 (c-bos-push-state)
849 (c-bos-save-error-info 'if 'else)
850 (setq state 'else))
851 ((eq sym 'while)
852 ;; Is this a real while, or a do-while?
853 ;; The next `when' triggers unless we are SURE that
854 ;; the `while' is not the tailend of a `do-while'.
855 (when (or (not pptok)
856 (memq (char-after pptok) delims)
857 ;; The following kludge is to prevent
858 ;; infinite recursion when called from
859 ;; c-awk-after-if-for-while-condition-p,
860 ;; or the like.
861 (and (eq (point) start)
862 (c-vsemi-status-unknown-p))
863 (c-at-vsemi-p pptok))
864 ;; Since this can cause backtracking we do a
865 ;; little more careful analysis to avoid it: If
866 ;; the while isn't followed by a (possibly
867 ;; virtual) semicolon it can't be a do-while.
868 (c-bos-push-state)
869 (setq state 'while)))
870 ((memq sym '(catch finally))
871 (c-bos-push-state)
872 (c-bos-save-error-info 'try sym)
873 (setq state 'catch))))
874
875 (when c-maybe-labelp
876 ;; We're either past a statement boundary or at the
877 ;; start of a statement, so throw away any label data
878 ;; for the previous one.
879 (setq after-labels-pos nil
880 last-label-pos nil
881 c-maybe-labelp nil))))
882
883 ;; Step to the previous sexp, but not if we crossed a
884 ;; boundary, since that doesn't consume an sexp.
885 (if (eq sym 'boundary)
886 (setq ret 'previous)
887
888 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
889 ;; BACKWARDS THROUGH THE SOURCE.
890
891 ;; This is typically fast with the caching done by
892 ;; c-(backward|forward)-sws.
893 (c-backward-syntactic-ws)
894
895 (let ((before-sws-pos (point))
896 ;; Set as long as we have to continue jumping by sexps.
897 ;; It's the position to use as end in the next round.
898 sexp-loop-continue-pos
899 ;; The end position of the area to search for statement
900 ;; barriers in this round.
901 (sexp-loop-end-pos pos))
902
903 ;; The following while goes back one sexp per iteration.
904 (while
905 (progn
906 (unless (c-safe (c-backward-sexp) t)
907 ;; Give up if we hit an unbalanced block. Since the
908 ;; stack won't be empty the code below will report a
909 ;; suitable error.
910 (throw 'loop nil))
911
912 ;; Check if the sexp movement crossed a statement or
913 ;; declaration boundary. But first modify the point
914 ;; so that `c-crosses-statement-barrier-p' only looks
915 ;; at the non-sexp chars following the sexp.
916 (save-excursion
917 (when (setq
918 boundary-pos
919 (cond
920 ((if macro-start
921 nil
922 (save-excursion
923 (when (c-beginning-of-macro)
924 ;; Set continuation position in case
925 ;; `c-crosses-statement-barrier-p'
926 ;; doesn't detect anything below.
927 (setq sexp-loop-continue-pos (point)))))
928 ;; If the sexp movement took us into a
929 ;; macro then there were only some non-sexp
930 ;; chars after it. Skip out of the macro
931 ;; to analyze them but not the non-sexp
932 ;; chars that might be inside the macro.
933 (c-end-of-macro)
934 (c-crosses-statement-barrier-p
935 (point) sexp-loop-end-pos))
936
937 ((and
938 (eq (char-after) ?{)
939 (not (c-looking-at-inexpr-block lim nil t)))
940 ;; Passed a block sexp. That's a boundary
941 ;; alright.
942 (point))
943
944 ((looking-at "\\s\(")
945 ;; Passed some other paren. Only analyze
946 ;; the non-sexp chars after it.
947 (goto-char (1+ (c-down-list-backward
948 before-sws-pos)))
949 ;; We're at a valid token start position
950 ;; (outside the `save-excursion') if
951 ;; `c-crosses-statement-barrier-p' failed.
952 (c-crosses-statement-barrier-p
953 (point) sexp-loop-end-pos))
954
955 (t
956 ;; Passed a symbol sexp or line
957 ;; continuation. It doesn't matter that
958 ;; it's included in the analyzed region.
959 (if (c-crosses-statement-barrier-p
960 (point) sexp-loop-end-pos)
961 t
962 ;; If it was a line continuation then we
963 ;; have to continue looping.
964 (if (looking-at "\\\\$")
965 (setq sexp-loop-continue-pos (point)))
966 nil))))
967
968 (setq pptok ptok
969 ptok tok
970 tok boundary-pos
971 sym 'boundary)
972 ;; Like a C "continue". Analyze the next sexp.
973 (throw 'loop t)))
974
975 sexp-loop-continue-pos) ; End of "go back a sexp" loop.
976 (goto-char sexp-loop-continue-pos)
977 (setq sexp-loop-end-pos sexp-loop-continue-pos
978 sexp-loop-continue-pos nil))))
979
980 ;; ObjC method def?
981 (when (and c-opt-method-key
982 (setq saved (c-in-method-def-p)))
983 (setq pos saved
984 ignore-labels t) ; Avoid the label check on exit.
985 (throw 'loop nil))
986
987 ;; Handle labels.
988 (unless (eq ignore-labels t)
989 (when (numberp c-maybe-labelp)
990 ;; `c-crosses-statement-barrier-p' has found a colon, so we
991 ;; might be in a label now. Have we got a real label
992 ;; (including a case label) or something like C++'s "public:"?
993 (if (or (not (looking-at c-nonlabel-token-key)) ; proper label
994 (save-excursion ; e.g. "case 'a':" ?
995 (and (c-safe (c-backward-sexp) t)
996 (looking-at "\\<case\\>")))) ; FIXME!!! this is
997 ; wrong for AWK. 2006/1/14.
998 (progn
999 (if after-labels-pos ; Have we already encountered a label?
1000 (if (not last-label-pos)
1001 (setq last-label-pos (or tok start)))
1002 (setq after-labels-pos (or tok start)))
1003 (setq c-maybe-labelp t
1004 label-good-pos nil))
1005 (setq c-maybe-labelp nil))) ; bogus "label"
1006
1007 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1008 ; been found.
1009 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1010 ;; We're in a potential label and it's the first
1011 ;; time we've found something that isn't allowed in
1012 ;; one.
1013 (setq label-good-pos (or tok start))))
1014
1015 ;; We've moved back by a sexp, so update the token positions.
1016 (setq sym nil
1017 pptok ptok
1018 ptok tok
1019 tok (point)
1020 pos tok))) ; Not nil (for the while loop).
1021
1022 ;; If the stack isn't empty there might be errors to report.
1023 (while stack
1024 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1025 (c-bos-report-error))
1026 (setq saved-pos (cdr (car stack))
1027 stack (cdr stack)))
1028
1029 (when (and (eq ret 'same)
1030 (not (memq sym '(boundary ignore nil))))
1031 ;; Need to investigate closer whether we've crossed
1032 ;; between a substatement and its containing statement.
1033 (if (setq saved (if (looking-at c-block-stmt-1-key)
1034 ptok
1035 pptok))
1036 (cond ((> start saved) (setq pos saved))
1037 ((= start saved) (setq ret 'up)))))
1038
1039 (when (and (not ignore-labels)
1040 (eq c-maybe-labelp t)
1041 (not (eq ret 'beginning))
1042 after-labels-pos
1043 (or (not label-good-pos)
1044 (<= label-good-pos pos)
1045 (progn
1046 (goto-char (if (and last-label-pos
1047 (< last-label-pos start))
1048 last-label-pos
1049 pos))
1050 (looking-at c-label-kwds-regexp))))
1051 ;; We're in a label. Maybe we should step to the statement
1052 ;; after it.
1053 (if (< after-labels-pos start)
1054 (setq pos after-labels-pos)
1055 (setq ret 'label)
1056 (if (and last-label-pos (< last-label-pos start))
1057 ;; Might have jumped over several labels. Go to the last one.
1058 (setq pos last-label-pos)))))
1059
1060 ;; Skip over the unary operators that can start the statement.
1061 (goto-char pos)
1062 (while (progn
1063 (c-backward-syntactic-ws)
1064 ;; protect AWK post-inc/decrement operators, etc.
1065 (and (not (c-at-vsemi-p (point)))
1066 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1067 (setq pos (point)))
1068 (goto-char pos)
1069 ret)))
1070
1071 (defun c-crosses-statement-barrier-p (from to)
1072 "Return non-nil if buffer positions FROM to TO cross one or more
1073 statement or declaration boundaries. The returned value is actually
1074 the position of the earliest boundary char. FROM must not be within
1075 a string or comment.
1076
1077 The variable `c-maybe-labelp' is set to the position of the first `:' that
1078 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1079 single `?' is found, then `c-maybe-labelp' is cleared.
1080
1081 For AWK, a statement which is terminated by an EOL (not a \; or a }) is
1082 regarded as having a \"virtual semicolon\" immediately after the last token on
1083 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1084
1085 Note that this function might do hidden buffer changes. See the
1086 comment at the start of cc-engine.el for more info."
1087 (let ((skip-chars c-stmt-delim-chars)
1088 lit-range)
1089 (save-excursion
1090 (catch 'done
1091 (goto-char from)
1092 (while (progn (skip-chars-forward skip-chars to)
1093 (< (point) to))
1094 (cond
1095 ((setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1096 (goto-char (cdr lit-range)))
1097 ((eq (char-after) ?:)
1098 (forward-char)
1099 (if (and (eq (char-after) ?:)
1100 (< (point) to))
1101 ;; Ignore scope operators.
1102 (forward-char)
1103 (setq c-maybe-labelp (1- (point)))))
1104 ((eq (char-after) ??)
1105 ;; A question mark. Can't be a label, so stop
1106 ;; looking for more : and ?.
1107 (setq c-maybe-labelp nil
1108 skip-chars (substring c-stmt-delim-chars 0 -2)))
1109 ((memq (char-after) '(?# ?\n ?\r)) ; A virtual semicolon?
1110 (if (and (eq (char-before) ?\\) (memq (char-after) '(?\n ?\r)))
1111 (backward-char))
1112 (skip-chars-backward " \t" from)
1113 (if (c-at-vsemi-p)
1114 (throw 'done (point))
1115 (forward-line)))
1116 (t (throw 'done (point)))))
1117 ;; In trailing space after an as yet undetected virtual semicolon?
1118 (c-backward-syntactic-ws from)
1119 (if (and (< (point) to)
1120 (c-at-vsemi-p))
1121 (point)
1122 nil)))))
1123
1124 (defun c-at-statement-start-p ()
1125 "Return non-nil if the point is at the first token in a statement
1126 or somewhere in the syntactic whitespace before it.
1127
1128 A \"statement\" here is not restricted to those inside code blocks.
1129 Any kind of declaration-like construct that occur outside function
1130 bodies is also considered a \"statement\".
1131
1132 Note that this function might do hidden buffer changes. See the
1133 comment at the start of cc-engine.el for more info."
1134
1135 (save-excursion
1136 (let ((end (point))
1137 c-maybe-labelp)
1138 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1139 (or (bobp)
1140 (eq (char-before) ?})
1141 (and (eq (char-before) ?{)
1142 (not (and c-special-brace-lists
1143 (progn (backward-char)
1144 (c-looking-at-special-brace-list)))))
1145 (c-crosses-statement-barrier-p (point) end)))))
1146
1147 (defun c-at-expression-start-p ()
1148 "Return non-nil if the point is at the first token in an expression or
1149 statement, or somewhere in the syntactic whitespace before it.
1150
1151 An \"expression\" here is a bit different from the normal language
1152 grammar sense: It's any sequence of expression tokens except commas,
1153 unless they are enclosed inside parentheses of some kind. Also, an
1154 expression never continues past an enclosing parenthesis, but it might
1155 contain parenthesis pairs of any sort except braces.
1156
1157 Since expressions never cross statement boundaries, this function also
1158 recognizes statement beginnings, just like `c-at-statement-start-p'.
1159
1160 Note that this function might do hidden buffer changes. See the
1161 comment at the start of cc-engine.el for more info."
1162
1163 (save-excursion
1164 (let ((end (point))
1165 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1166 c-maybe-labelp)
1167 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1168 (or (bobp)
1169 (memq (char-before) '(?{ ?}))
1170 (save-excursion (backward-char)
1171 (looking-at "\\s("))
1172 (c-crosses-statement-barrier-p (point) end)))))
1173
1174 \f
1175 ;; A set of functions that covers various idiosyncrasies in
1176 ;; implementations of `forward-comment'.
1177
1178 ;; Note: Some emacsen considers incorrectly that any line comment
1179 ;; ending with a backslash continues to the next line. I can't think
1180 ;; of any way to work around that in a reliable way without changing
1181 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1182 ;; changing the syntax for backslash doesn't work since we must treat
1183 ;; escapes in string literals correctly.)
1184
1185 (defun c-forward-single-comment ()
1186 "Move forward past whitespace and the closest following comment, if any.
1187 Return t if a comment was found, nil otherwise. In either case, the
1188 point is moved past the following whitespace. Line continuations,
1189 i.e. a backslashes followed by line breaks, are treated as whitespace.
1190 The line breaks that end line comments are considered to be the
1191 comment enders, so the point will be put on the beginning of the next
1192 line if it moved past a line comment.
1193
1194 This function does not do any hidden buffer changes."
1195
1196 (let ((start (point)))
1197 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1198 (goto-char (match-end 0)))
1199
1200 (when (forward-comment 1)
1201 (if (eobp)
1202 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1203 ;; forwards at eob.
1204 nil
1205
1206 ;; Emacs includes the ending newline in a b-style (c++)
1207 ;; comment, but XEmacs doesn't. We depend on the Emacs
1208 ;; behavior (which also is symmetric).
1209 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1210 (condition-case nil (forward-char 1)))
1211
1212 t))))
1213
1214 (defsubst c-forward-comments ()
1215 "Move forward past all following whitespace and comments.
1216 Line continuations, i.e. a backslashes followed by line breaks, are
1217 treated as whitespace.
1218
1219 Note that this function might do hidden buffer changes. See the
1220 comment at the start of cc-engine.el for more info."
1221
1222 (while (or
1223 ;; If forward-comment in at least XEmacs 21 is given a large
1224 ;; positive value, it'll loop all the way through if it hits
1225 ;; eob.
1226 (and (forward-comment 5)
1227 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1228 ;; forwards at eob.
1229 (not (eobp)))
1230
1231 (when (looking-at "\\\\[\n\r]")
1232 (forward-char 2)
1233 t))))
1234
1235 (defun c-backward-single-comment ()
1236 "Move backward past whitespace and the closest preceding comment, if any.
1237 Return t if a comment was found, nil otherwise. In either case, the
1238 point is moved past the preceding whitespace. Line continuations,
1239 i.e. a backslashes followed by line breaks, are treated as whitespace.
1240 The line breaks that end line comments are considered to be the
1241 comment enders, so the point cannot be at the end of the same line to
1242 move over a line comment.
1243
1244 This function does not do any hidden buffer changes."
1245
1246 (let ((start (point)))
1247 ;; When we got newline terminated comments, forward-comment in all
1248 ;; supported emacsen so far will stop at eol of each line not
1249 ;; ending with a comment when moving backwards. This corrects for
1250 ;; that, and at the same time handles line continuations.
1251 (while (progn
1252 (skip-chars-backward " \t\n\r\f\v")
1253 (and (looking-at "[\n\r]")
1254 (eq (char-before) ?\\)))
1255 (backward-char))
1256
1257 (if (bobp)
1258 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1259 ;; backwards at bob.
1260 nil
1261
1262 ;; Leave point after the closest following newline if we've
1263 ;; backed up over any above, since forward-comment won't move
1264 ;; backward over a line comment if point is at the end of the
1265 ;; same line.
1266 (re-search-forward "\\=\\s *[\n\r]" start t)
1267
1268 (if (if (forward-comment -1)
1269 (if (eolp)
1270 ;; If forward-comment above succeeded and we're at eol
1271 ;; then the newline we moved over above didn't end a
1272 ;; line comment, so we give it another go.
1273 (forward-comment -1)
1274 t))
1275
1276 ;; Emacs <= 20 and XEmacs move back over the closer of a
1277 ;; block comment that lacks an opener.
1278 (if (looking-at "\\*/")
1279 (progn (forward-char 2) nil)
1280 t)))))
1281
1282 (defsubst c-backward-comments ()
1283 "Move backward past all preceding whitespace and comments.
1284 Line continuations, i.e. a backslashes followed by line breaks, are
1285 treated as whitespace. The line breaks that end line comments are
1286 considered to be the comment enders, so the point cannot be at the end
1287 of the same line to move over a line comment. Unlike
1288 c-backward-syntactic-ws, this function doesn't move back over
1289 preprocessor directives.
1290
1291 Note that this function might do hidden buffer changes. See the
1292 comment at the start of cc-engine.el for more info."
1293
1294 (let ((start (point)))
1295 (while (and
1296 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1297 ;; return t when moving backwards at bob.
1298 (not (bobp))
1299
1300 (if (forward-comment -1)
1301 (if (looking-at "\\*/")
1302 ;; Emacs <= 20 and XEmacs move back over the
1303 ;; closer of a block comment that lacks an opener.
1304 (progn (forward-char 2) nil)
1305 t)
1306
1307 ;; XEmacs treats line continuations as whitespace but
1308 ;; only in the backward direction, which seems a bit
1309 ;; odd. Anyway, this is necessary for Emacs.
1310 (when (and (looking-at "[\n\r]")
1311 (eq (char-before) ?\\)
1312 (< (point) start))
1313 (backward-char)
1314 t))))))
1315
1316 \f
1317 ;; Tools for skipping over syntactic whitespace.
1318
1319 ;; The following functions use text properties to cache searches over
1320 ;; large regions of syntactic whitespace. It works as follows:
1321 ;;
1322 ;; o If a syntactic whitespace region contains anything but simple
1323 ;; whitespace (i.e. space, tab and line breaks), the text property
1324 ;; `c-in-sws' is put over it. At places where we have stopped
1325 ;; within that region there's also a `c-is-sws' text property.
1326 ;; That since there typically are nested whitespace inside that
1327 ;; must be handled separately, e.g. whitespace inside a comment or
1328 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1329 ;; to jump to another point with that property within the same
1330 ;; `c-in-sws' region. It can be likened to a ladder where
1331 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1332 ;;
1333 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1334 ;; a "rung position" and also maybe on the first following char.
1335 ;; As many characters as can be conveniently found in this range
1336 ;; are marked, but no assumption can be made that the whole range
1337 ;; is marked (it could be clobbered by later changes, for
1338 ;; instance).
1339 ;;
1340 ;; Note that some part of the beginning of a sequence of simple
1341 ;; whitespace might be part of the end of a preceding line comment
1342 ;; or cpp directive and must not be considered part of the "rung".
1343 ;; Such whitespace is some amount of horizontal whitespace followed
1344 ;; by a newline. In the case of cpp directives it could also be
1345 ;; two newlines with horizontal whitespace between them.
1346 ;;
1347 ;; The reason to include the first following char is to cope with
1348 ;; "rung positions" that doesn't have any ordinary whitespace. If
1349 ;; `c-is-sws' is put on a token character it does not have
1350 ;; `c-in-sws' set simultaneously. That's the only case when that
1351 ;; can occur, and the reason for not extending the `c-in-sws'
1352 ;; region to cover it is that the `c-in-sws' region could then be
1353 ;; accidentally merged with a following one if the token is only
1354 ;; one character long.
1355 ;;
1356 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1357 ;; removed in the changed region. If the change was inside
1358 ;; syntactic whitespace that means that the "ladder" is broken, but
1359 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1360 ;; parts on either side and use an ordinary search only to "repair"
1361 ;; the gap.
1362 ;;
1363 ;; Special care needs to be taken if a region is removed: If there
1364 ;; are `c-in-sws' on both sides of it which do not connect inside
1365 ;; the region then they can't be joined. If e.g. a marked macro is
1366 ;; broken, syntactic whitespace inside the new text might be
1367 ;; marked. If those marks would become connected with the old
1368 ;; `c-in-sws' range around the macro then we could get a ladder
1369 ;; with one end outside the macro and the other at some whitespace
1370 ;; within it.
1371 ;;
1372 ;; The main motivation for this system is to increase the speed in
1373 ;; skipping over the large whitespace regions that can occur at the
1374 ;; top level in e.g. header files that contain a lot of comments and
1375 ;; cpp directives. For small comments inside code it's probably
1376 ;; slower than using `forward-comment' straightforwardly, but speed is
1377 ;; not a significant factor there anyway.
1378
1379 ; (defface c-debug-is-sws-face
1380 ; '((t (:background "GreenYellow")))
1381 ; "Debug face to mark the `c-is-sws' property.")
1382 ; (defface c-debug-in-sws-face
1383 ; '((t (:underline t)))
1384 ; "Debug face to mark the `c-in-sws' property.")
1385
1386 ; (defun c-debug-put-sws-faces ()
1387 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1388 ; ;; properties in the buffer.
1389 ; (interactive)
1390 ; (save-excursion
1391 ; (c-save-buffer-state (in-face)
1392 ; (goto-char (point-min))
1393 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1394 ; (point)))
1395 ; (while (progn
1396 ; (goto-char (next-single-property-change
1397 ; (point) 'c-is-sws nil (point-max)))
1398 ; (if in-face
1399 ; (progn
1400 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1401 ; (setq in-face nil))
1402 ; (setq in-face (point)))
1403 ; (not (eobp))))
1404 ; (goto-char (point-min))
1405 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1406 ; (point)))
1407 ; (while (progn
1408 ; (goto-char (next-single-property-change
1409 ; (point) 'c-in-sws nil (point-max)))
1410 ; (if in-face
1411 ; (progn
1412 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1413 ; (setq in-face nil))
1414 ; (setq in-face (point)))
1415 ; (not (eobp)))))))
1416
1417 (defmacro c-debug-sws-msg (&rest args)
1418 ;;`(message ,@args)
1419 )
1420
1421 (defmacro c-put-is-sws (beg end)
1422 ;; This macro does a hidden buffer change.
1423 `(let ((beg ,beg) (end ,end))
1424 (put-text-property beg end 'c-is-sws t)
1425 ,@(when (facep 'c-debug-is-sws-face)
1426 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1427
1428 (defmacro c-put-in-sws (beg end)
1429 ;; This macro does a hidden buffer change.
1430 `(let ((beg ,beg) (end ,end))
1431 (put-text-property beg end 'c-in-sws t)
1432 ,@(when (facep 'c-debug-is-sws-face)
1433 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1434
1435 (defmacro c-remove-is-sws (beg end)
1436 ;; This macro does a hidden buffer change.
1437 `(let ((beg ,beg) (end ,end))
1438 (remove-text-properties beg end '(c-is-sws nil))
1439 ,@(when (facep 'c-debug-is-sws-face)
1440 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1441
1442 (defmacro c-remove-in-sws (beg end)
1443 ;; This macro does a hidden buffer change.
1444 `(let ((beg ,beg) (end ,end))
1445 (remove-text-properties beg end '(c-in-sws nil))
1446 ,@(when (facep 'c-debug-is-sws-face)
1447 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1448
1449 (defmacro c-remove-is-and-in-sws (beg end)
1450 ;; This macro does a hidden buffer change.
1451 `(let ((beg ,beg) (end ,end))
1452 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1453 ,@(when (facep 'c-debug-is-sws-face)
1454 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1455 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1456
1457 (defsubst c-invalidate-sws-region-after (beg end)
1458 ;; Called from `after-change-functions'. Note that if
1459 ;; `c-forward-sws' or `c-backward-sws' are used outside
1460 ;; `c-save-buffer-state' or similar then this will remove the cache
1461 ;; properties right after they're added.
1462 ;;
1463 ;; This function does hidden buffer changes.
1464
1465 (save-excursion
1466 ;; Adjust the end to remove the properties in any following simple
1467 ;; ws up to and including the next line break, if there is any
1468 ;; after the changed region. This is necessary e.g. when a rung
1469 ;; marked empty line is converted to a line comment by inserting
1470 ;; "//" before the line break. In that case the line break would
1471 ;; keep the rung mark which could make a later `c-backward-sws'
1472 ;; move into the line comment instead of over it.
1473 (goto-char end)
1474 (skip-chars-forward " \t\f\v")
1475 (when (and (eolp) (not (eobp)))
1476 (setq end (1+ (point)))))
1477
1478 (when (and (= beg end)
1479 (get-text-property beg 'c-in-sws)
1480 (> beg (point-min))
1481 (get-text-property (1- beg) 'c-in-sws))
1482 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1483 ;; safe to keep a range that was continuous before the change. E.g:
1484 ;;
1485 ;; #define foo
1486 ;; \
1487 ;; bar
1488 ;;
1489 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1490 ;; after "foo" is removed then "bar" will become part of the cpp
1491 ;; directive instead of a syntactically relevant token. In that
1492 ;; case there's no longer syntactic ws from "#" to "b".
1493 (setq beg (1- beg)))
1494
1495 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1496 (c-remove-is-and-in-sws beg end))
1497
1498 (defun c-forward-sws ()
1499 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1500 ;;
1501 ;; This function might do hidden buffer changes.
1502
1503 (let (;; `rung-pos' is set to a position as early as possible in the
1504 ;; unmarked part of the simple ws region.
1505 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1506 rung-is-marked next-rung-is-marked simple-ws-end
1507 ;; `safe-start' is set when it's safe to cache the start position.
1508 ;; It's not set if we've initially skipped over comments and line
1509 ;; continuations since we might have gone out through the end of a
1510 ;; macro then. This provision makes `c-forward-sws' not populate the
1511 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1512 ;; more common.
1513 safe-start)
1514
1515 ;; Skip simple ws and do a quick check on the following character to see
1516 ;; if it's anything that can't start syntactic ws, so we can bail out
1517 ;; early in the majority of cases when there just are a few ws chars.
1518 (skip-chars-forward " \t\n\r\f\v")
1519 (when (looking-at c-syntactic-ws-start)
1520
1521 (setq rung-end-pos (min (1+ (point)) (point-max)))
1522 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1523 'c-is-sws t))
1524 ;; Find the last rung position to avoid setting properties in all
1525 ;; the cases when the marked rung is complete.
1526 ;; (`next-single-property-change' is certain to move at least one
1527 ;; step forward.)
1528 (setq rung-pos (1- (next-single-property-change
1529 rung-is-marked 'c-is-sws nil rung-end-pos)))
1530 ;; Got no marked rung here. Since the simple ws might have started
1531 ;; inside a line comment or cpp directive we must set `rung-pos' as
1532 ;; high as possible.
1533 (setq rung-pos (point)))
1534
1535 (while
1536 (progn
1537 (while
1538 (when (and rung-is-marked
1539 (get-text-property (point) 'c-in-sws))
1540
1541 ;; The following search is the main reason that `c-in-sws'
1542 ;; and `c-is-sws' aren't combined to one property.
1543 (goto-char (next-single-property-change
1544 (point) 'c-in-sws nil (point-max)))
1545 (unless (get-text-property (point) 'c-is-sws)
1546 ;; If the `c-in-sws' region extended past the last
1547 ;; `c-is-sws' char we have to go back a bit.
1548 (or (get-text-property (1- (point)) 'c-is-sws)
1549 (goto-char (previous-single-property-change
1550 (point) 'c-is-sws)))
1551 (backward-char))
1552
1553 (c-debug-sws-msg
1554 "c-forward-sws cached move %s -> %s (max %s)"
1555 rung-pos (point) (point-max))
1556
1557 (setq rung-pos (point))
1558 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1559 (not (eobp))))
1560
1561 ;; We'll loop here if there is simple ws after the last rung.
1562 ;; That means that there's been some change in it and it's
1563 ;; possible that we've stepped into another ladder, so extend
1564 ;; the previous one to join with it if there is one, and try to
1565 ;; use the cache again.
1566 (c-debug-sws-msg
1567 "c-forward-sws extending rung with [%s..%s] (max %s)"
1568 (1+ rung-pos) (1+ (point)) (point-max))
1569 (unless (get-text-property (point) 'c-is-sws)
1570 ;; Remove any `c-in-sws' property from the last char of
1571 ;; the rung before we mark it with `c-is-sws', so that we
1572 ;; won't connect with the remains of a broken "ladder".
1573 (c-remove-in-sws (point) (1+ (point))))
1574 (c-put-is-sws (1+ rung-pos)
1575 (1+ (point)))
1576 (c-put-in-sws rung-pos
1577 (setq rung-pos (point)
1578 last-put-in-sws-pos rung-pos)))
1579
1580 (setq simple-ws-end (point))
1581 (c-forward-comments)
1582
1583 (cond
1584 ((/= (point) simple-ws-end)
1585 ;; Skipped over comments. Don't cache at eob in case the buffer
1586 ;; is narrowed.
1587 (not (eobp)))
1588
1589 ((save-excursion
1590 (and c-opt-cpp-prefix
1591 (looking-at c-opt-cpp-start)
1592 (progn (skip-chars-backward " \t")
1593 (bolp))
1594 (or (bobp)
1595 (progn (backward-char)
1596 (not (eq (char-before) ?\\))))))
1597 ;; Skip a preprocessor directive.
1598 (end-of-line)
1599 (while (and (eq (char-before) ?\\)
1600 (= (forward-line 1) 0))
1601 (end-of-line))
1602 (forward-line 1)
1603 (setq safe-start t)
1604 ;; Don't cache at eob in case the buffer is narrowed.
1605 (not (eobp)))))
1606
1607 ;; We've searched over a piece of non-white syntactic ws. See if this
1608 ;; can be cached.
1609 (setq next-rung-pos (point))
1610 (skip-chars-forward " \t\n\r\f\v")
1611 (setq rung-end-pos (min (1+ (point)) (point-max)))
1612
1613 (if (or
1614 ;; Cache if we haven't skipped comments only, and if we started
1615 ;; either from a marked rung or from a completely uncached
1616 ;; position.
1617 (and safe-start
1618 (or rung-is-marked
1619 (not (get-text-property simple-ws-end 'c-in-sws))))
1620
1621 ;; See if there's a marked rung in the encountered simple ws. If
1622 ;; so then we can cache, unless `safe-start' is nil. Even then
1623 ;; we need to do this to check if the cache can be used for the
1624 ;; next step.
1625 (and (setq next-rung-is-marked
1626 (text-property-any next-rung-pos rung-end-pos
1627 'c-is-sws t))
1628 safe-start))
1629
1630 (progn
1631 (c-debug-sws-msg
1632 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1633 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1634 (point-max))
1635
1636 ;; Remove the properties for any nested ws that might be cached.
1637 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1638 ;; anyway.
1639 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1640 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1641 (c-put-is-sws rung-pos
1642 (1+ simple-ws-end))
1643 (setq rung-is-marked t))
1644 (c-put-in-sws rung-pos
1645 (setq rung-pos (point)
1646 last-put-in-sws-pos rung-pos))
1647 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1648 ;; Remove any `c-in-sws' property from the last char of
1649 ;; the rung before we mark it with `c-is-sws', so that we
1650 ;; won't connect with the remains of a broken "ladder".
1651 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1652 (c-put-is-sws next-rung-pos
1653 rung-end-pos))
1654
1655 (c-debug-sws-msg
1656 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1657 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1658 (point-max))
1659
1660 ;; Set `rung-pos' for the next rung. It's the same thing here as
1661 ;; initially, except that the rung position is set as early as
1662 ;; possible since we can't be in the ending ws of a line comment or
1663 ;; cpp directive now.
1664 (if (setq rung-is-marked next-rung-is-marked)
1665 (setq rung-pos (1- (next-single-property-change
1666 rung-is-marked 'c-is-sws nil rung-end-pos)))
1667 (setq rung-pos next-rung-pos))
1668 (setq safe-start t)))
1669
1670 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1671 ;; another one after the point (which might occur when editing inside a
1672 ;; comment or macro).
1673 (when (eq last-put-in-sws-pos (point))
1674 (cond ((< last-put-in-sws-pos (point-max))
1675 (c-debug-sws-msg
1676 "c-forward-sws clearing at %s for cache separation"
1677 last-put-in-sws-pos)
1678 (c-remove-in-sws last-put-in-sws-pos
1679 (1+ last-put-in-sws-pos)))
1680 (t
1681 ;; If at eob we have to clear the last character before the end
1682 ;; instead since the buffer might be narrowed and there might
1683 ;; be a `c-in-sws' after (point-max). In this case it's
1684 ;; necessary to clear both properties.
1685 (c-debug-sws-msg
1686 "c-forward-sws clearing thoroughly at %s for cache separation"
1687 (1- last-put-in-sws-pos))
1688 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1689 last-put-in-sws-pos))))
1690 )))
1691
1692 (defun c-backward-sws ()
1693 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1694 ;;
1695 ;; This function might do hidden buffer changes.
1696
1697 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1698 ;; part of the simple ws region.
1699 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1700 rung-is-marked simple-ws-beg cmt-skip-pos)
1701
1702 ;; Skip simple horizontal ws and do a quick check on the preceding
1703 ;; character to see if it's anying that can't end syntactic ws, so we can
1704 ;; bail out early in the majority of cases when there just are a few ws
1705 ;; chars. Newlines are complicated in the backward direction, so we can't
1706 ;; skip over them.
1707 (skip-chars-backward " \t\f")
1708 (when (and (not (bobp))
1709 (save-excursion
1710 (backward-char)
1711 (looking-at c-syntactic-ws-end)))
1712
1713 ;; Try to find a rung position in the simple ws preceding point, so that
1714 ;; we can get a cache hit even if the last bit of the simple ws has
1715 ;; changed recently.
1716 (setq simple-ws-beg (point))
1717 (skip-chars-backward " \t\n\r\f\v")
1718 (if (setq rung-is-marked (text-property-any
1719 (point) (min (1+ rung-pos) (point-max))
1720 'c-is-sws t))
1721 ;; `rung-pos' will be the earliest marked position, which means that
1722 ;; there might be later unmarked parts in the simple ws region.
1723 ;; It's not worth the effort to fix that; the last part of the
1724 ;; simple ws is also typically edited often, so it could be wasted.
1725 (goto-char (setq rung-pos rung-is-marked))
1726 (goto-char simple-ws-beg))
1727
1728 (while
1729 (progn
1730 (while
1731 (when (and rung-is-marked
1732 (not (bobp))
1733 (get-text-property (1- (point)) 'c-in-sws))
1734
1735 ;; The following search is the main reason that `c-in-sws'
1736 ;; and `c-is-sws' aren't combined to one property.
1737 (goto-char (previous-single-property-change
1738 (point) 'c-in-sws nil (point-min)))
1739 (unless (get-text-property (point) 'c-is-sws)
1740 ;; If the `c-in-sws' region extended past the first
1741 ;; `c-is-sws' char we have to go forward a bit.
1742 (goto-char (next-single-property-change
1743 (point) 'c-is-sws)))
1744
1745 (c-debug-sws-msg
1746 "c-backward-sws cached move %s <- %s (min %s)"
1747 (point) rung-pos (point-min))
1748
1749 (setq rung-pos (point))
1750 (if (and (< (min (skip-chars-backward " \t\f\v")
1751 (progn
1752 (setq simple-ws-beg (point))
1753 (skip-chars-backward " \t\n\r\f\v")))
1754 0)
1755 (setq rung-is-marked
1756 (text-property-any (point) rung-pos
1757 'c-is-sws t)))
1758 t
1759 (goto-char simple-ws-beg)
1760 nil))
1761
1762 ;; We'll loop here if there is simple ws before the first rung.
1763 ;; That means that there's been some change in it and it's
1764 ;; possible that we've stepped into another ladder, so extend
1765 ;; the previous one to join with it if there is one, and try to
1766 ;; use the cache again.
1767 (c-debug-sws-msg
1768 "c-backward-sws extending rung with [%s..%s] (min %s)"
1769 rung-is-marked rung-pos (point-min))
1770 (unless (get-text-property (1- rung-pos) 'c-is-sws)
1771 ;; Remove any `c-in-sws' property from the last char of
1772 ;; the rung before we mark it with `c-is-sws', so that we
1773 ;; won't connect with the remains of a broken "ladder".
1774 (c-remove-in-sws (1- rung-pos) rung-pos))
1775 (c-put-is-sws rung-is-marked
1776 rung-pos)
1777 (c-put-in-sws rung-is-marked
1778 (1- rung-pos))
1779 (setq rung-pos rung-is-marked
1780 last-put-in-sws-pos rung-pos))
1781
1782 (c-backward-comments)
1783 (setq cmt-skip-pos (point))
1784
1785 (cond
1786 ((and c-opt-cpp-prefix
1787 (/= cmt-skip-pos simple-ws-beg)
1788 (c-beginning-of-macro))
1789 ;; Inside a cpp directive. See if it should be skipped over.
1790 (let ((cpp-beg (point)))
1791
1792 ;; Move back over all line continuations in the region skipped
1793 ;; over by `c-backward-comments'. If we go past it then we
1794 ;; started inside the cpp directive.
1795 (goto-char simple-ws-beg)
1796 (beginning-of-line)
1797 (while (and (> (point) cmt-skip-pos)
1798 (progn (backward-char)
1799 (eq (char-before) ?\\)))
1800 (beginning-of-line))
1801
1802 (if (< (point) cmt-skip-pos)
1803 ;; Don't move past the cpp directive if we began inside
1804 ;; it. Note that the position at the end of the last line
1805 ;; of the macro is also considered to be within it.
1806 (progn (goto-char cmt-skip-pos)
1807 nil)
1808
1809 ;; It's worthwhile to spend a little bit of effort on finding
1810 ;; the end of the macro, to get a good `simple-ws-beg'
1811 ;; position for the cache. Note that `c-backward-comments'
1812 ;; could have stepped over some comments before going into
1813 ;; the macro, and then `simple-ws-beg' must be kept on the
1814 ;; same side of those comments.
1815 (goto-char simple-ws-beg)
1816 (skip-chars-backward " \t\n\r\f\v")
1817 (if (eq (char-before) ?\\)
1818 (forward-char))
1819 (forward-line 1)
1820 (if (< (point) simple-ws-beg)
1821 ;; Might happen if comments after the macro were skipped
1822 ;; over.
1823 (setq simple-ws-beg (point)))
1824
1825 (goto-char cpp-beg)
1826 t)))
1827
1828 ((/= (save-excursion
1829 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
1830 (setq next-rung-pos (point)))
1831 simple-ws-beg)
1832 ;; Skipped over comments. Must put point at the end of
1833 ;; the simple ws at point since we might be after a line
1834 ;; comment or cpp directive that's been partially
1835 ;; narrowed out, and we can't risk marking the simple ws
1836 ;; at the end of it.
1837 (goto-char next-rung-pos)
1838 t)))
1839
1840 ;; We've searched over a piece of non-white syntactic ws. See if this
1841 ;; can be cached.
1842 (setq next-rung-pos (point))
1843 (skip-chars-backward " \t\f\v")
1844
1845 (if (or
1846 ;; Cache if we started either from a marked rung or from a
1847 ;; completely uncached position.
1848 rung-is-marked
1849 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
1850
1851 ;; Cache if there's a marked rung in the encountered simple ws.
1852 (save-excursion
1853 (skip-chars-backward " \t\n\r\f\v")
1854 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
1855 'c-is-sws t)))
1856
1857 (progn
1858 (c-debug-sws-msg
1859 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
1860 (point) (1+ next-rung-pos)
1861 simple-ws-beg (min (1+ rung-pos) (point-max))
1862 (point-min))
1863
1864 ;; Remove the properties for any nested ws that might be cached.
1865 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1866 ;; anyway.
1867 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
1868 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
1869 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
1870 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1871 ;; Remove any `c-in-sws' property from the last char of
1872 ;; the rung before we mark it with `c-is-sws', so that we
1873 ;; won't connect with the remains of a broken "ladder".
1874 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1875 (c-put-is-sws simple-ws-beg
1876 rung-end-pos)
1877 (setq rung-is-marked t)))
1878 (c-put-in-sws (setq simple-ws-beg (point)
1879 last-put-in-sws-pos simple-ws-beg)
1880 rung-pos)
1881 (c-put-is-sws (setq rung-pos simple-ws-beg)
1882 (1+ next-rung-pos)))
1883
1884 (c-debug-sws-msg
1885 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
1886 (point) (1+ next-rung-pos)
1887 simple-ws-beg (min (1+ rung-pos) (point-max))
1888 (point-min))
1889 (setq rung-pos next-rung-pos
1890 simple-ws-beg (point))
1891 ))
1892
1893 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1894 ;; another one before the point (which might occur when editing inside a
1895 ;; comment or macro).
1896 (when (eq last-put-in-sws-pos (point))
1897 (cond ((< (point-min) last-put-in-sws-pos)
1898 (c-debug-sws-msg
1899 "c-backward-sws clearing at %s for cache separation"
1900 (1- last-put-in-sws-pos))
1901 (c-remove-in-sws (1- last-put-in-sws-pos)
1902 last-put-in-sws-pos))
1903 ((> (point-min) 1)
1904 ;; If at bob and the buffer is narrowed, we have to clear the
1905 ;; character we're standing on instead since there might be a
1906 ;; `c-in-sws' before (point-min). In this case it's necessary
1907 ;; to clear both properties.
1908 (c-debug-sws-msg
1909 "c-backward-sws clearing thoroughly at %s for cache separation"
1910 last-put-in-sws-pos)
1911 (c-remove-is-and-in-sws last-put-in-sws-pos
1912 (1+ last-put-in-sws-pos)))))
1913 )))
1914
1915 \f
1916 ;; Other whitespace tools
1917 (defun c-partial-ws-p (beg end)
1918 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
1919 ;; region? This is a "heuristic" function. .....
1920 ;;
1921 ;; The motivation for the second bit is to check whether removing this
1922 ;; region would coalesce two symbols.
1923 ;;
1924 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
1925 ;; careful about using this function for, e.g. AWK. (2007/3/7)
1926 (save-excursion
1927 (let ((end+1 (min (1+ end) (point-max))))
1928 (or (progn (goto-char (max (point-min) (1- beg)))
1929 (c-skip-ws-forward end)
1930 (eq (point) end))
1931 (progn (goto-char beg)
1932 (c-skip-ws-forward end+1)
1933 (eq (point) end+1))))))
1934 \f
1935 ;; A system for finding noteworthy parens before the point.
1936
1937 (defvar c-state-cache nil)
1938 (make-variable-buffer-local 'c-state-cache)
1939 ;; The state cache used by `c-parse-state' to cut down the amount of
1940 ;; searching. It's the result from some earlier `c-parse-state' call.
1941 ;;
1942 ;; The use of the cached info is more effective if the next
1943 ;; `c-parse-state' call is on a line close by the one the cached state
1944 ;; was made at; the cache can actually slow down a little if the
1945 ;; cached state was made very far back in the buffer. The cache is
1946 ;; most effective if `c-parse-state' is used on each line while moving
1947 ;; forward.
1948
1949 (defvar c-state-cache-start 1)
1950 (make-variable-buffer-local 'c-state-cache-start)
1951 ;; This is (point-min) when `c-state-cache' was calculated, since a
1952 ;; change of narrowing is likely to affect the parens that are visible
1953 ;; before the point.
1954
1955 (defvar c-state-cache-good-pos 1)
1956 (make-variable-buffer-local 'c-state-cache-good-pos)
1957 ;; This is a position where `c-state-cache' is known to be correct.
1958 ;; It's a position inside one of the recorded unclosed parens or the
1959 ;; top level, but not further nested inside any literal or subparen
1960 ;; that is closed before the last recorded position.
1961 ;;
1962 ;; The exact position is chosen to try to be close to yet earlier than
1963 ;; the position where `c-state-cache' will be called next. Right now
1964 ;; the heuristic is to set it to the position after the last found
1965 ;; closing paren (of any type) before the line on which
1966 ;; `c-parse-state' was called. That is chosen primarily to work well
1967 ;; with refontification of the current line.
1968
1969 (defsubst c-invalidate-state-cache (pos)
1970 ;; Invalidate all info on `c-state-cache' that applies to the buffer
1971 ;; at POS or higher. This is much like `c-whack-state-after', but
1972 ;; it never changes a paren pair element into an open paren element.
1973 ;; Doing that would mean that the new open paren wouldn't have the
1974 ;; required preceding paren pair element.
1975 (while (and (or c-state-cache
1976 (when (< pos c-state-cache-good-pos)
1977 (setq c-state-cache-good-pos 1)
1978 nil))
1979 (let ((elem (car c-state-cache)))
1980 (if (consp elem)
1981 (or (< pos (cdr elem))
1982 (when (< pos c-state-cache-good-pos)
1983 (setq c-state-cache-good-pos (cdr elem))
1984 nil))
1985 (or (<= pos elem)
1986 (when (< pos c-state-cache-good-pos)
1987 (setq c-state-cache-good-pos (1+ elem))
1988 nil)))))
1989 (setq c-state-cache (cdr c-state-cache))))
1990
1991 (defun c-get-fallback-start-pos (here)
1992 ;; Return the start position for building `c-state-cache' from
1993 ;; scratch.
1994 (save-excursion
1995 ;; Go back 2 bods, but ignore any bogus positions returned by
1996 ;; beginning-of-defun (i.e. open paren in column zero).
1997 (goto-char here)
1998 (let ((cnt 2))
1999 (while (not (or (bobp) (zerop cnt)))
2000 (c-beginning-of-defun-1)
2001 (if (eq (char-after) ?\{)
2002 (setq cnt (1- cnt)))))
2003 (point)))
2004
2005 (defun c-parse-state ()
2006 ;; Find and record all noteworthy parens between some good point
2007 ;; earlier in the file and point. That good point is at least the
2008 ;; beginning of the top-level construct we are in, or the beginning
2009 ;; of the preceding top-level construct if we aren't in one.
2010 ;;
2011 ;; The returned value is a list of the noteworthy parens with the
2012 ;; last one first. If an element in the list is an integer, it's
2013 ;; the position of an open paren which has not been closed before
2014 ;; the point. If an element is a cons, it gives the position of a
2015 ;; closed brace paren pair; the car is the start paren position and
2016 ;; the cdr is the position following the closing paren. Only the
2017 ;; last closed brace paren pair before each open paren and before
2018 ;; the point is recorded, and thus the state never contains two cons
2019 ;; elements in succession.
2020 ;;
2021 ;; Currently no characters which are given paren syntax with the
2022 ;; syntax-table property are recorded, i.e. angle bracket arglist
2023 ;; parens are never present here. Note that this might change.
2024 ;;
2025 ;; BUG: This function doesn't cope entirely well with unbalanced
2026 ;; parens in macros. E.g. in the following case the brace before
2027 ;; the macro isn't balanced with the one after it:
2028 ;;
2029 ;; {
2030 ;; #define X {
2031 ;; }
2032 ;;
2033 ;; This function might do hidden buffer changes.
2034
2035 (save-restriction
2036 (let* ((here (point))
2037 (here-bol (c-point 'bol))
2038 (c-macro-start (c-query-macro-start))
2039 (in-macro-start (or c-macro-start (point)))
2040 old-state last-pos brace-pair-open brace-pair-close
2041 pos save-pos)
2042 (c-invalidate-state-cache here)
2043
2044 ;; If the minimum position has changed due to narrowing then we
2045 ;; have to fix the tail of `c-state-cache' accordingly.
2046 (unless (= c-state-cache-start (point-min))
2047 (if (> (point-min) c-state-cache-start)
2048 ;; If point-min has moved forward then we just need to cut
2049 ;; off a bit of the tail.
2050 (let ((ptr (cons nil c-state-cache)) elem)
2051 (while (and (setq elem (car-safe (cdr ptr)))
2052 (>= (if (consp elem) (car elem) elem)
2053 (point-min)))
2054 (setq ptr (cdr ptr)))
2055 (when (consp ptr)
2056 (if (eq (cdr ptr) c-state-cache)
2057 (setq c-state-cache nil
2058 c-state-cache-good-pos 1)
2059 (setcdr ptr nil))))
2060 ;; If point-min has moved backward then we drop the state
2061 ;; completely. It's possible to do a better job here and
2062 ;; recalculate the top only.
2063 (setq c-state-cache nil
2064 c-state-cache-good-pos 1))
2065 (setq c-state-cache-start (point-min)))
2066
2067 ;; Get the latest position we know are directly inside the
2068 ;; closest containing paren of the cached state.
2069 (setq last-pos (and c-state-cache
2070 (if (consp (car c-state-cache))
2071 (cdr (car c-state-cache))
2072 (1+ (car c-state-cache)))))
2073 (if (or (not last-pos)
2074 (< last-pos c-state-cache-good-pos))
2075 (setq last-pos c-state-cache-good-pos)
2076 ;; Take the opportunity to move the cached good position
2077 ;; further down.
2078 (if (< last-pos here-bol)
2079 (setq c-state-cache-good-pos last-pos)))
2080
2081 ;; Check if `last-pos' is in a macro. If it is, and we're not
2082 ;; in the same macro, we must discard everything on
2083 ;; `c-state-cache' that is inside the macro before using it.
2084 (save-excursion
2085 (goto-char last-pos)
2086 (when (and (c-beginning-of-macro)
2087 (/= (point) in-macro-start))
2088 (c-invalidate-state-cache (point))
2089 ;; Set `last-pos' again just like above except that there's
2090 ;; no use looking at `c-state-cache-good-pos' here.
2091 (setq last-pos (if c-state-cache
2092 (if (consp (car c-state-cache))
2093 (cdr (car c-state-cache))
2094 (1+ (car c-state-cache)))
2095 1))))
2096
2097 ;; If we've moved very far from the last cached position then
2098 ;; it's probably better to redo it from scratch, otherwise we
2099 ;; might spend a lot of time searching from `last-pos' down to
2100 ;; here.
2101 (when (< last-pos (- here 20000))
2102 ;; First get the fallback start position. If it turns out
2103 ;; that it's so far back that the cached state is closer then
2104 ;; we'll keep it afterall.
2105 (setq pos (c-get-fallback-start-pos here))
2106 (if (<= pos last-pos)
2107 (setq pos nil)
2108 (setq last-pos nil
2109 c-state-cache nil
2110 c-state-cache-good-pos 1)))
2111
2112 ;; Find the start position for the forward search. (Can't
2113 ;; search in the backward direction since the point might be in
2114 ;; some kind of literal.)
2115
2116 (unless pos
2117 (setq old-state c-state-cache)
2118
2119 ;; There's a cached state with a containing paren. Pop off
2120 ;; the stale containing sexps from it by going forward out of
2121 ;; parens as far as possible.
2122 (narrow-to-region (point-min) here)
2123 (let (placeholder pair-beg)
2124 (while (and c-state-cache
2125 (setq placeholder
2126 (c-up-list-forward last-pos)))
2127 (setq last-pos placeholder)
2128 (if (consp (car c-state-cache))
2129 (setq pair-beg (car-safe (cdr c-state-cache))
2130 c-state-cache (cdr-safe (cdr c-state-cache)))
2131 (setq pair-beg (car c-state-cache)
2132 c-state-cache (cdr c-state-cache))))
2133
2134 (when (and pair-beg (eq (char-after pair-beg) ?{))
2135 ;; The last paren pair we moved out from was a brace
2136 ;; pair. Modify the state to record this as a closed
2137 ;; pair now.
2138 (if (consp (car-safe c-state-cache))
2139 (setq c-state-cache (cdr c-state-cache)))
2140 (setq c-state-cache (cons (cons pair-beg last-pos)
2141 c-state-cache))))
2142
2143 ;; Check if the preceding balanced paren is within a
2144 ;; macro; it should be ignored if we're outside the
2145 ;; macro. There's no need to check any further upwards;
2146 ;; if the macro contains an unbalanced opening paren then
2147 ;; we're smoked anyway.
2148 (when (and (<= (point) in-macro-start)
2149 (consp (car c-state-cache)))
2150 (save-excursion
2151 (goto-char (car (car c-state-cache)))
2152 (when (c-beginning-of-macro)
2153 (setq here (point)
2154 c-state-cache (cdr c-state-cache)))))
2155
2156 (unless (eq c-state-cache old-state)
2157 ;; Have to adjust the cached good position if state has been
2158 ;; popped off.
2159 (setq c-state-cache-good-pos
2160 (if c-state-cache
2161 (if (consp (car c-state-cache))
2162 (cdr (car c-state-cache))
2163 (1+ (car c-state-cache)))
2164 1)
2165 old-state c-state-cache))
2166
2167 (when c-state-cache
2168 (setq pos last-pos)))
2169
2170 ;; Get the fallback start position.
2171 (unless pos
2172 (setq pos (c-get-fallback-start-pos here)
2173 c-state-cache nil
2174 c-state-cache-good-pos 1))
2175
2176 (narrow-to-region (point-min) here)
2177
2178 (while pos
2179 (setq save-pos pos
2180 brace-pair-open nil)
2181
2182 ;; Find the balanced brace pairs. This loop is hot, so it
2183 ;; does ugly tricks to go faster.
2184 (c-safe
2185 (let (set-good-pos set-brace-pair)
2186 (while t
2187 (setq last-pos nil
2188 last-pos (scan-lists pos 1 -1)) ; Might signal.
2189 (setq pos (scan-lists last-pos 1 1) ; Might signal.
2190 set-good-pos (< pos here-bol)
2191 set-brace-pair (eq (char-before last-pos) ?{))
2192
2193 ;; Update the cached good position and record the brace
2194 ;; pair, whichever is applicable for the paren we've
2195 ;; just jumped over. But first check that it isn't
2196 ;; inside a macro and the point isn't inside the same
2197 ;; one.
2198 (when (and (or set-good-pos set-brace-pair)
2199 (or (>= pos in-macro-start)
2200 (save-excursion
2201 (goto-char pos)
2202 (not (c-beginning-of-macro)))))
2203 (if set-good-pos
2204 (setq c-state-cache-good-pos pos))
2205 (if set-brace-pair
2206 (setq brace-pair-open last-pos
2207 brace-pair-close pos))))))
2208
2209 ;; Record the last brace pair.
2210 (when brace-pair-open
2211 (let ((head (car-safe c-state-cache)))
2212 (if (consp head)
2213 (progn
2214 (setcar head (1- brace-pair-open))
2215 (setcdr head brace-pair-close))
2216 (setq c-state-cache (cons (cons (1- brace-pair-open)
2217 brace-pair-close)
2218 c-state-cache)))))
2219
2220 (if last-pos
2221 ;; Prepare to loop, but record the open paren only if it's
2222 ;; outside a macro or within the same macro as point, and
2223 ;; if it is a legitimate open paren and not some character
2224 ;; that got an open paren syntax-table property.
2225 (progn
2226 (setq pos last-pos)
2227 (when (and (or (>= last-pos in-macro-start)
2228 (save-excursion
2229 (goto-char last-pos)
2230 (not (c-beginning-of-macro))))
2231 ;; Check for known types of parens that we
2232 ;; want to record. The syntax table is not to
2233 ;; be trusted here since the caller might be
2234 ;; using e.g. `c++-template-syntax-table'.
2235 (memq (char-before last-pos) '(?{ ?\( ?\[)))
2236 (if (< last-pos here-bol)
2237 (setq c-state-cache-good-pos last-pos))
2238 (setq c-state-cache (cons (1- last-pos) c-state-cache))))
2239
2240 (if (setq last-pos (c-up-list-forward pos))
2241 ;; Found a close paren without a corresponding opening
2242 ;; one. Maybe we didn't go back far enough, so try to
2243 ;; scan backward for the start paren and then start over.
2244 (progn
2245 (setq pos (c-up-list-backward pos)
2246 c-state-cache nil
2247 c-state-cache-good-pos c-state-cache-start)
2248 (when (or (not pos)
2249 ;; Emacs (up to at least 21.2) can get confused by
2250 ;; open parens in column zero inside comments: The
2251 ;; sexp functions can then misbehave and bring us
2252 ;; back to the same point again. Check this so that
2253 ;; we don't get an infinite loop.
2254 (>= pos save-pos))
2255 (setq pos last-pos
2256 c-parsing-error
2257 (format "Unbalanced close paren at line %d"
2258 (1+ (count-lines (point-min)
2259 (c-point 'bol last-pos)))))))
2260 (setq pos nil))))
2261
2262 ;;(message "c-parse-state: %S end: %S" c-state-cache c-state-cache-good-pos)
2263 c-state-cache)))
2264
2265 ;; Debug tool to catch cache inconsistencies.
2266 (defvar c-debug-parse-state nil)
2267 (unless (fboundp 'c-real-parse-state)
2268 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
2269 (cc-bytecomp-defun c-real-parse-state)
2270 (defun c-debug-parse-state ()
2271 (let ((res1 (c-real-parse-state)) res2)
2272 (let ((c-state-cache nil)
2273 (c-state-cache-start 1)
2274 (c-state-cache-good-pos 1))
2275 (setq res2 (c-real-parse-state)))
2276 (unless (equal res1 res2)
2277 ;; The cache can actually go further back due to the ad-hoc way
2278 ;; the first paren is found, so try to whack off a bit of its
2279 ;; start before complaining.
2280 (save-excursion
2281 (goto-char (or (c-least-enclosing-brace res2) (point)))
2282 (c-beginning-of-defun-1)
2283 (while (not (or (bobp) (eq (char-after) ?{)))
2284 (c-beginning-of-defun-1))
2285 (unless (equal (c-whack-state-before (point) res1) res2)
2286 (message (concat "c-parse-state inconsistency: "
2287 "using cache: %s, from scratch: %s")
2288 res1 res2))))
2289 res1))
2290 (defun c-toggle-parse-state-debug (&optional arg)
2291 (interactive "P")
2292 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
2293 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
2294 'c-debug-parse-state
2295 'c-real-parse-state)))
2296 (c-keep-region-active))
2297 (when c-debug-parse-state
2298 (c-toggle-parse-state-debug 1))
2299
2300 (defun c-whack-state-before (bufpos paren-state)
2301 ;; Whack off any state information from PAREN-STATE which lies
2302 ;; before BUFPOS. Not destructive on PAREN-STATE.
2303 (let* ((newstate (list nil))
2304 (ptr newstate)
2305 car)
2306 (while paren-state
2307 (setq car (car paren-state)
2308 paren-state (cdr paren-state))
2309 (if (< (if (consp car) (car car) car) bufpos)
2310 (setq paren-state nil)
2311 (setcdr ptr (list car))
2312 (setq ptr (cdr ptr))))
2313 (cdr newstate)))
2314
2315 (defun c-whack-state-after (bufpos paren-state)
2316 ;; Whack off any state information from PAREN-STATE which lies at or
2317 ;; after BUFPOS. Not destructive on PAREN-STATE.
2318 (catch 'done
2319 (while paren-state
2320 (let ((car (car paren-state)))
2321 (if (consp car)
2322 ;; just check the car, because in a balanced brace
2323 ;; expression, it must be impossible for the corresponding
2324 ;; close brace to be before point, but the open brace to
2325 ;; be after.
2326 (if (<= bufpos (car car))
2327 nil ; whack it off
2328 (if (< bufpos (cdr car))
2329 ;; its possible that the open brace is before
2330 ;; bufpos, but the close brace is after. In that
2331 ;; case, convert this to a non-cons element. The
2332 ;; rest of the state is before bufpos, so we're
2333 ;; done.
2334 (throw 'done (cons (car car) (cdr paren-state)))
2335 ;; we know that both the open and close braces are
2336 ;; before bufpos, so we also know that everything else
2337 ;; on state is before bufpos.
2338 (throw 'done paren-state)))
2339 (if (<= bufpos car)
2340 nil ; whack it off
2341 ;; it's before bufpos, so everything else should too.
2342 (throw 'done paren-state)))
2343 (setq paren-state (cdr paren-state)))
2344 nil)))
2345
2346 (defun c-most-enclosing-brace (paren-state &optional bufpos)
2347 ;; Return the bufpos of the innermost enclosing open paren before
2348 ;; bufpos, or nil if none was found.
2349 (let (enclosingp)
2350 (or bufpos (setq bufpos 134217727))
2351 (while paren-state
2352 (setq enclosingp (car paren-state)
2353 paren-state (cdr paren-state))
2354 (if (or (consp enclosingp)
2355 (>= enclosingp bufpos))
2356 (setq enclosingp nil)
2357 (setq paren-state nil)))
2358 enclosingp))
2359
2360 (defun c-least-enclosing-brace (paren-state)
2361 ;; Return the bufpos of the outermost enclosing open paren, or nil
2362 ;; if none was found.
2363 (let (pos elem)
2364 (while paren-state
2365 (setq elem (car paren-state)
2366 paren-state (cdr paren-state))
2367 (if (integerp elem)
2368 (setq pos elem)))
2369 pos))
2370
2371 (defun c-safe-position (bufpos paren-state)
2372 ;; Return the closest "safe" position recorded on PAREN-STATE that
2373 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
2374 ;; contain any. Return nil if BUFPOS is nil, which is useful to
2375 ;; find the closest limit before a given limit that might be nil.
2376 ;;
2377 ;; A "safe" position is a position at or after a recorded open
2378 ;; paren, or after a recorded close paren. The returned position is
2379 ;; thus either the first position after a close brace, or the first
2380 ;; position after an enclosing paren, or at the enclosing paren in
2381 ;; case BUFPOS is immediately after it.
2382 (when bufpos
2383 (let (elem)
2384 (catch 'done
2385 (while paren-state
2386 (setq elem (car paren-state))
2387 (if (consp elem)
2388 (cond ((< (cdr elem) bufpos)
2389 (throw 'done (cdr elem)))
2390 ((< (car elem) bufpos)
2391 ;; See below.
2392 (throw 'done (min (1+ (car elem)) bufpos))))
2393 (if (< elem bufpos)
2394 ;; elem is the position at and not after the opening paren, so
2395 ;; we can go forward one more step unless it's equal to
2396 ;; bufpos. This is useful in some cases avoid an extra paren
2397 ;; level between the safe position and bufpos.
2398 (throw 'done (min (1+ elem) bufpos))))
2399 (setq paren-state (cdr paren-state)))))))
2400
2401 (defun c-beginning-of-syntax ()
2402 ;; This is used for `font-lock-beginning-of-syntax-function'. It
2403 ;; goes to the closest previous point that is known to be outside
2404 ;; any string literal or comment. `c-state-cache' is used if it has
2405 ;; a position in the vicinity.
2406 (let* ((paren-state c-state-cache)
2407 elem
2408
2409 (pos (catch 'done
2410 ;; Note: Similar code in `c-safe-position'. The
2411 ;; difference is that we accept a safe position at
2412 ;; the point and don't bother to go forward past open
2413 ;; parens.
2414 (while paren-state
2415 (setq elem (car paren-state))
2416 (if (consp elem)
2417 (cond ((<= (cdr elem) (point))
2418 (throw 'done (cdr elem)))
2419 ((<= (car elem) (point))
2420 (throw 'done (car elem))))
2421 (if (<= elem (point))
2422 (throw 'done elem)))
2423 (setq paren-state (cdr paren-state)))
2424 (point-min))))
2425
2426 (if (> pos (- (point) 4000))
2427 (goto-char pos)
2428 ;; The position is far back. Try `c-beginning-of-defun-1'
2429 ;; (although we can't be entirely sure it will go to a position
2430 ;; outside a comment or string in current emacsen). FIXME:
2431 ;; Consult `syntax-ppss' here.
2432 (c-beginning-of-defun-1)
2433 (if (< (point) pos)
2434 (goto-char pos)))))
2435
2436 \f
2437 ;; Tools for scanning identifiers and other tokens.
2438
2439 (defun c-on-identifier ()
2440 "Return non-nil if the point is on or directly after an identifier.
2441 Keywords are recognized and not considered identifiers. If an
2442 identifier is detected, the returned value is its starting position.
2443 If an identifier ends at the point and another begins at it \(can only
2444 happen in Pike) then the point for the preceding one is returned.
2445
2446 Note that this function might do hidden buffer changes. See the
2447 comment at the start of cc-engine.el for more info."
2448
2449 ;; FIXME: Shouldn't this function handle "operator" in C++?
2450
2451 (save-excursion
2452 (skip-syntax-backward "w_")
2453
2454 (or
2455
2456 ;; Check for a normal (non-keyword) identifier.
2457 (and (looking-at c-symbol-start)
2458 (not (looking-at c-keywords-regexp))
2459 (point))
2460
2461 (when (c-major-mode-is 'pike-mode)
2462 ;; Handle the `<operator> syntax in Pike.
2463 (let ((pos (point)))
2464 (skip-chars-backward "-!%&*+/<=>^|~[]()")
2465 (and (if (< (skip-chars-backward "`") 0)
2466 t
2467 (goto-char pos)
2468 (eq (char-after) ?\`))
2469 (looking-at c-symbol-key)
2470 (>= (match-end 0) pos)
2471 (point))))
2472
2473 ;; Handle the "operator +" syntax in C++.
2474 (when (and c-overloadable-operators-regexp
2475 (= (c-backward-token-2 0) 0))
2476
2477 (cond ((and (looking-at c-overloadable-operators-regexp)
2478 (or (not c-opt-op-identifier-prefix)
2479 (and (= (c-backward-token-2 1) 0)
2480 (looking-at c-opt-op-identifier-prefix))))
2481 (point))
2482
2483 ((save-excursion
2484 (and c-opt-op-identifier-prefix
2485 (looking-at c-opt-op-identifier-prefix)
2486 (= (c-forward-token-2 1) 0)
2487 (looking-at c-overloadable-operators-regexp)))
2488 (point))))
2489
2490 )))
2491
2492 (defsubst c-simple-skip-symbol-backward ()
2493 ;; If the point is at the end of a symbol then skip backward to the
2494 ;; beginning of it. Don't move otherwise. Return non-nil if point
2495 ;; moved.
2496 ;;
2497 ;; This function might do hidden buffer changes.
2498 (or (< (skip-syntax-backward "w_") 0)
2499 (and (c-major-mode-is 'pike-mode)
2500 ;; Handle the `<operator> syntax in Pike.
2501 (let ((pos (point)))
2502 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
2503 (< (skip-chars-backward "`") 0)
2504 (looking-at c-symbol-key)
2505 (>= (match-end 0) pos))
2506 t
2507 (goto-char pos)
2508 nil)))))
2509
2510 (defun c-beginning-of-current-token (&optional back-limit)
2511 ;; Move to the beginning of the current token. Do not move if not
2512 ;; in the middle of one. BACK-LIMIT may be used to bound the
2513 ;; backward search; if given it's assumed to be at the boundary
2514 ;; between two tokens. Return non-nil if the point is move, nil
2515 ;; otherwise.
2516 ;;
2517 ;; This function might do hidden buffer changes.
2518 (let ((start (point)))
2519 (if (looking-at "\\w\\|\\s_")
2520 (skip-syntax-backward "w_" back-limit)
2521 (when (< (skip-syntax-backward ".()" back-limit) 0)
2522 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
2523 (match-end 0))
2524 ;; `c-nonsymbol-token-regexp' should always match
2525 ;; since we've skipped backward over punctuator
2526 ;; or paren syntax, but consume one char in case
2527 ;; it doesn't so that we don't leave point before
2528 ;; some earlier incorrect token.
2529 (1+ (point)))))
2530 (if (<= pos start)
2531 (goto-char pos))))))
2532 (< (point) start)))
2533
2534 (defun c-end-of-current-token (&optional back-limit)
2535 ;; Move to the end of the current token. Do not move if not in the
2536 ;; middle of one. BACK-LIMIT may be used to bound the backward
2537 ;; search; if given it's assumed to be at the boundary between two
2538 ;; tokens. Return non-nil if the point is moved, nil otherwise.
2539 ;;
2540 ;; This function might do hidden buffer changes.
2541 (let ((start (point)))
2542 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
2543 (skip-syntax-forward "w_"))
2544 ((< (skip-syntax-backward ".()" back-limit) 0)
2545 (while (progn
2546 (if (looking-at c-nonsymbol-token-regexp)
2547 (goto-char (match-end 0))
2548 ;; `c-nonsymbol-token-regexp' should always match since
2549 ;; we've skipped backward over punctuator or paren
2550 ;; syntax, but move forward in case it doesn't so that
2551 ;; we don't leave point earlier than we started with.
2552 (forward-char))
2553 (< (point) start)))))
2554 (> (point) start)))
2555
2556 (defconst c-jump-syntax-balanced
2557 (if (memq 'gen-string-delim c-emacs-features)
2558 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\"\\|\\s|"
2559 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\""))
2560
2561 (defconst c-jump-syntax-unbalanced
2562 (if (memq 'gen-string-delim c-emacs-features)
2563 "\\w\\|\\s_\\|\\s\"\\|\\s|"
2564 "\\w\\|\\s_\\|\\s\""))
2565
2566 (defun c-forward-token-2 (&optional count balanced limit)
2567 "Move forward by tokens.
2568 A token is defined as all symbols and identifiers which aren't
2569 syntactic whitespace \(note that multicharacter tokens like \"==\" are
2570 treated properly). Point is always either left at the beginning of a
2571 token or not moved at all. COUNT specifies the number of tokens to
2572 move; a negative COUNT moves in the opposite direction. A COUNT of 0
2573 moves to the next token beginning only if not already at one. If
2574 BALANCED is true, move over balanced parens, otherwise move into them.
2575 Also, if BALANCED is true, never move out of an enclosing paren.
2576
2577 LIMIT sets the limit for the movement and defaults to the point limit.
2578 The case when LIMIT is set in the middle of a token, comment or macro
2579 is handled correctly, i.e. the point won't be left there.
2580
2581 Return the number of tokens left to move \(positive or negative). If
2582 BALANCED is true, a move over a balanced paren counts as one. Note
2583 that if COUNT is 0 and no appropriate token beginning is found, 1 will
2584 be returned. Thus, a return value of 0 guarantees that point is at
2585 the requested position and a return value less \(without signs) than
2586 COUNT guarantees that point is at the beginning of some token.
2587
2588 Note that this function might do hidden buffer changes. See the
2589 comment at the start of cc-engine.el for more info."
2590
2591 (or count (setq count 1))
2592 (if (< count 0)
2593 (- (c-backward-token-2 (- count) balanced limit))
2594
2595 (let ((jump-syntax (if balanced
2596 c-jump-syntax-balanced
2597 c-jump-syntax-unbalanced))
2598 (last (point))
2599 (prev (point)))
2600
2601 (if (zerop count)
2602 ;; If count is zero we should jump if in the middle of a token.
2603 (c-end-of-current-token))
2604
2605 (save-restriction
2606 (if limit (narrow-to-region (point-min) limit))
2607 (if (/= (point)
2608 (progn (c-forward-syntactic-ws) (point)))
2609 ;; Skip whitespace. Count this as a move if we did in
2610 ;; fact move.
2611 (setq count (max (1- count) 0)))
2612
2613 (if (eobp)
2614 ;; Moved out of bounds. Make sure the returned count isn't zero.
2615 (progn
2616 (if (zerop count) (setq count 1))
2617 (goto-char last))
2618
2619 ;; Use `condition-case' to avoid having the limit tests
2620 ;; inside the loop.
2621 (condition-case nil
2622 (while (and
2623 (> count 0)
2624 (progn
2625 (setq last (point))
2626 (cond ((looking-at jump-syntax)
2627 (goto-char (scan-sexps (point) 1))
2628 t)
2629 ((looking-at c-nonsymbol-token-regexp)
2630 (goto-char (match-end 0))
2631 t)
2632 ;; `c-nonsymbol-token-regexp' above should always
2633 ;; match if there are correct tokens. Try to
2634 ;; widen to see if the limit was set in the
2635 ;; middle of one, else fall back to treating
2636 ;; the offending thing as a one character token.
2637 ((and limit
2638 (save-restriction
2639 (widen)
2640 (looking-at c-nonsymbol-token-regexp)))
2641 nil)
2642 (t
2643 (forward-char)
2644 t))))
2645 (c-forward-syntactic-ws)
2646 (setq prev last
2647 count (1- count)))
2648 (error (goto-char last)))
2649
2650 (when (eobp)
2651 (goto-char prev)
2652 (setq count (1+ count)))))
2653
2654 count)))
2655
2656 (defun c-backward-token-2 (&optional count balanced limit)
2657 "Move backward by tokens.
2658 See `c-forward-token-2' for details."
2659
2660 (or count (setq count 1))
2661 (if (< count 0)
2662 (- (c-forward-token-2 (- count) balanced limit))
2663
2664 (or limit (setq limit (point-min)))
2665 (let ((jump-syntax (if balanced
2666 c-jump-syntax-balanced
2667 c-jump-syntax-unbalanced))
2668 (last (point)))
2669
2670 (if (zerop count)
2671 ;; The count is zero so try to skip to the beginning of the
2672 ;; current token.
2673 (if (> (point)
2674 (progn (c-beginning-of-current-token) (point)))
2675 (if (< (point) limit)
2676 ;; The limit is inside the same token, so return 1.
2677 (setq count 1))
2678
2679 ;; We're not in the middle of a token. If there's
2680 ;; whitespace after the point then we must move backward,
2681 ;; so set count to 1 in that case.
2682 (and (looking-at c-syntactic-ws-start)
2683 ;; If we're looking at a '#' that might start a cpp
2684 ;; directive then we have to do a more elaborate check.
2685 (or (/= (char-after) ?#)
2686 (not c-opt-cpp-prefix)
2687 (save-excursion
2688 (and (= (point)
2689 (progn (beginning-of-line)
2690 (looking-at "[ \t]*")
2691 (match-end 0)))
2692 (or (bobp)
2693 (progn (backward-char)
2694 (not (eq (char-before) ?\\)))))))
2695 (setq count 1))))
2696
2697 ;; Use `condition-case' to avoid having to check for buffer
2698 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
2699 (condition-case nil
2700 (while (and
2701 (> count 0)
2702 (progn
2703 (c-backward-syntactic-ws)
2704 (backward-char)
2705 (if (looking-at jump-syntax)
2706 (goto-char (scan-sexps (1+ (point)) -1))
2707 ;; This can be very inefficient if there's a long
2708 ;; sequence of operator tokens without any separation.
2709 ;; That doesn't happen in practice, anyway.
2710 (c-beginning-of-current-token))
2711 (>= (point) limit)))
2712 (setq last (point)
2713 count (1- count)))
2714 (error (goto-char last)))
2715
2716 (if (< (point) limit)
2717 (goto-char last))
2718
2719 count)))
2720
2721 (defun c-forward-token-1 (&optional count balanced limit)
2722 "Like `c-forward-token-2' but doesn't treat multicharacter operator
2723 tokens like \"==\" as single tokens, i.e. all sequences of symbol
2724 characters are jumped over character by character. This function is
2725 for compatibility only; it's only a wrapper over `c-forward-token-2'."
2726 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
2727 (c-forward-token-2 count balanced limit)))
2728
2729 (defun c-backward-token-1 (&optional count balanced limit)
2730 "Like `c-backward-token-2' but doesn't treat multicharacter operator
2731 tokens like \"==\" as single tokens, i.e. all sequences of symbol
2732 characters are jumped over character by character. This function is
2733 for compatibility only; it's only a wrapper over `c-backward-token-2'."
2734 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
2735 (c-backward-token-2 count balanced limit)))
2736
2737 \f
2738 ;; Tools for doing searches restricted to syntactically relevant text.
2739
2740 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
2741 paren-level not-inside-token
2742 lookbehind-submatch)
2743 "Like `re-search-forward', but only report matches that are found
2744 in syntactically significant text. I.e. matches in comments, macros
2745 or string literals are ignored. The start point is assumed to be
2746 outside any comment, macro or string literal, or else the content of
2747 that region is taken as syntactically significant text.
2748
2749 If PAREN-LEVEL is non-nil, an additional restriction is added to
2750 ignore matches in nested paren sexps. The search will also not go
2751 outside the current list sexp, which has the effect that if the point
2752 should be moved to BOUND when no match is found \(i.e. NOERROR is
2753 neither nil nor t), then it will be at the closing paren if the end of
2754 the current list sexp is encountered first.
2755
2756 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
2757 ignored. Things like multicharacter operators and special symbols
2758 \(e.g. \"`()\" in Pike) are handled but currently not floating point
2759 constants.
2760
2761 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
2762 subexpression in REGEXP. The end of that submatch is used as the
2763 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
2764 isn't used or if that subexpression didn't match then the start
2765 position of the whole match is used instead. The \"look behind\"
2766 subexpression is never tested before the starting position, so it
2767 might be a good idea to include \\=\\= as a match alternative in it.
2768
2769 Optimization note: Matches might be missed if the \"look behind\"
2770 subexpression can match the end of nonwhite syntactic whitespace,
2771 i.e. the end of comments or cpp directives. This since the function
2772 skips over such things before resuming the search. It's on the other
2773 hand not safe to assume that the \"look behind\" subexpression never
2774 matches syntactic whitespace.
2775
2776 Bug: Unbalanced parens inside cpp directives are currently not handled
2777 correctly \(i.e. they don't get ignored as they should) when
2778 PAREN-LEVEL is set.
2779
2780 Note that this function might do hidden buffer changes. See the
2781 comment at the start of cc-engine.el for more info."
2782
2783 (or bound (setq bound (point-max)))
2784 (if paren-level (setq paren-level -1))
2785
2786 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
2787
2788 (let ((start (point))
2789 tmp
2790 ;; Start position for the last search.
2791 search-pos
2792 ;; The `parse-partial-sexp' state between the start position
2793 ;; and the point.
2794 state
2795 ;; The current position after the last state update. The next
2796 ;; `parse-partial-sexp' continues from here.
2797 (state-pos (point))
2798 ;; The position at which to check the state and the state
2799 ;; there. This is separate from `state-pos' since we might
2800 ;; need to back up before doing the next search round.
2801 check-pos check-state
2802 ;; Last position known to end a token.
2803 (last-token-end-pos (point-min))
2804 ;; Set when a valid match is found.
2805 found)
2806
2807 (condition-case err
2808 (while
2809 (and
2810 (progn
2811 (setq search-pos (point))
2812 (re-search-forward regexp bound noerror))
2813
2814 (progn
2815 (setq state (parse-partial-sexp
2816 state-pos (match-beginning 0) paren-level nil state)
2817 state-pos (point))
2818 (if (setq check-pos (and lookbehind-submatch
2819 (or (not paren-level)
2820 (>= (car state) 0))
2821 (match-end lookbehind-submatch)))
2822 (setq check-state (parse-partial-sexp
2823 state-pos check-pos paren-level nil state))
2824 (setq check-pos state-pos
2825 check-state state))
2826
2827 ;; NOTE: If we got a look behind subexpression and get
2828 ;; an insignificant match in something that isn't
2829 ;; syntactic whitespace (i.e. strings or in nested
2830 ;; parentheses), then we can never skip more than a
2831 ;; single character from the match start position
2832 ;; (i.e. `state-pos' here) before continuing the
2833 ;; search. That since the look behind subexpression
2834 ;; might match the end of the insignificant region in
2835 ;; the next search.
2836
2837 (cond
2838 ((elt check-state 7)
2839 ;; Match inside a line comment. Skip to eol. Use
2840 ;; `re-search-forward' instead of `skip-chars-forward' to get
2841 ;; the right bound behavior.
2842 (re-search-forward "[\n\r]" bound noerror))
2843
2844 ((elt check-state 4)
2845 ;; Match inside a block comment. Skip to the '*/'.
2846 (search-forward "*/" bound noerror))
2847
2848 ((and (not (elt check-state 5))
2849 (eq (char-before check-pos) ?/)
2850 (not (c-get-char-property (1- check-pos) 'syntax-table))
2851 (memq (char-after check-pos) '(?/ ?*)))
2852 ;; Match in the middle of the opener of a block or line
2853 ;; comment.
2854 (if (= (char-after check-pos) ?/)
2855 (re-search-forward "[\n\r]" bound noerror)
2856 (search-forward "*/" bound noerror)))
2857
2858 ;; The last `parse-partial-sexp' above might have
2859 ;; stopped short of the real check position if the end
2860 ;; of the current sexp was encountered in paren-level
2861 ;; mode. The checks above are always false in that
2862 ;; case, and since they can do better skipping in
2863 ;; lookbehind-submatch mode, we do them before
2864 ;; checking the paren level.
2865
2866 ((and paren-level
2867 (/= (setq tmp (car check-state)) 0))
2868 ;; Check the paren level first since we're short of the
2869 ;; syntactic checking position if the end of the
2870 ;; current sexp was encountered by `parse-partial-sexp'.
2871 (if (> tmp 0)
2872
2873 ;; Inside a nested paren sexp.
2874 (if lookbehind-submatch
2875 ;; See the NOTE above.
2876 (progn (goto-char state-pos) t)
2877 ;; Skip out of the paren quickly.
2878 (setq state (parse-partial-sexp state-pos bound 0 nil state)
2879 state-pos (point)))
2880
2881 ;; Have exited the current paren sexp.
2882 (if noerror
2883 (progn
2884 ;; The last `parse-partial-sexp' call above
2885 ;; has left us just after the closing paren
2886 ;; in this case, so we can modify the bound
2887 ;; to leave the point at the right position
2888 ;; upon return.
2889 (setq bound (1- (point)))
2890 nil)
2891 (signal 'search-failed (list regexp)))))
2892
2893 ((setq tmp (elt check-state 3))
2894 ;; Match inside a string.
2895 (if (or lookbehind-submatch
2896 (not (integerp tmp)))
2897 ;; See the NOTE above.
2898 (progn (goto-char state-pos) t)
2899 ;; Skip to the end of the string before continuing.
2900 (let ((ender (make-string 1 tmp)) (continue t))
2901 (while (if (search-forward ender bound noerror)
2902 (progn
2903 (setq state (parse-partial-sexp
2904 state-pos (point) nil nil state)
2905 state-pos (point))
2906 (elt state 3))
2907 (setq continue nil)))
2908 continue)))
2909
2910 ((save-excursion
2911 (save-match-data
2912 (c-beginning-of-macro start)))
2913 ;; Match inside a macro. Skip to the end of it.
2914 (c-end-of-macro)
2915 (cond ((<= (point) bound) t)
2916 (noerror nil)
2917 (t (signal 'search-failed (list regexp)))))
2918
2919 ((and not-inside-token
2920 (or (< check-pos last-token-end-pos)
2921 (< check-pos
2922 (save-excursion
2923 (goto-char check-pos)
2924 (save-match-data
2925 (c-end-of-current-token last-token-end-pos))
2926 (setq last-token-end-pos (point))))))
2927 ;; Inside a token.
2928 (if lookbehind-submatch
2929 ;; See the NOTE above.
2930 (goto-char state-pos)
2931 (goto-char (min last-token-end-pos bound))))
2932
2933 (t
2934 ;; A real match.
2935 (setq found t)
2936 nil)))
2937
2938 ;; Should loop to search again, but take care to avoid
2939 ;; looping on the same spot.
2940 (or (/= search-pos (point))
2941 (if (= (point) bound)
2942 (if noerror
2943 nil
2944 (signal 'search-failed (list regexp)))
2945 (forward-char)
2946 t))))
2947
2948 (error
2949 (goto-char start)
2950 (signal (car err) (cdr err))))
2951
2952 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
2953
2954 (if found
2955 (progn
2956 (goto-char (match-end 0))
2957 (match-end 0))
2958
2959 ;; Search failed. Set point as appropriate.
2960 (if (eq noerror t)
2961 (goto-char start)
2962 (goto-char bound))
2963 nil)))
2964
2965 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
2966 "Like `skip-chars-backward' but only look at syntactically relevant chars,
2967 i.e. don't stop at positions inside syntactic whitespace or string
2968 literals. Preprocessor directives are also ignored, with the exception
2969 of the one that the point starts within, if any. If LIMIT is given,
2970 it's assumed to be at a syntactically relevant position.
2971
2972 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
2973 sexps, and the search will also not go outside the current paren sexp.
2974 However, if LIMIT or the buffer limit is reached inside a nested paren
2975 then the point will be left at the limit.
2976
2977 Non-nil is returned if the point moved, nil otherwise.
2978
2979 Note that this function might do hidden buffer changes. See the
2980 comment at the start of cc-engine.el for more info."
2981
2982 (let ((start (point))
2983 state
2984 ;; A list of syntactically relevant positions in descending
2985 ;; order. It's used to avoid scanning repeatedly over
2986 ;; potentially large regions with `parse-partial-sexp' to verify
2987 ;; each position.
2988 safe-pos-list
2989 ;; The position at the beginning of `safe-pos-list'.
2990 safe-pos
2991 ;; The result from `c-beginning-of-macro' at the start position or the
2992 ;; start position itself if it isn't within a macro. Evaluated on
2993 ;; demand.
2994 start-macro-beg
2995 ;; The earliest position after the current one with the same paren
2996 ;; level. Used only when `paren-level' is set.
2997 (paren-level-pos (point)))
2998
2999 (while (progn
3000 (while (and
3001 (< (skip-chars-backward skip-chars limit) 0)
3002
3003 ;; Use `parse-partial-sexp' from a safe position down to
3004 ;; the point to check if it's outside comments and
3005 ;; strings.
3006 (let ((pos (point)) state-2 pps-end-pos)
3007 ;; Pick a safe position as close to the point as
3008 ;; possible.
3009 ;;
3010 ;; FIXME: Consult `syntax-ppss' here if our
3011 ;; cache doesn't give a good position.
3012 (while (and safe-pos-list
3013 (> (car safe-pos-list) (point)))
3014 (setq safe-pos-list (cdr safe-pos-list)))
3015 (unless (setq safe-pos (car-safe safe-pos-list))
3016 (setq safe-pos (max (or (c-safe-position
3017 (point) (or c-state-cache
3018 (c-parse-state)))
3019 0)
3020 (point-min))
3021 safe-pos-list (list safe-pos)))
3022
3023 ;; Cache positions along the way to use if we have to
3024 ;; back up more. We cache every closing paren on the
3025 ;; same level. If the paren cache is relevant in this
3026 ;; region then we're typically already on the same
3027 ;; level as the target position. Note that we might
3028 ;; cache positions after opening parens in case
3029 ;; safe-pos is in a nested list. That's both uncommon
3030 ;; and harmless.
3031 (while (progn
3032 (setq state (parse-partial-sexp
3033 safe-pos pos 0))
3034 (< (point) pos))
3035 (setq safe-pos (point)
3036 safe-pos-list (cons safe-pos safe-pos-list)))
3037
3038 (cond
3039 ((or (elt state 3) (elt state 4))
3040 ;; Inside string or comment. Continue search at the
3041 ;; beginning of it.
3042 (goto-char (elt state 8))
3043 t)
3044
3045 ((and paren-level
3046 (save-excursion
3047 (setq state-2 (parse-partial-sexp
3048 pos paren-level-pos -1)
3049 pps-end-pos (point))
3050 (/= (car state-2) 0)))
3051 ;; Not at the right level.
3052
3053 (if (and (< (car state-2) 0)
3054 ;; We stop above if we go out of a paren.
3055 ;; Now check whether it precedes or is
3056 ;; nested in the starting sexp.
3057 (save-excursion
3058 (setq state-2
3059 (parse-partial-sexp
3060 pps-end-pos paren-level-pos
3061 nil nil state-2))
3062 (< (car state-2) 0)))
3063
3064 ;; We've stopped short of the starting position
3065 ;; so the hit was inside a nested list. Go up
3066 ;; until we are at the right level.
3067 (condition-case nil
3068 (progn
3069 (goto-char (scan-lists pos -1
3070 (- (car state-2))))
3071 (setq paren-level-pos (point))
3072 (if (and limit (>= limit paren-level-pos))
3073 (progn
3074 (goto-char limit)
3075 nil)
3076 t))
3077 (error
3078 (goto-char (or limit (point-min)))
3079 nil))
3080
3081 ;; The hit was outside the list at the start
3082 ;; position. Go to the start of the list and exit.
3083 (goto-char (1+ (elt state-2 1)))
3084 nil))
3085
3086 ((c-beginning-of-macro limit)
3087 ;; Inside a macro.
3088 (if (< (point)
3089 (or start-macro-beg
3090 (setq start-macro-beg
3091 (save-excursion
3092 (goto-char start)
3093 (c-beginning-of-macro limit)
3094 (point)))))
3095 t
3096
3097 ;; It's inside the same macro we started in so it's
3098 ;; a relevant match.
3099 (goto-char pos)
3100 nil)))))
3101
3102 ;; If the state contains the start of the containing sexp we
3103 ;; cache that position too, so that parse-partial-sexp in the
3104 ;; next run has a bigger chance of starting at the same level
3105 ;; as the target position and thus will get more good safe
3106 ;; positions into the list.
3107 (if (elt state 1)
3108 (setq safe-pos (1+ (elt state 1))
3109 safe-pos-list (cons safe-pos safe-pos-list))))
3110
3111 (> (point)
3112 (progn
3113 ;; Skip syntactic ws afterwards so that we don't stop at the
3114 ;; end of a comment if `skip-chars' is something like "^/".
3115 (c-backward-syntactic-ws)
3116 (point)))))
3117
3118 ;; We might want to extend this with more useful return values in
3119 ;; the future.
3120 (/= (point) start)))
3121
3122 ;; The following is an alternative implementation of
3123 ;; `c-syntactic-skip-backward' that uses backward movement to keep
3124 ;; track of the syntactic context. It turned out to be generally
3125 ;; slower than the one above which uses forward checks from earlier
3126 ;; safe positions.
3127 ;;
3128 ;;(defconst c-ssb-stop-re
3129 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
3130 ;; ;; stop at to avoid going into comments and literals.
3131 ;; (concat
3132 ;; ;; Match comment end syntax and string literal syntax. Also match
3133 ;; ;; '/' for block comment endings (not covered by comment end
3134 ;; ;; syntax).
3135 ;; "\\s>\\|/\\|\\s\""
3136 ;; (if (memq 'gen-string-delim c-emacs-features)
3137 ;; "\\|\\s|"
3138 ;; "")
3139 ;; (if (memq 'gen-comment-delim c-emacs-features)
3140 ;; "\\|\\s!"
3141 ;; "")))
3142 ;;
3143 ;;(defconst c-ssb-stop-paren-re
3144 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
3145 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
3146 ;;
3147 ;;(defconst c-ssb-sexp-end-re
3148 ;; ;; Regexp matching the ending syntax of a complex sexp.
3149 ;; (concat c-string-limit-regexp "\\|\\s)"))
3150 ;;
3151 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
3152 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
3153 ;;i.e. don't stop at positions inside syntactic whitespace or string
3154 ;;literals. Preprocessor directives are also ignored. However, if the
3155 ;;point is within a comment, string literal or preprocessor directory to
3156 ;;begin with, its contents is treated as syntactically relevant chars.
3157 ;;If LIMIT is given, it limits the backward search and the point will be
3158 ;;left there if no earlier position is found.
3159 ;;
3160 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
3161 ;;sexps, and the search will also not go outside the current paren sexp.
3162 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
3163 ;;then the point will be left at the limit.
3164 ;;
3165 ;;Non-nil is returned if the point moved, nil otherwise.
3166 ;;
3167 ;;Note that this function might do hidden buffer changes. See the
3168 ;;comment at the start of cc-engine.el for more info."
3169 ;;
3170 ;; (save-restriction
3171 ;; (when limit
3172 ;; (narrow-to-region limit (point-max)))
3173 ;;
3174 ;; (let ((start (point)))
3175 ;; (catch 'done
3176 ;; (while (let ((last-pos (point))
3177 ;; (stop-pos (progn
3178 ;; (skip-chars-backward skip-chars)
3179 ;; (point))))
3180 ;;
3181 ;; ;; Skip back over the same region as
3182 ;; ;; `skip-chars-backward' above, but keep to
3183 ;; ;; syntactically relevant positions.
3184 ;; (goto-char last-pos)
3185 ;; (while (and
3186 ;; ;; `re-search-backward' with a single char regexp
3187 ;; ;; should be fast.
3188 ;; (re-search-backward
3189 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
3190 ;; stop-pos 'move)
3191 ;;
3192 ;; (progn
3193 ;; (cond
3194 ;; ((looking-at "\\s(")
3195 ;; ;; `paren-level' is set and we've found the
3196 ;; ;; start of the containing paren.
3197 ;; (forward-char)
3198 ;; (throw 'done t))
3199 ;;
3200 ;; ((looking-at c-ssb-sexp-end-re)
3201 ;; ;; We're at the end of a string literal or paren
3202 ;; ;; sexp (if `paren-level' is set).
3203 ;; (forward-char)
3204 ;; (condition-case nil
3205 ;; (c-backward-sexp)
3206 ;; (error
3207 ;; (goto-char limit)
3208 ;; (throw 'done t))))
3209 ;;
3210 ;; (t
3211 ;; (forward-char)
3212 ;; ;; At the end of some syntactic ws or possibly
3213 ;; ;; after a plain '/' operator.
3214 ;; (let ((pos (point)))
3215 ;; (c-backward-syntactic-ws)
3216 ;; (if (= pos (point))
3217 ;; ;; Was a plain '/' operator. Go past it.
3218 ;; (backward-char)))))
3219 ;;
3220 ;; (> (point) stop-pos))))
3221 ;;
3222 ;; ;; Now the point is either at `stop-pos' or at some
3223 ;; ;; position further back if `stop-pos' was at a
3224 ;; ;; syntactically irrelevant place.
3225 ;;
3226 ;; ;; Skip additional syntactic ws so that we don't stop
3227 ;; ;; at the end of a comment if `skip-chars' is
3228 ;; ;; something like "^/".
3229 ;; (c-backward-syntactic-ws)
3230 ;;
3231 ;; (< (point) stop-pos))))
3232 ;;
3233 ;; ;; We might want to extend this with more useful return values
3234 ;; ;; in the future.
3235 ;; (/= (point) start))))
3236
3237 \f
3238 ;; Tools for handling comments and string literals.
3239
3240 (defun c-slow-in-literal (&optional lim detect-cpp)
3241 "Return the type of literal point is in, if any.
3242 The return value is `c' if in a C-style comment, `c++' if in a C++
3243 style comment, `string' if in a string literal, `pound' if DETECT-CPP
3244 is non-nil and in a preprocessor line, or nil if somewhere else.
3245 Optional LIM is used as the backward limit of the search. If omitted,
3246 or nil, `c-beginning-of-defun' is used.
3247
3248 The last point calculated is cached if the cache is enabled, i.e. if
3249 `c-in-literal-cache' is bound to a two element vector.
3250
3251 Note that this function might do hidden buffer changes. See the
3252 comment at the start of cc-engine.el for more info."
3253
3254 (if (and (vectorp c-in-literal-cache)
3255 (= (point) (aref c-in-literal-cache 0)))
3256 (aref c-in-literal-cache 1)
3257 (let ((rtn (save-excursion
3258 (let* ((pos (point))
3259 (lim (or lim (progn
3260 (c-beginning-of-syntax)
3261 (point))))
3262 (state (parse-partial-sexp lim pos)))
3263 (cond
3264 ((elt state 3) 'string)
3265 ((elt state 4) (if (elt state 7) 'c++ 'c))
3266 ((and detect-cpp (c-beginning-of-macro lim)) 'pound)
3267 (t nil))))))
3268 ;; cache this result if the cache is enabled
3269 (if (not c-in-literal-cache)
3270 (setq c-in-literal-cache (vector (point) rtn)))
3271 rtn)))
3272
3273 ;; XEmacs has a built-in function that should make this much quicker.
3274 ;; I don't think we even need the cache, which makes our lives more
3275 ;; complicated anyway. In this case, lim is only used to detect
3276 ;; cpp directives.
3277 ;;
3278 ;; Note that there is a bug in Xemacs's buffer-syntactic-context when used in
3279 ;; conjunction with syntax-table-properties. The bug is present in, e.g.,
3280 ;; Xemacs 21.4.4. It manifested itself thus:
3281 ;;
3282 ;; Starting with an empty AWK Mode buffer, type
3283 ;; /regexp/ {<C-j>
3284 ;; Point gets wrongly left at column 0, rather than being indented to tab-width.
3285 ;;
3286 ;; AWK Mode is designed such that when the first / is typed, it gets the
3287 ;; syntax-table property "string fence". When the second / is typed, BOTH /s
3288 ;; are given the s-t property "string". However, buffer-syntactic-context
3289 ;; fails to take account of the change of the s-t property on the opening / to
3290 ;; "string", and reports that the { is within a string started by the second /.
3291 ;;
3292 ;; The workaround for this is for the AWK Mode initialisation to switch the
3293 ;; defalias for c-in-literal to c-slow-in-literal. This will slow down other
3294 ;; cc-modes in Xemacs whenever an awk-buffer has been initialised.
3295 ;;
3296 ;; (Alan Mackenzie, 2003/4/30).
3297
3298 (defun c-fast-in-literal (&optional lim detect-cpp)
3299 ;; This function might do hidden buffer changes.
3300 (let ((context (buffer-syntactic-context)))
3301 (cond
3302 ((eq context 'string) 'string)
3303 ((eq context 'comment) 'c++)
3304 ((eq context 'block-comment) 'c)
3305 ((and detect-cpp (save-excursion (c-beginning-of-macro lim))) 'pound))))
3306
3307 (defalias 'c-in-literal
3308 (if (fboundp 'buffer-syntactic-context)
3309 'c-fast-in-literal ; XEmacs
3310 'c-slow-in-literal)) ; GNU Emacs
3311
3312 ;; The defalias above isn't enough to shut up the byte compiler.
3313 (cc-bytecomp-defun c-in-literal)
3314
3315 (defun c-literal-limits (&optional lim near not-in-delimiter)
3316 "Return a cons of the beginning and end positions of the comment or
3317 string surrounding point (including both delimiters), or nil if point
3318 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
3319 to start parsing from. If NEAR is non-nil, then the limits of any
3320 literal next to point is returned. \"Next to\" means there's only
3321 spaces and tabs between point and the literal. The search for such a
3322 literal is done first in forward direction. If NOT-IN-DELIMITER is
3323 non-nil, the case when point is inside a starting delimiter won't be
3324 recognized. This only has effect for comments, which have starting
3325 delimiters with more than one character.
3326
3327 Note that this function might do hidden buffer changes. See the
3328 comment at the start of cc-engine.el for more info."
3329
3330 (save-excursion
3331 (let* ((pos (point))
3332 (lim (or lim (progn
3333 (c-beginning-of-syntax)
3334 (point))))
3335 (state (parse-partial-sexp lim pos)))
3336
3337 (cond ((elt state 3) ; String.
3338 (goto-char (elt state 8))
3339 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
3340 (point-max))))
3341
3342 ((elt state 4) ; Comment.
3343 (goto-char (elt state 8))
3344 (cons (point) (progn (c-forward-single-comment) (point))))
3345
3346 ((and (not not-in-delimiter)
3347 (not (elt state 5))
3348 (eq (char-before) ?/)
3349 (looking-at "[/*]"))
3350 ;; We're standing in a comment starter.
3351 (backward-char 1)
3352 (cons (point) (progn (c-forward-single-comment) (point))))
3353
3354 (near
3355 (goto-char pos)
3356
3357 ;; Search forward for a literal.
3358 (skip-chars-forward " \t")
3359
3360 (cond
3361 ((looking-at c-string-limit-regexp) ; String.
3362 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
3363 (point-max))))
3364
3365 ((looking-at c-comment-start-regexp) ; Line or block comment.
3366 (cons (point) (progn (c-forward-single-comment) (point))))
3367
3368 (t
3369 ;; Search backward.
3370 (skip-chars-backward " \t")
3371
3372 (let ((end (point)) beg)
3373 (cond
3374 ((save-excursion
3375 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
3376 (setq beg (c-safe (c-backward-sexp 1) (point))))
3377
3378 ((and (c-safe (forward-char -2) t)
3379 (looking-at "*/"))
3380 ;; Block comment. Due to the nature of line
3381 ;; comments, they will always be covered by the
3382 ;; normal case above.
3383 (goto-char end)
3384 (c-backward-single-comment)
3385 ;; If LIM is bogus, beg will be bogus.
3386 (setq beg (point))))
3387
3388 (if beg (cons beg end))))))
3389 ))))
3390
3391 ;; In case external callers use this; it did have a docstring.
3392 (defalias 'c-literal-limits-fast 'c-literal-limits)
3393
3394 (defun c-collect-line-comments (range)
3395 "If the argument is a cons of two buffer positions (such as returned by
3396 `c-literal-limits'), and that range contains a C++ style line comment,
3397 then an extended range is returned that contains all adjacent line
3398 comments (i.e. all comments that starts in the same column with no
3399 empty lines or non-whitespace characters between them). Otherwise the
3400 argument is returned.
3401
3402 Note that this function might do hidden buffer changes. See the
3403 comment at the start of cc-engine.el for more info."
3404
3405 (save-excursion
3406 (condition-case nil
3407 (if (and (consp range) (progn
3408 (goto-char (car range))
3409 (looking-at c-line-comment-starter)))
3410 (let ((col (current-column))
3411 (beg (point))
3412 (bopl (c-point 'bopl))
3413 (end (cdr range)))
3414 ;; Got to take care in the backward direction to handle
3415 ;; comments which are preceded by code.
3416 (while (and (c-backward-single-comment)
3417 (>= (point) bopl)
3418 (looking-at c-line-comment-starter)
3419 (= col (current-column)))
3420 (setq beg (point)
3421 bopl (c-point 'bopl)))
3422 (goto-char end)
3423 (while (and (progn (skip-chars-forward " \t")
3424 (looking-at c-line-comment-starter))
3425 (= col (current-column))
3426 (prog1 (zerop (forward-line 1))
3427 (setq end (point)))))
3428 (cons beg end))
3429 range)
3430 (error range))))
3431
3432 (defun c-literal-type (range)
3433 "Convenience function that given the result of `c-literal-limits',
3434 returns nil or the type of literal that the range surrounds. It's
3435 much faster than using `c-in-literal' and is intended to be used when
3436 you need both the type of a literal and its limits.
3437
3438 Note that this function might do hidden buffer changes. See the
3439 comment at the start of cc-engine.el for more info."
3440
3441 (if (consp range)
3442 (save-excursion
3443 (goto-char (car range))
3444 (cond ((looking-at c-string-limit-regexp) 'string)
3445 ((or (looking-at "//") ; c++ line comment
3446 (and (looking-at "\\s<") ; comment starter
3447 (looking-at "#"))) ; awk comment.
3448 'c++)
3449 (t 'c))) ; Assuming the range is valid.
3450 range))
3451
3452 \f
3453 ;; `c-find-decl-spots' and accompanying stuff.
3454
3455 ;; Variables used in `c-find-decl-spots' to cache the search done for
3456 ;; the first declaration in the last call. When that function starts,
3457 ;; it needs to back up over syntactic whitespace to look at the last
3458 ;; token before the region being searched. That can sometimes cause
3459 ;; moves back and forth over a quite large region of comments and
3460 ;; macros, which would be repeated for each changed character when
3461 ;; we're called during fontification, since font-lock refontifies the
3462 ;; current line for each change. Thus it's worthwhile to cache the
3463 ;; first match.
3464 ;;
3465 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
3466 ;; the syntactic whitespace less or equal to some start position.
3467 ;; There's no cached value if it's nil.
3468 ;;
3469 ;; `c-find-decl-match-pos' is the match position if
3470 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
3471 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
3472 (defvar c-find-decl-syntactic-pos nil)
3473 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
3474 (defvar c-find-decl-match-pos nil)
3475 (make-variable-buffer-local 'c-find-decl-match-pos)
3476
3477 (defsubst c-invalidate-find-decl-cache (change-min-pos)
3478 (and c-find-decl-syntactic-pos
3479 (< change-min-pos c-find-decl-syntactic-pos)
3480 (setq c-find-decl-syntactic-pos nil)))
3481
3482 ; (defface c-debug-decl-spot-face
3483 ; '((t (:background "Turquoise")))
3484 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
3485 ; (defface c-debug-decl-sws-face
3486 ; '((t (:background "Khaki")))
3487 ; "Debug face to mark the syntactic whitespace between the declaration
3488 ; spots and the preceding token end.")
3489
3490 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
3491 (when (facep 'c-debug-decl-spot-face)
3492 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
3493 (c-debug-add-face (max match-pos (point-min)) decl-pos
3494 'c-debug-decl-sws-face)
3495 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
3496 'c-debug-decl-spot-face))))
3497 (defmacro c-debug-remove-decl-spot-faces (beg end)
3498 (when (facep 'c-debug-decl-spot-face)
3499 `(c-save-buffer-state ()
3500 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
3501 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
3502
3503 (defmacro c-find-decl-prefix-search ()
3504 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
3505 ;; but it contains lots of free variables that refer to things
3506 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
3507 ;; if there is a match, otherwise at `cfd-limit'.
3508 ;;
3509 ;; This macro might do hidden buffer changes.
3510
3511 '(progn
3512 ;; Find the next property match position if we haven't got one already.
3513 (unless cfd-prop-match
3514 (save-excursion
3515 (while (progn
3516 (goto-char (next-single-property-change
3517 (point) 'c-type nil cfd-limit))
3518 (and (< (point) cfd-limit)
3519 (not (eq (c-get-char-property (1- (point)) 'c-type)
3520 'c-decl-end)))))
3521 (setq cfd-prop-match (point))))
3522
3523 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
3524 ;; got one already.
3525 (unless cfd-re-match
3526
3527 (if (> cfd-re-match-end (point))
3528 (goto-char cfd-re-match-end))
3529
3530 (while (if (setq cfd-re-match-end
3531 (re-search-forward c-decl-prefix-or-start-re
3532 cfd-limit 'move))
3533
3534 ;; Match. Check if it's inside a comment or string literal.
3535 (c-got-face-at
3536 (if (setq cfd-re-match (match-end 1))
3537 ;; Matched the end of a token preceding a decl spot.
3538 (progn
3539 (goto-char cfd-re-match)
3540 (1- cfd-re-match))
3541 ;; Matched a token that start a decl spot.
3542 (goto-char (match-beginning 0))
3543 (point))
3544 c-literal-faces)
3545
3546 ;; No match. Finish up and exit the loop.
3547 (setq cfd-re-match cfd-limit)
3548 nil)
3549
3550 ;; Skip out of comments and string literals.
3551 (while (progn
3552 (goto-char (next-single-property-change
3553 (point) 'face nil cfd-limit))
3554 (and (< (point) cfd-limit)
3555 (c-got-face-at (point) c-literal-faces)))))
3556
3557 ;; If we matched at the decl start, we have to back up over the
3558 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
3559 ;; any decl spots in the syntactic ws.
3560 (unless cfd-re-match
3561 (c-backward-syntactic-ws)
3562 (setq cfd-re-match (point))))
3563
3564 ;; Choose whichever match is closer to the start.
3565 (if (< cfd-re-match cfd-prop-match)
3566 (setq cfd-match-pos cfd-re-match
3567 cfd-re-match nil)
3568 (setq cfd-match-pos cfd-prop-match
3569 cfd-prop-match nil))
3570
3571 (goto-char cfd-match-pos)
3572
3573 (when (< cfd-match-pos cfd-limit)
3574 ;; Skip forward past comments only so we don't skip macros.
3575 (c-forward-comments)
3576 ;; Set the position to continue at. We can avoid going over
3577 ;; the comments skipped above a second time, but it's possible
3578 ;; that the comment skipping has taken us past `cfd-prop-match'
3579 ;; since the property might be used inside comments.
3580 (setq cfd-continue-pos (if cfd-prop-match
3581 (min cfd-prop-match (point))
3582 (point))))))
3583
3584 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
3585 ;; Call CFD-FUN for each possible spot for a declaration, cast or
3586 ;; label from the point to CFD-LIMIT. Such a spot is:
3587 ;;
3588 ;; o The first token after bob.
3589 ;; o The first token after the end of submatch 1 in
3590 ;; `c-decl-prefix-or-start-re' when that submatch matches.
3591 ;; o The start of each `c-decl-prefix-or-start-re' match when
3592 ;; submatch 1 doesn't match.
3593 ;; o The first token after the end of each occurence of the
3594 ;; `c-type' text property with the value `c-decl-end', provided
3595 ;; `c-type-decl-end-used' is set.
3596 ;;
3597 ;; Only a spot that match CFD-DECL-RE and whose face is in the
3598 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
3599 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
3600 ;;
3601 ;; If the match is inside a macro then the buffer is narrowed to the
3602 ;; end of it, so that CFD-FUN can investigate the following tokens
3603 ;; without matching something that begins inside a macro and ends
3604 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
3605 ;; CFD-FACE-CHECKLIST checks exist.
3606 ;;
3607 ;; CFD-FUN is called with point at the start of the spot. It's
3608 ;; passed two arguments: The first is the end position of the token
3609 ;; preceding the spot, or 0 for the implicit match at bob. The
3610 ;; second is a flag that is t when the match is inside a macro. If
3611 ;; CFD-FUN adds `c-decl-end' properties somewhere below the current
3612 ;; spot, it should return non-nil to ensure that the next search
3613 ;; will find them.
3614 ;;
3615 ;; The spots are visited approximately in order from top to bottom.
3616 ;; It's however the positions where `c-decl-prefix-or-start-re'
3617 ;; matches and where `c-decl-end' properties are found that are in
3618 ;; order. Since the spots often are at the following token, they
3619 ;; might be visited out of order insofar as more spots are reported
3620 ;; later on within the syntactic whitespace between the match
3621 ;; positions and their spots.
3622 ;;
3623 ;; It's assumed that comments and strings are fontified in the
3624 ;; searched range.
3625 ;;
3626 ;; This is mainly used in fontification, and so has an elaborate
3627 ;; cache to handle repeated calls from the same start position; see
3628 ;; the variables above.
3629 ;;
3630 ;; All variables in this function begin with `cfd-' to avoid name
3631 ;; collision with the (dynamically bound) variables used in CFD-FUN.
3632 ;;
3633 ;; This function might do hidden buffer changes.
3634
3635 (let ((cfd-start-pos (point))
3636 (cfd-buffer-end (point-max))
3637 ;; The end of the token preceding the decl spot last found
3638 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
3639 ;; no match.
3640 cfd-re-match
3641 ;; The end position of the last `c-decl-prefix-or-start-re'
3642 ;; match. If this is greater than `cfd-continue-pos', the
3643 ;; next regexp search is started here instead.
3644 (cfd-re-match-end (point-min))
3645 ;; The end of the last `c-decl-end' found by
3646 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
3647 ;; match. If searching for the property isn't needed then we
3648 ;; disable it by setting it to `cfd-limit' directly.
3649 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
3650 ;; The end of the token preceding the decl spot last found by
3651 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
3652 ;; bob. `cfd-limit' if there's no match. In other words,
3653 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
3654 (cfd-match-pos cfd-limit)
3655 ;; The position to continue searching at.
3656 cfd-continue-pos
3657 ;; The position of the last "real" token we've stopped at.
3658 ;; This can be greater than `cfd-continue-pos' when we get
3659 ;; hits inside macros or at `c-decl-end' positions inside
3660 ;; comments.
3661 (cfd-token-pos 0)
3662 ;; The end position of the last entered macro.
3663 (cfd-macro-end 0))
3664
3665 ;; Initialize by finding a syntactically relevant start position
3666 ;; before the point, and do the first `c-decl-prefix-or-start-re'
3667 ;; search unless we're at bob.
3668
3669 (let (start-in-literal start-in-macro syntactic-pos)
3670 ;; Must back up a bit since we look for the end of the previous
3671 ;; statement or declaration, which is earlier than the first
3672 ;; returned match.
3673
3674 (cond
3675 ;; First we need to move to a syntactically relevant position.
3676 ;; Begin by backing out of comment or string literals.
3677 ((and
3678 (when (c-got-face-at (point) c-literal-faces)
3679 ;; Try to use the faces to back up to the start of the
3680 ;; literal. FIXME: What if the point is on a declaration
3681 ;; inside a comment?
3682 (while (and (not (bobp))
3683 (c-got-face-at (1- (point)) c-literal-faces))
3684 (goto-char (previous-single-property-change
3685 (point) 'face nil (point-min))))
3686
3687 ;; XEmacs doesn't fontify the quotes surrounding string
3688 ;; literals.
3689 (and (featurep 'xemacs)
3690 (eq (get-text-property (point) 'face)
3691 'font-lock-string-face)
3692 (not (bobp))
3693 (progn (backward-char)
3694 (not (looking-at c-string-limit-regexp)))
3695 (forward-char))
3696
3697 ;; Don't trust the literal to contain only literal faces
3698 ;; (the font lock package might not have fontified the
3699 ;; start of it at all, for instance) so check that we have
3700 ;; arrived at something that looks like a start or else
3701 ;; resort to `c-literal-limits'.
3702 (unless (looking-at c-literal-start-regexp)
3703 (let ((range (c-literal-limits)))
3704 (if range (goto-char (car range)))))
3705
3706 (setq start-in-literal (point)))
3707
3708 ;; The start is in a literal. If the limit is in the same
3709 ;; one we don't have to find a syntactic position etc. We
3710 ;; only check that if the limit is at or before bonl to save
3711 ;; time; it covers the by far most common case when font-lock
3712 ;; refontifies the current line only.
3713 (<= cfd-limit (c-point 'bonl cfd-start-pos))
3714 (save-excursion
3715 (goto-char cfd-start-pos)
3716 (while (progn
3717 (goto-char (next-single-property-change
3718 (point) 'face nil cfd-limit))
3719 (and (< (point) cfd-limit)
3720 (c-got-face-at (point) c-literal-faces))))
3721 (= (point) cfd-limit)))
3722
3723 ;; Completely inside a literal. Set up variables to trig the
3724 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
3725 ;; find a suitable start position.
3726 (setq cfd-continue-pos start-in-literal))
3727
3728 ;; Check if the region might be completely inside a macro, to
3729 ;; optimize that like the completely-inside-literal above.
3730 ((save-excursion
3731 (and (= (forward-line 1) 0)
3732 (bolp) ; forward-line has funny behavior at eob.
3733 (>= (point) cfd-limit)
3734 (progn (backward-char)
3735 (eq (char-before) ?\\))))
3736 ;; (Maybe) completely inside a macro. Only need to trig the
3737 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
3738 ;; set things up.
3739 (setq cfd-continue-pos (1- cfd-start-pos)
3740 start-in-macro t))
3741
3742 (t
3743 ;; Back out of any macro so we don't miss any declaration
3744 ;; that could follow after it.
3745 (when (c-beginning-of-macro)
3746 (setq start-in-macro t))
3747
3748 ;; Now we're at a proper syntactically relevant position so we
3749 ;; can use the cache. But first clear it if it applied
3750 ;; further down.
3751 (c-invalidate-find-decl-cache cfd-start-pos)
3752
3753 (setq syntactic-pos (point))
3754 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
3755 ;; Don't have to do this if the cache is relevant here,
3756 ;; typically if the same line is refontified again. If
3757 ;; we're just some syntactic whitespace further down we can
3758 ;; still use the cache to limit the skipping.
3759 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
3760
3761 ;; If we hit `c-find-decl-syntactic-pos' and
3762 ;; `c-find-decl-match-pos' is set then we install the cached
3763 ;; values. If we hit `c-find-decl-syntactic-pos' and
3764 ;; `c-find-decl-match-pos' is nil then we know there's no decl
3765 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
3766 ;; and so we can continue the search from this point. If we
3767 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
3768 ;; the right spot to begin searching anyway.
3769 (if (and (eq (point) c-find-decl-syntactic-pos)
3770 c-find-decl-match-pos)
3771 (setq cfd-match-pos c-find-decl-match-pos
3772 cfd-continue-pos syntactic-pos)
3773
3774 (setq c-find-decl-syntactic-pos syntactic-pos)
3775
3776 (when (if (bobp)
3777 ;; Always consider bob a match to get the first
3778 ;; declaration in the file. Do this separately instead of
3779 ;; letting `c-decl-prefix-or-start-re' match bob, so that
3780 ;; regexp always can consume at least one character to
3781 ;; ensure that we won't get stuck in an infinite loop.
3782 (setq cfd-re-match 0)
3783 (backward-char)
3784 (c-beginning-of-current-token)
3785 (< (point) cfd-limit))
3786 ;; Do an initial search now. In the bob case above it's
3787 ;; only done to search for a `c-decl-end' spot.
3788 (c-find-decl-prefix-search))
3789
3790 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
3791 cfd-match-pos)))))
3792
3793 ;; Advance `cfd-continue-pos' if it's before the start position.
3794 ;; The closest continue position that might have effect at or
3795 ;; after the start depends on what we started in. This also
3796 ;; finds a suitable start position in the special cases when the
3797 ;; region is completely within a literal or macro.
3798 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
3799
3800 (cond
3801 (start-in-macro
3802 ;; If we're in a macro then it's the closest preceding token
3803 ;; in the macro. Check this before `start-in-literal',
3804 ;; since if we're inside a literal in a macro, the preceding
3805 ;; token is earlier than any `c-decl-end' spot inside the
3806 ;; literal (comment).
3807 (goto-char (or start-in-literal cfd-start-pos))
3808 ;; The only syntactic ws in macros are comments.
3809 (c-backward-comments)
3810 (backward-char)
3811 (c-beginning-of-current-token))
3812
3813 (start-in-literal
3814 ;; If we're in a comment it can only be the closest
3815 ;; preceding `c-decl-end' position within that comment, if
3816 ;; any. Go back to the beginning of such a property so that
3817 ;; `c-find-decl-prefix-search' will find the end of it.
3818 ;; (Can't stop at the end and install it directly on
3819 ;; `cfd-prop-match' since that variable might be cleared
3820 ;; after `cfd-fun' below.)
3821 ;;
3822 ;; Note that if the literal is a string then the property
3823 ;; search will simply skip to the beginning of it right
3824 ;; away.
3825 (if (not c-type-decl-end-used)
3826 (goto-char start-in-literal)
3827 (goto-char cfd-start-pos)
3828 (while (progn
3829 (goto-char (previous-single-property-change
3830 (point) 'c-type nil start-in-literal))
3831 (and (> (point) start-in-literal)
3832 (not (eq (c-get-char-property (point) 'c-type)
3833 'c-decl-end))))))
3834
3835 (when (= (point) start-in-literal)
3836 ;; Didn't find any property inside the comment, so we can
3837 ;; skip it entirely. (This won't skip past a string, but
3838 ;; that'll be handled quickly by the next
3839 ;; `c-find-decl-prefix-search' anyway.)
3840 (c-forward-single-comment)
3841 (if (> (point) cfd-limit)
3842 (goto-char cfd-limit))))
3843
3844 (t
3845 ;; If we started in normal code, the only match that might
3846 ;; apply before the start is what we already got in
3847 ;; `cfd-match-pos' so we can continue at the start position.
3848 ;; (Note that we don't get here if the first match is below
3849 ;; it.)
3850 (goto-char cfd-start-pos)))
3851
3852 ;; Delete found matches if they are before our new continue
3853 ;; position, so that `c-find-decl-prefix-search' won't back up
3854 ;; to them later on.
3855 (setq cfd-continue-pos (point))
3856 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
3857 (setq cfd-re-match nil))
3858 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
3859 (setq cfd-prop-match nil)))
3860
3861 (if syntactic-pos
3862 ;; This is the normal case and we got a proper syntactic
3863 ;; position. If there's a match then it's always outside
3864 ;; macros and comments, so advance to the next token and set
3865 ;; `cfd-token-pos'. The loop below will later go back using
3866 ;; `cfd-continue-pos' to fix declarations inside the
3867 ;; syntactic ws.
3868 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
3869 (goto-char syntactic-pos)
3870 (c-forward-syntactic-ws)
3871 (and cfd-continue-pos
3872 (< cfd-continue-pos (point))
3873 (setq cfd-token-pos (point))))
3874
3875 ;; Have one of the special cases when the region is completely
3876 ;; within a literal or macro. `cfd-continue-pos' is set to a
3877 ;; good start position for the search, so do it.
3878 (c-find-decl-prefix-search)))
3879
3880 ;; Now loop. Round what? (ACM, 2006/7/5). We already got the first match.
3881
3882 (while (progn
3883 (while (and
3884 (< cfd-match-pos cfd-limit)
3885
3886 (or
3887 ;; Kludge to filter out matches on the "<" that
3888 ;; aren't open parens, for the sake of languages
3889 ;; that got `c-recognize-<>-arglists' set.
3890 (and (eq (char-before cfd-match-pos) ?<)
3891 (not (c-get-char-property (1- cfd-match-pos)
3892 'syntax-table)))
3893
3894 ;; If `cfd-continue-pos' is less or equal to
3895 ;; `cfd-token-pos', we've got a hit inside a macro
3896 ;; that's in the syntactic whitespace before the last
3897 ;; "real" declaration we've checked. If they're equal
3898 ;; we've arrived at the declaration a second time, so
3899 ;; there's nothing to do.
3900 (= cfd-continue-pos cfd-token-pos)
3901
3902 (progn
3903 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
3904 ;; we're still searching for declarations embedded in
3905 ;; the syntactic whitespace. In that case we need
3906 ;; only to skip comments and not macros, since they
3907 ;; can't be nested, and that's already been done in
3908 ;; `c-find-decl-prefix-search'.
3909 (when (> cfd-continue-pos cfd-token-pos)
3910 (c-forward-syntactic-ws)
3911 (setq cfd-token-pos (point)))
3912
3913 ;; Continue if the following token fails the
3914 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
3915 (when (or (>= (point) cfd-limit)
3916 (not (looking-at cfd-decl-re))
3917 (and cfd-face-checklist
3918 (not (c-got-face-at
3919 (point) cfd-face-checklist))))
3920 (goto-char cfd-continue-pos)
3921 t)))
3922
3923 (< (point) cfd-limit))
3924 (c-find-decl-prefix-search))
3925
3926 (< (point) cfd-limit))
3927
3928 (when (and
3929 (>= (point) cfd-start-pos)
3930
3931 (progn
3932 ;; Narrow to the end of the macro if we got a hit inside
3933 ;; one, to avoid recognizing things that start inside the
3934 ;; macro and end outside it.
3935 (when (> cfd-match-pos cfd-macro-end)
3936 ;; Not in the same macro as in the previous round.
3937 (save-excursion
3938 (goto-char cfd-match-pos)
3939 (setq cfd-macro-end
3940 (if (save-excursion (and (c-beginning-of-macro)
3941 (< (point) cfd-match-pos)))
3942 (progn (c-end-of-macro)
3943 (point))
3944 0))))
3945
3946 (if (zerop cfd-macro-end)
3947 t
3948 (if (> cfd-macro-end (point))
3949 (progn (narrow-to-region (point-min) cfd-macro-end)
3950 t)
3951 ;; The matched token was the last thing in the macro,
3952 ;; so the whole match is bogus.
3953 (setq cfd-macro-end 0)
3954 nil))))
3955
3956 (c-debug-put-decl-spot-faces cfd-match-pos (point))
3957 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
3958 (setq cfd-prop-match nil))
3959
3960 (when (/= cfd-macro-end 0)
3961 ;; Restore limits if we did macro narrowment above.
3962 (narrow-to-region (point-min) cfd-buffer-end)))
3963
3964 (goto-char cfd-continue-pos)
3965 (if (= cfd-continue-pos cfd-limit)
3966 (setq cfd-match-pos cfd-limit)
3967 (c-find-decl-prefix-search)))))
3968
3969 \f
3970 ;; A cache for found types.
3971
3972 ;; Buffer local variable that contains an obarray with the types we've
3973 ;; found. If a declaration is recognized somewhere we record the
3974 ;; fully qualified identifier in it to recognize it as a type
3975 ;; elsewhere in the file too. This is not accurate since we do not
3976 ;; bother with the scoping rules of the languages, but in practice the
3977 ;; same name is seldom used as both a type and something else in a
3978 ;; file, and we only use this as a last resort in ambiguous cases (see
3979 ;; `c-forward-decl-or-cast-1').
3980 ;;
3981 ;; Not every type need be in this cache. However, things which have
3982 ;; ceased to be types must be removed from it.
3983 ;;
3984 ;; Template types in C++ are added here too but with the template
3985 ;; arglist replaced with "<>" in references or "<" for the one in the
3986 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
3987 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
3988 ;; template specs can be fairly sized programs in themselves) and
3989 ;; improves the hit ratio (it's a type regardless of the template
3990 ;; args; it's just not the same type, but we're only interested in
3991 ;; recognizing types, not telling distinct types apart). Note that
3992 ;; template types in references are added here too; from the example
3993 ;; above there will also be an entry "Foo<".
3994 (defvar c-found-types nil)
3995 (make-variable-buffer-local 'c-found-types)
3996
3997 (defsubst c-clear-found-types ()
3998 ;; Clears `c-found-types'.
3999 (setq c-found-types (make-vector 53 0)))
4000
4001 (defun c-add-type (from to)
4002 ;; Add the given region as a type in `c-found-types'. If the region
4003 ;; doesn't match an existing type but there is a type which is equal
4004 ;; to the given one except that the last character is missing, then
4005 ;; the shorter type is removed. That's done to avoid adding all
4006 ;; prefixes of a type as it's being entered and font locked. This
4007 ;; doesn't cover cases like when characters are removed from a type
4008 ;; or added in the middle. We'd need the position of point when the
4009 ;; font locking is invoked to solve this well.
4010 ;;
4011 ;; This function might do hidden buffer changes.
4012 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
4013 (unless (intern-soft type c-found-types)
4014 (unintern (substring type 0 -1) c-found-types)
4015 (intern type c-found-types))))
4016
4017 (defun c-unfind-type (name)
4018 ;; Remove the "NAME" from c-found-types, if present.
4019 (unintern name c-found-types))
4020
4021 (defsubst c-check-type (from to)
4022 ;; Return non-nil if the given region contains a type in
4023 ;; `c-found-types'.
4024 ;;
4025 ;; This function might do hidden buffer changes.
4026 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
4027 c-found-types))
4028
4029 (defun c-list-found-types ()
4030 ;; Return all the types in `c-found-types' as a sorted list of
4031 ;; strings.
4032 (let (type-list)
4033 (mapatoms (lambda (type)
4034 (setq type-list (cons (symbol-name type)
4035 type-list)))
4036 c-found-types)
4037 (sort type-list 'string-lessp)))
4038
4039 ;; Shut up the byte compiler.
4040 (defvar c-maybe-stale-found-type)
4041
4042 (defun c-trim-found-types (beg end old-len)
4043 ;; An after change function which, in conjunction with the info in
4044 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
4045 ;; from `c-found-types', should this type have become stale. For
4046 ;; example, this happens to "foo" when "foo \n bar();" becomes
4047 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
4048 ;; the fontification.
4049 ;;
4050 ;; Have we, perhaps, added non-ws characters to the front/back of a found
4051 ;; type?
4052 (when (> end beg)
4053 (save-excursion
4054 (when (< end (point-max))
4055 (goto-char end)
4056 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
4057 (progn (goto-char end)
4058 (c-end-of-current-token)))
4059 (c-unfind-type (buffer-substring-no-properties
4060 end (point)))))
4061 (when (> beg (point-min))
4062 (goto-char beg)
4063 (if (and (c-end-of-current-token) ; only moves when we started in the middle
4064 (progn (goto-char beg)
4065 (c-beginning-of-current-token)))
4066 (c-unfind-type (buffer-substring-no-properties
4067 (point) beg))))))
4068
4069 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
4070 (cond
4071 ;; Changing the amount of (already existing) whitespace - don't do anything.
4072 ((and (c-partial-ws-p beg end)
4073 (or (= beg end) ; removal of WS
4074 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
4075
4076 ;; The syntactic relationship which defined a "found type" has been
4077 ;; destroyed.
4078 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
4079 (c-unfind-type (cadr c-maybe-stale-found-type)))
4080 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
4081 )))
4082
4083 \f
4084 ;; Handling of small scale constructs like types and names.
4085
4086 (defun c-after-change-check-<>-operators (beg end)
4087 ;; This is called from `after-change-functions' when
4088 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
4089 ;; chars with paren syntax become part of another operator like "<<"
4090 ;; or ">=".
4091 ;;
4092 ;; This function might do hidden buffer changes.
4093
4094 (save-excursion
4095 (goto-char beg)
4096 (when (or (looking-at "[<>]")
4097 (< (skip-chars-backward "<>") 0))
4098
4099 (goto-char beg)
4100 (c-beginning-of-current-token)
4101 (when (and (< (point) beg)
4102 (looking-at c-<>-multichar-token-regexp)
4103 (< beg (setq beg (match-end 0))))
4104 (while (progn (skip-chars-forward "^<>" beg)
4105 (< (point) beg))
4106 (c-clear-char-property (point) 'syntax-table)
4107 (forward-char))))
4108
4109 (when (< beg end)
4110 (goto-char end)
4111 (when (or (looking-at "[<>]")
4112 (< (skip-chars-backward "<>") 0))
4113
4114 (goto-char end)
4115 (c-beginning-of-current-token)
4116 (when (and (< (point) end)
4117 (looking-at c-<>-multichar-token-regexp)
4118 (< end (setq end (match-end 0))))
4119 (while (progn (skip-chars-forward "^<>" end)
4120 (< (point) end))
4121 (c-clear-char-property (point) 'syntax-table)
4122 (forward-char)))))))
4123
4124 ;; Dynamically bound variable that instructs `c-forward-type' to also
4125 ;; treat possible types (i.e. those that it normally returns 'maybe or
4126 ;; 'found for) as actual types (and always return 'found for them).
4127 ;; This means that it records them in `c-record-type-identifiers' if
4128 ;; that is set, and that it adds them to `c-found-types'.
4129 (defvar c-promote-possible-types nil)
4130
4131 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
4132 ;; mark up successfully parsed arglists with paren syntax properties on
4133 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
4134 ;; `c-type' property of each argument separating comma.
4135 ;;
4136 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
4137 ;; all arglists for side effects (i.e. recording types), otherwise it
4138 ;; exploits any existing paren syntax properties to quickly jump to the
4139 ;; end of already parsed arglists.
4140 ;;
4141 ;; Marking up the arglists is not the default since doing that correctly
4142 ;; depends on a proper value for `c-restricted-<>-arglists'.
4143 (defvar c-parse-and-markup-<>-arglists nil)
4144
4145 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
4146 ;; not accept arglists that contain binary operators.
4147 ;;
4148 ;; This is primarily used to handle C++ template arglists. C++
4149 ;; disambiguates them by checking whether the preceding name is a
4150 ;; template or not. We can't do that, so we assume it is a template
4151 ;; if it can be parsed as one. That usually works well since
4152 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
4153 ;; in almost all cases would be pointless.
4154 ;;
4155 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
4156 ;; should let the comma separate the function arguments instead. And
4157 ;; in a context where the value of the expression is taken, e.g. in
4158 ;; "if (a < b || c > d)", it's probably not a template.
4159 (defvar c-restricted-<>-arglists nil)
4160
4161 ;; Dynamically bound variables that instructs
4162 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
4163 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
4164 ;; `c-forward-label' to record the ranges of all the type and
4165 ;; reference identifiers they encounter. They will build lists on
4166 ;; these variables where each element is a cons of the buffer
4167 ;; positions surrounding each identifier. This recording is only
4168 ;; activated when `c-record-type-identifiers' is non-nil.
4169 ;;
4170 ;; All known types that can't be identifiers are recorded, and also
4171 ;; other possible types if `c-promote-possible-types' is set.
4172 ;; Recording is however disabled inside angle bracket arglists that
4173 ;; are encountered inside names and other angle bracket arglists.
4174 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
4175 ;; instead.
4176 ;;
4177 ;; Only the names in C++ template style references (e.g. "tmpl" in
4178 ;; "tmpl<a,b>::foo") are recorded as references, other references
4179 ;; aren't handled here.
4180 ;;
4181 ;; `c-forward-label' records the label identifier(s) on
4182 ;; `c-record-ref-identifiers'.
4183 (defvar c-record-type-identifiers nil)
4184 (defvar c-record-ref-identifiers nil)
4185
4186 ;; This variable will receive a cons cell of the range of the last
4187 ;; single identifier symbol stepped over by `c-forward-name' if it's
4188 ;; successful. This is the range that should be put on one of the
4189 ;; record lists above by the caller. It's assigned nil if there's no
4190 ;; such symbol in the name.
4191 (defvar c-last-identifier-range nil)
4192
4193 (defmacro c-record-type-id (range)
4194 (if (eq (car-safe range) 'cons)
4195 ;; Always true.
4196 `(setq c-record-type-identifiers
4197 (cons ,range c-record-type-identifiers))
4198 `(let ((range ,range))
4199 (if range
4200 (setq c-record-type-identifiers
4201 (cons range c-record-type-identifiers))))))
4202
4203 (defmacro c-record-ref-id (range)
4204 (if (eq (car-safe range) 'cons)
4205 ;; Always true.
4206 `(setq c-record-ref-identifiers
4207 (cons ,range c-record-ref-identifiers))
4208 `(let ((range ,range))
4209 (if range
4210 (setq c-record-ref-identifiers
4211 (cons range c-record-ref-identifiers))))))
4212
4213 ;; Dynamically bound variable that instructs `c-forward-type' to
4214 ;; record the ranges of types that only are found. Behaves otherwise
4215 ;; like `c-record-type-identifiers'.
4216 (defvar c-record-found-types nil)
4217
4218 (defmacro c-forward-keyword-prefixed-id (type)
4219 ;; Used internally in `c-forward-keyword-clause' to move forward
4220 ;; over a type (if TYPE is 'type) or a name (otherwise) which
4221 ;; possibly is prefixed by keywords and their associated clauses.
4222 ;; Try with a type/name first to not trip up on those that begin
4223 ;; with a keyword. Return t if a known or found type is moved
4224 ;; over. The point is clobbered if nil is returned. If range
4225 ;; recording is enabled, the identifier is recorded on as a type
4226 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
4227 ;;
4228 ;; This macro might do hidden buffer changes.
4229 `(let (res)
4230 (while (if (setq res ,(if (eq type 'type)
4231 `(c-forward-type)
4232 `(c-forward-name)))
4233 nil
4234 (and (looking-at c-keywords-regexp)
4235 (c-forward-keyword-clause 1))))
4236 (when (memq res '(t known found prefix))
4237 ,(when (eq type 'ref)
4238 `(when c-record-type-identifiers
4239 (c-record-ref-id c-last-identifier-range)))
4240 t)))
4241
4242 (defmacro c-forward-id-comma-list (type update-safe-pos)
4243 ;; Used internally in `c-forward-keyword-clause' to move forward
4244 ;; over a comma separated list of types or names using
4245 ;; `c-forward-keyword-prefixed-id'.
4246 ;;
4247 ;; This macro might do hidden buffer changes.
4248 `(while (and (progn
4249 ,(when update-safe-pos
4250 `(setq safe-pos (point)))
4251 (eq (char-after) ?,))
4252 (progn
4253 (forward-char)
4254 (c-forward-syntactic-ws)
4255 (c-forward-keyword-prefixed-id ,type)))))
4256
4257 (defun c-forward-keyword-clause (match)
4258 ;; Submatch MATCH in the current match data is assumed to surround a
4259 ;; token. If it's a keyword, move over it and any immediately
4260 ;; following clauses associated with it, stopping at the start of
4261 ;; the next token. t is returned in that case, otherwise the point
4262 ;; stays and nil is returned. The kind of clauses that are
4263 ;; recognized are those specified by `c-type-list-kwds',
4264 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
4265 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
4266 ;; and `c-<>-arglist-kwds'.
4267 ;;
4268 ;; This function records identifier ranges on
4269 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
4270 ;; `c-record-type-identifiers' is non-nil.
4271 ;;
4272 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
4273 ;; apply directly after the keyword, the type list is moved over
4274 ;; only when there is no unaccounted token before it (i.e. a token
4275 ;; that isn't moved over due to some other keyword list). The
4276 ;; identifier ranges in the list are still recorded if that should
4277 ;; be done, though.
4278 ;;
4279 ;; This function might do hidden buffer changes.
4280
4281 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
4282 ;; The call to `c-forward-<>-arglist' below is made after
4283 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
4284 ;; are angle bracket arglists and `c-restricted-<>-arglists'
4285 ;; should therefore be nil.
4286 (c-parse-and-markup-<>-arglists t)
4287 c-restricted-<>-arglists)
4288
4289 (when kwd-sym
4290 (goto-char (match-end match))
4291 (c-forward-syntactic-ws)
4292 (setq safe-pos (point))
4293
4294 (cond
4295 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
4296 (c-forward-keyword-prefixed-id type))
4297 ;; There's a type directly after a keyword in `c-type-list-kwds'.
4298 (c-forward-id-comma-list type t))
4299
4300 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
4301 (c-forward-keyword-prefixed-id ref))
4302 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
4303 (c-forward-id-comma-list ref t))
4304
4305 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
4306 (eq (char-after) ?\())
4307 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
4308
4309 (forward-char)
4310 (when (and (setq pos (c-up-list-forward))
4311 (eq (char-before pos) ?\)))
4312 (when (and c-record-type-identifiers
4313 (c-keyword-member kwd-sym 'c-paren-type-kwds))
4314 ;; Use `c-forward-type' on every identifier we can find
4315 ;; inside the paren, to record the types.
4316 (while (c-syntactic-re-search-forward c-symbol-start pos t)
4317 (goto-char (match-beginning 0))
4318 (unless (c-forward-type)
4319 (looking-at c-symbol-key) ; Always matches.
4320 (goto-char (match-end 0)))))
4321
4322 (goto-char pos)
4323 (c-forward-syntactic-ws)
4324 (setq safe-pos (point))))
4325
4326 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
4327 (eq (char-after) ?<)
4328 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
4329 (c-forward-syntactic-ws)
4330 (setq safe-pos (point)))
4331
4332 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
4333 (not (looking-at c-symbol-start))
4334 (c-safe (c-forward-sexp) t))
4335 (c-forward-syntactic-ws)
4336 (setq safe-pos (point))))
4337
4338 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
4339 (if (eq (char-after) ?:)
4340 ;; If we are at the colon already, we move over the type
4341 ;; list after it.
4342 (progn
4343 (forward-char)
4344 (c-forward-syntactic-ws)
4345 (when (c-forward-keyword-prefixed-id type)
4346 (c-forward-id-comma-list type t)))
4347 ;; Not at the colon, so stop here. But the identifier
4348 ;; ranges in the type list later on should still be
4349 ;; recorded.
4350 (and c-record-type-identifiers
4351 (progn
4352 ;; If a keyword matched both one of the types above and
4353 ;; this one, we match `c-colon-type-list-re' after the
4354 ;; clause matched above.
4355 (goto-char safe-pos)
4356 (looking-at c-colon-type-list-re))
4357 (progn
4358 (goto-char (match-end 0))
4359 (c-forward-syntactic-ws)
4360 (c-forward-keyword-prefixed-id type))
4361 ;; There's a type after the `c-colon-type-list-re' match
4362 ;; after a keyword in `c-colon-type-list-kwds'.
4363 (c-forward-id-comma-list type nil))))
4364
4365 (goto-char safe-pos)
4366 t)))
4367
4368 (defun c-forward-<>-arglist (all-types)
4369 ;; The point is assumed to be at a "<". Try to treat it as the open
4370 ;; paren of an angle bracket arglist and move forward to the the
4371 ;; corresponding ">". If successful, the point is left after the
4372 ;; ">" and t is returned, otherwise the point isn't moved and nil is
4373 ;; returned. If ALL-TYPES is t then all encountered arguments in
4374 ;; the arglist that might be types are treated as found types.
4375 ;;
4376 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
4377 ;; function handles text properties on the angle brackets and argument
4378 ;; separating commas.
4379 ;;
4380 ;; `c-restricted-<>-arglists' controls how lenient the template
4381 ;; arglist recognition should be.
4382 ;;
4383 ;; This function records identifier ranges on
4384 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
4385 ;; `c-record-type-identifiers' is non-nil.
4386 ;;
4387 ;; This function might do hidden buffer changes.
4388
4389 (let ((start (point))
4390 ;; If `c-record-type-identifiers' is set then activate
4391 ;; recording of any found types that constitute an argument in
4392 ;; the arglist.
4393 (c-record-found-types (if c-record-type-identifiers t)))
4394 (if (catch 'angle-bracket-arglist-escape
4395 (setq c-record-found-types
4396 (c-forward-<>-arglist-recur all-types)))
4397 (progn
4398 (when (consp c-record-found-types)
4399 (setq c-record-type-identifiers
4400 ;; `nconc' doesn't mind that the tail of
4401 ;; `c-record-found-types' is t.
4402 (nconc c-record-found-types c-record-type-identifiers)))
4403 t)
4404
4405 (goto-char start)
4406 nil)))
4407
4408 (defun c-forward-<>-arglist-recur (all-types)
4409 ;; Recursive part of `c-forward-<>-arglist'.
4410 ;;
4411 ;; This function might do hidden buffer changes.
4412
4413 (let ((start (point)) res pos tmp
4414 ;; Cover this so that any recorded found type ranges are
4415 ;; automatically lost if it turns out to not be an angle
4416 ;; bracket arglist. It's propagated through the return value
4417 ;; on successful completion.
4418 (c-record-found-types c-record-found-types)
4419 ;; List that collects the positions after the argument
4420 ;; separating ',' in the arglist.
4421 arg-start-pos)
4422
4423 ;; If the '<' has paren open syntax then we've marked it as an angle
4424 ;; bracket arglist before, so skip to the end.
4425 (if (and (not c-parse-and-markup-<>-arglists)
4426 (c-get-char-property (point) 'syntax-table))
4427
4428 (progn
4429 (forward-char)
4430 (if (and (c-go-up-list-forward)
4431 (eq (char-before) ?>))
4432 t
4433
4434 ;; Got unmatched paren angle brackets. We don't clear the paren
4435 ;; syntax properties and retry, on the basis that it's very
4436 ;; unlikely that paren angle brackets become operators by code
4437 ;; manipulation. It's far more likely that it doesn't match due
4438 ;; to narrowing or some temporary change.
4439 (goto-char start)
4440 nil))
4441
4442 (forward-char)
4443 (unless (looking-at c-<-op-cont-regexp)
4444 (while (and
4445 (progn
4446
4447 (when c-record-type-identifiers
4448 (if all-types
4449
4450 ;; All encountered identifiers are types, so set the
4451 ;; promote flag and parse the type.
4452 (progn
4453 (c-forward-syntactic-ws)
4454 (when (looking-at c-identifier-start)
4455 (let ((c-promote-possible-types t))
4456 (c-forward-type))))
4457
4458 ;; Check if this arglist argument is a sole type. If
4459 ;; it's known then it's recorded in
4460 ;; `c-record-type-identifiers'. If it only is found
4461 ;; then it's recorded in `c-record-found-types' which we
4462 ;; might roll back if it turns out that this isn't an
4463 ;; angle bracket arglist afterall.
4464 (when (memq (char-before) '(?, ?<))
4465 (let ((orig-record-found-types c-record-found-types))
4466 (c-forward-syntactic-ws)
4467 (and (memq (c-forward-type) '(known found))
4468 (not (looking-at "[,>]"))
4469 ;; A found type was recorded but it's not the
4470 ;; only thing in the arglist argument, so reset
4471 ;; `c-record-found-types'.
4472 (setq c-record-found-types
4473 orig-record-found-types))))))
4474
4475 (setq pos (point))
4476 (or (when (eq (char-after) ?>)
4477 ;; Must check for '>' at the very start separately,
4478 ;; since the regexp below has to avoid ">>" without
4479 ;; using \\=.
4480 (forward-char)
4481 t)
4482
4483 ;; Note: These regexps exploit the match order in \| so
4484 ;; that "<>" is matched by "<" rather than "[^>:-]>".
4485 (c-syntactic-re-search-forward
4486 (if c-restricted-<>-arglists
4487 ;; Stop on ',', '|', '&', '+' and '-' to catch
4488 ;; common binary operators that could be between
4489 ;; two comparison expressions "a<b" and "c>d".
4490 "[<;{},|&+-]\\|\\([^>:-]>\\)"
4491 ;; Otherwise we still stop on ',' to find the
4492 ;; argument start positions.
4493 "[<;{},]\\|\\([^>:-]>\\)")
4494 nil 'move t t 1)
4495
4496 ;; If the arglist starter has lost its open paren
4497 ;; syntax but not the closer, we won't find the
4498 ;; closer above since we only search in the
4499 ;; balanced sexp. In that case we stop just short
4500 ;; of it so check if the following char is the closer.
4501 (when (eq (char-after) ?>)
4502 (forward-char)
4503 t)))
4504
4505 (cond
4506 ((eq (char-before) ?>)
4507 ;; Either an operator starting with '>' or the end of
4508 ;; the angle bracket arglist.
4509
4510 (if (looking-at c->-op-cont-regexp)
4511 (progn
4512 (goto-char (match-end 0))
4513 t) ; Continue the loop.
4514
4515 ;; The angle bracket arglist is finished.
4516 (when c-parse-and-markup-<>-arglists
4517 (while arg-start-pos
4518 (c-put-c-type-property (1- (car arg-start-pos))
4519 'c-<>-arg-sep)
4520 (setq arg-start-pos (cdr arg-start-pos)))
4521 (c-mark-<-as-paren start)
4522 (c-mark->-as-paren (1- (point))))
4523 (setq res t)
4524 nil)) ; Exit the loop.
4525
4526 ((eq (char-before) ?<)
4527 ;; Either an operator starting with '<' or a nested arglist.
4528
4529 (setq pos (point))
4530 (let (id-start id-end subres keyword-match)
4531 (if (if (looking-at c-<-op-cont-regexp)
4532 (setq tmp (match-end 0))
4533 (setq tmp pos)
4534 (backward-char)
4535 (not
4536 (and
4537
4538 (save-excursion
4539 ;; There's always an identifier before an angle
4540 ;; bracket arglist, or a keyword in
4541 ;; `c-<>-type-kwds' or `c-<>-arglist-kwds'.
4542 (c-backward-syntactic-ws)
4543 (setq id-end (point))
4544 (c-simple-skip-symbol-backward)
4545 (when (or (setq keyword-match
4546 (looking-at c-opt-<>-sexp-key))
4547 (not (looking-at c-keywords-regexp)))
4548 (setq id-start (point))))
4549
4550 (setq subres
4551 (let ((c-record-type-identifiers nil)
4552 (c-record-found-types nil))
4553 (c-forward-<>-arglist-recur
4554 (and keyword-match
4555 (c-keyword-member
4556 (c-keyword-sym (match-string 1))
4557 'c-<>-type-kwds)))))
4558 )))
4559
4560 ;; It was not an angle bracket arglist.
4561 (goto-char tmp)
4562
4563 ;; It was an angle bracket arglist.
4564 (setq c-record-found-types subres)
4565
4566 ;; Record the identifier before the template as a type
4567 ;; or reference depending on whether the arglist is last
4568 ;; in a qualified identifier.
4569 (when (and c-record-type-identifiers
4570 (not keyword-match))
4571 (if (and c-opt-identifier-concat-key
4572 (progn
4573 (c-forward-syntactic-ws)
4574 (looking-at c-opt-identifier-concat-key)))
4575 (c-record-ref-id (cons id-start id-end))
4576 (c-record-type-id (cons id-start id-end))))))
4577 t)
4578
4579 ((and (eq (char-before) ?,)
4580 (not c-restricted-<>-arglists))
4581 ;; Just another argument. Record the position. The
4582 ;; type check stuff that made us stop at it is at
4583 ;; the top of the loop.
4584 (setq arg-start-pos (cons (point) arg-start-pos)))
4585
4586 (t
4587 ;; Got a character that can't be in an angle bracket
4588 ;; arglist argument. Abort using `throw', since
4589 ;; it's useless to try to find a surrounding arglist
4590 ;; if we're nested.
4591 (throw 'angle-bracket-arglist-escape nil))))))
4592
4593 (if res
4594 (or c-record-found-types t)))))
4595
4596 (defun c-backward-<>-arglist (all-types &optional limit)
4597 ;; The point is assumed to be directly after a ">". Try to treat it
4598 ;; as the close paren of an angle bracket arglist and move back to
4599 ;; the corresponding "<". If successful, the point is left at
4600 ;; the "<" and t is returned, otherwise the point isn't moved and
4601 ;; nil is returned. ALL-TYPES is passed on to
4602 ;; `c-forward-<>-arglist'.
4603 ;;
4604 ;; If the optional LIMIT is given, it bounds the backward search.
4605 ;; It's then assumed to be at a syntactically relevant position.
4606 ;;
4607 ;; This is a wrapper around `c-forward-<>-arglist'. See that
4608 ;; function for more details.
4609
4610 (let ((start (point)))
4611 (backward-char)
4612 (if (and (not c-parse-and-markup-<>-arglists)
4613 (c-get-char-property (point) 'syntax-table))
4614
4615 (if (and (c-go-up-list-backward)
4616 (eq (char-after) ?<))
4617 t
4618 ;; See corresponding note in `c-forward-<>-arglist'.
4619 (goto-char start)
4620 nil)
4621
4622 (while (progn
4623 (c-syntactic-skip-backward "^<;{}" limit t)
4624
4625 (and
4626 (if (eq (char-before) ?<)
4627 t
4628 ;; Stopped at bob or a char that isn't allowed in an
4629 ;; arglist, so we've failed.
4630 (goto-char start)
4631 nil)
4632
4633 (if (> (point)
4634 (progn (c-beginning-of-current-token)
4635 (point)))
4636 ;; If we moved then the "<" was part of some
4637 ;; multicharacter token.
4638 t
4639
4640 (backward-char)
4641 (let ((beg-pos (point)))
4642 (if (c-forward-<>-arglist all-types)
4643 (cond ((= (point) start)
4644 ;; Matched the arglist. Break the while.
4645 (goto-char beg-pos)
4646 nil)
4647 ((> (point) start)
4648 ;; We started from a non-paren ">" inside an
4649 ;; arglist.
4650 (goto-char start)
4651 nil)
4652 (t
4653 ;; Matched a shorter arglist. Can be a nested
4654 ;; one so continue looking.
4655 (goto-char beg-pos)
4656 t))
4657 t))))))
4658
4659 (/= (point) start))))
4660
4661 (defun c-forward-name ()
4662 ;; Move forward over a complete name if at the beginning of one,
4663 ;; stopping at the next following token. If the point is not at
4664 ;; something that are recognized as name then it stays put. A name
4665 ;; could be something as simple as "foo" in C or something as
4666 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
4667 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
4668 ;; int>::*volatile const" in C++ (this function is actually little
4669 ;; more than a `looking-at' call in all modes except those that,
4670 ;; like C++, have `c-recognize-<>-arglists' set). Return nil if no
4671 ;; name is found, 'template if it's an identifier ending with an
4672 ;; angle bracket arglist, 'operator of it's an operator identifier,
4673 ;; or t if it's some other kind of name.
4674 ;;
4675 ;; This function records identifier ranges on
4676 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
4677 ;; `c-record-type-identifiers' is non-nil.
4678 ;;
4679 ;; This function might do hidden buffer changes.
4680
4681 (let ((pos (point)) (start (point)) res id-start id-end
4682 ;; Turn off `c-promote-possible-types' here since we might
4683 ;; call `c-forward-<>-arglist' and we don't want it to promote
4684 ;; every suspect thing in the arglist to a type. We're
4685 ;; typically called from `c-forward-type' in this case, and
4686 ;; the caller only wants the top level type that it finds to
4687 ;; be promoted.
4688 c-promote-possible-types)
4689 (while
4690 (and
4691 (looking-at c-identifier-key)
4692
4693 (progn
4694 ;; Check for keyword. We go to the last symbol in
4695 ;; `c-identifier-key' first.
4696 (goto-char (setq id-end (match-end 0)))
4697 (c-simple-skip-symbol-backward)
4698 (setq id-start (point))
4699
4700 (if (looking-at c-keywords-regexp)
4701 (when (and (c-major-mode-is 'c++-mode)
4702 (looking-at
4703 (cc-eval-when-compile
4704 (concat "\\(operator\\|\\(template\\)\\)"
4705 "\\(" (c-lang-const c-nonsymbol-key c++)
4706 "\\|$\\)")))
4707 (if (match-beginning 2)
4708 ;; "template" is only valid inside an
4709 ;; identifier if preceded by "::".
4710 (save-excursion
4711 (c-backward-syntactic-ws)
4712 (and (c-safe (backward-char 2) t)
4713 (looking-at "::")))
4714 t))
4715
4716 ;; Handle a C++ operator or template identifier.
4717 (goto-char id-end)
4718 (c-forward-syntactic-ws)
4719 (cond ((eq (char-before id-end) ?e)
4720 ;; Got "... ::template".
4721 (let ((subres (c-forward-name)))
4722 (when subres
4723 (setq pos (point)
4724 res subres))))
4725
4726 ((looking-at c-identifier-start)
4727 ;; Got a cast operator.
4728 (when (c-forward-type)
4729 (setq pos (point)
4730 res 'operator)
4731 ;; Now we should match a sequence of either
4732 ;; '*', '&' or a name followed by ":: *",
4733 ;; where each can be followed by a sequence
4734 ;; of `c-opt-type-modifier-key'.
4735 (while (cond ((looking-at "[*&]")
4736 (goto-char (match-end 0))
4737 t)
4738 ((looking-at c-identifier-start)
4739 (and (c-forward-name)
4740 (looking-at "::")
4741 (progn
4742 (goto-char (match-end 0))
4743 (c-forward-syntactic-ws)
4744 (eq (char-after) ?*))
4745 (progn
4746 (forward-char)
4747 t))))
4748 (while (progn
4749 (c-forward-syntactic-ws)
4750 (setq pos (point))
4751 (looking-at c-opt-type-modifier-key))
4752 (goto-char (match-end 1))))))
4753
4754 ((looking-at c-overloadable-operators-regexp)
4755 ;; Got some other operator.
4756 (setq c-last-identifier-range
4757 (cons (point) (match-end 0)))
4758 (goto-char (match-end 0))
4759 (c-forward-syntactic-ws)
4760 (setq pos (point)
4761 res 'operator)))
4762
4763 nil)
4764
4765 ;; `id-start' is equal to `id-end' if we've jumped over
4766 ;; an identifier that doesn't end with a symbol token.
4767 ;; That can occur e.g. for Java import directives on the
4768 ;; form "foo.bar.*".
4769 (when (and id-start (/= id-start id-end))
4770 (setq c-last-identifier-range
4771 (cons id-start id-end)))
4772 (goto-char id-end)
4773 (c-forward-syntactic-ws)
4774 (setq pos (point)
4775 res t)))
4776
4777 (progn
4778 (goto-char pos)
4779 (when (or c-opt-identifier-concat-key
4780 c-recognize-<>-arglists)
4781
4782 (cond
4783 ((and c-opt-identifier-concat-key
4784 (looking-at c-opt-identifier-concat-key))
4785 ;; Got a concatenated identifier. This handles the
4786 ;; cases with tricky syntactic whitespace that aren't
4787 ;; covered in `c-identifier-key'.
4788 (goto-char (match-end 0))
4789 (c-forward-syntactic-ws)
4790 t)
4791
4792 ((and c-recognize-<>-arglists
4793 (eq (char-after) ?<))
4794 ;; Maybe an angle bracket arglist.
4795
4796 (when (let (c-record-type-identifiers
4797 c-record-found-types)
4798 (c-forward-<>-arglist nil))
4799
4800 (c-add-type start (1+ pos))
4801 (c-forward-syntactic-ws)
4802 (setq pos (point)
4803 c-last-identifier-range nil)
4804
4805 (if (and c-opt-identifier-concat-key
4806 (looking-at c-opt-identifier-concat-key))
4807
4808 ;; Continue if there's an identifier concatenation
4809 ;; operator after the template argument.
4810 (progn
4811 (when (and c-record-type-identifiers id-start)
4812 (c-record-ref-id (cons id-start id-end)))
4813 (forward-char 2)
4814 (c-forward-syntactic-ws)
4815 t)
4816
4817 (when (and c-record-type-identifiers id-start)
4818 (c-record-type-id (cons id-start id-end)))
4819 (setq res 'template)
4820 nil)))
4821 )))))
4822
4823 (goto-char pos)
4824 res))
4825
4826 (defun c-forward-type ()
4827 ;; Move forward over a type spec if at the beginning of one,
4828 ;; stopping at the next following token. Return t if it's a known
4829 ;; type that can't be a name or other expression, 'known if it's an
4830 ;; otherwise known type (according to `*-font-lock-extra-types'),
4831 ;; 'prefix if it's a known prefix of a type, 'found if it's a type
4832 ;; that matches one in `c-found-types', 'maybe if it's an identfier
4833 ;; that might be a type, or nil if it can't be a type (the point
4834 ;; isn't moved then). The point is assumed to be at the beginning
4835 ;; of a token.
4836 ;;
4837 ;; Note that this function doesn't skip past the brace definition
4838 ;; that might be considered part of the type, e.g.
4839 ;; "enum {a, b, c} foo".
4840 ;;
4841 ;; This function records identifier ranges on
4842 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
4843 ;; `c-record-type-identifiers' is non-nil.
4844 ;;
4845 ;; This function might do hidden buffer changes.
4846
4847 (let ((start (point)) pos res name-res id-start id-end id-range)
4848
4849 ;; Skip leading type modifiers. If any are found we know it's a
4850 ;; prefix of a type.
4851 (when c-opt-type-modifier-key
4852 (while (looking-at c-opt-type-modifier-key)
4853 (goto-char (match-end 1))
4854 (c-forward-syntactic-ws)
4855 (setq res 'prefix)))
4856
4857 (cond
4858 ((looking-at c-type-prefix-key)
4859 ;; Looking at a keyword that prefixes a type identifier,
4860 ;; e.g. "class".
4861 (goto-char (match-end 1))
4862 (c-forward-syntactic-ws)
4863 (setq pos (point))
4864 (if (memq (setq name-res (c-forward-name)) '(t template))
4865 (progn
4866 (when (eq name-res t)
4867 ;; In many languages the name can be used without the
4868 ;; prefix, so we add it to `c-found-types'.
4869 (c-add-type pos (point))
4870 (when (and c-record-type-identifiers
4871 c-last-identifier-range)
4872 (c-record-type-id c-last-identifier-range)))
4873 (setq res t))
4874 ;; Invalid syntax.
4875 (goto-char start)
4876 (setq res nil)))
4877
4878 ((progn
4879 (setq pos nil)
4880 (if (looking-at c-identifier-start)
4881 (save-excursion
4882 (setq id-start (point)
4883 name-res (c-forward-name))
4884 (when name-res
4885 (setq id-end (point)
4886 id-range c-last-identifier-range))))
4887 (and (cond ((looking-at c-primitive-type-key)
4888 (setq res t))
4889 ((c-with-syntax-table c-identifier-syntax-table
4890 (looking-at c-known-type-key))
4891 (setq res 'known)))
4892 (or (not id-end)
4893 (>= (save-excursion
4894 (save-match-data
4895 (goto-char (match-end 1))
4896 (c-forward-syntactic-ws)
4897 (setq pos (point))))
4898 id-end)
4899 (setq res nil))))
4900 ;; Looking at a primitive or known type identifier. We've
4901 ;; checked for a name first so that we don't go here if the
4902 ;; known type match only is a prefix of another name.
4903
4904 (setq id-end (match-end 1))
4905
4906 (when (and c-record-type-identifiers
4907 (or c-promote-possible-types (eq res t)))
4908 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
4909
4910 (if (and c-opt-type-component-key
4911 (save-match-data
4912 (looking-at c-opt-type-component-key)))
4913 ;; There might be more keywords for the type.
4914 (let (safe-pos)
4915 (c-forward-keyword-clause 1)
4916 (while (progn
4917 (setq safe-pos (point))
4918 (looking-at c-opt-type-component-key))
4919 (when (and c-record-type-identifiers
4920 (looking-at c-primitive-type-key))
4921 (c-record-type-id (cons (match-beginning 1)
4922 (match-end 1))))
4923 (c-forward-keyword-clause 1))
4924 (if (looking-at c-primitive-type-key)
4925 (progn
4926 (when c-record-type-identifiers
4927 (c-record-type-id (cons (match-beginning 1)
4928 (match-end 1))))
4929 (c-forward-keyword-clause 1)
4930 (setq res t))
4931 (goto-char safe-pos)
4932 (setq res 'prefix)))
4933 (unless (save-match-data (c-forward-keyword-clause 1))
4934 (if pos
4935 (goto-char pos)
4936 (goto-char (match-end 1))
4937 (c-forward-syntactic-ws)))))
4938
4939 (name-res
4940 (cond ((eq name-res t)
4941 ;; A normal identifier.
4942 (goto-char id-end)
4943 (if (or res c-promote-possible-types)
4944 (progn
4945 (c-add-type id-start id-end)
4946 (when (and c-record-type-identifiers id-range)
4947 (c-record-type-id id-range))
4948 (unless res
4949 (setq res 'found)))
4950 (setq res (if (c-check-type id-start id-end)
4951 ;; It's an identifier that has been used as
4952 ;; a type somewhere else.
4953 'found
4954 ;; It's an identifier that might be a type.
4955 'maybe))))
4956 ((eq name-res 'template)
4957 ;; A template is a type.
4958 (goto-char id-end)
4959 (setq res t))
4960 (t
4961 ;; Otherwise it's an operator identifier, which is not a type.
4962 (goto-char start)
4963 (setq res nil)))))
4964
4965 (when res
4966 ;; Skip trailing type modifiers. If any are found we know it's
4967 ;; a type.
4968 (when c-opt-type-modifier-key
4969 (while (looking-at c-opt-type-modifier-key)
4970 (goto-char (match-end 1))
4971 (c-forward-syntactic-ws)
4972 (setq res t)))
4973
4974 ;; Step over any type suffix operator. Do not let the existence
4975 ;; of these alter the classification of the found type, since
4976 ;; these operators typically are allowed in normal expressions
4977 ;; too.
4978 (when c-opt-type-suffix-key
4979 (while (looking-at c-opt-type-suffix-key)
4980 (goto-char (match-end 1))
4981 (c-forward-syntactic-ws)))
4982
4983 (when c-opt-type-concat-key
4984 ;; Look for a trailing operator that concatenates the type
4985 ;; with a following one, and if so step past that one through
4986 ;; a recursive call. Note that we don't record concatenated
4987 ;; types in `c-found-types' - it's the component types that
4988 ;; are recorded when appropriate.
4989 (setq pos (point))
4990 (let* ((c-promote-possible-types (or (memq res '(t known))
4991 c-promote-possible-types))
4992 ;; If we can't promote then set `c-record-found-types' so that
4993 ;; we can merge in the types from the second part afterwards if
4994 ;; it turns out to be a known type there.
4995 (c-record-found-types (and c-record-type-identifiers
4996 (not c-promote-possible-types)))
4997 subres)
4998 (if (and (looking-at c-opt-type-concat-key)
4999
5000 (progn
5001 (goto-char (match-end 1))
5002 (c-forward-syntactic-ws)
5003 (setq subres (c-forward-type))))
5004
5005 (progn
5006 ;; If either operand certainly is a type then both are, but we
5007 ;; don't let the existence of the operator itself promote two
5008 ;; uncertain types to a certain one.
5009 (cond ((eq res t))
5010 ((eq subres t)
5011 (unless (eq name-res 'template)
5012 (c-add-type id-start id-end))
5013 (when (and c-record-type-identifiers id-range)
5014 (c-record-type-id id-range))
5015 (setq res t))
5016 ((eq res 'known))
5017 ((eq subres 'known)
5018 (setq res 'known))
5019 ((eq res 'found))
5020 ((eq subres 'found)
5021 (setq res 'found))
5022 (t
5023 (setq res 'maybe)))
5024
5025 (when (and (eq res t)
5026 (consp c-record-found-types))
5027 ;; Merge in the ranges of any types found by the second
5028 ;; `c-forward-type'.
5029 (setq c-record-type-identifiers
5030 ;; `nconc' doesn't mind that the tail of
5031 ;; `c-record-found-types' is t.
5032 (nconc c-record-found-types
5033 c-record-type-identifiers))))
5034
5035 (goto-char pos))))
5036
5037 (when (and c-record-found-types (memq res '(known found)) id-range)
5038 (setq c-record-found-types
5039 (cons id-range c-record-found-types))))
5040
5041 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
5042
5043 res))
5044
5045 \f
5046 ;; Handling of large scale constructs like statements and declarations.
5047
5048 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
5049 ;; defsubst or perhaps even a defun, but it contains lots of free
5050 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
5051 (defmacro c-fdoc-shift-type-backward (&optional short)
5052 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
5053 ;; of types when parsing a declaration, which means that it
5054 ;; sometimes consumes the identifier in the declaration as a type.
5055 ;; This is used to "backtrack" and make the last type be treated as
5056 ;; an identifier instead.
5057 `(progn
5058 ,(unless short
5059 ;; These identifiers are bound only in the inner let.
5060 '(setq identifier-type at-type
5061 identifier-start type-start
5062 got-parens nil
5063 got-identifier t
5064 got-suffix t
5065 got-suffix-after-parens id-start
5066 paren-depth 0))
5067
5068 (if (setq at-type (if (eq backup-at-type 'prefix)
5069 t
5070 backup-at-type))
5071 (setq type-start backup-type-start
5072 id-start backup-id-start)
5073 (setq type-start start-pos
5074 id-start start-pos))
5075
5076 ;; When these flags already are set we've found specifiers that
5077 ;; unconditionally signal these attributes - backtracking doesn't
5078 ;; change that. So keep them set in that case.
5079 (or at-type-decl
5080 (setq at-type-decl backup-at-type-decl))
5081 (or maybe-typeless
5082 (setq maybe-typeless backup-maybe-typeless))
5083
5084 ,(unless short
5085 ;; This identifier is bound only in the inner let.
5086 '(setq start id-start))))
5087
5088 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
5089 ;; Move forward over a declaration or a cast if at the start of one.
5090 ;; The point is assumed to be at the start of some token. Nil is
5091 ;; returned if no declaration or cast is recognized, and the point
5092 ;; is clobbered in that case.
5093 ;;
5094 ;; If a declaration is parsed:
5095 ;;
5096 ;; The point is left at the first token after the first complete
5097 ;; declarator, if there is one. The return value is a cons where
5098 ;; the car is the position of the first token in the declarator. (See
5099 ;; below for the cdr.)
5100 ;; Some examples:
5101 ;;
5102 ;; void foo (int a, char *b) stuff ...
5103 ;; car ^ ^ point
5104 ;; float (*a)[], b;
5105 ;; car ^ ^ point
5106 ;; unsigned int a = c_style_initializer, b;
5107 ;; car ^ ^ point
5108 ;; unsigned int a (cplusplus_style_initializer), b;
5109 ;; car ^ ^ point (might change)
5110 ;; class Foo : public Bar {}
5111 ;; car ^ ^ point
5112 ;; class PikeClass (int a, string b) stuff ...
5113 ;; car ^ ^ point
5114 ;; enum bool;
5115 ;; car ^ ^ point
5116 ;; enum bool flag;
5117 ;; car ^ ^ point
5118 ;; void cplusplus_function (int x) throw (Bad);
5119 ;; car ^ ^ point
5120 ;; Foo::Foo (int b) : Base (b) {}
5121 ;; car ^ ^ point
5122 ;;
5123 ;; The cdr of the return value is non-nil iff a `c-typedef-decl-kwds'
5124 ;; specifier (e.g. class, struct, enum, typedef) is found in the
5125 ;; declaration, i.e. the declared identifier(s) are types.
5126 ;;
5127 ;; If a cast is parsed:
5128 ;;
5129 ;; The point is left at the first token after the closing paren of
5130 ;; the cast. The return value is `cast'. Note that the start
5131 ;; position must be at the first token inside the cast parenthesis
5132 ;; to recognize it.
5133 ;;
5134 ;; PRECEDING-TOKEN-END is the first position after the preceding
5135 ;; token, i.e. on the other side of the syntactic ws from the point.
5136 ;; Use a value less than or equal to (point-min) if the point is at
5137 ;; the first token in (the visible part of) the buffer.
5138 ;;
5139 ;; CONTEXT is a symbol that describes the context at the point:
5140 ;; 'decl In a comma-separated declaration context (typically
5141 ;; inside a function declaration arglist).
5142 ;; '<> In an angle bracket arglist.
5143 ;; 'arglist Some other type of arglist.
5144 ;; nil Some other context or unknown context.
5145 ;;
5146 ;; LAST-CAST-END is the first token after the closing paren of a
5147 ;; preceding cast, or nil if none is known. If
5148 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
5149 ;; the position after the closest preceding call where a cast was
5150 ;; matched. In that case it's used to discover chains of casts like
5151 ;; "(a) (b) c".
5152 ;;
5153 ;; This function records identifier ranges on
5154 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5155 ;; `c-record-type-identifiers' is non-nil.
5156 ;;
5157 ;; This function might do hidden buffer changes.
5158
5159 (let (;; `start-pos' is used below to point to the start of the
5160 ;; first type, i.e. after any leading specifiers. It might
5161 ;; also point at the beginning of the preceding syntactic
5162 ;; whitespace.
5163 (start-pos (point))
5164 ;; Set to the result of `c-forward-type'.
5165 at-type
5166 ;; The position of the first token in what we currently
5167 ;; believe is the type in the declaration or cast, after any
5168 ;; specifiers and their associated clauses.
5169 type-start
5170 ;; The position of the first token in what we currently
5171 ;; believe is the declarator for the first identifier. Set
5172 ;; when the type is found, and moved forward over any
5173 ;; `c-decl-hangon-kwds' and their associated clauses that
5174 ;; occurs after the type.
5175 id-start
5176 ;; These store `at-type', `type-start' and `id-start' of the
5177 ;; identifier before the one in those variables. The previous
5178 ;; identifier might turn out to be the real type in a
5179 ;; declaration if the last one has to be the declarator in it.
5180 ;; If `backup-at-type' is nil then the other variables have
5181 ;; undefined values.
5182 backup-at-type backup-type-start backup-id-start
5183 ;; Set if we've found a specifier that makes the defined
5184 ;; identifier(s) types.
5185 at-type-decl
5186 ;; Set if we've found a specifier that can start a declaration
5187 ;; where there's no type.
5188 maybe-typeless
5189 ;; If a specifier is found that also can be a type prefix,
5190 ;; these flags are set instead of those above. If we need to
5191 ;; back up an identifier, they are copied to the real flag
5192 ;; variables. Thus they only take effect if we fail to
5193 ;; interpret it as a type.
5194 backup-at-type-decl backup-maybe-typeless
5195 ;; Whether we've found a declaration or a cast. We might know
5196 ;; this before we've found the type in it. It's 'ids if we've
5197 ;; found two consecutive identifiers (usually a sure sign, but
5198 ;; we should allow that in labels too), and t if we've found a
5199 ;; specifier keyword (a 100% sure sign).
5200 at-decl-or-cast
5201 ;; Set when we need to back up to parse this as a declaration
5202 ;; but not as a cast.
5203 backup-if-not-cast
5204 ;; For casts, the return position.
5205 cast-end
5206 ;; Save `c-record-type-identifiers' and
5207 ;; `c-record-ref-identifiers' since ranges are recorded
5208 ;; speculatively and should be thrown away if it turns out
5209 ;; that it isn't a declaration or cast.
5210 (save-rec-type-ids c-record-type-identifiers)
5211 (save-rec-ref-ids c-record-ref-identifiers))
5212
5213 ;; Check for a type. Unknown symbols are treated as possible
5214 ;; types, but they could also be specifiers disguised through
5215 ;; macros like __INLINE__, so we recognize both types and known
5216 ;; specifiers after them too.
5217 (while
5218 (let* ((start (point)) kwd-sym kwd-clause-end found-type)
5219
5220 ;; Look for a specifier keyword clause.
5221 (when (looking-at c-prefix-spec-kwds-re)
5222 (setq kwd-sym (c-keyword-sym (match-string 1)))
5223 (save-excursion
5224 (c-forward-keyword-clause 1)
5225 (setq kwd-clause-end (point))))
5226
5227 (when (setq found-type (c-forward-type))
5228 ;; Found a known or possible type or a prefix of a known type.
5229
5230 (when at-type
5231 ;; Got two identifiers with nothing but whitespace
5232 ;; between them. That can only happen in declarations.
5233 (setq at-decl-or-cast 'ids)
5234
5235 (when (eq at-type 'found)
5236 ;; If the previous identifier is a found type we
5237 ;; record it as a real one; it might be some sort of
5238 ;; alias for a prefix like "unsigned".
5239 (save-excursion
5240 (goto-char type-start)
5241 (let ((c-promote-possible-types t))
5242 (c-forward-type)))))
5243
5244 (setq backup-at-type at-type
5245 backup-type-start type-start
5246 backup-id-start id-start
5247 at-type found-type
5248 type-start start
5249 id-start (point)
5250 ;; The previous ambiguous specifier/type turned out
5251 ;; to be a type since we've parsed another one after
5252 ;; it, so clear these backup flags.
5253 backup-at-type-decl nil
5254 backup-maybe-typeless nil))
5255
5256 (if kwd-sym
5257 (progn
5258 ;; Handle known specifier keywords and
5259 ;; `c-decl-hangon-kwds' which can occur after known
5260 ;; types.
5261
5262 (if (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
5263 ;; It's a hang-on keyword that can occur anywhere.
5264 (progn
5265 (setq at-decl-or-cast t)
5266 (if at-type
5267 ;; Move the identifier start position if
5268 ;; we've passed a type.
5269 (setq id-start kwd-clause-end)
5270 ;; Otherwise treat this as a specifier and
5271 ;; move the fallback position.
5272 (setq start-pos kwd-clause-end))
5273 (goto-char kwd-clause-end))
5274
5275 ;; It's an ordinary specifier so we know that
5276 ;; anything before this can't be the type.
5277 (setq backup-at-type nil
5278 start-pos kwd-clause-end)
5279
5280 (if found-type
5281 ;; It's ambiguous whether this keyword is a
5282 ;; specifier or a type prefix, so set the backup
5283 ;; flags. (It's assumed that `c-forward-type'
5284 ;; moved further than `c-forward-keyword-clause'.)
5285 (progn
5286 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
5287 (setq backup-at-type-decl t))
5288 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
5289 (setq backup-maybe-typeless t)))
5290
5291 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
5292 (setq at-type-decl t))
5293 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
5294 (setq maybe-typeless t))
5295
5296 ;; Haven't matched a type so it's an umambiguous
5297 ;; specifier keyword and we know we're in a
5298 ;; declaration.
5299 (setq at-decl-or-cast t)
5300
5301 (goto-char kwd-clause-end))))
5302
5303 ;; If the type isn't known we continue so that we'll jump
5304 ;; over all specifiers and type identifiers. The reason
5305 ;; to do this for a known type prefix is to make things
5306 ;; like "unsigned INT16" work.
5307 (and found-type (not (eq found-type t))))))
5308
5309 (cond
5310 ((eq at-type t)
5311 ;; If a known type was found, we still need to skip over any
5312 ;; hangon keyword clauses after it. Otherwise it has already
5313 ;; been done in the loop above.
5314 (while (looking-at c-decl-hangon-key)
5315 (c-forward-keyword-clause 1))
5316 (setq id-start (point)))
5317
5318 ((eq at-type 'prefix)
5319 ;; A prefix type is itself a primitive type when it's not
5320 ;; followed by another type.
5321 (setq at-type t))
5322
5323 ((not at-type)
5324 ;; Got no type but set things up to continue anyway to handle
5325 ;; the various cases when a declaration doesn't start with a
5326 ;; type.
5327 (setq id-start start-pos))
5328
5329 ((and (eq at-type 'maybe)
5330 (c-major-mode-is 'c++-mode))
5331 ;; If it's C++ then check if the last "type" ends on the form
5332 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
5333 ;; (con|de)structor.
5334 (save-excursion
5335 (let (name end-2 end-1)
5336 (goto-char id-start)
5337 (c-backward-syntactic-ws)
5338 (setq end-2 (point))
5339 (when (and
5340 (c-simple-skip-symbol-backward)
5341 (progn
5342 (setq name
5343 (buffer-substring-no-properties (point) end-2))
5344 ;; Cheating in the handling of syntactic ws below.
5345 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
5346 (progn
5347 (setq end-1 (point))
5348 (c-simple-skip-symbol-backward))
5349 (>= (point) type-start)
5350 (equal (buffer-substring-no-properties (point) end-1)
5351 name))
5352 ;; It is a (con|de)structor name. In that case the
5353 ;; declaration is typeless so zap out any preceding
5354 ;; identifier(s) that we might have taken as types.
5355 (goto-char type-start)
5356 (setq at-type nil
5357 backup-at-type nil
5358 id-start type-start))))))
5359
5360 ;; Check for and step over a type decl expression after the thing
5361 ;; that is or might be a type. This can't be skipped since we
5362 ;; need the correct end position of the declarator for
5363 ;; `max-type-decl-end-*'.
5364 (let ((start (point)) (paren-depth 0) pos
5365 ;; True if there's a non-open-paren match of
5366 ;; `c-type-decl-prefix-key'.
5367 got-prefix
5368 ;; True if the declarator is surrounded by a parenthesis pair.
5369 got-parens
5370 ;; True if there is an identifier in the declarator.
5371 got-identifier
5372 ;; True if there's a non-close-paren match of
5373 ;; `c-type-decl-suffix-key'.
5374 got-suffix
5375 ;; True if there's a prefix match outside the outermost
5376 ;; paren pair that surrounds the declarator.
5377 got-prefix-before-parens
5378 ;; True if there's a suffix match outside the outermost
5379 ;; paren pair that surrounds the declarator. The value is
5380 ;; the position of the first suffix match.
5381 got-suffix-after-parens
5382 ;; True if we've parsed the type decl to a token that is
5383 ;; known to end declarations in this context.
5384 at-decl-end
5385 ;; The earlier values of `at-type' and `type-start' if we've
5386 ;; shifted the type backwards.
5387 identifier-type identifier-start
5388 ;; If `c-parse-and-markup-<>-arglists' is set we need to
5389 ;; turn it off during the name skipping below to avoid
5390 ;; getting `c-type' properties that might be bogus. That
5391 ;; can happen since we don't know if
5392 ;; `c-restricted-<>-arglists' will be correct inside the
5393 ;; arglist paren that gets entered.
5394 c-parse-and-markup-<>-arglists)
5395
5396 (goto-char id-start)
5397
5398 ;; Skip over type decl prefix operators. (Note similar code in
5399 ;; `c-font-lock-declarators'.)
5400 (while (and (looking-at c-type-decl-prefix-key)
5401 (if (and (c-major-mode-is 'c++-mode)
5402 (match-beginning 2))
5403 ;; If the second submatch matches in C++ then
5404 ;; we're looking at an identifier that's a
5405 ;; prefix only if it specifies a member pointer.
5406 (when (setq got-identifier (c-forward-name))
5407 (if (looking-at "\\(::\\)")
5408 ;; We only check for a trailing "::" and
5409 ;; let the "*" that should follow be
5410 ;; matched in the next round.
5411 (progn (setq got-identifier nil) t)
5412 ;; It turned out to be the real identifier,
5413 ;; so stop.
5414 nil))
5415 t))
5416
5417 (if (eq (char-after) ?\()
5418 (progn
5419 (setq paren-depth (1+ paren-depth))
5420 (forward-char))
5421 (unless got-prefix-before-parens
5422 (setq got-prefix-before-parens (= paren-depth 0)))
5423 (setq got-prefix t)
5424 (goto-char (match-end 1)))
5425 (c-forward-syntactic-ws))
5426
5427 (setq got-parens (> paren-depth 0))
5428
5429 ;; Skip over an identifier.
5430 (or got-identifier
5431 (and (looking-at c-identifier-start)
5432 (setq got-identifier (c-forward-name))))
5433
5434 ;; Skip over type decl suffix operators.
5435 (while (if (looking-at c-type-decl-suffix-key)
5436
5437 (if (eq (char-after) ?\))
5438 (when (> paren-depth 0)
5439 (setq paren-depth (1- paren-depth))
5440 (forward-char)
5441 t)
5442 (when (if (save-match-data (looking-at "\\s\("))
5443 (c-safe (c-forward-sexp 1) t)
5444 (goto-char (match-end 1))
5445 t)
5446 (when (and (not got-suffix-after-parens)
5447 (= paren-depth 0))
5448 (setq got-suffix-after-parens (match-beginning 0)))
5449 (setq got-suffix t)))
5450
5451 ;; No suffix matched. We might have matched the
5452 ;; identifier as a type and the open paren of a
5453 ;; function arglist as a type decl prefix. In that
5454 ;; case we should "backtrack": Reinterpret the last
5455 ;; type as the identifier, move out of the arglist and
5456 ;; continue searching for suffix operators.
5457 ;;
5458 ;; Do this even if there's no preceding type, to cope
5459 ;; with old style function declarations in K&R C,
5460 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
5461 ;; style declarations. That isn't applicable in an
5462 ;; arglist context, though.
5463 (when (and (= paren-depth 1)
5464 (not got-prefix-before-parens)
5465 (not (eq at-type t))
5466 (or backup-at-type
5467 maybe-typeless
5468 backup-maybe-typeless
5469 (when c-recognize-typeless-decls
5470 (not context)))
5471 (setq pos (c-up-list-forward (point)))
5472 (eq (char-before pos) ?\)))
5473 (c-fdoc-shift-type-backward)
5474 (goto-char pos)
5475 t))
5476
5477 (c-forward-syntactic-ws))
5478
5479 (when (and (or maybe-typeless backup-maybe-typeless)
5480 (not got-identifier)
5481 (not got-prefix)
5482 at-type)
5483 ;; Have found no identifier but `c-typeless-decl-kwds' has
5484 ;; matched so we know we're inside a declaration. The
5485 ;; preceding type must be the identifier instead.
5486 (c-fdoc-shift-type-backward))
5487
5488 (setq
5489 at-decl-or-cast
5490 (catch 'at-decl-or-cast
5491
5492 (when (> paren-depth 0)
5493 ;; Encountered something inside parens that isn't matched by
5494 ;; the `c-type-decl-*' regexps, so it's not a type decl
5495 ;; expression. Try to skip out to the same paren depth to
5496 ;; not confuse the cast check below.
5497 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
5498 ;; If we've found a specifier keyword then it's a
5499 ;; declaration regardless.
5500 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
5501
5502 (setq at-decl-end
5503 (looking-at (cond ((eq context '<>) "[,>]")
5504 (context "[,\)]")
5505 (t "[,;]"))))
5506
5507 ;; Now we've collected info about various characteristics of
5508 ;; the construct we're looking at. Below follows a decision
5509 ;; tree based on that. It's ordered to check more certain
5510 ;; signs before less certain ones.
5511
5512 (if got-identifier
5513 (progn
5514
5515 (when (and (or at-type maybe-typeless)
5516 (not (or got-prefix got-parens)))
5517 ;; Got another identifier directly after the type, so it's a
5518 ;; declaration.
5519 (throw 'at-decl-or-cast t))
5520
5521 (when (and got-parens
5522 (not got-prefix)
5523 (not got-suffix-after-parens)
5524 (or backup-at-type
5525 maybe-typeless
5526 backup-maybe-typeless))
5527 ;; Got a declaration of the form "foo bar (gnu);" where we've
5528 ;; recognized "bar" as the type and "gnu" as the declarator.
5529 ;; In this case it's however more likely that "bar" is the
5530 ;; declarator and "gnu" a function argument or initializer (if
5531 ;; `c-recognize-paren-inits' is set), since the parens around
5532 ;; "gnu" would be superfluous if it's a declarator. Shift the
5533 ;; type one step backward.
5534 (c-fdoc-shift-type-backward)))
5535
5536 ;; Found no identifier.
5537
5538 (if backup-at-type
5539 (progn
5540
5541 (when (= (point) start)
5542 ;; Got a plain list of identifiers. If a colon follows it's
5543 ;; a valid label. Otherwise the last one probably is the
5544 ;; declared identifier and we should back up to the previous
5545 ;; type, providing it isn't a cast.
5546 (if (eq (char-after) ?:)
5547 ;; If we've found a specifier keyword then it's a
5548 ;; declaration regardless.
5549 (throw 'at-decl-or-cast (eq at-decl-or-cast t))
5550 (setq backup-if-not-cast t)
5551 (throw 'at-decl-or-cast t)))
5552
5553 (when (and got-suffix
5554 (not got-prefix)
5555 (not got-parens))
5556 ;; Got a plain list of identifiers followed by some suffix.
5557 ;; If this isn't a cast then the last identifier probably is
5558 ;; the declared one and we should back up to the previous
5559 ;; type.
5560 (setq backup-if-not-cast t)
5561 (throw 'at-decl-or-cast t)))
5562
5563 (when (eq at-type t)
5564 ;; If the type is known we know that there can't be any
5565 ;; identifier somewhere else, and it's only in declarations in
5566 ;; e.g. function prototypes and in casts that the identifier may
5567 ;; be left out.
5568 (throw 'at-decl-or-cast t))
5569
5570 (when (= (point) start)
5571 ;; Only got a single identifier (parsed as a type so far).
5572 (if (and
5573 ;; Check that the identifier isn't at the start of an
5574 ;; expression.
5575 at-decl-end
5576 (cond
5577 ((eq context 'decl)
5578 ;; Inside an arglist that contains declarations. If K&R
5579 ;; style declarations and parenthesis style initializers
5580 ;; aren't allowed then the single identifier must be a
5581 ;; type, else we require that it's known or found
5582 ;; (primitive types are handled above).
5583 (or (and (not c-recognize-knr-p)
5584 (not c-recognize-paren-inits))
5585 (memq at-type '(known found))))
5586 ((eq context '<>)
5587 ;; Inside a template arglist. Accept known and found
5588 ;; types; other identifiers could just as well be
5589 ;; constants in C++.
5590 (memq at-type '(known found)))))
5591 (throw 'at-decl-or-cast t)
5592 ;; Can't be a valid declaration or cast, but if we've found a
5593 ;; specifier it can't be anything else either, so treat it as
5594 ;; an invalid/unfinished declaration or cast.
5595 (throw 'at-decl-or-cast at-decl-or-cast))))
5596
5597 (if (and got-parens
5598 (not got-prefix)
5599 (not context)
5600 (not (eq at-type t))
5601 (or backup-at-type
5602 maybe-typeless
5603 backup-maybe-typeless
5604 (when c-recognize-typeless-decls
5605 (or (not got-suffix)
5606 (not (looking-at
5607 c-after-suffixed-type-maybe-decl-key))))))
5608 ;; Got an empty paren pair and a preceding type that probably
5609 ;; really is the identifier. Shift the type backwards to make
5610 ;; the last one the identifier. This is analogous to the
5611 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
5612 ;; above.
5613 ;;
5614 ;; Exception: In addition to the conditions in that
5615 ;; "backtracking" code, do not shift backward if we're not
5616 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
5617 ;; Since there's no preceding type, the shift would mean that
5618 ;; the declaration is typeless. But if the regexp doesn't match
5619 ;; then we will simply fall through in the tests below and not
5620 ;; recognize it at all, so it's better to try it as an abstract
5621 ;; declarator instead.
5622 (c-fdoc-shift-type-backward)
5623
5624 ;; Still no identifier.
5625
5626 (when (and got-prefix (or got-parens got-suffix))
5627 ;; Require `got-prefix' together with either `got-parens' or
5628 ;; `got-suffix' to recognize it as an abstract declarator:
5629 ;; `got-parens' only is probably an empty function call.
5630 ;; `got-suffix' only can build an ordinary expression together
5631 ;; with the preceding identifier which we've taken as a type.
5632 ;; We could actually accept on `got-prefix' only, but that can
5633 ;; easily occur temporarily while writing an expression so we
5634 ;; avoid that case anyway. We could do a better job if we knew
5635 ;; the point when the fontification was invoked.
5636 (throw 'at-decl-or-cast t))
5637
5638 (when (and at-type
5639 (not got-prefix)
5640 (not got-parens)
5641 got-suffix-after-parens
5642 (eq (char-after got-suffix-after-parens) ?\())
5643 ;; Got a type, no declarator but a paren suffix. I.e. it's a
5644 ;; normal function call afterall (or perhaps a C++ style object
5645 ;; instantiation expression).
5646 (throw 'at-decl-or-cast nil))))
5647
5648 (when at-decl-or-cast
5649 ;; By now we've located the type in the declaration that we know
5650 ;; we're in.
5651 (throw 'at-decl-or-cast t))
5652
5653 (when (and got-identifier
5654 (not context)
5655 (looking-at c-after-suffixed-type-decl-key)
5656 (if (and got-parens
5657 (not got-prefix)
5658 (not got-suffix)
5659 (not (eq at-type t)))
5660 ;; Shift the type backward in the case that there's a
5661 ;; single identifier inside parens. That can only
5662 ;; occur in K&R style function declarations so it's
5663 ;; more likely that it really is a function call.
5664 ;; Therefore we only do this after
5665 ;; `c-after-suffixed-type-decl-key' has matched.
5666 (progn (c-fdoc-shift-type-backward) t)
5667 got-suffix-after-parens))
5668 ;; A declaration according to `c-after-suffixed-type-decl-key'.
5669 (throw 'at-decl-or-cast t))
5670
5671 (when (and (or got-prefix (not got-parens))
5672 (memq at-type '(t known)))
5673 ;; It's a declaration if a known type precedes it and it can't be a
5674 ;; function call.
5675 (throw 'at-decl-or-cast t))
5676
5677 ;; If we get here we can't tell if this is a type decl or a normal
5678 ;; expression by looking at it alone. (That's under the assumption
5679 ;; that normal expressions always can look like type decl expressions,
5680 ;; which isn't really true but the cases where it doesn't hold are so
5681 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
5682 ;; the effort to look for them.)
5683
5684 (unless (or at-decl-end (looking-at "=[^=]"))
5685 ;; If this is a declaration it should end here or its initializer(*)
5686 ;; should start here, so check for allowed separation tokens. Note
5687 ;; that this rule doesn't work e.g. with a K&R arglist after a
5688 ;; function header.
5689 ;;
5690 ;; *) Don't check for C++ style initializers using parens
5691 ;; since those already have been matched as suffixes.
5692 ;;
5693 ;; If `at-decl-or-cast' is then we've found some other sign that
5694 ;; it's a declaration or cast, so then it's probably an
5695 ;; invalid/unfinished one.
5696 (throw 'at-decl-or-cast at-decl-or-cast))
5697
5698 ;; Below are tests that only should be applied when we're certain to
5699 ;; not have parsed halfway through an expression.
5700
5701 (when (memq at-type '(t known))
5702 ;; The expression starts with a known type so treat it as a
5703 ;; declaration.
5704 (throw 'at-decl-or-cast t))
5705
5706 (when (and (c-major-mode-is 'c++-mode)
5707 ;; In C++ we check if the identifier is a known type, since
5708 ;; (con|de)structors use the class name as identifier.
5709 ;; We've always shifted over the identifier as a type and
5710 ;; then backed up again in this case.
5711 identifier-type
5712 (or (memq identifier-type '(found known))
5713 (and (eq (char-after identifier-start) ?~)
5714 ;; `at-type' probably won't be 'found for
5715 ;; destructors since the "~" is then part of the
5716 ;; type name being checked against the list of
5717 ;; known types, so do a check without that
5718 ;; operator.
5719 (or (save-excursion
5720 (goto-char (1+ identifier-start))
5721 (c-forward-syntactic-ws)
5722 (c-with-syntax-table
5723 c-identifier-syntax-table
5724 (looking-at c-known-type-key)))
5725 (save-excursion
5726 (goto-char (1+ identifier-start))
5727 ;; We have already parsed the type earlier,
5728 ;; so it'd be possible to cache the end
5729 ;; position instead of redoing it here, but
5730 ;; then we'd need to keep track of another
5731 ;; position everywhere.
5732 (c-check-type (point)
5733 (progn (c-forward-type)
5734 (point))))))))
5735 (throw 'at-decl-or-cast t))
5736
5737 (if got-identifier
5738 (progn
5739 (when (and got-prefix-before-parens
5740 at-type
5741 (or at-decl-end (looking-at "=[^=]"))
5742 (not context)
5743 (not got-suffix))
5744 ;; Got something like "foo * bar;". Since we're not inside an
5745 ;; arglist it would be a meaningless expression because the
5746 ;; result isn't used. We therefore choose to recognize it as
5747 ;; a declaration. Do not allow a suffix since it could then
5748 ;; be a function call.
5749 (throw 'at-decl-or-cast t))
5750
5751 (when (and (or got-suffix-after-parens
5752 (looking-at "=[^=]"))
5753 (eq at-type 'found)
5754 (not (eq context 'arglist)))
5755 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
5756 ;; be an odd expression or it could be a declaration. Treat
5757 ;; it as a declaration if "a" has been used as a type
5758 ;; somewhere else (if it's a known type we won't get here).
5759 (throw 'at-decl-or-cast t)))
5760
5761 (when (and context
5762 (or got-prefix
5763 (and (eq context 'decl)
5764 (not c-recognize-paren-inits)
5765 (or got-parens got-suffix))))
5766 ;; Got a type followed by an abstract declarator. If `got-prefix'
5767 ;; is set it's something like "a *" without anything after it. If
5768 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
5769 ;; or similar, which we accept only if the context rules out
5770 ;; expressions.
5771 (throw 'at-decl-or-cast t)))
5772
5773 ;; If we had a complete symbol table here (which rules out
5774 ;; `c-found-types') we should return t due to the disambiguation rule
5775 ;; (in at least C++) that anything that can be parsed as a declaration
5776 ;; is a declaration. Now we're being more defensive and prefer to
5777 ;; highlight things like "foo (bar);" as a declaration only if we're
5778 ;; inside an arglist that contains declarations.
5779 (eq context 'decl))))
5780
5781 ;; The point is now after the type decl expression.
5782
5783 (cond
5784 ;; Check for a cast.
5785 ((save-excursion
5786 (and
5787 c-cast-parens
5788
5789 ;; Should be the first type/identifier in a cast paren.
5790 (> preceding-token-end (point-min))
5791 (memq (char-before preceding-token-end) c-cast-parens)
5792
5793 ;; The closing paren should follow.
5794 (progn
5795 (c-forward-syntactic-ws)
5796 (looking-at "\\s\)"))
5797
5798 ;; There should be a primary expression after it.
5799 (let (pos)
5800 (forward-char)
5801 (c-forward-syntactic-ws)
5802 (setq cast-end (point))
5803 (and (looking-at c-primary-expr-regexp)
5804 (progn
5805 (setq pos (match-end 0))
5806 (or
5807 ;; Check if the expression begins with a prefix keyword.
5808 (match-beginning 2)
5809 (if (match-beginning 1)
5810 ;; Expression begins with an ambiguous operator. Treat
5811 ;; it as a cast if it's a type decl or if we've
5812 ;; recognized the type somewhere else.
5813 (or at-decl-or-cast
5814 (memq at-type '(t known found)))
5815 ;; Unless it's a keyword, it's the beginning of a primary
5816 ;; expression.
5817 (not (looking-at c-keywords-regexp)))))
5818 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
5819 ;; that it matched a whole one so that we don't e.g. confuse
5820 ;; the operator '-' with '->'. It's ok if it matches further,
5821 ;; though, since it e.g. can match the float '.5' while the
5822 ;; operator regexp only matches '.'.
5823 (or (not (looking-at c-nonsymbol-token-regexp))
5824 (<= (match-end 0) pos))))
5825
5826 ;; There should either be a cast before it or something that isn't an
5827 ;; identifier or close paren.
5828 (> preceding-token-end (point-min))
5829 (progn
5830 (goto-char (1- preceding-token-end))
5831 (or (eq (point) last-cast-end)
5832 (progn
5833 (c-backward-syntactic-ws)
5834 (if (< (skip-syntax-backward "w_") 0)
5835 ;; It's a symbol. Accept it only if it's one of the
5836 ;; keywords that can precede an expression (without
5837 ;; surrounding parens).
5838 (looking-at c-simple-stmt-key)
5839 (and
5840 ;; Check that it isn't a close paren (block close is ok,
5841 ;; though).
5842 (not (memq (char-before) '(?\) ?\])))
5843 ;; Check that it isn't a nonsymbol identifier.
5844 (not (c-on-identifier)))))))))
5845
5846 ;; Handle the cast.
5847 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
5848 (let ((c-promote-possible-types t))
5849 (goto-char type-start)
5850 (c-forward-type)))
5851
5852 (goto-char cast-end)
5853 'cast)
5854
5855 (at-decl-or-cast
5856 ;; We're at a declaration. Highlight the type and the following
5857 ;; declarators.
5858
5859 (when backup-if-not-cast
5860 (c-fdoc-shift-type-backward t))
5861
5862 (when (and (eq context 'decl) (looking-at ","))
5863 ;; Make sure to propagate the `c-decl-arg-start' property to
5864 ;; the next argument if it's set in this one, to cope with
5865 ;; interactive refontification.
5866 (c-put-c-type-property (point) 'c-decl-arg-start))
5867
5868 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
5869 (let ((c-promote-possible-types t))
5870 (save-excursion
5871 (goto-char type-start)
5872 (c-forward-type))))
5873
5874 (cons id-start at-type-decl))
5875
5876 (t
5877 ;; False alarm. Restore the recorded ranges.
5878 (setq c-record-type-identifiers save-rec-type-ids
5879 c-record-ref-identifiers save-rec-ref-ids)
5880 nil))))
5881
5882 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
5883 ;; Assuming that point is at the beginning of a token, check if it starts a
5884 ;; label and if so move over it and return non-nil (t in default situations,
5885 ;; specific symbols (see below) for interesting situations), otherwise don't
5886 ;; move and return nil. "Label" here means "most things with a colon".
5887 ;;
5888 ;; More precisely, a "label" is regarded as one of:
5889 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
5890 ;; (ii) A case label - either the entire construct "case FOO:", or just the
5891 ;; bare "case", should the colon be missing. We return t;
5892 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
5893 ;; return t;
5894 ;; (iv) One of QT's "extended" C++ variants of
5895 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
5896 ;; Returns the symbol `qt-2kwds-colon'.
5897 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
5898 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
5899 ;; colon). Currently (2006-03), this applies only to Objective C's
5900 ;; keywords "@private", "@protected", and "@public". Returns t.
5901 ;;
5902 ;; One of the things which will NOT be recognised as a label is a bit-field
5903 ;; element of a struct, something like "int foo:5".
5904 ;;
5905 ;; The end of the label is taken to be just after the colon, or the end of
5906 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
5907 ;; after the end on return. The terminating char gets marked with
5908 ;; `c-decl-end' to improve recognition of the following declaration or
5909 ;; statement.
5910 ;;
5911 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
5912 ;; label, if any, has already been marked up like that.
5913 ;;
5914 ;; If PRECEDING-TOKEN-END is given, it should be the first position
5915 ;; after the preceding token, i.e. on the other side of the
5916 ;; syntactic ws from the point. Use a value less than or equal to
5917 ;; (point-min) if the point is at the first token in (the visible
5918 ;; part of) the buffer.
5919 ;;
5920 ;; The optional LIMIT limits the forward scan for the colon.
5921 ;;
5922 ;; This function records the ranges of the label symbols on
5923 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
5924 ;; non-nil.
5925 ;;
5926 ;; This function might do hidden buffer changes.
5927
5928 (let ((start (point))
5929 label-end
5930 qt-symbol-idx
5931 macro-start ; if we're in one.
5932 label-type)
5933 (cond
5934 ;; "case" or "default" (Doesn't apply to AWK).
5935 ((looking-at c-label-kwds-regexp)
5936 (let ((kwd-end (match-end 1)))
5937 ;; Record only the keyword itself for fontification, since in
5938 ;; case labels the following is a constant expression and not
5939 ;; a label.
5940 (when c-record-type-identifiers
5941 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
5942
5943 ;; Find the label end.
5944 (goto-char kwd-end)
5945 (setq label-type
5946 (if (and (c-syntactic-re-search-forward
5947 ;; Stop on chars that aren't allowed in expressions,
5948 ;; and on operator chars that would be meaningless
5949 ;; there. FIXME: This doesn't cope with ?: operators.
5950 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
5951 limit t t nil 1)
5952 (match-beginning 2))
5953
5954 (progn ; there's a proper :
5955 (goto-char (match-beginning 2)) ; just after the :
5956 (c-put-c-type-property (1- (point)) 'c-decl-end)
5957 t)
5958
5959 ;; It's an unfinished label. We consider the keyword enough
5960 ;; to recognize it as a label, so that it gets fontified.
5961 ;; Leave the point at the end of it, but don't put any
5962 ;; `c-decl-end' marker.
5963 (goto-char kwd-end)
5964 t))))
5965
5966 ;; @private, @protected, @public, in Objective C, or similar.
5967 ((and c-opt-extra-label-key
5968 (looking-at c-opt-extra-label-key))
5969 ;; For a `c-opt-extra-label-key' match, we record the whole
5970 ;; thing for fontification. That's to get the leading '@' in
5971 ;; Objective-C protection labels fontified.
5972 (goto-char (match-end 1))
5973 (when c-record-type-identifiers
5974 (c-record-ref-id (cons (match-beginning 1) (point))))
5975 (c-put-c-type-property (1- (point)) 'c-decl-end)
5976 (setq label-type t))
5977
5978 ;; All other cases of labels.
5979 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
5980
5981 ;; A colon label must have something before the colon.
5982 (not (eq (char-after) ?:))
5983
5984 ;; Check that we're not after a token that can't precede a label.
5985 (or
5986 ;; Trivially succeeds when there's no preceding token.
5987 (if preceding-token-end
5988 (<= preceding-token-end (point-min))
5989 (save-excursion
5990 (c-backward-syntactic-ws)
5991 (setq preceding-token-end (point))
5992 (bobp)))
5993
5994 ;; Check if we're after a label, if we're after a closing
5995 ;; paren that belong to statement, and with
5996 ;; `c-label-prefix-re'. It's done in different order
5997 ;; depending on `assume-markup' since the checks have
5998 ;; different expensiveness.
5999 (if assume-markup
6000 (or
6001 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
6002 'c-decl-end)
6003
6004 (save-excursion
6005 (goto-char (1- preceding-token-end))
6006 (c-beginning-of-current-token)
6007 (or (looking-at c-label-prefix-re)
6008 (looking-at c-block-stmt-1-key)))
6009
6010 (and (eq (char-before preceding-token-end) ?\))
6011 (c-after-conditional)))
6012
6013 (or
6014 (save-excursion
6015 (goto-char (1- preceding-token-end))
6016 (c-beginning-of-current-token)
6017 (or (looking-at c-label-prefix-re)
6018 (looking-at c-block-stmt-1-key)))
6019
6020 (cond
6021 ((eq (char-before preceding-token-end) ?\))
6022 (c-after-conditional))
6023
6024 ((eq (char-before preceding-token-end) ?:)
6025 ;; Might be after another label, so check it recursively.
6026 (save-restriction
6027 (save-excursion
6028 (goto-char (1- preceding-token-end))
6029 ;; Essentially the same as the
6030 ;; `c-syntactic-re-search-forward' regexp below.
6031 (setq macro-start
6032 (save-excursion (and (c-beginning-of-macro)
6033 (point))))
6034 (if macro-start (narrow-to-region macro-start (point-max)))
6035 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
6036 ;; Note: the following should work instead of the
6037 ;; narrow-to-region above. Investigate why not,
6038 ;; sometime. ACM, 2006-03-31.
6039 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
6040 ;; macro-start t)
6041 (let ((pte (point))
6042 ;; If the caller turned on recording for us,
6043 ;; it shouldn't apply when we check the
6044 ;; preceding label.
6045 c-record-type-identifiers)
6046 ;; A label can't start at a cpp directive. Check for
6047 ;; this, since c-forward-syntactic-ws would foul up on it.
6048 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
6049 (c-forward-syntactic-ws)
6050 (c-forward-label nil pte start))))))))))
6051
6052 ;; Point is still at the beginning of the possible label construct.
6053 ;;
6054 ;; Check that the next nonsymbol token is ":", or that we're in one
6055 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
6056 ;; arguments. FIXME: Should build this regexp from the language
6057 ;; constants.
6058 (cond
6059 ;; public: protected: private:
6060 ((and
6061 (c-major-mode-is 'c++-mode)
6062 (search-forward-regexp
6063 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
6064 (progn (backward-char)
6065 (c-forward-syntactic-ws limit)
6066 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
6067 (forward-char)
6068 (setq label-type t))
6069 ;; QT double keyword like "protected slots:" or goto target.
6070 ((progn (goto-char start) nil))
6071 ((when (c-syntactic-re-search-forward
6072 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
6073 (backward-char)
6074 (setq label-end (point))
6075 (setq qt-symbol-idx
6076 (and (c-major-mode-is 'c++-mode)
6077 (string-match
6078 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
6079 (buffer-substring start (point)))))
6080 (c-forward-syntactic-ws limit)
6081 (cond
6082 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
6083 (forward-char)
6084 (setq label-type
6085 (if (string= "signals" ; Special QT macro
6086 (buffer-substring-no-properties start label-end))
6087 'qt-1kwd-colon
6088 'goto-target)))
6089 ((and qt-symbol-idx
6090 (search-forward-regexp "\\=slots\\>" limit t)
6091 (progn (c-forward-syntactic-ws limit)
6092 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
6093 (forward-char)
6094 (setq label-type 'qt-2kwds-colon)))))))
6095
6096 (save-restriction
6097 (narrow-to-region start (point))
6098
6099 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
6100 (catch 'check-label
6101 (goto-char start)
6102 (while (progn
6103 (when (looking-at c-nonlabel-token-key)
6104 (goto-char start)
6105 (setq label-type nil)
6106 (throw 'check-label nil))
6107 (and (c-safe (c-forward-sexp)
6108 (c-forward-syntactic-ws)
6109 t)
6110 (not (eobp)))))
6111
6112 ;; Record the identifiers in the label for fontification, unless
6113 ;; it begins with `c-label-kwds' in which case the following
6114 ;; identifiers are part of a (constant) expression that
6115 ;; shouldn't be fontified.
6116 (when (and c-record-type-identifiers
6117 (progn (goto-char start)
6118 (not (looking-at c-label-kwds-regexp))))
6119 (while (c-syntactic-re-search-forward c-symbol-key nil t)
6120 (c-record-ref-id (cons (match-beginning 0)
6121 (match-end 0)))))
6122
6123 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
6124 (goto-char (point-max)))))
6125
6126 (t
6127 ;; Not a label.
6128 (goto-char start)))
6129 label-type))
6130
6131 (defun c-forward-objc-directive ()
6132 ;; Assuming the point is at the beginning of a token, try to move
6133 ;; forward to the end of the Objective-C directive that starts
6134 ;; there. Return t if a directive was fully recognized, otherwise
6135 ;; the point is moved as far as one could be successfully parsed and
6136 ;; nil is returned.
6137 ;;
6138 ;; This function records identifier ranges on
6139 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6140 ;; `c-record-type-identifiers' is non-nil.
6141 ;;
6142 ;; This function might do hidden buffer changes.
6143
6144 (let ((start (point))
6145 start-char
6146 (c-promote-possible-types t)
6147 ;; Turn off recognition of angle bracket arglists while parsing
6148 ;; types here since the protocol reference list might then be
6149 ;; considered part of the preceding name or superclass-name.
6150 c-recognize-<>-arglists)
6151
6152 (if (or
6153 (when (looking-at
6154 (eval-when-compile
6155 (c-make-keywords-re t
6156 (append (c-lang-const c-protection-kwds objc)
6157 '("@end"))
6158 'objc-mode)))
6159 (goto-char (match-end 1))
6160 t)
6161
6162 (and
6163 (looking-at
6164 (eval-when-compile
6165 (c-make-keywords-re t
6166 '("@interface" "@implementation" "@protocol")
6167 'objc-mode)))
6168
6169 ;; Handle the name of the class itself.
6170 (progn
6171 ; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
6172 ; at EOB.
6173 (goto-char (match-end 0))
6174 (c-skip-ws-forward)
6175 (c-forward-type))
6176
6177 (catch 'break
6178 ;; Look for ": superclass-name" or "( category-name )".
6179 (when (looking-at "[:\(]")
6180 (setq start-char (char-after))
6181 (forward-char)
6182 (c-forward-syntactic-ws)
6183 (unless (c-forward-type) (throw 'break nil))
6184 (when (eq start-char ?\()
6185 (unless (eq (char-after) ?\)) (throw 'break nil))
6186 (forward-char)
6187 (c-forward-syntactic-ws)))
6188
6189 ;; Look for a protocol reference list.
6190 (if (eq (char-after) ?<)
6191 (let ((c-recognize-<>-arglists t)
6192 (c-parse-and-markup-<>-arglists t)
6193 c-restricted-<>-arglists)
6194 (c-forward-<>-arglist t))
6195 t))))
6196
6197 (progn
6198 (c-backward-syntactic-ws)
6199 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
6200 (c-put-c-type-property (1- (point)) 'c-decl-end)
6201 t)
6202
6203 (c-clear-c-type-property start (point) 'c-decl-end)
6204 nil)))
6205
6206 (defun c-beginning-of-inheritance-list (&optional lim)
6207 ;; Go to the first non-whitespace after the colon that starts a
6208 ;; multiple inheritance introduction. Optional LIM is the farthest
6209 ;; back we should search.
6210 ;;
6211 ;; This function might do hidden buffer changes.
6212 (c-with-syntax-table c++-template-syntax-table
6213 (c-backward-token-2 0 t lim)
6214 (while (and (or (looking-at c-symbol-start)
6215 (looking-at "[<,]\\|::"))
6216 (zerop (c-backward-token-2 1 t lim))))))
6217
6218 (defun c-in-method-def-p ()
6219 ;; Return nil if we aren't in a method definition, otherwise the
6220 ;; position of the initial [+-].
6221 ;;
6222 ;; This function might do hidden buffer changes.
6223 (save-excursion
6224 (beginning-of-line)
6225 (and c-opt-method-key
6226 (looking-at c-opt-method-key)
6227 (point))
6228 ))
6229
6230 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
6231 (defun c-in-gcc-asm-p ()
6232 ;; Return non-nil if point is within a gcc \"asm\" block.
6233 ;;
6234 ;; This should be called with point inside an argument list.
6235 ;;
6236 ;; Only one level of enclosing parentheses is considered, so for
6237 ;; instance `nil' is returned when in a function call within an asm
6238 ;; operand.
6239 ;;
6240 ;; This function might do hidden buffer changes.
6241
6242 (and c-opt-asm-stmt-key
6243 (save-excursion
6244 (beginning-of-line)
6245 (backward-up-list 1)
6246 (c-beginning-of-statement-1 (point-min) nil t)
6247 (looking-at c-opt-asm-stmt-key))))
6248
6249 (defun c-at-toplevel-p ()
6250 "Return a determination as to whether point is at the `top-level'.
6251 Being at the top-level means that point is either outside any
6252 enclosing block (such function definition), or only inside a class,
6253 namespace or other block that contains another declaration level.
6254
6255 If point is not at the top-level (e.g. it is inside a method
6256 definition), then nil is returned. Otherwise, if point is at a
6257 top-level not enclosed within a class definition, t is returned.
6258 Otherwise, a 2-vector is returned where the zeroth element is the
6259 buffer position of the start of the class declaration, and the first
6260 element is the buffer position of the enclosing class's opening
6261 brace.
6262
6263 Note that this function might do hidden buffer changes. See the
6264 comment at the start of cc-engine.el for more info."
6265 (let ((paren-state (c-parse-state)))
6266 (or (not (c-most-enclosing-brace paren-state))
6267 (c-search-uplist-for-classkey paren-state))))
6268
6269 (defun c-just-after-func-arglist-p (&optional lim)
6270 ;; Return non-nil if the point is in the region after the argument
6271 ;; list of a function and its opening brace (or semicolon in case it
6272 ;; got no body). If there are K&R style argument declarations in
6273 ;; that region, the point has to be inside the first one for this
6274 ;; function to recognize it.
6275 ;;
6276 ;; If successful, the point is moved to the first token after the
6277 ;; function header (see `c-forward-decl-or-cast-1' for details) and
6278 ;; the position of the opening paren of the function arglist is
6279 ;; returned.
6280 ;;
6281 ;; The point is clobbered if not successful.
6282 ;;
6283 ;; LIM is used as bound for backward buffer searches.
6284 ;;
6285 ;; This function might do hidden buffer changes.
6286
6287 (let ((beg (point)) end id-start)
6288 (and
6289 (eq (c-beginning-of-statement-1 lim) 'same)
6290
6291 (not (or (c-major-mode-is 'objc-mode)
6292 (c-forward-objc-directive)))
6293
6294 (setq id-start
6295 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
6296 (< id-start beg)
6297
6298 ;; There should not be a '=' or ',' between beg and the
6299 ;; start of the declaration since that means we were in the
6300 ;; "expression part" of the declaration.
6301 (or (> (point) beg)
6302 (not (looking-at "[=,]")))
6303
6304 (save-excursion
6305 ;; Check that there's an arglist paren in the
6306 ;; declaration.
6307 (goto-char id-start)
6308 (cond ((eq (char-after) ?\()
6309 ;; The declarator is a paren expression, so skip past it
6310 ;; so that we don't get stuck on that instead of the
6311 ;; function arglist.
6312 (c-forward-sexp))
6313 ((and c-opt-op-identifier-prefix
6314 (looking-at c-opt-op-identifier-prefix))
6315 ;; Don't trip up on "operator ()".
6316 (c-forward-token-2 2 t)))
6317 (and (< (point) beg)
6318 (c-syntactic-re-search-forward "(" beg t t)
6319 (1- (point)))))))
6320
6321 (defun c-in-knr-argdecl (&optional lim)
6322 ;; Return the position of the first argument declaration if point is
6323 ;; inside a K&R style argument declaration list, nil otherwise.
6324 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
6325 ;; position that bounds the backward search for the argument list.
6326 ;;
6327 ;; Point must be within a possible K&R region, e.g. just before a top-level
6328 ;; "{". It must be outside of parens and brackets. The test can return
6329 ;; false positives otherwise.
6330 ;;
6331 ;; This function might do hidden buffer changes.
6332
6333 (save-excursion
6334 (save-restriction
6335 ;; If we're in a macro, our search range is restricted to it. Narrow to
6336 ;; the searchable range.
6337 (let* ((macro-start (c-query-macro-start))
6338 (lim (max (or lim (point-min)) (or macro-start (point-min))))
6339 before-lparen after-rparen
6340 (pp-count-out 20)) ; Max number of paren/brace constructs before we give up
6341 (narrow-to-region lim (c-point 'eol))
6342
6343 ;; Search backwards for the defun's argument list. We give up if we
6344 ;; encounter a "}" (end of a previous defun) or BOB.
6345 ;;
6346 ;; The criterion for a paren structure being the arg list is:
6347 ;; o - there is non-WS stuff after it but before any "{"; AND
6348 ;; o - the token after it isn't a ";" AND
6349 ;; o - it is preceded by either an identifier (the function name) or
6350 ;; a macro expansion like "DEFUN (...)"; AND
6351 ;; o - its content is a non-empty comma-separated list of identifiers
6352 ;; (an empty arg list won't have a knr region).
6353 ;;
6354 ;; The following snippet illustrates these rules:
6355 ;; int foo (bar, baz, yuk)
6356 ;; int bar [] ;
6357 ;; int (*baz) (my_type) ;
6358 ;; int (*) (void) (*yuk) (void) ;
6359 ;; {
6360
6361 (catch 'knr
6362 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
6363 (setq pp-count-out (1- pp-count-out))
6364 (c-syntactic-skip-backward "^)]}")
6365 (cond ((eq (char-before) ?\))
6366 (setq after-rparen (point)))
6367 ((eq (char-before) ?\])
6368 (setq after-rparen nil))
6369 (t ; either } (hit previous defun) or no more parens/brackets
6370 (throw 'knr nil)))
6371
6372 (if after-rparen
6373 ;; We're inside a paren. Could it be our argument list....?
6374 (if
6375 (and
6376 (progn
6377 (goto-char after-rparen)
6378 (unless (c-go-list-backward) (throw 'knr nil)) ;
6379 ;; FIXME!!! What about macros between the parens? 2007/01/20
6380 (setq before-lparen (point)))
6381
6382 ;; It can't be the arg list if next token is ; or {
6383 (progn (goto-char after-rparen)
6384 (c-forward-syntactic-ws)
6385 (not (memq (char-after) '(?\; ?\{))))
6386
6387 ;; Is the thing preceding the list an identifier (the
6388 ;; function name), or a macro expansion?
6389 (progn
6390 (goto-char before-lparen)
6391 (eq (c-backward-token-2) 0)
6392 (or (c-on-identifier)
6393 (and (eq (char-after) ?\))
6394 (c-go-up-list-backward)
6395 (eq (c-backward-token-2) 0)
6396 (c-on-identifier))))
6397
6398 ;; Have we got a non-empty list of comma-separated
6399 ;; identifiers?
6400 (progn
6401 (goto-char before-lparen)
6402 (c-forward-token-2) ; to first token inside parens
6403 (and
6404 (c-on-identifier)
6405 (c-forward-token-2)
6406 (catch 'id-list
6407 (while (eq (char-after) ?\,)
6408 (c-forward-token-2)
6409 (unless (c-on-identifier) (throw 'id-list nil))
6410 (c-forward-token-2))
6411 (eq (char-after) ?\))))))
6412
6413 ;; ...Yes. We've identified the function's argument list.
6414 (throw 'knr
6415 (progn (goto-char after-rparen)
6416 (c-forward-syntactic-ws)
6417 (point)))
6418
6419 ;; ...No. The current parens aren't the function's arg list.
6420 (goto-char before-lparen))
6421
6422 (or (c-go-list-backward) ; backwards over [ .... ]
6423 (throw 'knr nil)))))))))
6424
6425 (defun c-skip-conditional ()
6426 ;; skip forward over conditional at point, including any predicate
6427 ;; statements in parentheses. No error checking is performed.
6428 ;;
6429 ;; This function might do hidden buffer changes.
6430 (c-forward-sexp (cond
6431 ;; else if()
6432 ((looking-at (concat "\\<else"
6433 "\\([ \t\n]\\|\\\\\n\\)+"
6434 "if\\>\\([^_]\\|$\\)"))
6435 3)
6436 ;; do, else, try, finally
6437 ((looking-at (concat "\\<\\("
6438 "do\\|else\\|try\\|finally"
6439 "\\)\\>\\([^_]\\|$\\)"))
6440 1)
6441 ;; for, if, while, switch, catch, synchronized, foreach
6442 (t 2))))
6443
6444 (defun c-after-conditional (&optional lim)
6445 ;; If looking at the token after a conditional then return the
6446 ;; position of its start, otherwise return nil.
6447 ;;
6448 ;; This function might do hidden buffer changes.
6449 (save-excursion
6450 (and (zerop (c-backward-token-2 1 t lim))
6451 (or (looking-at c-block-stmt-1-key)
6452 (and (eq (char-after) ?\()
6453 (zerop (c-backward-token-2 1 t lim))
6454 (looking-at c-block-stmt-2-key)))
6455 (point))))
6456
6457 (defun c-after-special-operator-id (&optional lim)
6458 ;; If the point is after an operator identifier that isn't handled
6459 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
6460 ;; position of the start of that identifier is returned. nil is
6461 ;; returned otherwise. The point may be anywhere in the syntactic
6462 ;; whitespace after the last token of the operator identifier.
6463 ;;
6464 ;; This function might do hidden buffer changes.
6465 (save-excursion
6466 (and c-overloadable-operators-regexp
6467 (zerop (c-backward-token-2 1 nil lim))
6468 (looking-at c-overloadable-operators-regexp)
6469 (or (not c-opt-op-identifier-prefix)
6470 (and
6471 (zerop (c-backward-token-2 1 nil lim))
6472 (looking-at c-opt-op-identifier-prefix)))
6473 (point))))
6474
6475 (defsubst c-backward-to-block-anchor (&optional lim)
6476 ;; Assuming point is at a brace that opens a statement block of some
6477 ;; kind, move to the proper anchor point for that block. It might
6478 ;; need to be adjusted further by c-add-stmt-syntax, but the
6479 ;; position at return is suitable as start position for that
6480 ;; function.
6481 ;;
6482 ;; This function might do hidden buffer changes.
6483 (unless (= (point) (c-point 'boi))
6484 (let ((start (c-after-conditional lim)))
6485 (if start
6486 (goto-char start)))))
6487
6488 (defsubst c-backward-to-decl-anchor (&optional lim)
6489 ;; Assuming point is at a brace that opens the block of a top level
6490 ;; declaration of some kind, move to the proper anchor point for
6491 ;; that block.
6492 ;;
6493 ;; This function might do hidden buffer changes.
6494 (unless (= (point) (c-point 'boi))
6495 (c-beginning-of-statement-1 lim)))
6496
6497 (defun c-search-decl-header-end ()
6498 ;; Search forward for the end of the "header" of the current
6499 ;; declaration. That's the position where the definition body
6500 ;; starts, or the first variable initializer, or the ending
6501 ;; semicolon. I.e. search forward for the closest following
6502 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
6503 ;; _after_ the first found token, or at point-max if none is found.
6504 ;;
6505 ;; This function might do hidden buffer changes.
6506
6507 (let ((base (point)))
6508 (if (c-major-mode-is 'c++-mode)
6509
6510 ;; In C++ we need to take special care to handle operator
6511 ;; tokens and those pesky template brackets.
6512 (while (and
6513 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
6514 (or
6515 (c-end-of-current-token base)
6516 ;; Handle operator identifiers, i.e. ignore any
6517 ;; operator token preceded by "operator".
6518 (save-excursion
6519 (and (c-safe (c-backward-sexp) t)
6520 (looking-at c-opt-op-identifier-prefix)))
6521 (and (eq (char-before) ?<)
6522 (c-with-syntax-table c++-template-syntax-table
6523 (if (c-safe (goto-char (c-up-list-forward (point))))
6524 t
6525 (goto-char (point-max))
6526 nil)))))
6527 (setq base (point)))
6528
6529 (while (and
6530 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
6531 (c-end-of-current-token base))
6532 (setq base (point))))))
6533
6534 (defun c-beginning-of-decl-1 (&optional lim)
6535 ;; Go to the beginning of the current declaration, or the beginning
6536 ;; of the previous one if already at the start of it. Point won't
6537 ;; be moved out of any surrounding paren. Return a cons cell of the
6538 ;; form (MOVE . KNR-POS). MOVE is like the return value from
6539 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
6540 ;; style argument declarations (and they are to be recognized) then
6541 ;; KNR-POS is set to the start of the first such argument
6542 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
6543 ;; position that bounds the backward search.
6544 ;;
6545 ;; NB: Cases where the declaration continues after the block, as in
6546 ;; "struct foo { ... } bar;", are currently recognized as two
6547 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
6548 ;;
6549 ;; This function might do hidden buffer changes.
6550 (catch 'return
6551 (let* ((start (point))
6552 (last-stmt-start (point))
6553 (move (c-beginning-of-statement-1 lim nil t)))
6554
6555 ;; `c-beginning-of-statement-1' stops at a block start, but we
6556 ;; want to continue if the block doesn't begin a top level
6557 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
6558 ;; or an open paren.
6559 (let ((beg (point)) tentative-move)
6560 ;; Go back one "statement" each time round the loop until we're just
6561 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
6562 ;; an ObjC method. This will move over a multiple declaration whose
6563 ;; components are comma separated.
6564 (while (and
6565 ;; Must check with c-opt-method-key in ObjC mode.
6566 (not (and c-opt-method-key
6567 (looking-at c-opt-method-key)))
6568 (/= last-stmt-start (point))
6569 (progn
6570 (c-backward-syntactic-ws lim)
6571 (not (memq (char-before) '(?\; ?} ?: nil))))
6572 (save-excursion
6573 (backward-char)
6574 (not (looking-at "\\s(")))
6575 ;; Check that we don't move from the first thing in a
6576 ;; macro to its header.
6577 (not (eq (setq tentative-move
6578 (c-beginning-of-statement-1 lim nil t))
6579 'macro)))
6580 (setq last-stmt-start beg
6581 beg (point)
6582 move tentative-move))
6583 (goto-char beg))
6584
6585 (when c-recognize-knr-p
6586 (let ((fallback-pos (point)) knr-argdecl-start)
6587 ;; Handle K&R argdecls. Back up after the "statement" jumped
6588 ;; over by `c-beginning-of-statement-1', unless it was the
6589 ;; function body, in which case we're sitting on the opening
6590 ;; brace now. Then test if we're in a K&R argdecl region and
6591 ;; that we started at the other side of the first argdecl in
6592 ;; it.
6593 (unless (eq (char-after) ?{)
6594 (goto-char last-stmt-start))
6595 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
6596 (< knr-argdecl-start start)
6597 (progn
6598 (goto-char knr-argdecl-start)
6599 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
6600 (throw 'return
6601 (cons (if (eq (char-after fallback-pos) ?{)
6602 'previous
6603 'same)
6604 knr-argdecl-start))
6605 (goto-char fallback-pos))))
6606
6607 ;; `c-beginning-of-statement-1' counts each brace block as a separate
6608 ;; statement, so the result will be 'previous if we've moved over any.
6609 ;; So change our result back to 'same if necessary.
6610 ;;
6611 ;; If they were brace list initializers we might not have moved over a
6612 ;; declaration boundary though, so change it to 'same if we've moved
6613 ;; past a '=' before '{', but not ';'. (This ought to be integrated
6614 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
6615 ;; potentially can search over a large amount of text.). Take special
6616 ;; pains not to get mislead by C++'s "operator=", and the like.
6617 (if (and (eq move 'previous)
6618 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
6619 c++-template-syntax-table
6620 (syntax-table))
6621 (save-excursion
6622 (and
6623 (progn
6624 (while ; keep going back to "[;={"s until we either find
6625 ; no more, or get to one which isn't an "operator ="
6626 (and (c-syntactic-re-search-forward "[;={]" start t t t)
6627 (eq (char-before) ?=)
6628 c-overloadable-operators-regexp
6629 c-opt-op-identifier-prefix
6630 (save-excursion
6631 (eq (c-backward-token-2) 0)
6632 (looking-at c-overloadable-operators-regexp)
6633 (eq (c-backward-token-2) 0)
6634 (looking-at c-opt-op-identifier-prefix))))
6635 (eq (char-before) ?=))
6636 (c-syntactic-re-search-forward "[;{]" start t t)
6637 (eq (char-before) ?{)
6638 (c-safe (goto-char (c-up-list-forward (point))) t)
6639 (not (c-syntactic-re-search-forward ";" start t t))))))
6640 (cons 'same nil)
6641 (cons move nil)))))
6642
6643 (defun c-end-of-decl-1 ()
6644 ;; Assuming point is at the start of a declaration (as detected by
6645 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
6646 ;; `c-beginning-of-decl-1', this function handles the case when a
6647 ;; block is followed by identifiers in e.g. struct declarations in C
6648 ;; or C++. If a proper end was found then t is returned, otherwise
6649 ;; point is moved as far as possible within the current sexp and nil
6650 ;; is returned. This function doesn't handle macros; use
6651 ;; `c-end-of-macro' instead in those cases.
6652 ;;
6653 ;; This function might do hidden buffer changes.
6654 (let ((start (point))
6655 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
6656 c++-template-syntax-table
6657 (syntax-table))))
6658 (catch 'return
6659 (c-search-decl-header-end)
6660
6661 (when (and c-recognize-knr-p
6662 (eq (char-before) ?\;)
6663 (c-in-knr-argdecl start))
6664 ;; Stopped at the ';' in a K&R argdecl section which is
6665 ;; detected using the same criteria as in
6666 ;; `c-beginning-of-decl-1'. Move to the following block
6667 ;; start.
6668 (c-syntactic-re-search-forward "{" nil 'move t))
6669
6670 (when (eq (char-before) ?{)
6671 ;; Encountered a block in the declaration. Jump over it.
6672 (condition-case nil
6673 (goto-char (c-up-list-forward (point)))
6674 (error (goto-char (point-max))
6675 (throw 'return nil)))
6676 (if (or (not c-opt-block-decls-with-vars-key)
6677 (save-excursion
6678 (c-with-syntax-table decl-syntax-table
6679 (let ((lim (point)))
6680 (goto-char start)
6681 (not (and
6682 ;; Check for `c-opt-block-decls-with-vars-key'
6683 ;; before the first paren.
6684 (c-syntactic-re-search-forward
6685 (concat "[;=\(\[{]\\|\\("
6686 c-opt-block-decls-with-vars-key
6687 "\\)")
6688 lim t t t)
6689 (match-beginning 1)
6690 (not (eq (char-before) ?_))
6691 ;; Check that the first following paren is
6692 ;; the block.
6693 (c-syntactic-re-search-forward "[;=\(\[{]"
6694 lim t t t)
6695 (eq (char-before) ?{)))))))
6696 ;; The declaration doesn't have any of the
6697 ;; `c-opt-block-decls-with-vars' keywords in the
6698 ;; beginning, so it ends here at the end of the block.
6699 (throw 'return t)))
6700
6701 (c-with-syntax-table decl-syntax-table
6702 (while (progn
6703 (if (eq (char-before) ?\;)
6704 (throw 'return t))
6705 (c-syntactic-re-search-forward ";" nil 'move t))))
6706 nil)))
6707
6708 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
6709 ;; Assuming the point is at an open brace, check if it starts a
6710 ;; block that contains another declaration level, i.e. that isn't a
6711 ;; statement block or a brace list, and if so return non-nil.
6712 ;;
6713 ;; If the check is successful, the return value is the start of the
6714 ;; keyword that tells what kind of construct it is, i.e. typically
6715 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
6716 ;; the point will be at the start of the construct, before any
6717 ;; leading specifiers, otherwise it's at the returned position.
6718 ;;
6719 ;; The point is clobbered if the check is unsuccessful.
6720 ;;
6721 ;; CONTAINING-SEXP is the position of the open of the surrounding
6722 ;; paren, or nil if none.
6723 ;;
6724 ;; The optional LIMIT limits the backward search for the start of
6725 ;; the construct. It's assumed to be at a syntactically relevant
6726 ;; position.
6727 ;;
6728 ;; If any template arglists are found in the searched region before
6729 ;; the open brace, they get marked with paren syntax.
6730 ;;
6731 ;; This function might do hidden buffer changes.
6732
6733 (let ((open-brace (point)) kwd-start first-specifier-pos)
6734 (c-syntactic-skip-backward c-block-prefix-charset limit t)
6735
6736 (when (and c-recognize-<>-arglists
6737 (eq (char-before) ?>))
6738 ;; Could be at the end of a template arglist.
6739 (let ((c-parse-and-markup-<>-arglists t)
6740 (c-disallow-comma-in-<>-arglists
6741 (and containing-sexp
6742 (not (eq (char-after containing-sexp) ?{)))))
6743 (while (and
6744 (c-backward-<>-arglist nil limit)
6745 (progn
6746 (c-syntactic-skip-backward c-block-prefix-charset limit t)
6747 (eq (char-before) ?>))))))
6748
6749 ;; Note: Can't get bogus hits inside template arglists below since they
6750 ;; have gotten paren syntax above.
6751 (when (and
6752 ;; If `goto-start' is set we begin by searching for the
6753 ;; first possible position of a leading specifier list.
6754 ;; The `c-decl-block-key' search continues from there since
6755 ;; we know it can't match earlier.
6756 (if goto-start
6757 (when (c-syntactic-re-search-forward c-symbol-start
6758 open-brace t t)
6759 (goto-char (setq first-specifier-pos (match-beginning 0)))
6760 t)
6761 t)
6762
6763 (cond
6764 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
6765 (goto-char (setq kwd-start (match-beginning 0)))
6766 (or
6767
6768 ;; Found a keyword that can't be a type?
6769 (match-beginning 1)
6770
6771 ;; Can be a type too, in which case it's the return type of a
6772 ;; function (under the assumption that no declaration level
6773 ;; block construct starts with a type).
6774 (not (c-forward-type))
6775
6776 ;; Jumped over a type, but it could be a declaration keyword
6777 ;; followed by the declared identifier that we've jumped over
6778 ;; instead (e.g. in "class Foo {"). If it indeed is a type
6779 ;; then we should be at the declarator now, so check for a
6780 ;; valid declarator start.
6781 ;;
6782 ;; Note: This doesn't cope with the case when a declared
6783 ;; identifier is followed by e.g. '(' in a language where '('
6784 ;; also might be part of a declarator expression. Currently
6785 ;; there's no such language.
6786 (not (or (looking-at c-symbol-start)
6787 (looking-at c-type-decl-prefix-key)))))
6788
6789 ;; In Pike a list of modifiers may be followed by a brace
6790 ;; to make them apply to many identifiers. Note that the
6791 ;; match data will be empty on return in this case.
6792 ((and (c-major-mode-is 'pike-mode)
6793 (progn
6794 (goto-char open-brace)
6795 (= (c-backward-token-2) 0))
6796 (looking-at c-specifier-key)
6797 ;; Use this variant to avoid yet another special regexp.
6798 (c-keyword-member (c-keyword-sym (match-string 1))
6799 'c-modifier-kwds))
6800 (setq kwd-start (point))
6801 t)))
6802
6803 ;; Got a match.
6804
6805 (if goto-start
6806 ;; Back up over any preceding specifiers and their clauses
6807 ;; by going forward from `first-specifier-pos', which is the
6808 ;; earliest possible position where the specifier list can
6809 ;; start.
6810 (progn
6811 (goto-char first-specifier-pos)
6812
6813 (while (< (point) kwd-start)
6814 (if (looking-at c-symbol-key)
6815 ;; Accept any plain symbol token on the ground that
6816 ;; it's a specifier masked through a macro (just
6817 ;; like `c-forward-decl-or-cast-1' skip forward over
6818 ;; such tokens).
6819 ;;
6820 ;; Could be more restrictive wrt invalid keywords,
6821 ;; but that'd only occur in invalid code so there's
6822 ;; no use spending effort on it.
6823 (let ((end (match-end 0)))
6824 (unless (c-forward-keyword-clause 0)
6825 (goto-char end)
6826 (c-forward-syntactic-ws)))
6827
6828 ;; Can't parse a declaration preamble and is still
6829 ;; before `kwd-start'. That means `first-specifier-pos'
6830 ;; was in some earlier construct. Search again.
6831 (if (c-syntactic-re-search-forward c-symbol-start
6832 kwd-start 'move t)
6833 (goto-char (setq first-specifier-pos (match-beginning 0)))
6834 ;; Got no preamble before the block declaration keyword.
6835 (setq first-specifier-pos kwd-start))))
6836
6837 (goto-char first-specifier-pos))
6838 (goto-char kwd-start))
6839
6840 kwd-start)))
6841
6842 (defun c-search-uplist-for-classkey (paren-state)
6843 ;; Check if the closest containing paren sexp is a declaration
6844 ;; block, returning a 2 element vector in that case. Aref 0
6845 ;; contains the bufpos at boi of the class key line, and aref 1
6846 ;; contains the bufpos of the open brace. This function is an
6847 ;; obsolete wrapper for `c-looking-at-decl-block'.
6848 ;;
6849 ;; This function might do hidden buffer changes.
6850 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
6851 (when open-paren-pos
6852 (save-excursion
6853 (goto-char open-paren-pos)
6854 (when (and (eq (char-after) ?{)
6855 (c-looking-at-decl-block
6856 (c-safe-position open-paren-pos paren-state)
6857 nil))
6858 (back-to-indentation)
6859 (vector (point) open-paren-pos))))))
6860
6861 (defun c-inside-bracelist-p (containing-sexp paren-state)
6862 ;; return the buffer position of the beginning of the brace list
6863 ;; statement if we're inside a brace list, otherwise return nil.
6864 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
6865 ;; paren. PAREN-STATE is the remainder of the state of enclosing
6866 ;; braces
6867 ;;
6868 ;; N.B.: This algorithm can potentially get confused by cpp macros
6869 ;; placed in inconvenient locations. It's a trade-off we make for
6870 ;; speed.
6871 ;;
6872 ;; This function might do hidden buffer changes.
6873 (or
6874 ;; This will pick up brace list declarations.
6875 (c-safe
6876 (save-excursion
6877 (goto-char containing-sexp)
6878 (c-forward-sexp -1)
6879 (let (bracepos)
6880 (if (and (or (looking-at c-brace-list-key)
6881 (progn (c-forward-sexp -1)
6882 (looking-at c-brace-list-key)))
6883 (setq bracepos (c-down-list-forward (point)))
6884 (not (c-crosses-statement-barrier-p (point)
6885 (- bracepos 2))))
6886 (point)))))
6887 ;; this will pick up array/aggregate init lists, even if they are nested.
6888 (save-excursion
6889 (let ((class-key
6890 ;; Pike can have class definitions anywhere, so we must
6891 ;; check for the class key here.
6892 (and (c-major-mode-is 'pike-mode)
6893 c-decl-block-key))
6894 bufpos braceassignp lim next-containing)
6895 (while (and (not bufpos)
6896 containing-sexp)
6897 (when paren-state
6898 (if (consp (car paren-state))
6899 (setq lim (cdr (car paren-state))
6900 paren-state (cdr paren-state))
6901 (setq lim (car paren-state)))
6902 (when paren-state
6903 (setq next-containing (car paren-state)
6904 paren-state (cdr paren-state))))
6905 (goto-char containing-sexp)
6906 (if (c-looking-at-inexpr-block next-containing next-containing)
6907 ;; We're in an in-expression block of some kind. Do not
6908 ;; check nesting. We deliberately set the limit to the
6909 ;; containing sexp, so that c-looking-at-inexpr-block
6910 ;; doesn't check for an identifier before it.
6911 (setq containing-sexp nil)
6912 ;; see if the open brace is preceded by = or [...] in
6913 ;; this statement, but watch out for operator=
6914 (setq braceassignp 'dontknow)
6915 (c-backward-token-2 1 t lim)
6916 ;; Checks to do only on the first sexp before the brace.
6917 (when (and c-opt-inexpr-brace-list-key
6918 (eq (char-after) ?\[))
6919 ;; In Java, an initialization brace list may follow
6920 ;; directly after "new Foo[]", so check for a "new"
6921 ;; earlier.
6922 (while (eq braceassignp 'dontknow)
6923 (setq braceassignp
6924 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
6925 ((looking-at c-opt-inexpr-brace-list-key) t)
6926 ((looking-at "\\sw\\|\\s_\\|[.[]")
6927 ;; Carry on looking if this is an
6928 ;; identifier (may contain "." in Java)
6929 ;; or another "[]" sexp.
6930 'dontknow)
6931 (t nil)))))
6932 ;; Checks to do on all sexps before the brace, up to the
6933 ;; beginning of the statement.
6934 (while (eq braceassignp 'dontknow)
6935 (cond ((eq (char-after) ?\;)
6936 (setq braceassignp nil))
6937 ((and class-key
6938 (looking-at class-key))
6939 (setq braceassignp nil))
6940 ((eq (char-after) ?=)
6941 ;; We've seen a =, but must check earlier tokens so
6942 ;; that it isn't something that should be ignored.
6943 (setq braceassignp 'maybe)
6944 (while (and (eq braceassignp 'maybe)
6945 (zerop (c-backward-token-2 1 t lim)))
6946 (setq braceassignp
6947 (cond
6948 ;; Check for operator =
6949 ((and c-opt-op-identifier-prefix
6950 (looking-at c-opt-op-identifier-prefix))
6951 nil)
6952 ;; Check for `<opchar>= in Pike.
6953 ((and (c-major-mode-is 'pike-mode)
6954 (or (eq (char-after) ?`)
6955 ;; Special case for Pikes
6956 ;; `[]=, since '[' is not in
6957 ;; the punctuation class.
6958 (and (eq (char-after) ?\[)
6959 (eq (char-before) ?`))))
6960 nil)
6961 ((looking-at "\\s.") 'maybe)
6962 ;; make sure we're not in a C++ template
6963 ;; argument assignment
6964 ((and
6965 (c-major-mode-is 'c++-mode)
6966 (save-excursion
6967 (let ((here (point))
6968 (pos< (progn
6969 (skip-chars-backward "^<>")
6970 (point))))
6971 (and (eq (char-before) ?<)
6972 (not (c-crosses-statement-barrier-p
6973 pos< here))
6974 (not (c-in-literal))
6975 ))))
6976 nil)
6977 (t t))))))
6978 (if (and (eq braceassignp 'dontknow)
6979 (/= (c-backward-token-2 1 t lim) 0))
6980 (setq braceassignp nil)))
6981 (if (not braceassignp)
6982 (if (eq (char-after) ?\;)
6983 ;; Brace lists can't contain a semicolon, so we're done.
6984 (setq containing-sexp nil)
6985 ;; Go up one level.
6986 (setq containing-sexp next-containing
6987 lim nil
6988 next-containing nil))
6989 ;; we've hit the beginning of the aggregate list
6990 (c-beginning-of-statement-1
6991 (c-most-enclosing-brace paren-state))
6992 (setq bufpos (point))))
6993 )
6994 bufpos))
6995 ))
6996
6997 (defun c-looking-at-special-brace-list (&optional lim)
6998 ;; If we're looking at the start of a pike-style list, ie `({ })',
6999 ;; `([ ])', `(< >)' etc, a cons of a cons of its starting and ending
7000 ;; positions and its entry in c-special-brace-lists is returned, nil
7001 ;; otherwise. The ending position is nil if the list is still open.
7002 ;; LIM is the limit for forward search. The point may either be at
7003 ;; the `(' or at the following paren character. Tries to check the
7004 ;; matching closer, but assumes it's correct if no balanced paren is
7005 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
7006 ;; a special brace list).
7007 ;;
7008 ;; This function might do hidden buffer changes.
7009 (if c-special-brace-lists
7010 (condition-case ()
7011 (save-excursion
7012 (let ((beg (point))
7013 inner-beg end type)
7014 (c-forward-syntactic-ws)
7015 (if (eq (char-after) ?\()
7016 (progn
7017 (forward-char 1)
7018 (c-forward-syntactic-ws)
7019 (setq inner-beg (point))
7020 (setq type (assq (char-after) c-special-brace-lists)))
7021 (if (setq type (assq (char-after) c-special-brace-lists))
7022 (progn
7023 (setq inner-beg (point))
7024 (c-backward-syntactic-ws)
7025 (forward-char -1)
7026 (setq beg (if (eq (char-after) ?\()
7027 (point)
7028 nil)))))
7029 (if (and beg type)
7030 (if (and (c-safe
7031 (goto-char beg)
7032 (c-forward-sexp 1)
7033 (setq end (point))
7034 (= (char-before) ?\)))
7035 (c-safe
7036 (goto-char inner-beg)
7037 (if (looking-at "\\s(")
7038 ;; Check balancing of the inner paren
7039 ;; below.
7040 (progn
7041 (c-forward-sexp 1)
7042 t)
7043 ;; If the inner char isn't a paren then
7044 ;; we can't check balancing, so just
7045 ;; check the char before the outer
7046 ;; closing paren.
7047 (goto-char end)
7048 (backward-char)
7049 (c-backward-syntactic-ws)
7050 (= (char-before) (cdr type)))))
7051 (if (or (/= (char-syntax (char-before)) ?\))
7052 (= (progn
7053 (c-forward-syntactic-ws)
7054 (point))
7055 (1- end)))
7056 (cons (cons beg end) type))
7057 (cons (list beg) type)))))
7058 (error nil))))
7059
7060 (defun c-looking-at-bos (&optional lim)
7061 ;; Return non-nil if between two statements or declarations, assuming
7062 ;; point is not inside a literal or comment.
7063 ;;
7064 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
7065 ;; are recommended instead.
7066 ;;
7067 ;; This function might do hidden buffer changes.
7068 (c-at-statement-start-p))
7069 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p)
7070
7071 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
7072 ;; Return non-nil if we're looking at the beginning of a block
7073 ;; inside an expression. The value returned is actually a cons of
7074 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
7075 ;; position of the beginning of the construct.
7076 ;;
7077 ;; LIM limits the backward search. CONTAINING-SEXP is the start
7078 ;; position of the closest containing list. If it's nil, the
7079 ;; containing paren isn't used to decide whether we're inside an
7080 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
7081 ;; needs to be farther back.
7082 ;;
7083 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
7084 ;; brace block might be done. It should only be used when the
7085 ;; construct can be assumed to be complete, i.e. when the original
7086 ;; starting position was further down than that.
7087 ;;
7088 ;; This function might do hidden buffer changes.
7089
7090 (save-excursion
7091 (let ((res 'maybe) passed-paren
7092 (closest-lim (or containing-sexp lim (point-min)))
7093 ;; Look at the character after point only as a last resort
7094 ;; when we can't disambiguate.
7095 (block-follows (and (eq (char-after) ?{) (point))))
7096
7097 (while (and (eq res 'maybe)
7098 (progn (c-backward-syntactic-ws)
7099 (> (point) closest-lim))
7100 (not (bobp))
7101 (progn (backward-char)
7102 (looking-at "[\]\).]\\|\\w\\|\\s_"))
7103 (c-safe (forward-char)
7104 (goto-char (scan-sexps (point) -1))))
7105
7106 (setq res
7107 (if (looking-at c-keywords-regexp)
7108 (let ((kw-sym (c-keyword-sym (match-string 1))))
7109 (cond
7110 ((and block-follows
7111 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
7112 (and (not (eq passed-paren ?\[))
7113 (or (not (looking-at c-class-key))
7114 ;; If the class definition is at the start of
7115 ;; a statement, we don't consider it an
7116 ;; in-expression class.
7117 (let ((prev (point)))
7118 (while (and
7119 (= (c-backward-token-2 1 nil closest-lim) 0)
7120 (eq (char-syntax (char-after)) ?w))
7121 (setq prev (point)))
7122 (goto-char prev)
7123 (not (c-at-statement-start-p)))
7124 ;; Also, in Pike we treat it as an
7125 ;; in-expression class if it's used in an
7126 ;; object clone expression.
7127 (save-excursion
7128 (and check-at-end
7129 (c-major-mode-is 'pike-mode)
7130 (progn (goto-char block-follows)
7131 (zerop (c-forward-token-2 1 t)))
7132 (eq (char-after) ?\())))
7133 (cons 'inexpr-class (point))))
7134 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
7135 (when (not passed-paren)
7136 (cons 'inexpr-statement (point))))
7137 ((c-keyword-member kw-sym 'c-lambda-kwds)
7138 (when (or (not passed-paren)
7139 (eq passed-paren ?\())
7140 (cons 'inlambda (point))))
7141 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
7142 nil)
7143 (t
7144 'maybe)))
7145
7146 (if (looking-at "\\s(")
7147 (if passed-paren
7148 (if (and (eq passed-paren ?\[)
7149 (eq (char-after) ?\[))
7150 ;; Accept several square bracket sexps for
7151 ;; Java array initializations.
7152 'maybe)
7153 (setq passed-paren (char-after))
7154 'maybe)
7155 'maybe))))
7156
7157 (if (eq res 'maybe)
7158 (when (and c-recognize-paren-inexpr-blocks
7159 block-follows
7160 containing-sexp
7161 (eq (char-after containing-sexp) ?\())
7162 (goto-char containing-sexp)
7163 (if (or (save-excursion
7164 (c-backward-syntactic-ws lim)
7165 (and (> (point) (or lim (point-min)))
7166 (c-on-identifier)))
7167 (and c-special-brace-lists
7168 (c-looking-at-special-brace-list)))
7169 nil
7170 (cons 'inexpr-statement (point))))
7171
7172 res))))
7173
7174 (defun c-looking-at-inexpr-block-backward (paren-state)
7175 ;; Returns non-nil if we're looking at the end of an in-expression
7176 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
7177 ;; PAREN-STATE is the paren state relevant at the current position.
7178 ;;
7179 ;; This function might do hidden buffer changes.
7180 (save-excursion
7181 ;; We currently only recognize a block.
7182 (let ((here (point))
7183 (elem (car-safe paren-state))
7184 containing-sexp)
7185 (when (and (consp elem)
7186 (progn (goto-char (cdr elem))
7187 (c-forward-syntactic-ws here)
7188 (= (point) here)))
7189 (goto-char (car elem))
7190 (if (setq paren-state (cdr paren-state))
7191 (setq containing-sexp (car-safe paren-state)))
7192 (c-looking-at-inexpr-block (c-safe-position containing-sexp
7193 paren-state)
7194 containing-sexp)))))
7195
7196 \f
7197 ;; `c-guess-basic-syntax' and the functions that precedes it below
7198 ;; implements the main decision tree for determining the syntactic
7199 ;; analysis of the current line of code.
7200
7201 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
7202 ;; auto newline analysis.
7203 (defvar c-auto-newline-analysis nil)
7204
7205 (defun c-brace-anchor-point (bracepos)
7206 ;; BRACEPOS is the position of a brace in a construct like "namespace
7207 ;; Bar {". Return the anchor point in this construct; this is the
7208 ;; earliest symbol on the brace's line which isn't earlier than
7209 ;; "namespace".
7210 ;;
7211 ;; Currently (2007-08-17), "like namespace" means "matches
7212 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
7213 ;; or anything like that.
7214 (save-excursion
7215 (let ((boi (c-point 'boi bracepos)))
7216 (goto-char bracepos)
7217 (while (and (> (point) boi)
7218 (not (looking-at c-other-decl-block-key)))
7219 (c-backward-token-2))
7220 (if (> (point) boi) (point) boi))))
7221
7222 (defsubst c-add-syntax (symbol &rest args)
7223 ;; A simple function to prepend a new syntax element to
7224 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
7225 ;; should always be dynamically bound but since we read it first
7226 ;; we'll fail properly anyway if this function is misused.
7227 (setq c-syntactic-context (cons (cons symbol args)
7228 c-syntactic-context)))
7229
7230 (defsubst c-append-syntax (symbol &rest args)
7231 ;; Like `c-add-syntax' but appends to the end of the syntax list.
7232 ;; (Normally not necessary.)
7233 (setq c-syntactic-context (nconc c-syntactic-context
7234 (list (cons symbol args)))))
7235
7236 (defun c-add-stmt-syntax (syntax-symbol
7237 syntax-extra-args
7238 stop-at-boi-only
7239 containing-sexp
7240 paren-state)
7241 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
7242 ;; needed with further syntax elements of the types `substatement',
7243 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
7244 ;; `defun-block-intro'.
7245 ;;
7246 ;; Do the generic processing to anchor the given syntax symbol on
7247 ;; the preceding statement: Skip over any labels and containing
7248 ;; statements on the same line, and then search backward until we
7249 ;; find a statement or block start that begins at boi without a
7250 ;; label or comment.
7251 ;;
7252 ;; Point is assumed to be at the prospective anchor point for the
7253 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
7254 ;; skip past open parens and containing statements. Most of the added
7255 ;; syntax elements will get the same anchor point - the exception is
7256 ;; for an anchor in a construct like "namespace"[*] - this is as early
7257 ;; as possible in the construct but on the same line as the {.
7258 ;;
7259 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
7260 ;;
7261 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
7262 ;; syntax symbol. They are appended after the anchor point.
7263 ;;
7264 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
7265 ;; if the current statement starts there.
7266 ;;
7267 ;; Note: It's not a problem if PAREN-STATE "overshoots"
7268 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
7269 ;;
7270 ;; This function might do hidden buffer changes.
7271
7272 (if (= (point) (c-point 'boi))
7273 ;; This is by far the most common case, so let's give it special
7274 ;; treatment.
7275 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
7276
7277 (let ((syntax-last c-syntactic-context)
7278 (boi (c-point 'boi))
7279 ;; Set when we're on a label, so that we don't stop there.
7280 ;; FIXME: To be complete we should check if we're on a label
7281 ;; now at the start.
7282 on-label)
7283
7284 ;; Use point as the anchor point for "namespace", "extern", etc.
7285 (apply 'c-add-syntax syntax-symbol
7286 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
7287 (point) nil)
7288 syntax-extra-args)
7289
7290 ;; Loop while we have to back out of containing blocks.
7291 (while
7292 (and
7293 (catch 'back-up-block
7294
7295 ;; Loop while we have to back up statements.
7296 (while (or (/= (point) boi)
7297 on-label
7298 (looking-at c-comment-start-regexp))
7299
7300 ;; Skip past any comments that stands between the
7301 ;; statement start and boi.
7302 (let ((savepos (point)))
7303 (while (and (/= savepos boi)
7304 (c-backward-single-comment))
7305 (setq savepos (point)
7306 boi (c-point 'boi)))
7307 (goto-char savepos))
7308
7309 ;; Skip to the beginning of this statement or backward
7310 ;; another one.
7311 (let ((old-pos (point))
7312 (old-boi boi)
7313 (step-type (c-beginning-of-statement-1 containing-sexp)))
7314 (setq boi (c-point 'boi)
7315 on-label (eq step-type 'label))
7316
7317 (cond ((= (point) old-pos)
7318 ;; If we didn't move we're at the start of a block and
7319 ;; have to continue outside it.
7320 (throw 'back-up-block t))
7321
7322 ((and (eq step-type 'up)
7323 (>= (point) old-boi)
7324 (looking-at "else\\>[^_]")
7325 (save-excursion
7326 (goto-char old-pos)
7327 (looking-at "if\\>[^_]")))
7328 ;; Special case to avoid deeper and deeper indentation
7329 ;; of "else if" clauses.
7330 )
7331
7332 ((and (not stop-at-boi-only)
7333 (/= old-pos old-boi)
7334 (memq step-type '(up previous)))
7335 ;; If stop-at-boi-only is nil, we shouldn't back up
7336 ;; over previous or containing statements to try to
7337 ;; reach boi, so go back to the last position and
7338 ;; exit.
7339 (goto-char old-pos)
7340 (throw 'back-up-block nil))
7341
7342 (t
7343 (if (and (not stop-at-boi-only)
7344 (memq step-type '(up previous beginning)))
7345 ;; If we've moved into another statement then we
7346 ;; should no longer try to stop in the middle of a
7347 ;; line.
7348 (setq stop-at-boi-only t))
7349
7350 ;; Record this as a substatement if we skipped up one
7351 ;; level.
7352 (when (eq step-type 'up)
7353 (c-add-syntax 'substatement nil))))
7354 )))
7355
7356 containing-sexp)
7357
7358 ;; Now we have to go out of this block.
7359 (goto-char containing-sexp)
7360
7361 ;; Don't stop in the middle of a special brace list opener
7362 ;; like "({".
7363 (when c-special-brace-lists
7364 (let ((special-list (c-looking-at-special-brace-list)))
7365 (when (and special-list
7366 (< (car (car special-list)) (point)))
7367 (setq containing-sexp (car (car special-list)))
7368 (goto-char containing-sexp))))
7369
7370 (setq paren-state (c-whack-state-after containing-sexp paren-state)
7371 containing-sexp (c-most-enclosing-brace paren-state)
7372 boi (c-point 'boi))
7373
7374 ;; Analyze the construct in front of the block we've stepped out
7375 ;; from and add the right syntactic element for it.
7376 (let ((paren-pos (point))
7377 (paren-char (char-after))
7378 step-type)
7379
7380 (if (eq paren-char ?\()
7381 ;; Stepped out of a parenthesis block, so we're in an
7382 ;; expression now.
7383 (progn
7384 (when (/= paren-pos boi)
7385 (if (and c-recognize-paren-inexpr-blocks
7386 (progn
7387 (c-backward-syntactic-ws containing-sexp)
7388 (or (not (looking-at "\\>"))
7389 (not (c-on-identifier))))
7390 (save-excursion
7391 (goto-char (1+ paren-pos))
7392 (c-forward-syntactic-ws)
7393 (eq (char-after) ?{)))
7394 ;; Stepped out of an in-expression statement. This
7395 ;; syntactic element won't get an anchor pos.
7396 (c-add-syntax 'inexpr-statement)
7397
7398 ;; A parenthesis normally belongs to an arglist.
7399 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
7400
7401 (goto-char (max boi
7402 (if containing-sexp
7403 (1+ containing-sexp)
7404 (point-min))))
7405 (setq step-type 'same
7406 on-label nil))
7407
7408 ;; Stepped out of a brace block.
7409 (setq step-type (c-beginning-of-statement-1 containing-sexp)
7410 on-label (eq step-type 'label))
7411
7412 (if (and (eq step-type 'same)
7413 (/= paren-pos (point)))
7414 (let (inexpr)
7415 (cond
7416 ((save-excursion
7417 (goto-char paren-pos)
7418 (setq inexpr (c-looking-at-inexpr-block
7419 (c-safe-position containing-sexp paren-state)
7420 containing-sexp)))
7421 (c-add-syntax (if (eq (car inexpr) 'inlambda)
7422 'defun-block-intro
7423 'statement-block-intro)
7424 nil))
7425 ((looking-at c-other-decl-block-key)
7426 (c-add-syntax
7427 (cdr (assoc (match-string 1)
7428 c-other-decl-block-key-in-symbols-alist))
7429 (max (c-point 'boi paren-pos) (point))))
7430 (t (c-add-syntax 'defun-block-intro nil))))
7431
7432 (c-add-syntax 'statement-block-intro nil)))
7433
7434 (if (= paren-pos boi)
7435 ;; Always done if the open brace was at boi. The
7436 ;; c-beginning-of-statement-1 call above is necessary
7437 ;; anyway, to decide the type of block-intro to add.
7438 (goto-char paren-pos)
7439 (setq boi (c-point 'boi)))
7440 ))
7441
7442 ;; Fill in the current point as the anchor for all the symbols
7443 ;; added above.
7444 (let ((p c-syntactic-context) q)
7445 (while (not (eq p syntax-last))
7446 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
7447 (while q
7448 (unless (car q)
7449 (setcar q (point)))
7450 (setq q (cdr q)))
7451 (setq p (cdr p))))
7452 )))
7453
7454 (defun c-add-class-syntax (symbol
7455 containing-decl-open
7456 containing-decl-start
7457 containing-decl-kwd
7458 paren-state)
7459 ;; The inclass and class-close syntactic symbols are added in
7460 ;; several places and some work is needed to fix everything.
7461 ;; Therefore it's collected here.
7462 ;;
7463 ;; This function might do hidden buffer changes.
7464 (goto-char containing-decl-open)
7465 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
7466 (progn
7467 (c-add-syntax symbol containing-decl-open)
7468 containing-decl-open)
7469 (goto-char containing-decl-start)
7470 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
7471 ;; here, but we have to do like this for compatibility.
7472 (back-to-indentation)
7473 (c-add-syntax symbol (point))
7474 (if (and (c-keyword-member containing-decl-kwd
7475 'c-inexpr-class-kwds)
7476 (/= containing-decl-start (c-point 'boi containing-decl-start)))
7477 (c-add-syntax 'inexpr-class))
7478 (point)))
7479
7480 (defun c-guess-continued-construct (indent-point
7481 char-after-ip
7482 beg-of-same-or-containing-stmt
7483 containing-sexp
7484 paren-state)
7485 ;; This function contains the decision tree reached through both
7486 ;; cases 18 and 10. It's a continued statement or top level
7487 ;; construct of some kind.
7488 ;;
7489 ;; This function might do hidden buffer changes.
7490
7491 (let (special-brace-list)
7492 (goto-char indent-point)
7493 (skip-chars-forward " \t")
7494
7495 (cond
7496 ;; (CASE A removed.)
7497 ;; CASE B: open braces for class or brace-lists
7498 ((setq special-brace-list
7499 (or (and c-special-brace-lists
7500 (c-looking-at-special-brace-list))
7501 (eq char-after-ip ?{)))
7502
7503 (cond
7504 ;; CASE B.1: class-open
7505 ((save-excursion
7506 (and (eq (char-after) ?{)
7507 (c-looking-at-decl-block containing-sexp t)
7508 (setq beg-of-same-or-containing-stmt (point))))
7509 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
7510
7511 ;; CASE B.2: brace-list-open
7512 ((or (consp special-brace-list)
7513 (save-excursion
7514 (goto-char beg-of-same-or-containing-stmt)
7515 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
7516 indent-point t t t)))
7517 ;; The most semantically accurate symbol here is
7518 ;; brace-list-open, but we normally report it simply as a
7519 ;; statement-cont. The reason is that one normally adjusts
7520 ;; brace-list-open for brace lists as top-level constructs,
7521 ;; and brace lists inside statements is a completely different
7522 ;; context. C.f. case 5A.3.
7523 (c-beginning-of-statement-1 containing-sexp)
7524 (c-add-stmt-syntax (if c-auto-newline-analysis
7525 ;; Turn off the dwim above when we're
7526 ;; analyzing the nature of the brace
7527 ;; for the auto newline feature.
7528 'brace-list-open
7529 'statement-cont)
7530 nil nil
7531 containing-sexp paren-state))
7532
7533 ;; CASE B.3: The body of a function declared inside a normal
7534 ;; block. Can occur e.g. in Pike and when using gcc
7535 ;; extensions, but watch out for macros followed by blocks.
7536 ;; C.f. cases E, 16F and 17G.
7537 ((and (not (c-at-statement-start-p))
7538 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
7539 'same)
7540 (save-excursion
7541 (let ((c-recognize-typeless-decls nil))
7542 ;; Turn off recognition of constructs that lacks a
7543 ;; type in this case, since that's more likely to be
7544 ;; a macro followed by a block.
7545 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
7546 (c-add-stmt-syntax 'defun-open nil t
7547 containing-sexp paren-state))
7548
7549 ;; CASE B.4: Continued statement with block open. The most
7550 ;; accurate analysis is perhaps `statement-cont' together with
7551 ;; `block-open' but we play DWIM and use `substatement-open'
7552 ;; instead. The rationaly is that this typically is a macro
7553 ;; followed by a block which makes it very similar to a
7554 ;; statement with a substatement block.
7555 (t
7556 (c-add-stmt-syntax 'substatement-open nil nil
7557 containing-sexp paren-state))
7558 ))
7559
7560 ;; CASE C: iostream insertion or extraction operator
7561 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
7562 (save-excursion
7563 (goto-char beg-of-same-or-containing-stmt)
7564 ;; If there is no preceding streamop in the statement
7565 ;; then indent this line as a normal statement-cont.
7566 (when (c-syntactic-re-search-forward
7567 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
7568 (c-add-syntax 'stream-op (c-point 'boi))
7569 t))))
7570
7571 ;; CASE E: In the "K&R region" of a function declared inside a
7572 ;; normal block. C.f. case B.3.
7573 ((and (save-excursion
7574 ;; Check that the next token is a '{'. This works as
7575 ;; long as no language that allows nested function
7576 ;; definitions allows stuff like member init lists, K&R
7577 ;; declarations or throws clauses there.
7578 ;;
7579 ;; Note that we do a forward search for something ahead
7580 ;; of the indentation line here. That's not good since
7581 ;; the user might not have typed it yet. Unfortunately
7582 ;; it's exceedingly tricky to recognize a function
7583 ;; prototype in a code block without resorting to this.
7584 (c-forward-syntactic-ws)
7585 (eq (char-after) ?{))
7586 (not (c-at-statement-start-p))
7587 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
7588 'same)
7589 (save-excursion
7590 (let ((c-recognize-typeless-decls nil))
7591 ;; Turn off recognition of constructs that lacks a
7592 ;; type in this case, since that's more likely to be
7593 ;; a macro followed by a block.
7594 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
7595 (c-add-stmt-syntax 'func-decl-cont nil t
7596 containing-sexp paren-state))
7597
7598 ;; CASE D: continued statement.
7599 (t
7600 (c-beginning-of-statement-1 containing-sexp)
7601 (c-add-stmt-syntax 'statement-cont nil nil
7602 containing-sexp paren-state))
7603 )))
7604
7605 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
7606 ;; 2005/11/29).
7607 ;;;###autoload
7608 (defun c-guess-basic-syntax ()
7609 "Return the syntactic context of the current line."
7610 (save-excursion
7611 (beginning-of-line)
7612 (c-save-buffer-state
7613 ((indent-point (point))
7614 (case-fold-search nil)
7615 ;; A whole ugly bunch of various temporary variables. Have
7616 ;; to declare them here since it's not possible to declare
7617 ;; a variable with only the scope of a cond test and the
7618 ;; following result clauses, and most of this function is a
7619 ;; single gigantic cond. :P
7620 literal char-before-ip before-ws-ip char-after-ip macro-start
7621 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
7622 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
7623 ;; The following record some positions for the containing
7624 ;; declaration block if we're directly within one:
7625 ;; `containing-decl-open' is the position of the open
7626 ;; brace. `containing-decl-start' is the start of the
7627 ;; declaration. `containing-decl-kwd' is the keyword
7628 ;; symbol of the keyword that tells what kind of block it
7629 ;; is.
7630 containing-decl-open
7631 containing-decl-start
7632 containing-decl-kwd
7633 ;; The open paren of the closest surrounding sexp or nil if
7634 ;; there is none.
7635 containing-sexp
7636 ;; The position after the closest preceding brace sexp
7637 ;; (nested sexps are ignored), or the position after
7638 ;; `containing-sexp' if there is none, or (point-min) if
7639 ;; `containing-sexp' is nil.
7640 lim
7641 ;; The paren state outside `containing-sexp', or at
7642 ;; `indent-point' if `containing-sexp' is nil.
7643 (paren-state (c-parse-state))
7644 ;; There's always at most one syntactic element which got
7645 ;; an anchor pos. It's stored in syntactic-relpos.
7646 syntactic-relpos
7647 (c-stmt-delim-chars c-stmt-delim-chars))
7648
7649 ;; Check if we're directly inside an enclosing declaration
7650 ;; level block.
7651 (when (and (setq containing-sexp
7652 (c-most-enclosing-brace paren-state))
7653 (progn
7654 (goto-char containing-sexp)
7655 (eq (char-after) ?{))
7656 (setq placeholder
7657 (c-looking-at-decl-block
7658 (c-most-enclosing-brace paren-state
7659 containing-sexp)
7660 t)))
7661 (setq containing-decl-open containing-sexp
7662 containing-decl-start (point)
7663 containing-sexp nil)
7664 (goto-char placeholder)
7665 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
7666 (c-keyword-sym (match-string 1)))))
7667
7668 ;; Init some position variables.
7669 (if c-state-cache
7670 (progn
7671 (setq containing-sexp (car paren-state)
7672 paren-state (cdr paren-state))
7673 (if (consp containing-sexp)
7674 (progn
7675 (setq lim (cdr containing-sexp))
7676 (if (cdr c-state-cache)
7677 ;; Ignore balanced paren. The next entry
7678 ;; can't be another one.
7679 (setq containing-sexp (car (cdr c-state-cache))
7680 paren-state (cdr paren-state))
7681 ;; If there is no surrounding open paren then
7682 ;; put the last balanced pair back on paren-state.
7683 (setq paren-state (cons containing-sexp paren-state)
7684 containing-sexp nil)))
7685 (setq lim (1+ containing-sexp))))
7686 (setq lim (point-min)))
7687
7688 ;; If we're in a parenthesis list then ',' delimits the
7689 ;; "statements" rather than being an operator (with the
7690 ;; exception of the "for" clause). This difference is
7691 ;; typically only noticeable when statements are used in macro
7692 ;; arglists.
7693 (when (and containing-sexp
7694 (eq (char-after containing-sexp) ?\())
7695 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
7696
7697 ;; cache char before and after indent point, and move point to
7698 ;; the most likely position to perform the majority of tests
7699 (goto-char indent-point)
7700 (c-backward-syntactic-ws lim)
7701 (setq before-ws-ip (point)
7702 char-before-ip (char-before))
7703 (goto-char indent-point)
7704 (skip-chars-forward " \t")
7705 (setq char-after-ip (char-after))
7706
7707 ;; are we in a literal?
7708 (setq literal (c-in-literal lim))
7709
7710 ;; now figure out syntactic qualities of the current line
7711 (cond
7712
7713 ;; CASE 1: in a string.
7714 ((eq literal 'string)
7715 (c-add-syntax 'string (c-point 'bopl)))
7716
7717 ;; CASE 2: in a C or C++ style comment.
7718 ((and (memq literal '(c c++))
7719 ;; This is a kludge for XEmacs where we use
7720 ;; `buffer-syntactic-context', which doesn't correctly
7721 ;; recognize "\*/" to end a block comment.
7722 ;; `parse-partial-sexp' which is used by
7723 ;; `c-literal-limits' will however do that in most
7724 ;; versions, which results in that we get nil from
7725 ;; `c-literal-limits' even when `c-in-literal' claims
7726 ;; we're inside a comment.
7727 (setq placeholder (c-literal-limits lim)))
7728 (c-add-syntax literal (car placeholder)))
7729
7730 ;; CASE 3: in a cpp preprocessor macro continuation.
7731 ((and (save-excursion
7732 (when (c-beginning-of-macro)
7733 (setq macro-start (point))))
7734 (/= macro-start (c-point 'boi))
7735 (progn
7736 (setq tmpsymbol 'cpp-macro-cont)
7737 (or (not c-syntactic-indentation-in-macros)
7738 (save-excursion
7739 (goto-char macro-start)
7740 ;; If at the beginning of the body of a #define
7741 ;; directive then analyze as cpp-define-intro
7742 ;; only. Go on with the syntactic analysis
7743 ;; otherwise. in-macro-expr is set if we're in a
7744 ;; cpp expression, i.e. before the #define body
7745 ;; or anywhere in a non-#define directive.
7746 (if (c-forward-to-cpp-define-body)
7747 (let ((indent-boi (c-point 'boi indent-point)))
7748 (setq in-macro-expr (> (point) indent-boi)
7749 tmpsymbol 'cpp-define-intro)
7750 (= (point) indent-boi))
7751 (setq in-macro-expr t)
7752 nil)))))
7753 (c-add-syntax tmpsymbol macro-start)
7754 (setq macro-start nil))
7755
7756 ;; CASE 11: an else clause?
7757 ((looking-at "else\\>[^_]")
7758 (c-beginning-of-statement-1 containing-sexp)
7759 (c-add-stmt-syntax 'else-clause nil t
7760 containing-sexp paren-state))
7761
7762 ;; CASE 12: while closure of a do/while construct?
7763 ((and (looking-at "while\\>[^_]")
7764 (save-excursion
7765 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
7766 'beginning)
7767 (setq placeholder (point)))))
7768 (goto-char placeholder)
7769 (c-add-stmt-syntax 'do-while-closure nil t
7770 containing-sexp paren-state))
7771
7772 ;; CASE 13: A catch or finally clause? This case is simpler
7773 ;; than if-else and do-while, because a block is required
7774 ;; after every try, catch and finally.
7775 ((save-excursion
7776 (and (cond ((c-major-mode-is 'c++-mode)
7777 (looking-at "catch\\>[^_]"))
7778 ((c-major-mode-is 'java-mode)
7779 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
7780 (and (c-safe (c-backward-syntactic-ws)
7781 (c-backward-sexp)
7782 t)
7783 (eq (char-after) ?{)
7784 (c-safe (c-backward-syntactic-ws)
7785 (c-backward-sexp)
7786 t)
7787 (if (eq (char-after) ?\()
7788 (c-safe (c-backward-sexp) t)
7789 t))
7790 (looking-at "\\(try\\|catch\\)\\>[^_]")
7791 (setq placeholder (point))))
7792 (goto-char placeholder)
7793 (c-add-stmt-syntax 'catch-clause nil t
7794 containing-sexp paren-state))
7795
7796 ;; CASE 18: A substatement we can recognize by keyword.
7797 ((save-excursion
7798 (and c-opt-block-stmt-key
7799 (not (eq char-before-ip ?\;))
7800 (not (c-at-vsemi-p before-ws-ip))
7801 (not (memq char-after-ip '(?\) ?\] ?,)))
7802 (or (not (eq char-before-ip ?}))
7803 (c-looking-at-inexpr-block-backward c-state-cache))
7804 (> (point)
7805 (progn
7806 ;; Ought to cache the result from the
7807 ;; c-beginning-of-statement-1 calls here.
7808 (setq placeholder (point))
7809 (while (eq (setq step-type
7810 (c-beginning-of-statement-1 lim))
7811 'label))
7812 (if (eq step-type 'previous)
7813 (goto-char placeholder)
7814 (setq placeholder (point))
7815 (if (and (eq step-type 'same)
7816 (not (looking-at c-opt-block-stmt-key)))
7817 ;; Step up to the containing statement if we
7818 ;; stayed in the same one.
7819 (let (step)
7820 (while (eq
7821 (setq step
7822 (c-beginning-of-statement-1 lim))
7823 'label))
7824 (if (eq step 'up)
7825 (setq placeholder (point))
7826 ;; There was no containing statement afterall.
7827 (goto-char placeholder)))))
7828 placeholder))
7829 (if (looking-at c-block-stmt-2-key)
7830 ;; Require a parenthesis after these keywords.
7831 ;; Necessary to catch e.g. synchronized in Java,
7832 ;; which can be used both as statement and
7833 ;; modifier.
7834 (and (zerop (c-forward-token-2 1 nil))
7835 (eq (char-after) ?\())
7836 (looking-at c-opt-block-stmt-key))))
7837
7838 (if (eq step-type 'up)
7839 ;; CASE 18A: Simple substatement.
7840 (progn
7841 (goto-char placeholder)
7842 (cond
7843 ((eq char-after-ip ?{)
7844 (c-add-stmt-syntax 'substatement-open nil nil
7845 containing-sexp paren-state))
7846 ((save-excursion
7847 (goto-char indent-point)
7848 (back-to-indentation)
7849 (c-forward-label))
7850 (c-add-stmt-syntax 'substatement-label nil nil
7851 containing-sexp paren-state))
7852 (t
7853 (c-add-stmt-syntax 'substatement nil nil
7854 containing-sexp paren-state))))
7855
7856 ;; CASE 18B: Some other substatement. This is shared
7857 ;; with case 10.
7858 (c-guess-continued-construct indent-point
7859 char-after-ip
7860 placeholder
7861 lim
7862 paren-state)))
7863
7864 ;; CASE 14: A case or default label
7865 ((looking-at c-label-kwds-regexp)
7866 (if containing-sexp
7867 (progn
7868 (goto-char containing-sexp)
7869 (setq lim (c-most-enclosing-brace c-state-cache
7870 containing-sexp))
7871 (c-backward-to-block-anchor lim)
7872 (c-add-stmt-syntax 'case-label nil t lim paren-state))
7873 ;; Got a bogus label at the top level. In lack of better
7874 ;; alternatives, anchor it on (point-min).
7875 (c-add-syntax 'case-label (point-min))))
7876
7877 ;; CASE 15: any other label
7878 ((save-excursion
7879 (back-to-indentation)
7880 (and (not (looking-at c-syntactic-ws-start))
7881 (c-forward-label)))
7882 (cond (containing-decl-open
7883 (setq placeholder (c-add-class-syntax 'inclass
7884 containing-decl-open
7885 containing-decl-start
7886 containing-decl-kwd
7887 paren-state))
7888 ;; Append access-label with the same anchor point as
7889 ;; inclass gets.
7890 (c-append-syntax 'access-label placeholder))
7891
7892 (containing-sexp
7893 (goto-char containing-sexp)
7894 (setq lim (c-most-enclosing-brace c-state-cache
7895 containing-sexp))
7896 (save-excursion
7897 (setq tmpsymbol
7898 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
7899 (looking-at "switch\\>[^_]"))
7900 ;; If the surrounding statement is a switch then
7901 ;; let's analyze all labels as switch labels, so
7902 ;; that they get lined up consistently.
7903 'case-label
7904 'label)))
7905 (c-backward-to-block-anchor lim)
7906 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
7907
7908 (t
7909 ;; A label on the top level. Treat it as a class
7910 ;; context. (point-min) is the closest we get to the
7911 ;; class open brace.
7912 (c-add-syntax 'access-label (point-min)))))
7913
7914 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
7915 ;; 17E.
7916 ((setq placeholder (c-looking-at-inexpr-block
7917 (c-safe-position containing-sexp paren-state)
7918 containing-sexp
7919 ;; Have to turn on the heuristics after
7920 ;; the point even though it doesn't work
7921 ;; very well. C.f. test case class-16.pike.
7922 t))
7923 (setq tmpsymbol (assq (car placeholder)
7924 '((inexpr-class . class-open)
7925 (inexpr-statement . block-open))))
7926 (if tmpsymbol
7927 ;; It's a statement block or an anonymous class.
7928 (setq tmpsymbol (cdr tmpsymbol))
7929 ;; It's a Pike lambda. Check whether we are between the
7930 ;; lambda keyword and the argument list or at the defun
7931 ;; opener.
7932 (setq tmpsymbol (if (eq char-after-ip ?{)
7933 'inline-open
7934 'lambda-intro-cont)))
7935 (goto-char (cdr placeholder))
7936 (back-to-indentation)
7937 (c-add-stmt-syntax tmpsymbol nil t
7938 (c-most-enclosing-brace c-state-cache (point))
7939 paren-state)
7940 (unless (eq (point) (cdr placeholder))
7941 (c-add-syntax (car placeholder))))
7942
7943 ;; CASE 5: Line is inside a declaration level block or at top level.
7944 ((or containing-decl-open (null containing-sexp))
7945 (cond
7946
7947 ;; CASE 5A: we are looking at a defun, brace list, class,
7948 ;; or inline-inclass method opening brace
7949 ((setq special-brace-list
7950 (or (and c-special-brace-lists
7951 (c-looking-at-special-brace-list))
7952 (eq char-after-ip ?{)))
7953 (cond
7954
7955 ;; CASE 5A.1: Non-class declaration block open.
7956 ((save-excursion
7957 (let (tmp)
7958 (and (eq char-after-ip ?{)
7959 (setq tmp (c-looking-at-decl-block containing-sexp t))
7960 (progn
7961 (setq placeholder (point))
7962 (goto-char tmp)
7963 (looking-at c-symbol-key))
7964 (c-keyword-member
7965 (c-keyword-sym (setq keyword (match-string 0)))
7966 'c-other-block-decl-kwds))))
7967 (goto-char placeholder)
7968 (c-add-stmt-syntax
7969 (if (string-equal keyword "extern")
7970 ;; Special case for extern-lang-open.
7971 'extern-lang-open
7972 (intern (concat keyword "-open")))
7973 nil t containing-sexp paren-state))
7974
7975 ;; CASE 5A.2: we are looking at a class opening brace
7976 ((save-excursion
7977 (goto-char indent-point)
7978 (skip-chars-forward " \t")
7979 (and (eq (char-after) ?{)
7980 (c-looking-at-decl-block containing-sexp t)
7981 (setq placeholder (point))))
7982 (c-add-syntax 'class-open placeholder))
7983
7984 ;; CASE 5A.3: brace list open
7985 ((save-excursion
7986 (c-beginning-of-decl-1 lim)
7987 (while (looking-at c-specifier-key)
7988 (goto-char (match-end 1))
7989 (c-forward-syntactic-ws indent-point))
7990 (setq placeholder (c-point 'boi))
7991 (or (consp special-brace-list)
7992 (and (or (save-excursion
7993 (goto-char indent-point)
7994 (setq tmpsymbol nil)
7995 (while (and (> (point) placeholder)
7996 (zerop (c-backward-token-2 1 t))
7997 (/= (char-after) ?=))
7998 (and c-opt-inexpr-brace-list-key
7999 (not tmpsymbol)
8000 (looking-at c-opt-inexpr-brace-list-key)
8001 (setq tmpsymbol 'topmost-intro-cont)))
8002 (eq (char-after) ?=))
8003 (looking-at c-brace-list-key))
8004 (save-excursion
8005 (while (and (< (point) indent-point)
8006 (zerop (c-forward-token-2 1 t))
8007 (not (memq (char-after) '(?\; ?\()))))
8008 (not (memq (char-after) '(?\; ?\()))
8009 ))))
8010 (if (and (not c-auto-newline-analysis)
8011 (c-major-mode-is 'java-mode)
8012 (eq tmpsymbol 'topmost-intro-cont))
8013 ;; We're in Java and have found that the open brace
8014 ;; belongs to a "new Foo[]" initialization list,
8015 ;; which means the brace list is part of an
8016 ;; expression and not a top level definition. We
8017 ;; therefore treat it as any topmost continuation
8018 ;; even though the semantically correct symbol still
8019 ;; is brace-list-open, on the same grounds as in
8020 ;; case B.2.
8021 (progn
8022 (c-beginning-of-statement-1 lim)
8023 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
8024 (c-add-syntax 'brace-list-open placeholder)))
8025
8026 ;; CASE 5A.4: inline defun open
8027 ((and containing-decl-open
8028 (not (c-keyword-member containing-decl-kwd
8029 'c-other-block-decl-kwds)))
8030 (c-add-syntax 'inline-open)
8031 (c-add-class-syntax 'inclass
8032 containing-decl-open
8033 containing-decl-start
8034 containing-decl-kwd
8035 paren-state))
8036
8037 ;; CASE 5A.5: ordinary defun open
8038 (t
8039 (save-excursion
8040 (c-beginning-of-decl-1 lim)
8041 (while (looking-at c-specifier-key)
8042 (goto-char (match-end 1))
8043 (c-forward-syntactic-ws indent-point))
8044 (c-add-syntax 'defun-open (c-point 'boi))
8045 ;; Bogus to use bol here, but it's the legacy. (Resolved,
8046 ;; 2007-11-09)
8047 ))))
8048
8049 ;; CASE 5B: After a function header but before the body (or
8050 ;; the ending semicolon if there's no body).
8051 ((save-excursion
8052 (when (setq placeholder (c-just-after-func-arglist-p lim))
8053 (setq tmp-pos (point))))
8054 (cond
8055
8056 ;; CASE 5B.1: Member init list.
8057 ((eq (char-after tmp-pos) ?:)
8058 (if (or (> tmp-pos indent-point)
8059 (= (c-point 'bosws) (1+ tmp-pos)))
8060 (progn
8061 ;; There is no preceding member init clause.
8062 ;; Indent relative to the beginning of indentation
8063 ;; for the topmost-intro line that contains the
8064 ;; prototype's open paren.
8065 (goto-char placeholder)
8066 (c-add-syntax 'member-init-intro (c-point 'boi)))
8067 ;; Indent relative to the first member init clause.
8068 (goto-char (1+ tmp-pos))
8069 (c-forward-syntactic-ws)
8070 (c-add-syntax 'member-init-cont (point))))
8071
8072 ;; CASE 5B.2: K&R arg decl intro
8073 ((and c-recognize-knr-p
8074 (c-in-knr-argdecl lim))
8075 (c-beginning-of-statement-1 lim)
8076 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
8077 (if containing-decl-open
8078 (c-add-class-syntax 'inclass
8079 containing-decl-open
8080 containing-decl-start
8081 containing-decl-kwd
8082 paren-state)))
8083
8084 ;; CASE 5B.4: Nether region after a C++ or Java func
8085 ;; decl, which could include a `throws' declaration.
8086 (t
8087 (c-beginning-of-statement-1 lim)
8088 (c-add-syntax 'func-decl-cont (c-point 'boi))
8089 )))
8090
8091 ;; CASE 5C: inheritance line. could be first inheritance
8092 ;; line, or continuation of a multiple inheritance
8093 ((or (and (c-major-mode-is 'c++-mode)
8094 (progn
8095 (when (eq char-after-ip ?,)
8096 (skip-chars-forward " \t")
8097 (forward-char))
8098 (looking-at c-opt-postfix-decl-spec-key)))
8099 (and (or (eq char-before-ip ?:)
8100 ;; watch out for scope operator
8101 (save-excursion
8102 (and (eq char-after-ip ?:)
8103 (c-safe (forward-char 1) t)
8104 (not (eq (char-after) ?:))
8105 )))
8106 (save-excursion
8107 (c-backward-syntactic-ws lim)
8108 (if (eq char-before-ip ?:)
8109 (progn
8110 (forward-char -1)
8111 (c-backward-syntactic-ws lim)))
8112 (back-to-indentation)
8113 (looking-at c-class-key)))
8114 ;; for Java
8115 (and (c-major-mode-is 'java-mode)
8116 (let ((fence (save-excursion
8117 (c-beginning-of-statement-1 lim)
8118 (point)))
8119 cont done)
8120 (save-excursion
8121 (while (not done)
8122 (cond ((looking-at c-opt-postfix-decl-spec-key)
8123 (setq injava-inher (cons cont (point))
8124 done t))
8125 ((or (not (c-safe (c-forward-sexp -1) t))
8126 (<= (point) fence))
8127 (setq done t))
8128 )
8129 (setq cont t)))
8130 injava-inher)
8131 (not (c-crosses-statement-barrier-p (cdr injava-inher)
8132 (point)))
8133 ))
8134 (cond
8135
8136 ;; CASE 5C.1: non-hanging colon on an inher intro
8137 ((eq char-after-ip ?:)
8138 (c-beginning-of-statement-1 lim)
8139 (c-add-syntax 'inher-intro (c-point 'boi))
8140 ;; don't add inclass symbol since relative point already
8141 ;; contains any class offset
8142 )
8143
8144 ;; CASE 5C.2: hanging colon on an inher intro
8145 ((eq char-before-ip ?:)
8146 (c-beginning-of-statement-1 lim)
8147 (c-add-syntax 'inher-intro (c-point 'boi))
8148 (if containing-decl-open
8149 (c-add-class-syntax 'inclass
8150 containing-decl-open
8151 containing-decl-start
8152 containing-decl-kwd
8153 paren-state)))
8154
8155 ;; CASE 5C.3: in a Java implements/extends
8156 (injava-inher
8157 (let ((where (cdr injava-inher))
8158 (cont (car injava-inher)))
8159 (goto-char where)
8160 (cond ((looking-at "throws\\>[^_]")
8161 (c-add-syntax 'func-decl-cont
8162 (progn (c-beginning-of-statement-1 lim)
8163 (c-point 'boi))))
8164 (cont (c-add-syntax 'inher-cont where))
8165 (t (c-add-syntax 'inher-intro
8166 (progn (goto-char (cdr injava-inher))
8167 (c-beginning-of-statement-1 lim)
8168 (point))))
8169 )))
8170
8171 ;; CASE 5C.4: a continued inheritance line
8172 (t
8173 (c-beginning-of-inheritance-list lim)
8174 (c-add-syntax 'inher-cont (point))
8175 ;; don't add inclass symbol since relative point already
8176 ;; contains any class offset
8177 )))
8178
8179 ;; CASE 5D: this could be a top-level initialization, a
8180 ;; member init list continuation, or a template argument
8181 ;; list continuation.
8182 ((save-excursion
8183 ;; Note: We use the fact that lim always is after any
8184 ;; preceding brace sexp.
8185 (if c-recognize-<>-arglists
8186 (while (and
8187 (progn
8188 (c-syntactic-skip-backward "^;,=<>" lim t)
8189 (> (point) lim))
8190 (or
8191 (when c-overloadable-operators-regexp
8192 (when (setq placeholder (c-after-special-operator-id lim))
8193 (goto-char placeholder)
8194 t))
8195 (cond
8196 ((eq (char-before) ?>)
8197 (or (c-backward-<>-arglist nil lim)
8198 (backward-char))
8199 t)
8200 ((eq (char-before) ?<)
8201 (backward-char)
8202 (if (save-excursion
8203 (c-forward-<>-arglist nil))
8204 (progn (forward-char)
8205 nil)
8206 t))
8207 (t nil)))))
8208 ;; NB: No c-after-special-operator-id stuff in this
8209 ;; clause - we assume only C++ needs it.
8210 (c-syntactic-skip-backward "^;,=" lim t))
8211 (memq (char-before) '(?, ?= ?<)))
8212 (cond
8213
8214 ;; CASE 5D.3: perhaps a template list continuation?
8215 ((and (c-major-mode-is 'c++-mode)
8216 (save-excursion
8217 (save-restriction
8218 (c-with-syntax-table c++-template-syntax-table
8219 (goto-char indent-point)
8220 (setq placeholder (c-up-list-backward))
8221 (and placeholder
8222 (eq (char-after placeholder) ?<))))))
8223 (c-with-syntax-table c++-template-syntax-table
8224 (goto-char placeholder)
8225 (c-beginning-of-statement-1 lim t)
8226 (if (save-excursion
8227 (c-backward-syntactic-ws lim)
8228 (eq (char-before) ?<))
8229 ;; In a nested template arglist.
8230 (progn
8231 (goto-char placeholder)
8232 (c-syntactic-skip-backward "^,;" lim t)
8233 (c-forward-syntactic-ws))
8234 (back-to-indentation)))
8235 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
8236 ;; template aware.
8237 (c-add-syntax 'template-args-cont (point)))
8238
8239 ;; CASE 5D.4: perhaps a multiple inheritance line?
8240 ((and (c-major-mode-is 'c++-mode)
8241 (save-excursion
8242 (c-beginning-of-statement-1 lim)
8243 (setq placeholder (point))
8244 (if (looking-at "static\\>[^_]")
8245 (c-forward-token-2 1 nil indent-point))
8246 (and (looking-at c-class-key)
8247 (zerop (c-forward-token-2 2 nil indent-point))
8248 (if (eq (char-after) ?<)
8249 (c-with-syntax-table c++-template-syntax-table
8250 (zerop (c-forward-token-2 1 t indent-point)))
8251 t)
8252 (eq (char-after) ?:))))
8253 (goto-char placeholder)
8254 (c-add-syntax 'inher-cont (c-point 'boi)))
8255
8256 ;; CASE 5D.5: Continuation of the "expression part" of a
8257 ;; top level construct.
8258 (t
8259 (while (and (eq (car (c-beginning-of-decl-1 containing-sexp))
8260 'same)
8261 (save-excursion
8262 (c-backward-syntactic-ws)
8263 (eq (char-before) ?}))))
8264 (c-add-stmt-syntax
8265 (if (eq char-before-ip ?,)
8266 ;; A preceding comma at the top level means that a
8267 ;; new variable declaration starts here. Use
8268 ;; topmost-intro-cont for it, for consistency with
8269 ;; the first variable declaration. C.f. case 5N.
8270 'topmost-intro-cont
8271 'statement-cont)
8272 nil nil containing-sexp paren-state))
8273 ))
8274
8275 ;; CASE 5F: Close of a non-class declaration level block.
8276 ((and (eq char-after-ip ?})
8277 (c-keyword-member containing-decl-kwd
8278 'c-other-block-decl-kwds))
8279 ;; This is inconsistent: Should use `containing-decl-open'
8280 ;; here if it's at boi, like in case 5J.
8281 (goto-char containing-decl-start)
8282 (c-add-stmt-syntax
8283 (if (string-equal (symbol-name containing-decl-kwd) "extern")
8284 ;; Special case for compatibility with the
8285 ;; extern-lang syntactic symbols.
8286 'extern-lang-close
8287 (intern (concat (symbol-name containing-decl-kwd)
8288 "-close")))
8289 nil t
8290 (c-most-enclosing-brace paren-state (point))
8291 paren-state))
8292
8293 ;; CASE 5G: we are looking at the brace which closes the
8294 ;; enclosing nested class decl
8295 ((and containing-sexp
8296 (eq char-after-ip ?})
8297 (eq containing-decl-open containing-sexp))
8298 (c-add-class-syntax 'class-close
8299 containing-decl-open
8300 containing-decl-start
8301 containing-decl-kwd
8302 paren-state))
8303
8304 ;; CASE 5H: we could be looking at subsequent knr-argdecls
8305 ((and c-recognize-knr-p
8306 (not containing-sexp) ; can't be knr inside braces.
8307 (not (eq char-before-ip ?}))
8308 (save-excursion
8309 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
8310 (and placeholder
8311 ;; Do an extra check to avoid tripping up on
8312 ;; statements that occur in invalid contexts
8313 ;; (e.g. in macro bodies where we don't really
8314 ;; know the context of what we're looking at).
8315 (not (and c-opt-block-stmt-key
8316 (looking-at c-opt-block-stmt-key)))))
8317 (< placeholder indent-point))
8318 (goto-char placeholder)
8319 (c-add-syntax 'knr-argdecl (point)))
8320
8321 ;; CASE 5I: ObjC method definition.
8322 ((and c-opt-method-key
8323 (looking-at c-opt-method-key))
8324 (c-beginning-of-statement-1 nil t)
8325 (if (= (point) indent-point)
8326 ;; Handle the case when it's the first (non-comment)
8327 ;; thing in the buffer. Can't look for a 'same return
8328 ;; value from cbos1 since ObjC directives currently
8329 ;; aren't recognized fully, so that we get 'same
8330 ;; instead of 'previous if it moved over a preceding
8331 ;; directive.
8332 (goto-char (point-min)))
8333 (c-add-syntax 'objc-method-intro (c-point 'boi)))
8334
8335 ;; CASE 5P: AWK pattern or function or continuation
8336 ;; thereof.
8337 ((c-major-mode-is 'awk-mode)
8338 (setq placeholder (point))
8339 (c-add-stmt-syntax
8340 (if (and (eq (c-beginning-of-statement-1) 'same)
8341 (/= (point) placeholder))
8342 'topmost-intro-cont
8343 'topmost-intro)
8344 nil nil
8345 containing-sexp paren-state))
8346
8347 ;; CASE 5N: At a variable declaration that follows a class
8348 ;; definition or some other block declaration that doesn't
8349 ;; end at the closing '}'. C.f. case 5D.5.
8350 ((progn
8351 (c-backward-syntactic-ws lim)
8352 (and (eq (char-before) ?})
8353 (save-excursion
8354 (let ((start (point)))
8355 (if (and c-state-cache
8356 (consp (car c-state-cache))
8357 (eq (cdar c-state-cache) (point)))
8358 ;; Speed up the backward search a bit.
8359 (goto-char (caar c-state-cache)))
8360 (c-beginning-of-decl-1 containing-sexp)
8361 (setq placeholder (point))
8362 (if (= start (point))
8363 ;; The '}' is unbalanced.
8364 nil
8365 (c-end-of-decl-1)
8366 (>= (point) indent-point))))))
8367 (goto-char placeholder)
8368 (c-add-stmt-syntax 'topmost-intro-cont nil nil
8369 containing-sexp paren-state))
8370
8371 ;; NOTE: The point is at the end of the previous token here.
8372
8373 ;; CASE 5J: we are at the topmost level, make
8374 ;; sure we skip back past any access specifiers
8375 ((and
8376 ;; A macro continuation line is never at top level.
8377 (not (and macro-start
8378 (> indent-point macro-start)))
8379 (save-excursion
8380 (setq placeholder (point))
8381 (or (memq char-before-ip '(?\; ?{ ?} nil))
8382 (c-at-vsemi-p before-ws-ip)
8383 (when (and (eq char-before-ip ?:)
8384 (eq (c-beginning-of-statement-1 lim)
8385 'label))
8386 (c-backward-syntactic-ws lim)
8387 (setq placeholder (point)))
8388 (and (c-major-mode-is 'objc-mode)
8389 (catch 'not-in-directive
8390 (c-beginning-of-statement-1 lim)
8391 (setq placeholder (point))
8392 (while (and (c-forward-objc-directive)
8393 (< (point) indent-point))
8394 (c-forward-syntactic-ws)
8395 (if (>= (point) indent-point)
8396 (throw 'not-in-directive t))
8397 (setq placeholder (point)))
8398 nil)))))
8399 ;; For historic reasons we anchor at bol of the last
8400 ;; line of the previous declaration. That's clearly
8401 ;; highly bogus and useless, and it makes our lives hard
8402 ;; to remain compatible. :P
8403 (goto-char placeholder)
8404 (c-add-syntax 'topmost-intro (c-point 'bol))
8405 (if containing-decl-open
8406 (if (c-keyword-member containing-decl-kwd
8407 'c-other-block-decl-kwds)
8408 (progn
8409 (goto-char (c-brace-anchor-point containing-decl-open))
8410 (c-add-stmt-syntax
8411 (if (string-equal (symbol-name containing-decl-kwd)
8412 "extern")
8413 ;; Special case for compatibility with the
8414 ;; extern-lang syntactic symbols.
8415 'inextern-lang
8416 (intern (concat "in"
8417 (symbol-name containing-decl-kwd))))
8418 nil t
8419 (c-most-enclosing-brace paren-state (point))
8420 paren-state))
8421 (c-add-class-syntax 'inclass
8422 containing-decl-open
8423 containing-decl-start
8424 containing-decl-kwd
8425 paren-state)))
8426 (when (and c-syntactic-indentation-in-macros
8427 macro-start
8428 (/= macro-start (c-point 'boi indent-point)))
8429 (c-add-syntax 'cpp-define-intro)
8430 (setq macro-start nil)))
8431
8432 ;; CASE 5K: we are at an ObjC method definition
8433 ;; continuation line.
8434 ((and c-opt-method-key
8435 (save-excursion
8436 (c-beginning-of-statement-1 lim)
8437 (beginning-of-line)
8438 (when (looking-at c-opt-method-key)
8439 (setq placeholder (point)))))
8440 (c-add-syntax 'objc-method-args-cont placeholder))
8441
8442 ;; CASE 5L: we are at the first argument of a template
8443 ;; arglist that begins on the previous line.
8444 ((and c-recognize-<>-arglists
8445 (eq (char-before) ?<)
8446 (not (and c-overloadable-operators-regexp
8447 (c-after-special-operator-id lim))))
8448 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
8449 (c-add-syntax 'template-args-cont (c-point 'boi)))
8450
8451 ;; CASE 5Q: we are at a statement within a macro.
8452 (macro-start
8453 (c-beginning-of-statement-1 containing-sexp)
8454 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
8455
8456 ;; CASE 5M: we are at a topmost continuation line
8457 (t
8458 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
8459 (when (c-major-mode-is 'objc-mode)
8460 (setq placeholder (point))
8461 (while (and (c-forward-objc-directive)
8462 (< (point) indent-point))
8463 (c-forward-syntactic-ws)
8464 (setq placeholder (point)))
8465 (goto-char placeholder))
8466 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
8467 ))
8468
8469 ;; (CASE 6 has been removed.)
8470
8471 ;; CASE 7: line is an expression, not a statement. Most
8472 ;; likely we are either in a function prototype or a function
8473 ;; call argument list
8474 ((not (or (and c-special-brace-lists
8475 (save-excursion
8476 (goto-char containing-sexp)
8477 (c-looking-at-special-brace-list)))
8478 (eq (char-after containing-sexp) ?{)))
8479 (cond
8480
8481 ;; CASE 7A: we are looking at the arglist closing paren.
8482 ;; C.f. case 7F.
8483 ((memq char-after-ip '(?\) ?\]))
8484 (goto-char containing-sexp)
8485 (setq placeholder (c-point 'boi))
8486 (if (and (c-safe (backward-up-list 1) t)
8487 (>= (point) placeholder))
8488 (progn
8489 (forward-char)
8490 (skip-chars-forward " \t"))
8491 (goto-char placeholder))
8492 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
8493 (c-most-enclosing-brace paren-state (point))
8494 paren-state))
8495
8496 ;; CASE 7B: Looking at the opening brace of an
8497 ;; in-expression block or brace list. C.f. cases 4, 16A
8498 ;; and 17E.
8499 ((and (eq char-after-ip ?{)
8500 (progn
8501 (setq placeholder (c-inside-bracelist-p (point)
8502 paren-state))
8503 (if placeholder
8504 (setq tmpsymbol '(brace-list-open . inexpr-class))
8505 (setq tmpsymbol '(block-open . inexpr-statement)
8506 placeholder
8507 (cdr-safe (c-looking-at-inexpr-block
8508 (c-safe-position containing-sexp
8509 paren-state)
8510 containing-sexp)))
8511 ;; placeholder is nil if it's a block directly in
8512 ;; a function arglist. That makes us skip out of
8513 ;; this case.
8514 )))
8515 (goto-char placeholder)
8516 (back-to-indentation)
8517 (c-add-stmt-syntax (car tmpsymbol) nil t
8518 (c-most-enclosing-brace paren-state (point))
8519 paren-state)
8520 (if (/= (point) placeholder)
8521 (c-add-syntax (cdr tmpsymbol))))
8522
8523 ;; CASE 7C: we are looking at the first argument in an empty
8524 ;; argument list. Use arglist-close if we're actually
8525 ;; looking at a close paren or bracket.
8526 ((memq char-before-ip '(?\( ?\[))
8527 (goto-char containing-sexp)
8528 (setq placeholder (c-point 'boi))
8529 (if (and (c-safe (backward-up-list 1) t)
8530 (>= (point) placeholder))
8531 (progn
8532 (forward-char)
8533 (skip-chars-forward " \t"))
8534 (goto-char placeholder))
8535 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
8536 (c-most-enclosing-brace paren-state (point))
8537 paren-state))
8538
8539 ;; CASE 7D: we are inside a conditional test clause. treat
8540 ;; these things as statements
8541 ((progn
8542 (goto-char containing-sexp)
8543 (and (c-safe (c-forward-sexp -1) t)
8544 (looking-at "\\<for\\>[^_]")))
8545 (goto-char (1+ containing-sexp))
8546 (c-forward-syntactic-ws indent-point)
8547 (if (eq char-before-ip ?\;)
8548 (c-add-syntax 'statement (point))
8549 (c-add-syntax 'statement-cont (point))
8550 ))
8551
8552 ;; CASE 7E: maybe a continued ObjC method call. This is the
8553 ;; case when we are inside a [] bracketed exp, and what
8554 ;; precede the opening bracket is not an identifier.
8555 ((and c-opt-method-key
8556 (eq (char-after containing-sexp) ?\[)
8557 (progn
8558 (goto-char (1- containing-sexp))
8559 (c-backward-syntactic-ws (c-point 'bod))
8560 (if (not (looking-at c-symbol-key))
8561 (c-add-syntax 'objc-method-call-cont containing-sexp))
8562 )))
8563
8564 ;; CASE 7F: we are looking at an arglist continuation line,
8565 ;; but the preceding argument is on the same line as the
8566 ;; opening paren. This case includes multi-line
8567 ;; mathematical paren groupings, but we could be on a
8568 ;; for-list continuation line. C.f. case 7A.
8569 ((progn
8570 (goto-char (1+ containing-sexp))
8571 (< (save-excursion
8572 (c-forward-syntactic-ws)
8573 (point))
8574 (c-point 'bonl)))
8575 (goto-char containing-sexp)
8576 (setq placeholder (c-point 'boi))
8577 (if (and (c-safe (backward-up-list 1) t)
8578 (>= (point) placeholder))
8579 (progn
8580 (forward-char)
8581 (skip-chars-forward " \t"))
8582 (goto-char placeholder))
8583 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
8584 (c-most-enclosing-brace c-state-cache (point))
8585 paren-state))
8586
8587 ;; CASE 7G: we are looking at just a normal arglist
8588 ;; continuation line
8589 (t (c-forward-syntactic-ws indent-point)
8590 (c-add-syntax 'arglist-cont (c-point 'boi)))
8591 ))
8592
8593 ;; CASE 8: func-local multi-inheritance line
8594 ((and (c-major-mode-is 'c++-mode)
8595 (save-excursion
8596 (goto-char indent-point)
8597 (skip-chars-forward " \t")
8598 (looking-at c-opt-postfix-decl-spec-key)))
8599 (goto-char indent-point)
8600 (skip-chars-forward " \t")
8601 (cond
8602
8603 ;; CASE 8A: non-hanging colon on an inher intro
8604 ((eq char-after-ip ?:)
8605 (c-backward-syntactic-ws lim)
8606 (c-add-syntax 'inher-intro (c-point 'boi)))
8607
8608 ;; CASE 8B: hanging colon on an inher intro
8609 ((eq char-before-ip ?:)
8610 (c-add-syntax 'inher-intro (c-point 'boi)))
8611
8612 ;; CASE 8C: a continued inheritance line
8613 (t
8614 (c-beginning-of-inheritance-list lim)
8615 (c-add-syntax 'inher-cont (point))
8616 )))
8617
8618 ;; CASE 9: we are inside a brace-list
8619 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
8620 (setq special-brace-list
8621 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
8622 (save-excursion
8623 (goto-char containing-sexp)
8624 (c-looking-at-special-brace-list)))
8625 (c-inside-bracelist-p containing-sexp paren-state))))
8626 (cond
8627
8628 ;; CASE 9A: In the middle of a special brace list opener.
8629 ((and (consp special-brace-list)
8630 (save-excursion
8631 (goto-char containing-sexp)
8632 (eq (char-after) ?\())
8633 (eq char-after-ip (car (cdr special-brace-list))))
8634 (goto-char (car (car special-brace-list)))
8635 (skip-chars-backward " \t")
8636 (if (and (bolp)
8637 (assoc 'statement-cont
8638 (setq placeholder (c-guess-basic-syntax))))
8639 (setq c-syntactic-context placeholder)
8640 (c-beginning-of-statement-1
8641 (c-safe-position (1- containing-sexp) paren-state))
8642 (c-forward-token-2 0)
8643 (while (looking-at c-specifier-key)
8644 (goto-char (match-end 1))
8645 (c-forward-syntactic-ws))
8646 (c-add-syntax 'brace-list-open (c-point 'boi))))
8647
8648 ;; CASE 9B: brace-list-close brace
8649 ((if (consp special-brace-list)
8650 ;; Check special brace list closer.
8651 (progn
8652 (goto-char (car (car special-brace-list)))
8653 (save-excursion
8654 (goto-char indent-point)
8655 (back-to-indentation)
8656 (or
8657 ;; We were between the special close char and the `)'.
8658 (and (eq (char-after) ?\))
8659 (eq (1+ (point)) (cdr (car special-brace-list))))
8660 ;; We were before the special close char.
8661 (and (eq (char-after) (cdr (cdr special-brace-list)))
8662 (zerop (c-forward-token-2))
8663 (eq (1+ (point)) (cdr (car special-brace-list)))))))
8664 ;; Normal brace list check.
8665 (and (eq char-after-ip ?})
8666 (c-safe (goto-char (c-up-list-backward (point))) t)
8667 (= (point) containing-sexp)))
8668 (if (eq (point) (c-point 'boi))
8669 (c-add-syntax 'brace-list-close (point))
8670 (setq lim (c-most-enclosing-brace c-state-cache (point)))
8671 (c-beginning-of-statement-1 lim)
8672 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
8673
8674 (t
8675 ;; Prepare for the rest of the cases below by going to the
8676 ;; token following the opening brace
8677 (if (consp special-brace-list)
8678 (progn
8679 (goto-char (car (car special-brace-list)))
8680 (c-forward-token-2 1 nil indent-point))
8681 (goto-char containing-sexp))
8682 (forward-char)
8683 (let ((start (point)))
8684 (c-forward-syntactic-ws indent-point)
8685 (goto-char (max start (c-point 'bol))))
8686 (c-skip-ws-forward indent-point)
8687 (cond
8688
8689 ;; CASE 9C: we're looking at the first line in a brace-list
8690 ((= (point) indent-point)
8691 (if (consp special-brace-list)
8692 (goto-char (car (car special-brace-list)))
8693 (goto-char containing-sexp))
8694 (if (eq (point) (c-point 'boi))
8695 (c-add-syntax 'brace-list-intro (point))
8696 (setq lim (c-most-enclosing-brace c-state-cache (point)))
8697 (c-beginning-of-statement-1 lim)
8698 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
8699
8700 ;; CASE 9D: this is just a later brace-list-entry or
8701 ;; brace-entry-open
8702 (t (if (or (eq char-after-ip ?{)
8703 (and c-special-brace-lists
8704 (save-excursion
8705 (goto-char indent-point)
8706 (c-forward-syntactic-ws (c-point 'eol))
8707 (c-looking-at-special-brace-list (point)))))
8708 (c-add-syntax 'brace-entry-open (point))
8709 (c-add-syntax 'brace-list-entry (point))
8710 ))
8711 ))))
8712
8713 ;; CASE 10: A continued statement or top level construct.
8714 ((and (not (memq char-before-ip '(?\; ?:)))
8715 (not (c-at-vsemi-p before-ws-ip))
8716 (or (not (eq char-before-ip ?}))
8717 (c-looking-at-inexpr-block-backward c-state-cache))
8718 (> (point)
8719 (save-excursion
8720 (c-beginning-of-statement-1 containing-sexp)
8721 (setq placeholder (point))))
8722 (/= placeholder containing-sexp))
8723 ;; This is shared with case 18.
8724 (c-guess-continued-construct indent-point
8725 char-after-ip
8726 placeholder
8727 containing-sexp
8728 paren-state))
8729
8730 ;; CASE 16: block close brace, possibly closing the defun or
8731 ;; the class
8732 ((eq char-after-ip ?})
8733 ;; From here on we have the next containing sexp in lim.
8734 (setq lim (c-most-enclosing-brace paren-state))
8735 (goto-char containing-sexp)
8736 (cond
8737
8738 ;; CASE 16E: Closing a statement block? This catches
8739 ;; cases where it's preceded by a statement keyword,
8740 ;; which works even when used in an "invalid" context,
8741 ;; e.g. a macro argument.
8742 ((c-after-conditional)
8743 (c-backward-to-block-anchor lim)
8744 (c-add-stmt-syntax 'block-close nil t lim paren-state))
8745
8746 ;; CASE 16A: closing a lambda defun or an in-expression
8747 ;; block? C.f. cases 4, 7B and 17E.
8748 ((setq placeholder (c-looking-at-inexpr-block
8749 (c-safe-position containing-sexp paren-state)
8750 nil))
8751 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
8752 'inline-close
8753 'block-close))
8754 (goto-char containing-sexp)
8755 (back-to-indentation)
8756 (if (= containing-sexp (point))
8757 (c-add-syntax tmpsymbol (point))
8758 (goto-char (cdr placeholder))
8759 (back-to-indentation)
8760 (c-add-stmt-syntax tmpsymbol nil t
8761 (c-most-enclosing-brace paren-state (point))
8762 paren-state)
8763 (if (/= (point) (cdr placeholder))
8764 (c-add-syntax (car placeholder)))))
8765
8766 ;; CASE 16B: does this close an inline or a function in
8767 ;; a non-class declaration level block?
8768 ((save-excursion
8769 (and lim
8770 (progn
8771 (goto-char lim)
8772 (c-looking-at-decl-block
8773 (c-most-enclosing-brace paren-state lim)
8774 nil))
8775 (setq placeholder (point))))
8776 (c-backward-to-decl-anchor lim)
8777 (back-to-indentation)
8778 (if (save-excursion
8779 (goto-char placeholder)
8780 (looking-at c-other-decl-block-key))
8781 (c-add-syntax 'defun-close (point))
8782 (c-add-syntax 'inline-close (point))))
8783
8784 ;; CASE 16F: Can be a defun-close of a function declared
8785 ;; in a statement block, e.g. in Pike or when using gcc
8786 ;; extensions, but watch out for macros followed by
8787 ;; blocks. Let it through to be handled below.
8788 ;; C.f. cases B.3 and 17G.
8789 ((save-excursion
8790 (and (not (c-at-statement-start-p))
8791 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
8792 (setq placeholder (point))
8793 (let ((c-recognize-typeless-decls nil))
8794 ;; Turn off recognition of constructs that
8795 ;; lacks a type in this case, since that's more
8796 ;; likely to be a macro followed by a block.
8797 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
8798 (back-to-indentation)
8799 (if (/= (point) containing-sexp)
8800 (goto-char placeholder))
8801 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
8802
8803 ;; CASE 16C: If there is an enclosing brace then this is
8804 ;; a block close since defun closes inside declaration
8805 ;; level blocks have been handled above.
8806 (lim
8807 ;; If the block is preceded by a case/switch label on
8808 ;; the same line, we anchor at the first preceding label
8809 ;; at boi. The default handling in c-add-stmt-syntax
8810 ;; really fixes it better, but we do like this to keep
8811 ;; the indentation compatible with version 5.28 and
8812 ;; earlier. C.f. case 17H.
8813 (while (and (/= (setq placeholder (point)) (c-point 'boi))
8814 (eq (c-beginning-of-statement-1 lim) 'label)))
8815 (goto-char placeholder)
8816 (if (looking-at c-label-kwds-regexp)
8817 (c-add-syntax 'block-close (point))
8818 (goto-char containing-sexp)
8819 ;; c-backward-to-block-anchor not necessary here; those
8820 ;; situations are handled in case 16E above.
8821 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
8822
8823 ;; CASE 16D: Only top level defun close left.
8824 (t
8825 (goto-char containing-sexp)
8826 (c-backward-to-decl-anchor lim)
8827 (c-add-stmt-syntax 'defun-close nil nil
8828 (c-most-enclosing-brace paren-state)
8829 paren-state))
8830 ))
8831
8832 ;; CASE 17: Statement or defun catchall.
8833 (t
8834 (goto-char indent-point)
8835 ;; Back up statements until we find one that starts at boi.
8836 (while (let* ((prev-point (point))
8837 (last-step-type (c-beginning-of-statement-1
8838 containing-sexp)))
8839 (if (= (point) prev-point)
8840 (progn
8841 (setq step-type (or step-type last-step-type))
8842 nil)
8843 (setq step-type last-step-type)
8844 (/= (point) (c-point 'boi)))))
8845 (cond
8846
8847 ;; CASE 17B: continued statement
8848 ((and (eq step-type 'same)
8849 (/= (point) indent-point))
8850 (c-add-stmt-syntax 'statement-cont nil nil
8851 containing-sexp paren-state))
8852
8853 ;; CASE 17A: After a case/default label?
8854 ((progn
8855 (while (and (eq step-type 'label)
8856 (not (looking-at c-label-kwds-regexp)))
8857 (setq step-type
8858 (c-beginning-of-statement-1 containing-sexp)))
8859 (eq step-type 'label))
8860 (c-add-stmt-syntax (if (eq char-after-ip ?{)
8861 'statement-case-open
8862 'statement-case-intro)
8863 nil t containing-sexp paren-state))
8864
8865 ;; CASE 17D: any old statement
8866 ((progn
8867 (while (eq step-type 'label)
8868 (setq step-type
8869 (c-beginning-of-statement-1 containing-sexp)))
8870 (eq step-type 'previous))
8871 (c-add-stmt-syntax 'statement nil t
8872 containing-sexp paren-state)
8873 (if (eq char-after-ip ?{)
8874 (c-add-syntax 'block-open)))
8875
8876 ;; CASE 17I: Inside a substatement block.
8877 ((progn
8878 ;; The following tests are all based on containing-sexp.
8879 (goto-char containing-sexp)
8880 ;; From here on we have the next containing sexp in lim.
8881 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
8882 (c-after-conditional))
8883 (c-backward-to-block-anchor lim)
8884 (c-add-stmt-syntax 'statement-block-intro nil t
8885 lim paren-state)
8886 (if (eq char-after-ip ?{)
8887 (c-add-syntax 'block-open)))
8888
8889 ;; CASE 17E: first statement in an in-expression block.
8890 ;; C.f. cases 4, 7B and 16A.
8891 ((setq placeholder (c-looking-at-inexpr-block
8892 (c-safe-position containing-sexp paren-state)
8893 nil))
8894 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
8895 'defun-block-intro
8896 'statement-block-intro))
8897 (back-to-indentation)
8898 (if (= containing-sexp (point))
8899 (c-add-syntax tmpsymbol (point))
8900 (goto-char (cdr placeholder))
8901 (back-to-indentation)
8902 (c-add-stmt-syntax tmpsymbol nil t
8903 (c-most-enclosing-brace c-state-cache (point))
8904 paren-state)
8905 (if (/= (point) (cdr placeholder))
8906 (c-add-syntax (car placeholder))))
8907 (if (eq char-after-ip ?{)
8908 (c-add-syntax 'block-open)))
8909
8910 ;; CASE 17F: first statement in an inline, or first
8911 ;; statement in a top-level defun. we can tell this is it
8912 ;; if there are no enclosing braces that haven't been
8913 ;; narrowed out by a class (i.e. don't use bod here).
8914 ((save-excursion
8915 (or (not (setq placeholder (c-most-enclosing-brace
8916 paren-state)))
8917 (and (progn
8918 (goto-char placeholder)
8919 (eq (char-after) ?{))
8920 (c-looking-at-decl-block (c-most-enclosing-brace
8921 paren-state (point))
8922 nil))))
8923 (c-backward-to-decl-anchor lim)
8924 (back-to-indentation)
8925 (c-add-syntax 'defun-block-intro (point)))
8926
8927 ;; CASE 17G: First statement in a function declared inside
8928 ;; a normal block. This can occur in Pike and with
8929 ;; e.g. the gcc extensions, but watch out for macros
8930 ;; followed by blocks. C.f. cases B.3 and 16F.
8931 ((save-excursion
8932 (and (not (c-at-statement-start-p))
8933 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
8934 (setq placeholder (point))
8935 (let ((c-recognize-typeless-decls nil))
8936 ;; Turn off recognition of constructs that lacks
8937 ;; a type in this case, since that's more likely
8938 ;; to be a macro followed by a block.
8939 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
8940 (back-to-indentation)
8941 (if (/= (point) containing-sexp)
8942 (goto-char placeholder))
8943 (c-add-stmt-syntax 'defun-block-intro nil t
8944 lim paren-state))
8945
8946 ;; CASE 17H: First statement in a block.
8947 (t
8948 ;; If the block is preceded by a case/switch label on the
8949 ;; same line, we anchor at the first preceding label at
8950 ;; boi. The default handling in c-add-stmt-syntax is
8951 ;; really fixes it better, but we do like this to keep the
8952 ;; indentation compatible with version 5.28 and earlier.
8953 ;; C.f. case 16C.
8954 (while (and (/= (setq placeholder (point)) (c-point 'boi))
8955 (eq (c-beginning-of-statement-1 lim) 'label)))
8956 (goto-char placeholder)
8957 (if (looking-at c-label-kwds-regexp)
8958 (c-add-syntax 'statement-block-intro (point))
8959 (goto-char containing-sexp)
8960 ;; c-backward-to-block-anchor not necessary here; those
8961 ;; situations are handled in case 17I above.
8962 (c-add-stmt-syntax 'statement-block-intro nil t
8963 lim paren-state))
8964 (if (eq char-after-ip ?{)
8965 (c-add-syntax 'block-open)))
8966 ))
8967 )
8968
8969 ;; now we need to look at any modifiers
8970 (goto-char indent-point)
8971 (skip-chars-forward " \t")
8972
8973 ;; are we looking at a comment only line?
8974 (when (and (looking-at c-comment-start-regexp)
8975 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
8976 (c-append-syntax 'comment-intro))
8977
8978 ;; we might want to give additional offset to friends (in C++).
8979 (when (and c-opt-friend-key
8980 (looking-at c-opt-friend-key))
8981 (c-append-syntax 'friend))
8982
8983 ;; Set syntactic-relpos.
8984 (let ((p c-syntactic-context))
8985 (while (and p
8986 (if (integerp (c-langelem-pos (car p)))
8987 (progn
8988 (setq syntactic-relpos (c-langelem-pos (car p)))
8989 nil)
8990 t))
8991 (setq p (cdr p))))
8992
8993 ;; Start of or a continuation of a preprocessor directive?
8994 (if (and macro-start
8995 (eq macro-start (c-point 'boi))
8996 (not (and (c-major-mode-is 'pike-mode)
8997 (eq (char-after (1+ macro-start)) ?\"))))
8998 (c-append-syntax 'cpp-macro)
8999 (when (and c-syntactic-indentation-in-macros macro-start)
9000 (if in-macro-expr
9001 (when (or
9002 (< syntactic-relpos macro-start)
9003 (not (or
9004 (assq 'arglist-intro c-syntactic-context)
9005 (assq 'arglist-cont c-syntactic-context)
9006 (assq 'arglist-cont-nonempty c-syntactic-context)
9007 (assq 'arglist-close c-syntactic-context))))
9008 ;; If inside a cpp expression, i.e. anywhere in a
9009 ;; cpp directive except a #define body, we only let
9010 ;; through the syntactic analysis that is internal
9011 ;; in the expression. That means the arglist
9012 ;; elements, if they are anchored inside the cpp
9013 ;; expression.
9014 (setq c-syntactic-context nil)
9015 (c-add-syntax 'cpp-macro-cont macro-start))
9016 (when (and (eq macro-start syntactic-relpos)
9017 (not (assq 'cpp-define-intro c-syntactic-context))
9018 (save-excursion
9019 (goto-char macro-start)
9020 (or (not (c-forward-to-cpp-define-body))
9021 (<= (point) (c-point 'boi indent-point)))))
9022 ;; Inside a #define body and the syntactic analysis is
9023 ;; anchored on the start of the #define. In this case
9024 ;; we add cpp-define-intro to get the extra
9025 ;; indentation of the #define body.
9026 (c-add-syntax 'cpp-define-intro)))))
9027
9028 ;; return the syntax
9029 c-syntactic-context)))
9030
9031 \f
9032 ;; Indentation calculation.
9033
9034 (defun c-evaluate-offset (offset langelem symbol)
9035 ;; offset can be a number, a function, a variable, a list, or one of
9036 ;; the symbols + or -
9037 ;;
9038 ;; This function might do hidden buffer changes.
9039 (let ((res
9040 (cond
9041 ((numberp offset) offset)
9042 ((vectorp offset) offset)
9043 ((null offset) nil)
9044
9045 ((eq offset '+) c-basic-offset)
9046 ((eq offset '-) (- c-basic-offset))
9047 ((eq offset '++) (* 2 c-basic-offset))
9048 ((eq offset '--) (* 2 (- c-basic-offset)))
9049 ((eq offset '*) (/ c-basic-offset 2))
9050 ((eq offset '/) (/ (- c-basic-offset) 2))
9051
9052 ((functionp offset)
9053 (c-evaluate-offset
9054 (funcall offset
9055 (cons (c-langelem-sym langelem)
9056 (c-langelem-pos langelem)))
9057 langelem symbol))
9058
9059 ((listp offset)
9060 (cond
9061 ((eq (car offset) 'quote)
9062 (c-benign-error "The offset %S for %s was mistakenly quoted"
9063 offset symbol)
9064 nil)
9065
9066 ((memq (car offset) '(min max))
9067 (let (res val (method (car offset)))
9068 (setq offset (cdr offset))
9069 (while offset
9070 (setq val (c-evaluate-offset (car offset) langelem symbol))
9071 (cond
9072 ((not val))
9073 ((not res)
9074 (setq res val))
9075 ((integerp val)
9076 (if (vectorp res)
9077 (c-benign-error "\
9078 Error evaluating offset %S for %s: \
9079 Cannot combine absolute offset %S with relative %S in `%s' method"
9080 (car offset) symbol res val method)
9081 (setq res (funcall method res val))))
9082 (t
9083 (if (integerp res)
9084 (c-benign-error "\
9085 Error evaluating offset %S for %s: \
9086 Cannot combine relative offset %S with absolute %S in `%s' method"
9087 (car offset) symbol res val method)
9088 (setq res (vector (funcall method (aref res 0)
9089 (aref val 0)))))))
9090 (setq offset (cdr offset)))
9091 res))
9092
9093 ((eq (car offset) 'add)
9094 (let (res val)
9095 (setq offset (cdr offset))
9096 (while offset
9097 (setq val (c-evaluate-offset (car offset) langelem symbol))
9098 (cond
9099 ((not val))
9100 ((not res)
9101 (setq res val))
9102 ((integerp val)
9103 (if (vectorp res)
9104 (setq res (vector (+ (aref res 0) val)))
9105 (setq res (+ res val))))
9106 (t
9107 (if (vectorp res)
9108 (c-benign-error "\
9109 Error evaluating offset %S for %s: \
9110 Cannot combine absolute offsets %S and %S in `add' method"
9111 (car offset) symbol res val)
9112 (setq res val)))) ; Override.
9113 (setq offset (cdr offset)))
9114 res))
9115
9116 (t
9117 (let (res)
9118 (when (eq (car offset) 'first)
9119 (setq offset (cdr offset)))
9120 (while (and (not res) offset)
9121 (setq res (c-evaluate-offset (car offset) langelem symbol)
9122 offset (cdr offset)))
9123 res))))
9124
9125 ((and (symbolp offset) (boundp offset))
9126 (symbol-value offset))
9127
9128 (t
9129 (c-benign-error "Unknown offset format %S for %s" offset symbol)
9130 nil))))
9131
9132 (if (or (null res) (integerp res)
9133 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
9134 res
9135 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
9136 offset symbol res)
9137 nil)))
9138
9139 (defun c-calc-offset (langelem)
9140 ;; Get offset from LANGELEM which is a list beginning with the
9141 ;; syntactic symbol and followed by any analysis data it provides.
9142 ;; That data may be zero or more elements, but if at least one is
9143 ;; given then the first is the anchor position (or nil). The symbol
9144 ;; is matched against `c-offsets-alist' and the offset calculated
9145 ;; from that is returned.
9146 ;;
9147 ;; This function might do hidden buffer changes.
9148 (let* ((symbol (c-langelem-sym langelem))
9149 (match (assq symbol c-offsets-alist))
9150 (offset (cdr-safe match)))
9151 (if match
9152 (setq offset (c-evaluate-offset offset langelem symbol))
9153 (if c-strict-syntax-p
9154 (c-benign-error "No offset found for syntactic symbol %s" symbol))
9155 (setq offset 0))
9156 (if (vectorp offset)
9157 offset
9158 (or (and (numberp offset) offset)
9159 (and (symbolp offset) (symbol-value offset))
9160 0))
9161 ))
9162
9163 (defun c-get-offset (langelem)
9164 ;; This is a compatibility wrapper for `c-calc-offset' in case
9165 ;; someone is calling it directly. It takes an old style syntactic
9166 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
9167 ;; new list form.
9168 ;;
9169 ;; This function might do hidden buffer changes.
9170 (if (c-langelem-pos langelem)
9171 (c-calc-offset (list (c-langelem-sym langelem)
9172 (c-langelem-pos langelem)))
9173 (c-calc-offset langelem)))
9174
9175 (defun c-get-syntactic-indentation (langelems)
9176 ;; Calculate the syntactic indentation from a syntactic description
9177 ;; as returned by `c-guess-syntax'.
9178 ;;
9179 ;; Note that topmost-intro always has an anchor position at bol, for
9180 ;; historical reasons. It's often used together with other symbols
9181 ;; that has more sane positions. Since we always use the first
9182 ;; found anchor position, we rely on that these other symbols always
9183 ;; precede topmost-intro in the LANGELEMS list.
9184 ;;
9185 ;; This function might do hidden buffer changes.
9186 (let ((indent 0) anchor)
9187
9188 (while langelems
9189 (let* ((c-syntactic-element (car langelems))
9190 (res (c-calc-offset c-syntactic-element)))
9191
9192 (if (vectorp res)
9193 ;; Got an absolute column that overrides any indentation
9194 ;; we've collected so far, but not the relative
9195 ;; indentation we might get for the nested structures
9196 ;; further down the langelems list.
9197 (setq indent (elt res 0)
9198 anchor (point-min)) ; A position at column 0.
9199
9200 ;; Got a relative change of the current calculated
9201 ;; indentation.
9202 (setq indent (+ indent res))
9203
9204 ;; Use the anchor position from the first syntactic
9205 ;; element with one.
9206 (unless anchor
9207 (setq anchor (c-langelem-pos (car langelems)))))
9208
9209 (setq langelems (cdr langelems))))
9210
9211 (if anchor
9212 (+ indent (save-excursion
9213 (goto-char anchor)
9214 (current-column)))
9215 indent)))
9216
9217 \f
9218 (cc-provide 'cc-engine)
9219
9220 ;;; arch-tag: 149add18-4673-4da5-ac47-6805e4eae089
9221 ;;; cc-engine.el ends here