]> code.delx.au - gnu-emacs/blob - lisp/progmodes/cc-engine.el
Correct the handling of two c-state-cache state variables.
[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-2012 Free Software Foundation, Inc.
4
5 ;; Authors: 2001- Alan Mackenzie
6 ;; 1998- Martin Stjernholm
7 ;; 1992-1999 Barry A. Warsaw
8 ;; 1987 Dave Detlefs
9 ;; 1987 Stewart Clamen
10 ;; 1985 Richard M. Stallman
11 ;; Maintainer: bug-cc-mode@gnu.org
12 ;; Created: 22-Apr-1997 (split from cc-mode.el)
13 ;; Keywords: c languages
14 ;; Package: cc-mode
15
16 ;; This file is part of GNU Emacs.
17
18 ;; GNU Emacs is free software: you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation, either version 3 of the License, or
21 ;; (at your option) any later version.
22
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;; GNU General Public License for more details.
27
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30
31 ;;; Commentary:
32
33 ;; The functions which have docstring documentation can be considered
34 ;; part of an API which other packages can use in CC Mode buffers.
35 ;; Otoh, undocumented functions and functions with the documentation
36 ;; in comments are considered purely internal and can change semantics
37 ;; or even disappear in the future.
38 ;;
39 ;; (This policy applies to CC Mode as a whole, not just this file. It
40 ;; probably also applies to many other Emacs packages, but here it's
41 ;; clearly spelled out.)
42
43 ;; Hidden buffer changes
44 ;;
45 ;; Various functions in CC Mode use text properties for caching and
46 ;; syntactic markup purposes, and those of them that might modify such
47 ;; properties but still don't modify the buffer in a visible way are
48 ;; said to do "hidden buffer changes". They should be used within
49 ;; `c-save-buffer-state' or a similar function that saves and restores
50 ;; buffer modifiedness, disables buffer change hooks, etc.
51 ;;
52 ;; Interactive functions are assumed to not do hidden buffer changes,
53 ;; except in the specific parts of them that do real changes.
54 ;;
55 ;; Lineup functions are assumed to do hidden buffer changes. They
56 ;; must not do real changes, though.
57 ;;
58 ;; All other functions that do hidden buffer changes have that noted
59 ;; in their doc string or comment.
60 ;;
61 ;; The intention with this system is to avoid wrapping every leaf
62 ;; function that do hidden buffer changes inside
63 ;; `c-save-buffer-state'. It should be used as near the top of the
64 ;; interactive functions as possible.
65 ;;
66 ;; Functions called during font locking are allowed to do hidden
67 ;; buffer changes since the font-lock package run them in a context
68 ;; similar to `c-save-buffer-state' (in fact, that function is heavily
69 ;; inspired by `save-buffer-state' in the font-lock package).
70
71 ;; Use of text properties
72 ;;
73 ;; CC Mode uses several text properties internally to mark up various
74 ;; positions, e.g. to improve speed and to eliminate glitches in
75 ;; interactive refontification.
76 ;;
77 ;; Note: This doc is for internal use only. Other packages should not
78 ;; assume that these text properties are used as described here.
79 ;;
80 ;; 'category
81 ;; Used for "indirection". With its help, some other property can
82 ;; be cheaply and easily switched on or off everywhere it occurs.
83 ;;
84 ;; 'syntax-table
85 ;; Used to modify the syntax of some characters. It is used to
86 ;; mark the "<" and ">" of angle bracket parens with paren syntax, and
87 ;; to "hide" obtrusive characters in preprocessor lines.
88 ;;
89 ;; This property is used on single characters and is therefore
90 ;; always treated as front and rear nonsticky (or start and end open
91 ;; in XEmacs vocabulary). It's therefore installed on
92 ;; `text-property-default-nonsticky' if that variable exists (Emacs
93 ;; >= 21).
94 ;;
95 ;; 'c-is-sws and 'c-in-sws
96 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
97 ;; speed them up. See the comment blurb before `c-put-is-sws'
98 ;; below for further details.
99 ;;
100 ;; 'c-type
101 ;; This property is used on single characters to mark positions with
102 ;; special syntactic relevance of various sorts. Its primary use is
103 ;; to avoid glitches when multiline constructs are refontified
104 ;; interactively (on font lock decoration level 3). It's cleared in
105 ;; a region before it's fontified and is then put on relevant chars
106 ;; in that region as they are encountered during the fontification.
107 ;; The value specifies the kind of position:
108 ;;
109 ;; 'c-decl-arg-start
110 ;; Put on the last char of the token preceding each declaration
111 ;; inside a declaration style arglist (typically in a function
112 ;; prototype).
113 ;;
114 ;; 'c-decl-end
115 ;; Put on the last char of the token preceding a declaration.
116 ;; This is used in cases where declaration boundaries can't be
117 ;; recognized simply by looking for a token like ";" or "}".
118 ;; `c-type-decl-end-used' must be set if this is used (see also
119 ;; `c-find-decl-spots').
120 ;;
121 ;; 'c-<>-arg-sep
122 ;; Put on the commas that separate arguments in angle bracket
123 ;; arglists like C++ template arglists.
124 ;;
125 ;; 'c-decl-id-start and 'c-decl-type-start
126 ;; Put on the last char of the token preceding each declarator
127 ;; in the declarator list of a declaration. They are also used
128 ;; between the identifiers cases like enum declarations.
129 ;; 'c-decl-type-start is used when the declarators are types,
130 ;; 'c-decl-id-start otherwise.
131 ;;
132 ;; 'c-awk-NL-prop
133 ;; Used in AWK mode to mark the various kinds of newlines. See
134 ;; cc-awk.el.
135
136 ;;; Code:
137
138 (eval-when-compile
139 (let ((load-path
140 (if (and (boundp 'byte-compile-dest-file)
141 (stringp byte-compile-dest-file))
142 (cons (file-name-directory byte-compile-dest-file) load-path)
143 load-path)))
144 (load "cc-bytecomp" nil t)))
145
146 (cc-require 'cc-defs)
147 (cc-require-when-compile 'cc-langs)
148 (cc-require 'cc-vars)
149
150 ;; Silence the compiler.
151 (cc-bytecomp-defun buffer-syntactic-context) ; XEmacs
152
153 \f
154 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
155
156 (defmacro c-declare-lang-variables ()
157 `(progn
158 ,@(apply 'nconc
159 (mapcar (lambda (init)
160 `(,(if (elt init 2)
161 `(defvar ,(car init) nil ,(elt init 2))
162 `(defvar ,(car init) nil))
163 (make-variable-buffer-local ',(car init))))
164 (cdr c-lang-variable-inits)))))
165 (c-declare-lang-variables)
166
167 \f
168 ;;; Internal state variables.
169
170 ;; Internal state of hungry delete key feature
171 (defvar c-hungry-delete-key nil)
172 (make-variable-buffer-local 'c-hungry-delete-key)
173
174 ;; The electric flag (toggled by `c-toggle-electric-state').
175 ;; If t, electric actions (like automatic reindentation, and (if
176 ;; c-auto-newline is also set) auto newlining) will happen when an electric
177 ;; key like `{' is pressed (or an electric keyword like `else').
178 (defvar c-electric-flag t)
179 (make-variable-buffer-local 'c-electric-flag)
180
181 ;; Internal state of auto newline feature.
182 (defvar c-auto-newline nil)
183 (make-variable-buffer-local 'c-auto-newline)
184
185 ;; Included in the mode line to indicate the active submodes.
186 ;; (defvar c-submode-indicators nil)
187 ;; (make-variable-buffer-local 'c-submode-indicators)
188
189 (defun c-calculate-state (arg prevstate)
190 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
191 ;; arg is nil or zero, toggle the state. If arg is negative, turn
192 ;; the state off, and if arg is positive, turn the state on
193 (if (or (not arg)
194 (zerop (setq arg (prefix-numeric-value arg))))
195 (not prevstate)
196 (> arg 0)))
197
198 \f
199 ;; Basic handling of preprocessor directives.
200
201 ;; This is a dynamically bound cache used together with
202 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
203 ;; works as long as point doesn't cross a macro boundary.
204 (defvar c-macro-start 'unknown)
205
206 (defsubst c-query-and-set-macro-start ()
207 (if (symbolp c-macro-start)
208 (setq c-macro-start (save-excursion
209 (c-save-buffer-state ()
210 (and (c-beginning-of-macro)
211 (point)))))
212 c-macro-start))
213
214 (defsubst c-query-macro-start ()
215 (if (symbolp c-macro-start)
216 (save-excursion
217 (c-save-buffer-state ()
218 (and (c-beginning-of-macro)
219 (point))))
220 c-macro-start))
221
222 ;; One element macro cache to cope with continual movement within very large
223 ;; CPP macros.
224 (defvar c-macro-cache nil)
225 (make-variable-buffer-local 'c-macro-cache)
226 ;; Nil or cons of the bounds of the most recent CPP form probed by
227 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
228 ;; The cdr will be nil if we know only the start of the CPP form.
229 (defvar c-macro-cache-start-pos nil)
230 (make-variable-buffer-local 'c-macro-cache-start-pos)
231 ;; The starting position from where we determined `c-macro-cache'.
232 (defvar c-macro-cache-syntactic nil)
233 (make-variable-buffer-local 'c-macro-cache-syntactic)
234 ;; non-nil iff `c-macro-cache' has both elements set AND the cdr is at a
235 ;; syntactic end of macro, not merely an apparent one.
236
237 (defun c-invalidate-macro-cache (beg end)
238 ;; Called from a before-change function. If the change region is before or
239 ;; in the macro characterized by `c-macro-cache' etc., nullify it
240 ;; appropriately. BEG and END are the standard before-change-functions
241 ;; parameters. END isn't used.
242 (cond
243 ((null c-macro-cache))
244 ((< beg (car c-macro-cache))
245 (setq c-macro-cache nil
246 c-macro-cache-start-pos nil
247 c-macro-cache-syntactic nil))
248 ((and (cdr c-macro-cache)
249 (< beg (cdr c-macro-cache)))
250 (setcdr c-macro-cache nil)
251 (setq c-macro-cache-start-pos beg
252 c-macro-cache-syntactic nil))))
253
254 (defun c-beginning-of-macro (&optional lim)
255 "Go to the beginning of a preprocessor directive.
256 Leave point at the beginning of the directive and return t if in one,
257 otherwise return nil and leave point unchanged.
258
259 Note that this function might do hidden buffer changes. See the
260 comment at the start of cc-engine.el for more info."
261 (let ((here (point)))
262 (when c-opt-cpp-prefix
263 (if (and (car c-macro-cache)
264 (>= (point) (car c-macro-cache))
265 (or (and (cdr c-macro-cache)
266 (<= (point) (cdr c-macro-cache)))
267 (<= (point) c-macro-cache-start-pos)))
268 (unless (< (car c-macro-cache) (or lim (point-min)))
269 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
270 (setq c-macro-cache-start-pos
271 (max c-macro-cache-start-pos here))
272 t))
273 (setq c-macro-cache nil
274 c-macro-cache-start-pos nil
275 c-macro-cache-syntactic nil)
276
277 (save-restriction
278 (if lim (narrow-to-region lim (point-max)))
279 (beginning-of-line)
280 (while (eq (char-before (1- (point))) ?\\)
281 (forward-line -1))
282 (back-to-indentation)
283 (if (and (<= (point) here)
284 (looking-at c-opt-cpp-start))
285 (progn
286 (setq c-macro-cache (cons (point) nil)
287 c-macro-cache-start-pos here)
288 t)
289 (goto-char here)
290 nil))))))
291
292 (defun c-end-of-macro ()
293 "Go to the end of a preprocessor directive.
294 More accurately, move the point to the end of the closest following
295 line that doesn't end with a line continuation backslash - no check is
296 done that the point is inside a cpp directive to begin with.
297
298 Note that this function might do hidden buffer changes. See the
299 comment at the start of cc-engine.el for more info."
300 (if (and (cdr c-macro-cache)
301 (<= (point) (cdr c-macro-cache))
302 (>= (point) (car c-macro-cache)))
303 (goto-char (cdr c-macro-cache))
304 (unless (and (car c-macro-cache)
305 (<= (point) c-macro-cache-start-pos)
306 (>= (point) (car c-macro-cache)))
307 (setq c-macro-cache nil
308 c-macro-cache-start-pos nil
309 c-macro-cache-syntactic nil))
310 (while (progn
311 (end-of-line)
312 (when (and (eq (char-before) ?\\)
313 (not (eobp)))
314 (forward-char)
315 t)))
316 (when (car c-macro-cache)
317 (setcdr c-macro-cache (point)))))
318
319 (defun c-syntactic-end-of-macro ()
320 ;; Go to the end of a CPP directive, or a "safe" pos just before.
321 ;;
322 ;; This is normally the end of the next non-escaped line. A "safe"
323 ;; position is one not within a string or comment. (The EOL on a line
324 ;; comment is NOT "safe").
325 ;;
326 ;; This function must only be called from the beginning of a CPP construct.
327 ;;
328 ;; Note that this function might do hidden buffer changes. See the comment
329 ;; at the start of cc-engine.el for more info.
330 (let* ((here (point))
331 (there (progn (c-end-of-macro) (point)))
332 s)
333 (unless c-macro-cache-syntactic
334 (setq s (parse-partial-sexp here there))
335 (while (and (or (nth 3 s) ; in a string
336 (nth 4 s)) ; in a comment (maybe at end of line comment)
337 (> there here)) ; No infinite loops, please.
338 (setq there (1- (nth 8 s)))
339 (setq s (parse-partial-sexp here there)))
340 (setq c-macro-cache-syntactic (car c-macro-cache)))
341 (point)))
342
343 (defun c-forward-over-cpp-define-id ()
344 ;; Assuming point is at the "#" that introduces a preprocessor
345 ;; directive, it's moved forward to the end of the identifier which is
346 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
347 ;; is returned in this case, in all other cases nil is returned and
348 ;; point isn't moved.
349 ;;
350 ;; This function might do hidden buffer changes.
351 (when (and c-opt-cpp-macro-define-id
352 (looking-at c-opt-cpp-macro-define-id))
353 (goto-char (match-end 0))))
354
355 (defun c-forward-to-cpp-define-body ()
356 ;; Assuming point is at the "#" that introduces a preprocessor
357 ;; directive, it's moved forward to the start of the definition body
358 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
359 ;; specifies). Non-nil is returned in this case, in all other cases
360 ;; nil is returned and point isn't moved.
361 ;;
362 ;; This function might do hidden buffer changes.
363 (when (and c-opt-cpp-macro-define-start
364 (looking-at c-opt-cpp-macro-define-start)
365 (not (= (match-end 0) (c-point 'eol))))
366 (goto-char (match-end 0))))
367
368 \f
369 ;;; Basic utility functions.
370
371 (defun c-syntactic-content (from to paren-level)
372 ;; Return the given region as a string where all syntactic
373 ;; whitespace is removed or, where necessary, replaced with a single
374 ;; space. If PAREN-LEVEL is given then all parens in the region are
375 ;; collapsed to "()", "[]" etc.
376 ;;
377 ;; This function might do hidden buffer changes.
378
379 (save-excursion
380 (save-restriction
381 (narrow-to-region from to)
382 (goto-char from)
383 (let* ((parts (list nil)) (tail parts) pos in-paren)
384
385 (while (re-search-forward c-syntactic-ws-start to t)
386 (goto-char (setq pos (match-beginning 0)))
387 (c-forward-syntactic-ws)
388 (if (= (point) pos)
389 (forward-char)
390
391 (when paren-level
392 (save-excursion
393 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
394 pos (point))))
395
396 (if (and (> pos from)
397 (< (point) to)
398 (looking-at "\\w\\|\\s_")
399 (save-excursion
400 (goto-char (1- pos))
401 (looking-at "\\w\\|\\s_")))
402 (progn
403 (setcdr tail (list (buffer-substring-no-properties from pos)
404 " "))
405 (setq tail (cddr tail)))
406 (setcdr tail (list (buffer-substring-no-properties from pos)))
407 (setq tail (cdr tail)))
408
409 (when in-paren
410 (when (= (car (parse-partial-sexp pos to -1)) -1)
411 (setcdr tail (list (buffer-substring-no-properties
412 (1- (point)) (point))))
413 (setq tail (cdr tail))))
414
415 (setq from (point))))
416
417 (setcdr tail (list (buffer-substring-no-properties from to)))
418 (apply 'concat (cdr parts))))))
419
420 (defun c-shift-line-indentation (shift-amt)
421 ;; Shift the indentation of the current line with the specified
422 ;; amount (positive inwards). The buffer is modified only if
423 ;; SHIFT-AMT isn't equal to zero.
424 (let ((pos (- (point-max) (point)))
425 (c-macro-start c-macro-start)
426 tmp-char-inserted)
427 (if (zerop shift-amt)
428 nil
429 ;; If we're on an empty line inside a macro, we take the point
430 ;; to be at the current indentation and shift it to the
431 ;; appropriate column. This way we don't treat the extra
432 ;; whitespace out to the line continuation as indentation.
433 (when (and (c-query-and-set-macro-start)
434 (looking-at "[ \t]*\\\\$")
435 (save-excursion
436 (skip-chars-backward " \t")
437 (bolp)))
438 (insert ?x)
439 (backward-char)
440 (setq tmp-char-inserted t))
441 (unwind-protect
442 (let ((col (current-indentation)))
443 (delete-region (c-point 'bol) (c-point 'boi))
444 (beginning-of-line)
445 (indent-to (+ col shift-amt)))
446 (when tmp-char-inserted
447 (delete-char 1))))
448 ;; If initial point was within line's indentation and we're not on
449 ;; a line with a line continuation in a macro, position after the
450 ;; indentation. Else stay at same point in text.
451 (if (and (< (point) (c-point 'boi))
452 (not tmp-char-inserted))
453 (back-to-indentation)
454 (if (> (- (point-max) pos) (point))
455 (goto-char (- (point-max) pos))))))
456
457 (defsubst c-keyword-sym (keyword)
458 ;; Return non-nil if the string KEYWORD is a known keyword. More
459 ;; precisely, the value is the symbol for the keyword in
460 ;; `c-keywords-obarray'.
461 (intern-soft keyword c-keywords-obarray))
462
463 (defsubst c-keyword-member (keyword-sym lang-constant)
464 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
465 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
466 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
467 ;; nil then the result is nil.
468 (get keyword-sym lang-constant))
469
470 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
471 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
472 "\"|"
473 "\""))
474
475 ;; Regexp matching string limit syntax.
476 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
477 "\\s\"\\|\\s|"
478 "\\s\""))
479
480 ;; Regexp matching WS followed by string limit syntax.
481 (defconst c-ws*-string-limit-regexp
482 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
483
484 ;; Holds formatted error strings for the few cases where parse errors
485 ;; are reported.
486 (defvar c-parsing-error nil)
487 (make-variable-buffer-local 'c-parsing-error)
488
489 (defun c-echo-parsing-error (&optional quiet)
490 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
491 (c-benign-error "%s" c-parsing-error))
492 c-parsing-error)
493
494 ;; Faces given to comments and string literals. This is used in some
495 ;; situations to speed up recognition; it isn't mandatory that font
496 ;; locking is in use. This variable is extended with the face in
497 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
498 (defvar c-literal-faces
499 (append '(font-lock-comment-face font-lock-string-face)
500 (when (facep 'font-lock-comment-delimiter-face)
501 ;; New in Emacs 22.
502 '(font-lock-comment-delimiter-face))))
503
504 (defsubst c-put-c-type-property (pos value)
505 ;; Put a c-type property with the given value at POS.
506 (c-put-char-property pos 'c-type value))
507
508 (defun c-clear-c-type-property (from to value)
509 ;; Remove all occurrences of the c-type property that has the given
510 ;; value in the region between FROM and TO. VALUE is assumed to not
511 ;; be nil.
512 ;;
513 ;; Note: This assumes that c-type is put on single chars only; it's
514 ;; very inefficient if matching properties cover large regions.
515 (save-excursion
516 (goto-char from)
517 (while (progn
518 (when (eq (get-text-property (point) 'c-type) value)
519 (c-clear-char-property (point) 'c-type))
520 (goto-char (next-single-property-change (point) 'c-type nil to))
521 (< (point) to)))))
522
523 \f
524 ;; Some debug tools to visualize various special positions. This
525 ;; debug code isn't as portable as the rest of CC Mode.
526
527 (cc-bytecomp-defun overlays-in)
528 (cc-bytecomp-defun overlay-get)
529 (cc-bytecomp-defun overlay-start)
530 (cc-bytecomp-defun overlay-end)
531 (cc-bytecomp-defun delete-overlay)
532 (cc-bytecomp-defun overlay-put)
533 (cc-bytecomp-defun make-overlay)
534
535 (defun c-debug-add-face (beg end face)
536 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
537 (while overlays
538 (setq overlay (car overlays)
539 overlays (cdr overlays))
540 (when (eq (overlay-get overlay 'face) face)
541 (setq beg (min beg (overlay-start overlay))
542 end (max end (overlay-end overlay)))
543 (delete-overlay overlay)))
544 (overlay-put (make-overlay beg end) 'face face)))
545
546 (defun c-debug-remove-face (beg end face)
547 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
548 (ol-beg beg) (ol-end end))
549 (while overlays
550 (setq overlay (car overlays)
551 overlays (cdr overlays))
552 (when (eq (overlay-get overlay 'face) face)
553 (setq ol-beg (min ol-beg (overlay-start overlay))
554 ol-end (max ol-end (overlay-end overlay)))
555 (delete-overlay overlay)))
556 (when (< ol-beg beg)
557 (overlay-put (make-overlay ol-beg beg) 'face face))
558 (when (> ol-end end)
559 (overlay-put (make-overlay end ol-end) 'face face))))
560
561 \f
562 ;; `c-beginning-of-statement-1' and accompanying stuff.
563
564 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
565 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
566 ;; better way should be implemented, but this will at least shut up
567 ;; the byte compiler.
568 (defvar c-maybe-labelp)
569
570 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
571
572 ;; Macros used internally in c-beginning-of-statement-1 for the
573 ;; automaton actions.
574 (defmacro c-bos-push-state ()
575 '(setq stack (cons (cons state saved-pos)
576 stack)))
577 (defmacro c-bos-pop-state (&optional do-if-done)
578 `(if (setq state (car (car stack))
579 saved-pos (cdr (car stack))
580 stack (cdr stack))
581 t
582 ,do-if-done
583 (throw 'loop nil)))
584 (defmacro c-bos-pop-state-and-retry ()
585 '(throw 'loop (setq state (car (car stack))
586 saved-pos (cdr (car stack))
587 ;; Throw nil if stack is empty, else throw non-nil.
588 stack (cdr stack))))
589 (defmacro c-bos-save-pos ()
590 '(setq saved-pos (vector pos tok ptok pptok)))
591 (defmacro c-bos-restore-pos ()
592 '(unless (eq (elt saved-pos 0) start)
593 (setq pos (elt saved-pos 0)
594 tok (elt saved-pos 1)
595 ptok (elt saved-pos 2)
596 pptok (elt saved-pos 3))
597 (goto-char pos)
598 (setq sym nil)))
599 (defmacro c-bos-save-error-info (missing got)
600 `(setq saved-pos (vector pos ,missing ,got)))
601 (defmacro c-bos-report-error ()
602 '(unless noerror
603 (setq c-parsing-error
604 (format "No matching `%s' found for `%s' on line %d"
605 (elt saved-pos 1)
606 (elt saved-pos 2)
607 (1+ (count-lines (point-min)
608 (c-point 'bol (elt saved-pos 0))))))))
609
610 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
611 noerror comma-delim)
612 "Move to the start of the current statement or declaration, or to
613 the previous one if already at the beginning of one. Only
614 statements/declarations on the same level are considered, i.e. don't
615 move into or out of sexps (not even normal expression parentheses).
616
617 If point is already at the earliest statement within braces or parens,
618 this function doesn't move back into any whitespace preceding it; it
619 returns 'same in this case.
620
621 Stop at statement continuation tokens like \"else\", \"catch\",
622 \"finally\" and the \"while\" in \"do ... while\" if the start point
623 is within the continuation. If starting at such a token, move to the
624 corresponding statement start. If at the beginning of a statement,
625 move to the closest containing statement if there is any. This might
626 also stop at a continuation clause.
627
628 Labels are treated as part of the following statements if
629 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
630 statement start keyword.) Otherwise, each label is treated as a
631 separate statement.
632
633 Macros are ignored \(i.e. skipped over) unless point is within one, in
634 which case the content of the macro is treated as normal code. Aside
635 from any normal statement starts found in it, stop at the first token
636 of the content in the macro, i.e. the expression of an \"#if\" or the
637 start of the definition in a \"#define\". Also stop at start of
638 macros before leaving them.
639
640 Return:
641 'label if stopped at a label or \"case...:\" or \"default:\";
642 'same if stopped at the beginning of the current statement;
643 'up if stepped to a containing statement;
644 'previous if stepped to a preceding statement;
645 'beginning if stepped from a statement continuation clause to
646 its start clause; or
647 'macro if stepped to a macro start.
648 Note that 'same and not 'label is returned if stopped at the same
649 label without crossing the colon character.
650
651 LIM may be given to limit the search. If the search hits the limit,
652 point will be left at the closest following token, or at the start
653 position if that is less ('same is returned in this case).
654
655 NOERROR turns off error logging to `c-parsing-error'.
656
657 Normally only ';' and virtual semicolons are considered to delimit
658 statements, but if COMMA-DELIM is non-nil then ',' is treated
659 as a delimiter too.
660
661 Note that this function might do hidden buffer changes. See the
662 comment at the start of cc-engine.el for more info."
663
664 ;; The bulk of this function is a pushdown automaton that looks at statement
665 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
666 ;; purpose is to keep track of nested statements, ensuring that such
667 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
668 ;; does with nested braces/brackets/parentheses).
669 ;;
670 ;; Note: The position of a boundary is the following token.
671 ;;
672 ;; Beginning with the current token (the one following point), move back one
673 ;; sexp at a time (where a sexp is, more or less, either a token or the
674 ;; entire contents of a brace/bracket/paren pair). Each time a statement
675 ;; boundary is crossed or a "while"-like token is found, update the state of
676 ;; the PDA. Stop at the beginning of a statement when the stack (holding
677 ;; nested statement info) is empty and the position has been moved.
678 ;;
679 ;; The following variables constitute the PDA:
680 ;;
681 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
682 ;; scanned back over, 'boundary if we've just gone back over a
683 ;; statement boundary, or nil otherwise.
684 ;; state: takes one of the values (nil else else-boundary while
685 ;; while-boundary catch catch-boundary).
686 ;; nil means "no "while"-like token yet scanned".
687 ;; 'else, for example, means "just gone back over an else".
688 ;; 'else-boundary means "just gone back over a statement boundary
689 ;; immediately after having gone back over an else".
690 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
691 ;; of error reporting information.
692 ;; stack: The stack onto which the PDA pushes its state. Each entry
693 ;; consists of a saved value of state and saved-pos. An entry is
694 ;; pushed when we move back over a "continuation" token (e.g. else)
695 ;; and popped when we encounter the corresponding opening token
696 ;; (e.g. if).
697 ;;
698 ;;
699 ;; The following diagram briefly outlines the PDA.
700 ;;
701 ;; Common state:
702 ;; "else": Push state, goto state `else'.
703 ;; "while": Push state, goto state `while'.
704 ;; "catch" or "finally": Push state, goto state `catch'.
705 ;; boundary: Pop state.
706 ;; other: Do nothing special.
707 ;;
708 ;; State `else':
709 ;; boundary: Goto state `else-boundary'.
710 ;; other: Error, pop state, retry token.
711 ;;
712 ;; State `else-boundary':
713 ;; "if": Pop state.
714 ;; boundary: Error, pop state.
715 ;; other: See common state.
716 ;;
717 ;; State `while':
718 ;; boundary: Save position, goto state `while-boundary'.
719 ;; other: Pop state, retry token.
720 ;;
721 ;; State `while-boundary':
722 ;; "do": Pop state.
723 ;; boundary: Restore position if it's not at start, pop state. [*see below]
724 ;; other: See common state.
725 ;;
726 ;; State `catch':
727 ;; boundary: Goto state `catch-boundary'.
728 ;; other: Error, pop state, retry token.
729 ;;
730 ;; State `catch-boundary':
731 ;; "try": Pop state.
732 ;; "catch": Goto state `catch'.
733 ;; boundary: Error, pop state.
734 ;; other: See common state.
735 ;;
736 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
737 ;; searching for a "do" which would have opened a do-while. If we didn't
738 ;; find it, we discard the analysis done since the "while", go back to this
739 ;; token in the buffer and restart the scanning there, this time WITHOUT
740 ;; pushing the 'while state onto the stack.
741 ;;
742 ;; In addition to the above there is some special handling of labels
743 ;; and macros.
744
745 (let ((case-fold-search nil)
746 (start (point))
747 macro-start
748 (delims (if comma-delim '(?\; ?,) '(?\;)))
749 (c-stmt-delim-chars (if comma-delim
750 c-stmt-delim-chars-with-comma
751 c-stmt-delim-chars))
752 c-in-literal-cache c-maybe-labelp after-case:-pos saved
753 ;; Current position.
754 pos
755 ;; Position of last stmt boundary character (e.g. ;).
756 boundary-pos
757 ;; The position of the last sexp or bound that follows the
758 ;; first found colon, i.e. the start of the nonlabel part of
759 ;; the statement. It's `start' if a colon is found just after
760 ;; the start.
761 after-labels-pos
762 ;; Like `after-labels-pos', but the first such position inside
763 ;; a label, i.e. the start of the last label before the start
764 ;; of the nonlabel part of the statement.
765 last-label-pos
766 ;; The last position where a label is possible provided the
767 ;; statement started there. It's nil as long as no invalid
768 ;; label content has been found (according to
769 ;; `c-nonlabel-token-key'). It's `start' if no valid label
770 ;; content was found in the label. Note that we might still
771 ;; regard it a label if it starts with `c-label-kwds'.
772 label-good-pos
773 ;; Putative positions of the components of a bitfield declaration,
774 ;; e.g. "int foo : NUM_FOO_BITS ;"
775 bitfield-type-pos bitfield-id-pos bitfield-size-pos
776 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
777 ;; See above.
778 sym
779 ;; Current state in the automaton. See above.
780 state
781 ;; Current saved positions. See above.
782 saved-pos
783 ;; Stack of conses (state . saved-pos).
784 stack
785 ;; Regexp which matches "for", "if", etc.
786 (cond-key (or c-opt-block-stmt-key
787 "\\<\\>")) ; Matches nothing.
788 ;; Return value.
789 (ret 'same)
790 ;; Positions of the last three sexps or bounds we've stopped at.
791 tok ptok pptok)
792
793 (save-restriction
794 (if lim (narrow-to-region lim (point-max)))
795
796 (if (save-excursion
797 (and (c-beginning-of-macro)
798 (/= (point) start)))
799 (setq macro-start (point)))
800
801 ;; Try to skip back over unary operator characters, to register
802 ;; that we've moved.
803 (while (progn
804 (setq pos (point))
805 (c-backward-syntactic-ws)
806 ;; Protect post-++/-- operators just before a virtual semicolon.
807 (and (not (c-at-vsemi-p))
808 (/= (skip-chars-backward "-+!*&~@`#") 0))))
809
810 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
811 ;; done. Later on we ignore the boundaries for statements that don't
812 ;; contain any sexp. The only thing that is affected is that the error
813 ;; checking is a little less strict, and we really don't bother.
814 (if (and (memq (char-before) delims)
815 (progn (forward-char -1)
816 (setq saved (point))
817 (c-backward-syntactic-ws)
818 (or (memq (char-before) delims)
819 (memq (char-before) '(?: nil))
820 (eq (char-syntax (char-before)) ?\()
821 (c-at-vsemi-p))))
822 (setq ret 'previous
823 pos saved)
824
825 ;; Begin at start and not pos to detect macros if we stand
826 ;; directly after the #.
827 (goto-char start)
828 (if (looking-at "\\<\\|\\W")
829 ;; Record this as the first token if not starting inside it.
830 (setq tok start))
831
832
833 ;; The following while loop goes back one sexp (balanced parens,
834 ;; etc. with contents, or symbol or suchlike) each iteration. This
835 ;; movement is accomplished with a call to c-backward-sexp approx 170
836 ;; lines below.
837 ;;
838 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
839 ;; 1. On reaching the start of a macro;
840 ;; 2. On having passed a stmt boundary with the PDA stack empty;
841 ;; 3. On reaching the start of an Objective C method def;
842 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
843 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
844 (while
845 (catch 'loop ;; Throw nil to break, non-nil to continue.
846 (cond
847 ;; Are we in a macro, just after the opening #?
848 ((save-excursion
849 (and macro-start ; Always NIL for AWK.
850 (progn (skip-chars-backward " \t")
851 (eq (char-before) ?#))
852 (progn (setq saved (1- (point)))
853 (beginning-of-line)
854 (not (eq (char-before (1- (point))) ?\\)))
855 (looking-at c-opt-cpp-start)
856 (progn (skip-chars-forward " \t")
857 (eq (point) saved))))
858 (goto-char saved)
859 (if (and (c-forward-to-cpp-define-body)
860 (progn (c-forward-syntactic-ws start)
861 (< (point) start)))
862 ;; Stop at the first token in the content of the macro.
863 (setq pos (point)
864 ignore-labels t) ; Avoid the label check on exit.
865 (setq pos saved
866 ret 'macro
867 ignore-labels t))
868 (throw 'loop nil)) ; 1. Start of macro.
869
870 ;; Do a round through the automaton if we've just passed a
871 ;; statement boundary or passed a "while"-like token.
872 ((or sym
873 (and (looking-at cond-key)
874 (setq sym (intern (match-string 1)))))
875
876 (when (and (< pos start) (null stack))
877 (throw 'loop nil)) ; 2. Statement boundary.
878
879 ;; The PDA state handling.
880 ;;
881 ;; Refer to the description of the PDA in the opening
882 ;; comments. In the following OR form, the first leaf
883 ;; attempts to handles one of the specific actions detailed
884 ;; (e.g., finding token "if" whilst in state `else-boundary').
885 ;; We drop through to the second leaf (which handles common
886 ;; state) if no specific handler is found in the first cond.
887 ;; If a parsing error is detected (e.g. an "else" with no
888 ;; preceding "if"), we throw to the enclosing catch.
889 ;;
890 ;; Note that the (eq state 'else) means
891 ;; "we've just passed an else", NOT "we're looking for an
892 ;; else".
893 (or (cond
894 ((eq state 'else)
895 (if (eq sym 'boundary)
896 (setq state 'else-boundary)
897 (c-bos-report-error)
898 (c-bos-pop-state-and-retry)))
899
900 ((eq state 'else-boundary)
901 (cond ((eq sym 'if)
902 (c-bos-pop-state (setq ret 'beginning)))
903 ((eq sym 'boundary)
904 (c-bos-report-error)
905 (c-bos-pop-state))))
906
907 ((eq state 'while)
908 (if (and (eq sym 'boundary)
909 ;; Since this can cause backtracking we do a
910 ;; little more careful analysis to avoid it:
911 ;; If there's a label in front of the while
912 ;; it can't be part of a do-while.
913 (not after-labels-pos))
914 (progn (c-bos-save-pos)
915 (setq state 'while-boundary))
916 (c-bos-pop-state-and-retry))) ; Can't be a do-while
917
918 ((eq state 'while-boundary)
919 (cond ((eq sym 'do)
920 (c-bos-pop-state (setq ret 'beginning)))
921 ((eq sym 'boundary) ; isn't a do-while
922 (c-bos-restore-pos) ; the position of the while
923 (c-bos-pop-state)))) ; no longer searching for do.
924
925 ((eq state 'catch)
926 (if (eq sym 'boundary)
927 (setq state 'catch-boundary)
928 (c-bos-report-error)
929 (c-bos-pop-state-and-retry)))
930
931 ((eq state 'catch-boundary)
932 (cond
933 ((eq sym 'try)
934 (c-bos-pop-state (setq ret 'beginning)))
935 ((eq sym 'catch)
936 (setq state 'catch))
937 ((eq sym 'boundary)
938 (c-bos-report-error)
939 (c-bos-pop-state)))))
940
941 ;; This is state common. We get here when the previous
942 ;; cond statement found no particular state handler.
943 (cond ((eq sym 'boundary)
944 ;; If we have a boundary at the start
945 ;; position we push a frame to go to the
946 ;; previous statement.
947 (if (>= pos start)
948 (c-bos-push-state)
949 (c-bos-pop-state)))
950 ((eq sym 'else)
951 (c-bos-push-state)
952 (c-bos-save-error-info 'if 'else)
953 (setq state 'else))
954 ((eq sym 'while)
955 ;; Is this a real while, or a do-while?
956 ;; The next `when' triggers unless we are SURE that
957 ;; the `while' is not the tail end of a `do-while'.
958 (when (or (not pptok)
959 (memq (char-after pptok) delims)
960 ;; The following kludge is to prevent
961 ;; infinite recursion when called from
962 ;; c-awk-after-if-for-while-condition-p,
963 ;; or the like.
964 (and (eq (point) start)
965 (c-vsemi-status-unknown-p))
966 (c-at-vsemi-p pptok))
967 ;; Since this can cause backtracking we do a
968 ;; little more careful analysis to avoid it: If
969 ;; the while isn't followed by a (possibly
970 ;; virtual) semicolon it can't be a do-while.
971 (c-bos-push-state)
972 (setq state 'while)))
973 ((memq sym '(catch finally))
974 (c-bos-push-state)
975 (c-bos-save-error-info 'try sym)
976 (setq state 'catch))))
977
978 (when c-maybe-labelp
979 ;; We're either past a statement boundary or at the
980 ;; start of a statement, so throw away any label data
981 ;; for the previous one.
982 (setq after-labels-pos nil
983 last-label-pos nil
984 c-maybe-labelp nil))))
985
986 ;; Step to the previous sexp, but not if we crossed a
987 ;; boundary, since that doesn't consume an sexp.
988 (if (eq sym 'boundary)
989 (setq ret 'previous)
990
991 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
992 ;; BACKWARDS THROUGH THE SOURCE.
993
994 (c-backward-syntactic-ws)
995 (let ((before-sws-pos (point))
996 ;; The end position of the area to search for statement
997 ;; barriers in this round.
998 (maybe-after-boundary-pos pos))
999
1000 ;; Go back over exactly one logical sexp, taking proper
1001 ;; account of macros and escaped EOLs.
1002 (while
1003 (progn
1004 (unless (c-safe (c-backward-sexp) t)
1005 ;; Give up if we hit an unbalanced block. Since the
1006 ;; stack won't be empty the code below will report a
1007 ;; suitable error.
1008 (throw 'loop nil))
1009 (cond
1010 ;; Have we moved into a macro?
1011 ((and (not macro-start)
1012 (c-beginning-of-macro))
1013 ;; Have we crossed a statement boundary? If not,
1014 ;; keep going back until we find one or a "real" sexp.
1015 (and
1016 (save-excursion
1017 (c-end-of-macro)
1018 (not (c-crosses-statement-barrier-p
1019 (point) maybe-after-boundary-pos)))
1020 (setq maybe-after-boundary-pos (point))))
1021 ;; Have we just gone back over an escaped NL? This
1022 ;; doesn't count as a sexp.
1023 ((looking-at "\\\\$")))))
1024
1025 ;; Have we crossed a statement boundary?
1026 (setq boundary-pos
1027 (cond
1028 ;; Are we at a macro beginning?
1029 ((and (not macro-start)
1030 c-opt-cpp-prefix
1031 (looking-at c-opt-cpp-prefix))
1032 (save-excursion
1033 (c-end-of-macro)
1034 (c-crosses-statement-barrier-p
1035 (point) maybe-after-boundary-pos)))
1036 ;; Just gone back over a brace block?
1037 ((and
1038 (eq (char-after) ?{)
1039 (not (c-looking-at-inexpr-block lim nil t)))
1040 (save-excursion
1041 (c-forward-sexp) (point)))
1042 ;; Just gone back over some paren block?
1043 ((looking-at "\\s\(")
1044 (save-excursion
1045 (goto-char (1+ (c-down-list-backward
1046 before-sws-pos)))
1047 (c-crosses-statement-barrier-p
1048 (point) maybe-after-boundary-pos)))
1049 ;; Just gone back over an ordinary symbol of some sort?
1050 (t (c-crosses-statement-barrier-p
1051 (point) maybe-after-boundary-pos))))
1052
1053 (when boundary-pos
1054 (setq pptok ptok
1055 ptok tok
1056 tok boundary-pos
1057 sym 'boundary)
1058 ;; Like a C "continue". Analyze the next sexp.
1059 (throw 'loop t))))
1060
1061 ;; ObjC method def?
1062 (when (and c-opt-method-key
1063 (setq saved (c-in-method-def-p)))
1064 (setq pos saved
1065 ignore-labels t) ; Avoid the label check on exit.
1066 (throw 'loop nil)) ; 3. ObjC method def.
1067
1068 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1069 (if c-has-bitfields
1070 (cond
1071 ;; The : <size> and <id> fields?
1072 ((and (numberp c-maybe-labelp)
1073 (not bitfield-size-pos)
1074 (save-excursion
1075 (goto-char (or tok start))
1076 (not (looking-at c-keywords-regexp)))
1077 (not (looking-at c-keywords-regexp))
1078 (not (c-punctuation-in (point) c-maybe-labelp)))
1079 (setq bitfield-size-pos (or tok start)
1080 bitfield-id-pos (point)))
1081 ;; The <type> field?
1082 ((and bitfield-id-pos
1083 (not bitfield-type-pos))
1084 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1085 (not (looking-at c-not-primitive-type-keywords-regexp))
1086 (not (c-punctuation-in (point) tok)))
1087 (setq bitfield-type-pos (point))
1088 (setq bitfield-size-pos nil
1089 bitfield-id-pos nil)))))
1090
1091 ;; Handle labels.
1092 (unless (eq ignore-labels t)
1093 (when (numberp c-maybe-labelp)
1094 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1095 ;; might be in a label now. Have we got a real label
1096 ;; (including a case label) or something like C++'s "public:"?
1097 ;; A case label might use an expression rather than a token.
1098 (setq after-case:-pos (or tok start))
1099 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1100 ;; Catch C++'s inheritance construct "class foo : bar".
1101 (save-excursion
1102 (and
1103 (c-safe (c-backward-sexp) t)
1104 (looking-at c-nonlabel-token-2-key))))
1105 (setq c-maybe-labelp nil)
1106 (if after-labels-pos ; Have we already encountered a label?
1107 (if (not last-label-pos)
1108 (setq last-label-pos (or tok start)))
1109 (setq after-labels-pos (or tok start)))
1110 (setq c-maybe-labelp t
1111 label-good-pos nil))) ; bogus "label"
1112
1113 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1114 ; been found.
1115 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1116 ;; We're in a potential label and it's the first
1117 ;; time we've found something that isn't allowed in
1118 ;; one.
1119 (setq label-good-pos (or tok start))))
1120
1121 ;; We've moved back by a sexp, so update the token positions.
1122 (setq sym nil
1123 pptok ptok
1124 ptok tok
1125 tok (point)
1126 pos tok) ; always non-nil
1127 ) ; end of (catch loop ....)
1128 ) ; end of sexp-at-a-time (while ....)
1129
1130 ;; If the stack isn't empty there might be errors to report.
1131 (while stack
1132 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1133 (c-bos-report-error))
1134 (setq saved-pos (cdr (car stack))
1135 stack (cdr stack)))
1136
1137 (when (and (eq ret 'same)
1138 (not (memq sym '(boundary ignore nil))))
1139 ;; Need to investigate closer whether we've crossed
1140 ;; between a substatement and its containing statement.
1141 (if (setq saved (if (looking-at c-block-stmt-1-key)
1142 ptok
1143 pptok))
1144 (cond ((> start saved) (setq pos saved))
1145 ((= start saved) (setq ret 'up)))))
1146
1147 (when (and (not ignore-labels)
1148 (eq c-maybe-labelp t)
1149 (not (eq ret 'beginning))
1150 after-labels-pos
1151 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1152 (or (not label-good-pos)
1153 (<= label-good-pos pos)
1154 (progn
1155 (goto-char (if (and last-label-pos
1156 (< last-label-pos start))
1157 last-label-pos
1158 pos))
1159 (looking-at c-label-kwds-regexp))))
1160 ;; We're in a label. Maybe we should step to the statement
1161 ;; after it.
1162 (if (< after-labels-pos start)
1163 (setq pos after-labels-pos)
1164 (setq ret 'label)
1165 (if (and last-label-pos (< last-label-pos start))
1166 ;; Might have jumped over several labels. Go to the last one.
1167 (setq pos last-label-pos)))))
1168
1169 ;; Have we got "case <expression>:"?
1170 (goto-char pos)
1171 (when (and after-case:-pos
1172 (not (eq ret 'beginning))
1173 (looking-at c-case-kwds-regexp))
1174 (if (< after-case:-pos start)
1175 (setq pos after-case:-pos))
1176 (if (eq ret 'same)
1177 (setq ret 'label)))
1178
1179 ;; Skip over the unary operators that can start the statement.
1180 (while (progn
1181 (c-backward-syntactic-ws)
1182 ;; protect AWK post-inc/decrement operators, etc.
1183 (and (not (c-at-vsemi-p (point)))
1184 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1185 (setq pos (point)))
1186 (goto-char pos)
1187 ret)))
1188
1189 (defun c-punctuation-in (from to)
1190 "Return non-nil if there is a non-comment non-macro punctuation character
1191 between FROM and TO. FROM must not be in a string or comment. The returned
1192 value is the position of the first such character."
1193 (save-excursion
1194 (goto-char from)
1195 (let ((pos (point)))
1196 (while (progn (skip-chars-forward c-symbol-chars to)
1197 (c-forward-syntactic-ws to)
1198 (> (point) pos))
1199 (setq pos (point))))
1200 (and (< (point) to) (point))))
1201
1202 (defun c-crosses-statement-barrier-p (from to)
1203 "Return non-nil if buffer positions FROM to TO cross one or more
1204 statement or declaration boundaries. The returned value is actually
1205 the position of the earliest boundary char. FROM must not be within
1206 a string or comment.
1207
1208 The variable `c-maybe-labelp' is set to the position of the first `:' that
1209 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1210 single `?' is found, then `c-maybe-labelp' is cleared.
1211
1212 For AWK, a statement which is terminated by an EOL (not a \; or a }) is
1213 regarded as having a \"virtual semicolon\" immediately after the last token on
1214 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1215
1216 Note that this function might do hidden buffer changes. See the
1217 comment at the start of cc-engine.el for more info."
1218 (let* ((skip-chars
1219 ;; If the current language has CPP macros, insert # into skip-chars.
1220 (if c-opt-cpp-symbol
1221 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1222 c-opt-cpp-symbol ; usually "#"
1223 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1224 c-stmt-delim-chars))
1225 (non-skip-list
1226 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1227 lit-range vsemi-pos)
1228 (save-restriction
1229 (widen)
1230 (save-excursion
1231 (catch 'done
1232 (goto-char from)
1233 (while (progn (skip-chars-forward
1234 skip-chars
1235 (min to (c-point 'bonl)))
1236 (< (point) to))
1237 (cond
1238 ;; Virtual semicolon?
1239 ((and (bolp)
1240 (save-excursion
1241 (progn
1242 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1243 (goto-char (car lit-range)))
1244 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1245 (setq vsemi-pos (point))
1246 (c-at-vsemi-p))))
1247 (throw 'done vsemi-pos))
1248 ;; In a string/comment?
1249 ((setq lit-range (c-literal-limits from))
1250 (goto-char (cdr lit-range)))
1251 ((eq (char-after) ?:)
1252 (forward-char)
1253 (if (and (eq (char-after) ?:)
1254 (< (point) to))
1255 ;; Ignore scope operators.
1256 (forward-char)
1257 (setq c-maybe-labelp (1- (point)))))
1258 ((eq (char-after) ??)
1259 ;; A question mark. Can't be a label, so stop
1260 ;; looking for more : and ?.
1261 (setq c-maybe-labelp nil
1262 skip-chars (substring c-stmt-delim-chars 0 -2)))
1263 ;; At a CPP construct?
1264 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol)
1265 (save-excursion
1266 (forward-line 0)
1267 (looking-at c-opt-cpp-prefix)))
1268 (c-end-of-macro))
1269 ((memq (char-after) non-skip-list)
1270 (throw 'done (point)))))
1271 ;; In trailing space after an as yet undetected virtual semicolon?
1272 (c-backward-syntactic-ws from)
1273 (if (and (< (point) to)
1274 (c-at-vsemi-p))
1275 (point)
1276 nil))))))
1277
1278 (defun c-at-statement-start-p ()
1279 "Return non-nil if the point is at the first token in a statement
1280 or somewhere in the syntactic whitespace before it.
1281
1282 A \"statement\" here is not restricted to those inside code blocks.
1283 Any kind of declaration-like construct that occur outside function
1284 bodies is also considered a \"statement\".
1285
1286 Note that this function might do hidden buffer changes. See the
1287 comment at the start of cc-engine.el for more info."
1288
1289 (save-excursion
1290 (let ((end (point))
1291 c-maybe-labelp)
1292 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1293 (or (bobp)
1294 (eq (char-before) ?})
1295 (and (eq (char-before) ?{)
1296 (not (and c-special-brace-lists
1297 (progn (backward-char)
1298 (c-looking-at-special-brace-list)))))
1299 (c-crosses-statement-barrier-p (point) end)))))
1300
1301 (defun c-at-expression-start-p ()
1302 "Return non-nil if the point is at the first token in an expression or
1303 statement, or somewhere in the syntactic whitespace before it.
1304
1305 An \"expression\" here is a bit different from the normal language
1306 grammar sense: It's any sequence of expression tokens except commas,
1307 unless they are enclosed inside parentheses of some kind. Also, an
1308 expression never continues past an enclosing parenthesis, but it might
1309 contain parenthesis pairs of any sort except braces.
1310
1311 Since expressions never cross statement boundaries, this function also
1312 recognizes statement beginnings, just like `c-at-statement-start-p'.
1313
1314 Note that this function might do hidden buffer changes. See the
1315 comment at the start of cc-engine.el for more info."
1316
1317 (save-excursion
1318 (let ((end (point))
1319 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1320 c-maybe-labelp)
1321 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1322 (or (bobp)
1323 (memq (char-before) '(?{ ?}))
1324 (save-excursion (backward-char)
1325 (looking-at "\\s("))
1326 (c-crosses-statement-barrier-p (point) end)))))
1327
1328 \f
1329 ;; A set of functions that covers various idiosyncrasies in
1330 ;; implementations of `forward-comment'.
1331
1332 ;; Note: Some emacsen considers incorrectly that any line comment
1333 ;; ending with a backslash continues to the next line. I can't think
1334 ;; of any way to work around that in a reliable way without changing
1335 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1336 ;; changing the syntax for backslash doesn't work since we must treat
1337 ;; escapes in string literals correctly.)
1338
1339 (defun c-forward-single-comment ()
1340 "Move forward past whitespace and the closest following comment, if any.
1341 Return t if a comment was found, nil otherwise. In either case, the
1342 point is moved past the following whitespace. Line continuations,
1343 i.e. a backslashes followed by line breaks, are treated as whitespace.
1344 The line breaks that end line comments are considered to be the
1345 comment enders, so the point will be put on the beginning of the next
1346 line if it moved past a line comment.
1347
1348 This function does not do any hidden buffer changes."
1349
1350 (let ((start (point)))
1351 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1352 (goto-char (match-end 0)))
1353
1354 (when (forward-comment 1)
1355 (if (eobp)
1356 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1357 ;; forwards at eob.
1358 nil
1359
1360 ;; Emacs includes the ending newline in a b-style (c++)
1361 ;; comment, but XEmacs doesn't. We depend on the Emacs
1362 ;; behavior (which also is symmetric).
1363 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1364 (condition-case nil (forward-char 1)))
1365
1366 t))))
1367
1368 (defsubst c-forward-comments ()
1369 "Move forward past all following whitespace and comments.
1370 Line continuations, i.e. a backslashes followed by line breaks, are
1371 treated as whitespace.
1372
1373 Note that this function might do hidden buffer changes. See the
1374 comment at the start of cc-engine.el for more info."
1375
1376 (while (or
1377 ;; If forward-comment in at least XEmacs 21 is given a large
1378 ;; positive value, it'll loop all the way through if it hits
1379 ;; eob.
1380 (and (forward-comment 5)
1381 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1382 ;; forwards at eob.
1383 (not (eobp)))
1384
1385 (when (looking-at "\\\\[\n\r]")
1386 (forward-char 2)
1387 t))))
1388
1389 (defun c-backward-single-comment ()
1390 "Move backward past whitespace and the closest preceding comment, if any.
1391 Return t if a comment was found, nil otherwise. In either case, the
1392 point is moved past the preceding whitespace. Line continuations,
1393 i.e. a backslashes followed by line breaks, are treated as whitespace.
1394 The line breaks that end line comments are considered to be the
1395 comment enders, so the point cannot be at the end of the same line to
1396 move over a line comment.
1397
1398 This function does not do any hidden buffer changes."
1399
1400 (let ((start (point)))
1401 ;; When we got newline terminated comments, forward-comment in all
1402 ;; supported emacsen so far will stop at eol of each line not
1403 ;; ending with a comment when moving backwards. This corrects for
1404 ;; that, and at the same time handles line continuations.
1405 (while (progn
1406 (skip-chars-backward " \t\n\r\f\v")
1407 (and (looking-at "[\n\r]")
1408 (eq (char-before) ?\\)))
1409 (backward-char))
1410
1411 (if (bobp)
1412 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1413 ;; backwards at bob.
1414 nil
1415
1416 ;; Leave point after the closest following newline if we've
1417 ;; backed up over any above, since forward-comment won't move
1418 ;; backward over a line comment if point is at the end of the
1419 ;; same line.
1420 (re-search-forward "\\=\\s *[\n\r]" start t)
1421
1422 (if (if (let (open-paren-in-column-0-is-defun-start) (forward-comment -1))
1423 (if (eolp)
1424 ;; If forward-comment above succeeded and we're at eol
1425 ;; then the newline we moved over above didn't end a
1426 ;; line comment, so we give it another go.
1427 (let (open-paren-in-column-0-is-defun-start)
1428 (forward-comment -1))
1429 t))
1430
1431 ;; Emacs <= 20 and XEmacs move back over the closer of a
1432 ;; block comment that lacks an opener.
1433 (if (looking-at "\\*/")
1434 (progn (forward-char 2) nil)
1435 t)))))
1436
1437 (defsubst c-backward-comments ()
1438 "Move backward past all preceding whitespace and comments.
1439 Line continuations, i.e. a backslashes followed by line breaks, are
1440 treated as whitespace. The line breaks that end line comments are
1441 considered to be the comment enders, so the point cannot be at the end
1442 of the same line to move over a line comment. Unlike
1443 c-backward-syntactic-ws, this function doesn't move back over
1444 preprocessor directives.
1445
1446 Note that this function might do hidden buffer changes. See the
1447 comment at the start of cc-engine.el for more info."
1448
1449 (let ((start (point)))
1450 (while (and
1451 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1452 ;; return t when moving backwards at bob.
1453 (not (bobp))
1454
1455 (if (let (open-paren-in-column-0-is-defun-start)
1456 (forward-comment -1))
1457 (if (looking-at "\\*/")
1458 ;; Emacs <= 20 and XEmacs move back over the
1459 ;; closer of a block comment that lacks an opener.
1460 (progn (forward-char 2) nil)
1461 t)
1462
1463 ;; XEmacs treats line continuations as whitespace but
1464 ;; only in the backward direction, which seems a bit
1465 ;; odd. Anyway, this is necessary for Emacs.
1466 (when (and (looking-at "[\n\r]")
1467 (eq (char-before) ?\\)
1468 (< (point) start))
1469 (backward-char)
1470 t))))))
1471
1472 \f
1473 ;; Tools for skipping over syntactic whitespace.
1474
1475 ;; The following functions use text properties to cache searches over
1476 ;; large regions of syntactic whitespace. It works as follows:
1477 ;;
1478 ;; o If a syntactic whitespace region contains anything but simple
1479 ;; whitespace (i.e. space, tab and line breaks), the text property
1480 ;; `c-in-sws' is put over it. At places where we have stopped
1481 ;; within that region there's also a `c-is-sws' text property.
1482 ;; That since there typically are nested whitespace inside that
1483 ;; must be handled separately, e.g. whitespace inside a comment or
1484 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1485 ;; to jump to another point with that property within the same
1486 ;; `c-in-sws' region. It can be likened to a ladder where
1487 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1488 ;;
1489 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1490 ;; a "rung position" and also maybe on the first following char.
1491 ;; As many characters as can be conveniently found in this range
1492 ;; are marked, but no assumption can be made that the whole range
1493 ;; is marked (it could be clobbered by later changes, for
1494 ;; instance).
1495 ;;
1496 ;; Note that some part of the beginning of a sequence of simple
1497 ;; whitespace might be part of the end of a preceding line comment
1498 ;; or cpp directive and must not be considered part of the "rung".
1499 ;; Such whitespace is some amount of horizontal whitespace followed
1500 ;; by a newline. In the case of cpp directives it could also be
1501 ;; two newlines with horizontal whitespace between them.
1502 ;;
1503 ;; The reason to include the first following char is to cope with
1504 ;; "rung positions" that doesn't have any ordinary whitespace. If
1505 ;; `c-is-sws' is put on a token character it does not have
1506 ;; `c-in-sws' set simultaneously. That's the only case when that
1507 ;; can occur, and the reason for not extending the `c-in-sws'
1508 ;; region to cover it is that the `c-in-sws' region could then be
1509 ;; accidentally merged with a following one if the token is only
1510 ;; one character long.
1511 ;;
1512 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1513 ;; removed in the changed region. If the change was inside
1514 ;; syntactic whitespace that means that the "ladder" is broken, but
1515 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1516 ;; parts on either side and use an ordinary search only to "repair"
1517 ;; the gap.
1518 ;;
1519 ;; Special care needs to be taken if a region is removed: If there
1520 ;; are `c-in-sws' on both sides of it which do not connect inside
1521 ;; the region then they can't be joined. If e.g. a marked macro is
1522 ;; broken, syntactic whitespace inside the new text might be
1523 ;; marked. If those marks would become connected with the old
1524 ;; `c-in-sws' range around the macro then we could get a ladder
1525 ;; with one end outside the macro and the other at some whitespace
1526 ;; within it.
1527 ;;
1528 ;; The main motivation for this system is to increase the speed in
1529 ;; skipping over the large whitespace regions that can occur at the
1530 ;; top level in e.g. header files that contain a lot of comments and
1531 ;; cpp directives. For small comments inside code it's probably
1532 ;; slower than using `forward-comment' straightforwardly, but speed is
1533 ;; not a significant factor there anyway.
1534
1535 ; (defface c-debug-is-sws-face
1536 ; '((t (:background "GreenYellow")))
1537 ; "Debug face to mark the `c-is-sws' property.")
1538 ; (defface c-debug-in-sws-face
1539 ; '((t (:underline t)))
1540 ; "Debug face to mark the `c-in-sws' property.")
1541
1542 ; (defun c-debug-put-sws-faces ()
1543 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1544 ; ;; properties in the buffer.
1545 ; (interactive)
1546 ; (save-excursion
1547 ; (c-save-buffer-state (in-face)
1548 ; (goto-char (point-min))
1549 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1550 ; (point)))
1551 ; (while (progn
1552 ; (goto-char (next-single-property-change
1553 ; (point) 'c-is-sws nil (point-max)))
1554 ; (if in-face
1555 ; (progn
1556 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1557 ; (setq in-face nil))
1558 ; (setq in-face (point)))
1559 ; (not (eobp))))
1560 ; (goto-char (point-min))
1561 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1562 ; (point)))
1563 ; (while (progn
1564 ; (goto-char (next-single-property-change
1565 ; (point) 'c-in-sws nil (point-max)))
1566 ; (if in-face
1567 ; (progn
1568 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1569 ; (setq in-face nil))
1570 ; (setq in-face (point)))
1571 ; (not (eobp)))))))
1572
1573 (defmacro c-debug-sws-msg (&rest args)
1574 ;;`(message ,@args)
1575 )
1576
1577 (defmacro c-put-is-sws (beg end)
1578 ;; This macro does a hidden buffer change.
1579 `(let ((beg ,beg) (end ,end))
1580 (put-text-property beg end 'c-is-sws t)
1581 ,@(when (facep 'c-debug-is-sws-face)
1582 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1583
1584 (defmacro c-put-in-sws (beg end)
1585 ;; This macro does a hidden buffer change.
1586 `(let ((beg ,beg) (end ,end))
1587 (put-text-property beg end 'c-in-sws t)
1588 ,@(when (facep 'c-debug-is-sws-face)
1589 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1590
1591 (defmacro c-remove-is-sws (beg end)
1592 ;; This macro does a hidden buffer change.
1593 `(let ((beg ,beg) (end ,end))
1594 (remove-text-properties beg end '(c-is-sws nil))
1595 ,@(when (facep 'c-debug-is-sws-face)
1596 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1597
1598 (defmacro c-remove-in-sws (beg end)
1599 ;; This macro does a hidden buffer change.
1600 `(let ((beg ,beg) (end ,end))
1601 (remove-text-properties beg end '(c-in-sws nil))
1602 ,@(when (facep 'c-debug-is-sws-face)
1603 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1604
1605 (defmacro c-remove-is-and-in-sws (beg end)
1606 ;; This macro does a hidden buffer change.
1607 `(let ((beg ,beg) (end ,end))
1608 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1609 ,@(when (facep 'c-debug-is-sws-face)
1610 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1611 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1612
1613 (defsubst c-invalidate-sws-region-after (beg end)
1614 ;; Called from `after-change-functions'. Note that if
1615 ;; `c-forward-sws' or `c-backward-sws' are used outside
1616 ;; `c-save-buffer-state' or similar then this will remove the cache
1617 ;; properties right after they're added.
1618 ;;
1619 ;; This function does hidden buffer changes.
1620
1621 (save-excursion
1622 ;; Adjust the end to remove the properties in any following simple
1623 ;; ws up to and including the next line break, if there is any
1624 ;; after the changed region. This is necessary e.g. when a rung
1625 ;; marked empty line is converted to a line comment by inserting
1626 ;; "//" before the line break. In that case the line break would
1627 ;; keep the rung mark which could make a later `c-backward-sws'
1628 ;; move into the line comment instead of over it.
1629 (goto-char end)
1630 (skip-chars-forward " \t\f\v")
1631 (when (and (eolp) (not (eobp)))
1632 (setq end (1+ (point)))))
1633
1634 (when (and (= beg end)
1635 (get-text-property beg 'c-in-sws)
1636 (> beg (point-min))
1637 (get-text-property (1- beg) 'c-in-sws))
1638 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1639 ;; safe to keep a range that was continuous before the change. E.g:
1640 ;;
1641 ;; #define foo
1642 ;; \
1643 ;; bar
1644 ;;
1645 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1646 ;; after "foo" is removed then "bar" will become part of the cpp
1647 ;; directive instead of a syntactically relevant token. In that
1648 ;; case there's no longer syntactic ws from "#" to "b".
1649 (setq beg (1- beg)))
1650
1651 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1652 (c-remove-is-and-in-sws beg end))
1653
1654 (defun c-forward-sws ()
1655 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1656 ;;
1657 ;; This function might do hidden buffer changes.
1658
1659 (let (;; `rung-pos' is set to a position as early as possible in the
1660 ;; unmarked part of the simple ws region.
1661 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1662 rung-is-marked next-rung-is-marked simple-ws-end
1663 ;; `safe-start' is set when it's safe to cache the start position.
1664 ;; It's not set if we've initially skipped over comments and line
1665 ;; continuations since we might have gone out through the end of a
1666 ;; macro then. This provision makes `c-forward-sws' not populate the
1667 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1668 ;; more common.
1669 safe-start)
1670
1671 ;; Skip simple ws and do a quick check on the following character to see
1672 ;; if it's anything that can't start syntactic ws, so we can bail out
1673 ;; early in the majority of cases when there just are a few ws chars.
1674 (skip-chars-forward " \t\n\r\f\v")
1675 (when (looking-at c-syntactic-ws-start)
1676
1677 (setq rung-end-pos (min (1+ (point)) (point-max)))
1678 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1679 'c-is-sws t))
1680 ;; Find the last rung position to avoid setting properties in all
1681 ;; the cases when the marked rung is complete.
1682 ;; (`next-single-property-change' is certain to move at least one
1683 ;; step forward.)
1684 (setq rung-pos (1- (next-single-property-change
1685 rung-is-marked 'c-is-sws nil rung-end-pos)))
1686 ;; Got no marked rung here. Since the simple ws might have started
1687 ;; inside a line comment or cpp directive we must set `rung-pos' as
1688 ;; high as possible.
1689 (setq rung-pos (point)))
1690
1691 (with-silent-modifications
1692 (while
1693 (progn
1694 (while
1695 (when (and rung-is-marked
1696 (get-text-property (point) 'c-in-sws))
1697
1698 ;; The following search is the main reason that `c-in-sws'
1699 ;; and `c-is-sws' aren't combined to one property.
1700 (goto-char (next-single-property-change
1701 (point) 'c-in-sws nil (point-max)))
1702 (unless (get-text-property (point) 'c-is-sws)
1703 ;; If the `c-in-sws' region extended past the last
1704 ;; `c-is-sws' char we have to go back a bit.
1705 (or (get-text-property (1- (point)) 'c-is-sws)
1706 (goto-char (previous-single-property-change
1707 (point) 'c-is-sws)))
1708 (backward-char))
1709
1710 (c-debug-sws-msg
1711 "c-forward-sws cached move %s -> %s (max %s)"
1712 rung-pos (point) (point-max))
1713
1714 (setq rung-pos (point))
1715 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1716 (not (eobp))))
1717
1718 ;; We'll loop here if there is simple ws after the last rung.
1719 ;; That means that there's been some change in it and it's
1720 ;; possible that we've stepped into another ladder, so extend
1721 ;; the previous one to join with it if there is one, and try to
1722 ;; use the cache again.
1723 (c-debug-sws-msg
1724 "c-forward-sws extending rung with [%s..%s] (max %s)"
1725 (1+ rung-pos) (1+ (point)) (point-max))
1726 (unless (get-text-property (point) 'c-is-sws)
1727 ;; Remove any `c-in-sws' property from the last char of
1728 ;; the rung before we mark it with `c-is-sws', so that we
1729 ;; won't connect with the remains of a broken "ladder".
1730 (c-remove-in-sws (point) (1+ (point))))
1731 (c-put-is-sws (1+ rung-pos)
1732 (1+ (point)))
1733 (c-put-in-sws rung-pos
1734 (setq rung-pos (point)
1735 last-put-in-sws-pos rung-pos)))
1736
1737 (setq simple-ws-end (point))
1738 (c-forward-comments)
1739
1740 (cond
1741 ((/= (point) simple-ws-end)
1742 ;; Skipped over comments. Don't cache at eob in case the buffer
1743 ;; is narrowed.
1744 (not (eobp)))
1745
1746 ((save-excursion
1747 (and c-opt-cpp-prefix
1748 (looking-at c-opt-cpp-start)
1749 (progn (skip-chars-backward " \t")
1750 (bolp))
1751 (or (bobp)
1752 (progn (backward-char)
1753 (not (eq (char-before) ?\\))))))
1754 ;; Skip a preprocessor directive.
1755 (end-of-line)
1756 (while (and (eq (char-before) ?\\)
1757 (= (forward-line 1) 0))
1758 (end-of-line))
1759 (forward-line 1)
1760 (setq safe-start t)
1761 ;; Don't cache at eob in case the buffer is narrowed.
1762 (not (eobp)))))
1763
1764 ;; We've searched over a piece of non-white syntactic ws. See if this
1765 ;; can be cached.
1766 (setq next-rung-pos (point))
1767 (skip-chars-forward " \t\n\r\f\v")
1768 (setq rung-end-pos (min (1+ (point)) (point-max)))
1769
1770 (if (or
1771 ;; Cache if we haven't skipped comments only, and if we started
1772 ;; either from a marked rung or from a completely uncached
1773 ;; position.
1774 (and safe-start
1775 (or rung-is-marked
1776 (not (get-text-property simple-ws-end 'c-in-sws))))
1777
1778 ;; See if there's a marked rung in the encountered simple ws. If
1779 ;; so then we can cache, unless `safe-start' is nil. Even then
1780 ;; we need to do this to check if the cache can be used for the
1781 ;; next step.
1782 (and (setq next-rung-is-marked
1783 (text-property-any next-rung-pos rung-end-pos
1784 'c-is-sws t))
1785 safe-start))
1786
1787 (progn
1788 (c-debug-sws-msg
1789 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1790 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1791 (point-max))
1792
1793 ;; Remove the properties for any nested ws that might be cached.
1794 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1795 ;; anyway.
1796 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1797 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1798 (c-put-is-sws rung-pos
1799 (1+ simple-ws-end))
1800 (setq rung-is-marked t))
1801 (c-put-in-sws rung-pos
1802 (setq rung-pos (point)
1803 last-put-in-sws-pos rung-pos))
1804 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1805 ;; Remove any `c-in-sws' property from the last char of
1806 ;; the rung before we mark it with `c-is-sws', so that we
1807 ;; won't connect with the remains of a broken "ladder".
1808 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1809 (c-put-is-sws next-rung-pos
1810 rung-end-pos))
1811
1812 (c-debug-sws-msg
1813 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1814 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1815 (point-max))
1816
1817 ;; Set `rung-pos' for the next rung. It's the same thing here as
1818 ;; initially, except that the rung position is set as early as
1819 ;; possible since we can't be in the ending ws of a line comment or
1820 ;; cpp directive now.
1821 (if (setq rung-is-marked next-rung-is-marked)
1822 (setq rung-pos (1- (next-single-property-change
1823 rung-is-marked 'c-is-sws nil rung-end-pos)))
1824 (setq rung-pos next-rung-pos))
1825 (setq safe-start t)))
1826
1827 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1828 ;; another one after the point (which might occur when editing inside a
1829 ;; comment or macro).
1830 (when (eq last-put-in-sws-pos (point))
1831 (cond ((< last-put-in-sws-pos (point-max))
1832 (c-debug-sws-msg
1833 "c-forward-sws clearing at %s for cache separation"
1834 last-put-in-sws-pos)
1835 (c-remove-in-sws last-put-in-sws-pos
1836 (1+ last-put-in-sws-pos)))
1837 (t
1838 ;; If at eob we have to clear the last character before the end
1839 ;; instead since the buffer might be narrowed and there might
1840 ;; be a `c-in-sws' after (point-max). In this case it's
1841 ;; necessary to clear both properties.
1842 (c-debug-sws-msg
1843 "c-forward-sws clearing thoroughly at %s for cache separation"
1844 (1- last-put-in-sws-pos))
1845 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1846 last-put-in-sws-pos))))
1847 ))))
1848
1849 (defun c-backward-sws ()
1850 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1851 ;;
1852 ;; This function might do hidden buffer changes.
1853
1854 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1855 ;; part of the simple ws region.
1856 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1857 rung-is-marked simple-ws-beg cmt-skip-pos)
1858
1859 ;; Skip simple horizontal ws and do a quick check on the preceding
1860 ;; character to see if it's anything that can't end syntactic ws, so we can
1861 ;; bail out early in the majority of cases when there just are a few ws
1862 ;; chars. Newlines are complicated in the backward direction, so we can't
1863 ;; skip over them.
1864 (skip-chars-backward " \t\f")
1865 (when (and (not (bobp))
1866 (save-excursion
1867 (backward-char)
1868 (looking-at c-syntactic-ws-end)))
1869
1870 ;; Try to find a rung position in the simple ws preceding point, so that
1871 ;; we can get a cache hit even if the last bit of the simple ws has
1872 ;; changed recently.
1873 (setq simple-ws-beg (point))
1874 (skip-chars-backward " \t\n\r\f\v")
1875 (if (setq rung-is-marked (text-property-any
1876 (point) (min (1+ rung-pos) (point-max))
1877 'c-is-sws t))
1878 ;; `rung-pos' will be the earliest marked position, which means that
1879 ;; there might be later unmarked parts in the simple ws region.
1880 ;; It's not worth the effort to fix that; the last part of the
1881 ;; simple ws is also typically edited often, so it could be wasted.
1882 (goto-char (setq rung-pos rung-is-marked))
1883 (goto-char simple-ws-beg))
1884
1885 (with-silent-modifications
1886 (while
1887 (progn
1888 (while
1889 (when (and rung-is-marked
1890 (not (bobp))
1891 (get-text-property (1- (point)) 'c-in-sws))
1892
1893 ;; The following search is the main reason that `c-in-sws'
1894 ;; and `c-is-sws' aren't combined to one property.
1895 (goto-char (previous-single-property-change
1896 (point) 'c-in-sws nil (point-min)))
1897 (unless (get-text-property (point) 'c-is-sws)
1898 ;; If the `c-in-sws' region extended past the first
1899 ;; `c-is-sws' char we have to go forward a bit.
1900 (goto-char (next-single-property-change
1901 (point) 'c-is-sws)))
1902
1903 (c-debug-sws-msg
1904 "c-backward-sws cached move %s <- %s (min %s)"
1905 (point) rung-pos (point-min))
1906
1907 (setq rung-pos (point))
1908 (if (and (< (min (skip-chars-backward " \t\f\v")
1909 (progn
1910 (setq simple-ws-beg (point))
1911 (skip-chars-backward " \t\n\r\f\v")))
1912 0)
1913 (setq rung-is-marked
1914 (text-property-any (point) rung-pos
1915 'c-is-sws t)))
1916 t
1917 (goto-char simple-ws-beg)
1918 nil))
1919
1920 ;; We'll loop here if there is simple ws before the first rung.
1921 ;; That means that there's been some change in it and it's
1922 ;; possible that we've stepped into another ladder, so extend
1923 ;; the previous one to join with it if there is one, and try to
1924 ;; use the cache again.
1925 (c-debug-sws-msg
1926 "c-backward-sws extending rung with [%s..%s] (min %s)"
1927 rung-is-marked rung-pos (point-min))
1928 (unless (get-text-property (1- rung-pos) 'c-is-sws)
1929 ;; Remove any `c-in-sws' property from the last char of
1930 ;; the rung before we mark it with `c-is-sws', so that we
1931 ;; won't connect with the remains of a broken "ladder".
1932 (c-remove-in-sws (1- rung-pos) rung-pos))
1933 (c-put-is-sws rung-is-marked
1934 rung-pos)
1935 (c-put-in-sws rung-is-marked
1936 (1- rung-pos))
1937 (setq rung-pos rung-is-marked
1938 last-put-in-sws-pos rung-pos))
1939
1940 (c-backward-comments)
1941 (setq cmt-skip-pos (point))
1942
1943 (cond
1944 ((and c-opt-cpp-prefix
1945 (/= cmt-skip-pos simple-ws-beg)
1946 (c-beginning-of-macro))
1947 ;; Inside a cpp directive. See if it should be skipped over.
1948 (let ((cpp-beg (point)))
1949
1950 ;; Move back over all line continuations in the region skipped
1951 ;; over by `c-backward-comments'. If we go past it then we
1952 ;; started inside the cpp directive.
1953 (goto-char simple-ws-beg)
1954 (beginning-of-line)
1955 (while (and (> (point) cmt-skip-pos)
1956 (progn (backward-char)
1957 (eq (char-before) ?\\)))
1958 (beginning-of-line))
1959
1960 (if (< (point) cmt-skip-pos)
1961 ;; Don't move past the cpp directive if we began inside
1962 ;; it. Note that the position at the end of the last line
1963 ;; of the macro is also considered to be within it.
1964 (progn (goto-char cmt-skip-pos)
1965 nil)
1966
1967 ;; It's worthwhile to spend a little bit of effort on finding
1968 ;; the end of the macro, to get a good `simple-ws-beg'
1969 ;; position for the cache. Note that `c-backward-comments'
1970 ;; could have stepped over some comments before going into
1971 ;; the macro, and then `simple-ws-beg' must be kept on the
1972 ;; same side of those comments.
1973 (goto-char simple-ws-beg)
1974 (skip-chars-backward " \t\n\r\f\v")
1975 (if (eq (char-before) ?\\)
1976 (forward-char))
1977 (forward-line 1)
1978 (if (< (point) simple-ws-beg)
1979 ;; Might happen if comments after the macro were skipped
1980 ;; over.
1981 (setq simple-ws-beg (point)))
1982
1983 (goto-char cpp-beg)
1984 t)))
1985
1986 ((/= (save-excursion
1987 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
1988 (setq next-rung-pos (point)))
1989 simple-ws-beg)
1990 ;; Skipped over comments. Must put point at the end of
1991 ;; the simple ws at point since we might be after a line
1992 ;; comment or cpp directive that's been partially
1993 ;; narrowed out, and we can't risk marking the simple ws
1994 ;; at the end of it.
1995 (goto-char next-rung-pos)
1996 t)))
1997
1998 ;; We've searched over a piece of non-white syntactic ws. See if this
1999 ;; can be cached.
2000 (setq next-rung-pos (point))
2001 (skip-chars-backward " \t\f\v")
2002
2003 (if (or
2004 ;; Cache if we started either from a marked rung or from a
2005 ;; completely uncached position.
2006 rung-is-marked
2007 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2008
2009 ;; Cache if there's a marked rung in the encountered simple ws.
2010 (save-excursion
2011 (skip-chars-backward " \t\n\r\f\v")
2012 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2013 'c-is-sws t)))
2014
2015 (progn
2016 (c-debug-sws-msg
2017 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2018 (point) (1+ next-rung-pos)
2019 simple-ws-beg (min (1+ rung-pos) (point-max))
2020 (point-min))
2021
2022 ;; Remove the properties for any nested ws that might be cached.
2023 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2024 ;; anyway.
2025 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2026 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2027 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2028 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2029 ;; Remove any `c-in-sws' property from the last char of
2030 ;; the rung before we mark it with `c-is-sws', so that we
2031 ;; won't connect with the remains of a broken "ladder".
2032 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2033 (c-put-is-sws simple-ws-beg
2034 rung-end-pos)
2035 (setq rung-is-marked t)))
2036 (c-put-in-sws (setq simple-ws-beg (point)
2037 last-put-in-sws-pos simple-ws-beg)
2038 rung-pos)
2039 (c-put-is-sws (setq rung-pos simple-ws-beg)
2040 (1+ next-rung-pos)))
2041
2042 (c-debug-sws-msg
2043 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2044 (point) (1+ next-rung-pos)
2045 simple-ws-beg (min (1+ rung-pos) (point-max))
2046 (point-min))
2047 (setq rung-pos next-rung-pos
2048 simple-ws-beg (point))
2049 ))
2050
2051 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2052 ;; another one before the point (which might occur when editing inside a
2053 ;; comment or macro).
2054 (when (eq last-put-in-sws-pos (point))
2055 (cond ((< (point-min) last-put-in-sws-pos)
2056 (c-debug-sws-msg
2057 "c-backward-sws clearing at %s for cache separation"
2058 (1- last-put-in-sws-pos))
2059 (c-remove-in-sws (1- last-put-in-sws-pos)
2060 last-put-in-sws-pos))
2061 ((> (point-min) 1)
2062 ;; If at bob and the buffer is narrowed, we have to clear the
2063 ;; character we're standing on instead since there might be a
2064 ;; `c-in-sws' before (point-min). In this case it's necessary
2065 ;; to clear both properties.
2066 (c-debug-sws-msg
2067 "c-backward-sws clearing thoroughly at %s for cache separation"
2068 last-put-in-sws-pos)
2069 (c-remove-is-and-in-sws last-put-in-sws-pos
2070 (1+ last-put-in-sws-pos)))))
2071 ))))
2072
2073 \f
2074 ;; Other whitespace tools
2075 (defun c-partial-ws-p (beg end)
2076 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2077 ;; region? This is a "heuristic" function. .....
2078 ;;
2079 ;; The motivation for the second bit is to check whether removing this
2080 ;; region would coalesce two symbols.
2081 ;;
2082 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2083 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2084 (save-excursion
2085 (let ((end+1 (min (1+ end) (point-max))))
2086 (or (progn (goto-char (max (point-min) (1- beg)))
2087 (c-skip-ws-forward end)
2088 (eq (point) end))
2089 (progn (goto-char beg)
2090 (c-skip-ws-forward end+1)
2091 (eq (point) end+1))))))
2092 \f
2093 ;; A system for finding noteworthy parens before the point.
2094
2095 (defconst c-state-cache-too-far 5000)
2096 ;; A maximum comfortable scanning distance, e.g. between
2097 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2098 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2099 ;; the cache and starting again from point-min or a beginning of defun. This
2100 ;; value can be tuned for efficiency or set to a lower value for testing.
2101
2102 (defvar c-state-cache nil)
2103 (make-variable-buffer-local 'c-state-cache)
2104 ;; The state cache used by `c-parse-state' to cut down the amount of
2105 ;; searching. It's the result from some earlier `c-parse-state' call. See
2106 ;; `c-parse-state''s doc string for details of its structure.
2107 ;;
2108 ;; The use of the cached info is more effective if the next
2109 ;; `c-parse-state' call is on a line close by the one the cached state
2110 ;; was made at; the cache can actually slow down a little if the
2111 ;; cached state was made very far back in the buffer. The cache is
2112 ;; most effective if `c-parse-state' is used on each line while moving
2113 ;; forward.
2114
2115 (defvar c-state-cache-good-pos 1)
2116 (make-variable-buffer-local 'c-state-cache-good-pos)
2117 ;; This is a position where `c-state-cache' is known to be correct, or
2118 ;; nil (see below). It's a position inside one of the recorded unclosed
2119 ;; parens or the top level, but not further nested inside any literal or
2120 ;; subparen that is closed before the last recorded position.
2121 ;;
2122 ;; The exact position is chosen to try to be close to yet earlier than
2123 ;; the position where `c-state-cache' will be called next. Right now
2124 ;; the heuristic is to set it to the position after the last found
2125 ;; closing paren (of any type) before the line on which
2126 ;; `c-parse-state' was called. That is chosen primarily to work well
2127 ;; with refontification of the current line.
2128 ;;
2129 ;; 2009-07-28: When `c-state-point-min' and the last position where
2130 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2131 ;; both in the same literal, there is no such "good position", and
2132 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2133 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2134 ;;
2135 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2136 ;; the middle of the desert, as long as it is not within a brace pair
2137 ;; recorded in `c-state-cache' or a paren/bracket pair.
2138
2139
2140 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2141 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2142 ;; speed up testing for non-literality.
2143 (defconst c-state-nonlit-pos-interval 3000)
2144 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2145
2146 (defvar c-state-nonlit-pos-cache nil)
2147 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2148 ;; A list of buffer positions which are known not to be in a literal or a cpp
2149 ;; construct. This is ordered with higher positions at the front of the list.
2150 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2151
2152 (defvar c-state-nonlit-pos-cache-limit 1)
2153 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2154 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2155 ;; reduced by buffer changes, and increased by invocations of
2156 ;; `c-state-literal-at'.
2157
2158 (defvar c-state-semi-nonlit-pos-cache nil)
2159 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2160 ;; A list of buffer positions which are known not to be in a literal. This is
2161 ;; ordered with higher positions at the front of the list. Only those which
2162 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2163
2164 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2165 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2166 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2167 ;; reduced by buffer changes, and increased by invocations of
2168 ;; `c-state-literal-at'. FIXME!!!
2169
2170 (defsubst c-state-pp-to-literal (from to)
2171 ;; Do a parse-partial-sexp from FROM to TO, returning either
2172 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2173 ;; (STATE) otherwise,
2174 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2175 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal.
2176 ;;
2177 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2178 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2179 ;; STATE are valid.
2180 (save-excursion
2181 (let ((s (parse-partial-sexp from to))
2182 ty)
2183 (when (or (nth 3 s) (nth 4 s)) ; in a string or comment
2184 (setq ty (cond
2185 ((nth 3 s) 'string)
2186 ((eq (nth 7 s) t) 'c++)
2187 (t 'c)))
2188 (parse-partial-sexp (point) (point-max)
2189 nil ; TARGETDEPTH
2190 nil ; STOPBEFORE
2191 s ; OLDSTATE
2192 'syntax-table)) ; stop at end of literal
2193 (if ty
2194 `(,s ,ty (,(nth 8 s) . ,(point)))
2195 `(,s)))))
2196
2197 (defun c-state-safe-place (here)
2198 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2199 ;; string, comment, or macro.
2200 ;;
2201 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2202 ;; MAY NOT contain any positions within macros, since macros are frequently
2203 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2204 ;; We cannot rely on this mechanism whilst determining a cache pos since
2205 ;; this function is also called from outwith `c-parse-state'.
2206 (save-restriction
2207 (widen)
2208 (save-excursion
2209 (let ((c c-state-nonlit-pos-cache)
2210 pos npos high-pos lit macro-beg macro-end)
2211 ;; Trim the cache to take account of buffer changes.
2212 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2213 (setq c (cdr c)))
2214 (setq c-state-nonlit-pos-cache c)
2215
2216 (while (and c (> (car c) here))
2217 (setq high-pos (car c))
2218 (setq c (cdr c)))
2219 (setq pos (or (car c) (point-min)))
2220
2221 (unless high-pos
2222 (while
2223 ;; Add an element to `c-state-nonlit-pos-cache' each iteration.
2224 (and
2225 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2226
2227 ;; Test for being in a literal. If so, go to after it.
2228 (progn
2229 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2230 (or (null lit)
2231 (prog1 (<= (cdr lit) here)
2232 (setq npos (cdr lit)))))
2233
2234 ;; Test for being in a macro. If so, go to after it.
2235 (progn
2236 (goto-char npos)
2237 (setq macro-beg
2238 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2239 (when macro-beg
2240 (c-syntactic-end-of-macro)
2241 (or (eobp) (forward-char))
2242 (setq macro-end (point)))
2243 (or (null macro-beg)
2244 (prog1 (<= macro-end here)
2245 (setq npos macro-end)))))
2246
2247 (setq pos npos)
2248 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2249 ;; Add one extra element above HERE so as to to avoid the previous
2250 ;; expensive calculation when the next call is close to the current
2251 ;; one. This is especially useful when inside a large macro.
2252 (setq c-state-nonlit-pos-cache (cons npos c-state-nonlit-pos-cache)))
2253
2254 (if (> pos c-state-nonlit-pos-cache-limit)
2255 (setq c-state-nonlit-pos-cache-limit pos))
2256 pos))))
2257
2258 (defun c-state-semi-safe-place (here)
2259 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2260 ;; string or comment. It may be in a macro.
2261 (save-restriction
2262 (widen)
2263 (save-excursion
2264 (let ((c c-state-semi-nonlit-pos-cache)
2265 pos npos high-pos lit macro-beg macro-end)
2266 ;; Trim the cache to take account of buffer changes.
2267 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2268 (setq c (cdr c)))
2269 (setq c-state-semi-nonlit-pos-cache c)
2270
2271 (while (and c (> (car c) here))
2272 (setq high-pos (car c))
2273 (setq c (cdr c)))
2274 (setq pos (or (car c) (point-min)))
2275
2276 (unless high-pos
2277 (while
2278 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2279 (and
2280 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2281
2282 ;; Test for being in a literal. If so, go to after it.
2283 (progn
2284 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2285 (or (null lit)
2286 (prog1 (<= (cdr lit) here)
2287 (setq npos (cdr lit))))))
2288
2289 (setq pos npos)
2290 (setq c-state-semi-nonlit-pos-cache
2291 (cons pos c-state-semi-nonlit-pos-cache))))
2292
2293 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2294 (setq c-state-semi-nonlit-pos-cache-limit pos))
2295 pos))))
2296
2297 (defun c-state-literal-at (here)
2298 ;; If position HERE is inside a literal, return (START . END), the
2299 ;; boundaries of the literal (which may be outside the accessible bit of the
2300 ;; buffer). Otherwise, return nil.
2301 ;;
2302 ;; This function is almost the same as `c-literal-limits'. Previously, it
2303 ;; differed in that it was a lower level function, and that it rigorously
2304 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2305 ;; virtually identical to this function.
2306 (save-restriction
2307 (widen)
2308 (save-excursion
2309 (let ((pos (c-state-safe-place here)))
2310 (car (cddr (c-state-pp-to-literal pos here)))))))
2311
2312 (defsubst c-state-lit-beg (pos)
2313 ;; Return the start of the literal containing POS, or POS itself.
2314 (or (car (c-state-literal-at pos))
2315 pos))
2316
2317 (defsubst c-state-cache-non-literal-place (pos state)
2318 ;; Return a position outside of a string/comment/macro at or before POS.
2319 ;; STATE is the parse-partial-sexp state at POS.
2320 (let ((res (if (or (nth 3 state) ; in a string?
2321 (nth 4 state)) ; in a comment?
2322 (nth 8 state)
2323 pos)))
2324 (save-excursion
2325 (goto-char res)
2326 (if (c-beginning-of-macro)
2327 (point)
2328 res))))
2329
2330 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2331 ;; Stuff to do with point-min, and coping with any literal there.
2332 (defvar c-state-point-min 1)
2333 (make-variable-buffer-local 'c-state-point-min)
2334 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2335 ;; narrowing is likely to affect the parens that are visible before the point.
2336
2337 (defvar c-state-point-min-lit-type nil)
2338 (make-variable-buffer-local 'c-state-point-min-lit-type)
2339 (defvar c-state-point-min-lit-start nil)
2340 (make-variable-buffer-local 'c-state-point-min-lit-start)
2341 ;; These two variables define the literal, if any, containing point-min.
2342 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2343 ;; literal. If there's no literal there, they're both nil.
2344
2345 (defvar c-state-min-scan-pos 1)
2346 (make-variable-buffer-local 'c-state-min-scan-pos)
2347 ;; This is the earliest buffer-pos from which scanning can be done. It is
2348 ;; either the end of the literal containing point-min, or point-min itself.
2349 ;; It becomes nil if the buffer is changed earlier than this point.
2350 (defun c-state-get-min-scan-pos ()
2351 ;; Return the lowest valid scanning pos. This will be the end of the
2352 ;; literal enclosing point-min, or point-min itself.
2353 (or c-state-min-scan-pos
2354 (save-restriction
2355 (save-excursion
2356 (widen)
2357 (goto-char c-state-point-min-lit-start)
2358 (if (eq c-state-point-min-lit-type 'string)
2359 (forward-sexp)
2360 (forward-comment 1))
2361 (setq c-state-min-scan-pos (point))))))
2362
2363 (defun c-state-mark-point-min-literal ()
2364 ;; Determine the properties of any literal containing POINT-MIN, setting the
2365 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2366 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2367 (let ((p-min (point-min))
2368 lit)
2369 (save-restriction
2370 (widen)
2371 (setq lit (c-state-literal-at p-min))
2372 (if lit
2373 (setq c-state-point-min-lit-type
2374 (save-excursion
2375 (goto-char (car lit))
2376 (cond
2377 ((looking-at c-block-comment-start-regexp) 'c)
2378 ((looking-at c-line-comment-starter) 'c++)
2379 (t 'string)))
2380 c-state-point-min-lit-start (car lit)
2381 c-state-min-scan-pos (cdr lit))
2382 (setq c-state-point-min-lit-type nil
2383 c-state-point-min-lit-start nil
2384 c-state-min-scan-pos p-min)))))
2385
2386
2387 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2388 ;; A variable which signals a brace dessert - helpful for reducing the number
2389 ;; of fruitless backward scans.
2390 (defvar c-state-brace-pair-desert nil)
2391 (make-variable-buffer-local 'c-state-brace-pair-desert)
2392 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2393 ;; that defun has searched backwards for a brace pair and not found one. Its
2394 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2395 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2396 ;; nil when at top level) and FROM is where the backward search started. It
2397 ;; is reset to nil in `c-invalidate-state-cache'.
2398
2399
2400 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2401 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2402 ;; list of like structure.
2403 (defmacro c-state-cache-top-lparen (&optional cache)
2404 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2405 ;; (default `c-state-cache') (or nil).
2406 (let ((cash (or cache 'c-state-cache)))
2407 `(if (consp (car ,cash))
2408 (caar ,cash)
2409 (car ,cash))))
2410
2411 (defmacro c-state-cache-top-paren (&optional cache)
2412 ;; Return the address of the latest brace/bracket/paren (whether left or
2413 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2414 (let ((cash (or cache 'c-state-cache)))
2415 `(if (consp (car ,cash))
2416 (cdar ,cash)
2417 (car ,cash))))
2418
2419 (defmacro c-state-cache-after-top-paren (&optional cache)
2420 ;; Return the position just after the latest brace/bracket/paren (whether
2421 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2422 (let ((cash (or cache 'c-state-cache)))
2423 `(if (consp (car ,cash))
2424 (cdar ,cash)
2425 (and (car ,cash)
2426 (1+ (car ,cash))))))
2427
2428 (defun c-get-cache-scan-pos (here)
2429 ;; From the state-cache, determine the buffer position from which we might
2430 ;; scan forward to HERE to update this cache. This position will be just
2431 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2432 ;; return the earliest position in the accessible region which isn't within
2433 ;; a literal. If the visible portion of the buffer is entirely within a
2434 ;; literal, return NIL.
2435 (let ((c c-state-cache) elt)
2436 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2437 (while (and c
2438 (>= (c-state-cache-top-lparen c) here))
2439 (setq c (cdr c)))
2440
2441 (setq elt (car c))
2442 (cond
2443 ((consp elt)
2444 (if (> (cdr elt) here)
2445 (1+ (car elt))
2446 (cdr elt)))
2447 (elt (1+ elt))
2448 ((<= (c-state-get-min-scan-pos) here)
2449 (c-state-get-min-scan-pos))
2450 (t nil))))
2451
2452 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2453 ;; Variables which keep track of preprocessor constructs.
2454 (defvar c-state-old-cpp-beg nil)
2455 (make-variable-buffer-local 'c-state-old-cpp-beg)
2456 (defvar c-state-old-cpp-end nil)
2457 (make-variable-buffer-local 'c-state-old-cpp-end)
2458 ;; These are the limits of the macro containing point at the previous call of
2459 ;; `c-parse-state', or nil.
2460
2461 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2462 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2463 (defun c-get-fallback-scan-pos (here)
2464 ;; Return a start position for building `c-state-cache' from
2465 ;; scratch. This will be at the top level, 2 defuns back.
2466 (save-excursion
2467 ;; Go back 2 bods, but ignore any bogus positions returned by
2468 ;; beginning-of-defun (i.e. open paren in column zero).
2469 (goto-char here)
2470 (let ((cnt 2))
2471 (while (not (or (bobp) (zerop cnt)))
2472 (c-beginning-of-defun-1) ; Pure elisp BOD.
2473 (if (eq (char-after) ?\{)
2474 (setq cnt (1- cnt)))))
2475 (point)))
2476
2477 (defun c-state-balance-parens-backwards (here- here+ top)
2478 ;; Return the position of the opening paren/brace/bracket before HERE- which
2479 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2480 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2481 ;;
2482 ;; ............................................
2483 ;; | |
2484 ;; ( [ ( .........#macro.. ) ( ) ] )
2485 ;; ^ ^ ^ ^
2486 ;; | | | |
2487 ;; return HERE- HERE+ TOP
2488 ;;
2489 ;; If there aren't enough opening paren/brace/brackets, return the position
2490 ;; of the outermost one found, or HERE- if there are none. If there are no
2491 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2492 ;; must not be inside literals. Only the accessible portion of the buffer
2493 ;; will be scanned.
2494
2495 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2496 ;; `here'. Go round the next loop each time we pass over such a ")". These
2497 ;; probably match "("s before `here-'.
2498 (let (pos pa ren+1 lonely-rens)
2499 (save-excursion
2500 (save-restriction
2501 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2502 (setq pos here+)
2503 (c-safe
2504 (while
2505 (setq ren+1 (scan-lists pos 1 1)) ; might signal
2506 (setq lonely-rens (cons ren+1 lonely-rens)
2507 pos ren+1)))))
2508
2509 ;; PART 2: Scan back before `here-' searching for the "("s
2510 ;; matching/mismatching the ")"s found above. We only need to direct the
2511 ;; caller to scan when we've encountered unmatched right parens.
2512 (setq pos here-)
2513 (when lonely-rens
2514 (c-safe
2515 (while
2516 (and lonely-rens ; actual values aren't used.
2517 (setq pa (scan-lists pos -1 1)))
2518 (setq pos pa)
2519 (setq lonely-rens (cdr lonely-rens)))))
2520 pos))
2521
2522 (defun c-parse-state-get-strategy (here good-pos)
2523 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2524 ;; to minimize the amount of scanning. HERE is the pertinent position in
2525 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2526 ;; its head trimmed) is known to be good, or nil if there is no such
2527 ;; position.
2528 ;;
2529 ;; The return value is a list, one of the following:
2530 ;;
2531 ;; o - ('forward CACHE-POS START-POINT) - scan forward from START-POINT,
2532 ;; which is not less than CACHE-POS.
2533 ;; o - ('backward CACHE-POS nil) - scan backwards (from HERE).
2534 ;; o - ('BOD nil START-POINT) - scan forwards from START-POINT, which is at the
2535 ;; top level.
2536 ;; o - ('IN-LIT nil nil) - point is inside the literal containing point-min.
2537 ;; , where CACHE-POS is the highest position recorded in `c-state-cache' at
2538 ;; or below HERE.
2539 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2540 BOD-pos ; position of 2nd BOD before HERE.
2541 strategy ; 'forward, 'backward, 'BOD, or 'IN-LIT.
2542 start-point
2543 how-far) ; putative scanning distance.
2544 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2545 (cond
2546 ((< here (c-state-get-min-scan-pos))
2547 (setq strategy 'IN-LIT
2548 start-point nil
2549 cache-pos nil
2550 how-far 0))
2551 ((<= good-pos here)
2552 (setq strategy 'forward
2553 start-point (max good-pos cache-pos)
2554 how-far (- here start-point)))
2555 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2556 (setq strategy 'backward
2557 how-far (- good-pos here)))
2558 (t
2559 (setq strategy 'forward
2560 how-far (- here cache-pos)
2561 start-point cache-pos)))
2562
2563 ;; Might we be better off starting from the top level, two defuns back,
2564 ;; instead?
2565 (when (> how-far c-state-cache-too-far)
2566 (setq BOD-pos (c-get-fallback-scan-pos here)) ; somewhat EXPENSIVE!!!
2567 (if (< (- here BOD-pos) how-far)
2568 (setq strategy 'BOD
2569 start-point BOD-pos)))
2570
2571 (list
2572 strategy
2573 (and (memq strategy '(forward backward)) cache-pos)
2574 (and (memq strategy '(forward BOD)) start-point))))
2575
2576
2577 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2578 ;; Routines which change `c-state-cache' and associated values.
2579 (defun c-renarrow-state-cache ()
2580 ;; The region (more precisely, point-min) has changed since we
2581 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2582 (if (< (point-min) c-state-point-min)
2583 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2584 ;; It would be possible to do a better job here and recalculate the top
2585 ;; only.
2586 (progn
2587 (c-state-mark-point-min-literal)
2588 (setq c-state-cache nil
2589 c-state-cache-good-pos c-state-min-scan-pos
2590 c-state-brace-pair-desert nil))
2591
2592 ;; point-min has MOVED FORWARD.
2593
2594 ;; Is the new point-min inside a (different) literal?
2595 (unless (and c-state-point-min-lit-start ; at prev. point-min
2596 (< (point-min) (c-state-get-min-scan-pos)))
2597 (c-state-mark-point-min-literal))
2598
2599 ;; Cut off a bit of the tail from `c-state-cache'.
2600 (let ((ptr (cons nil c-state-cache))
2601 pa)
2602 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2603 (>= pa (point-min)))
2604 (setq ptr (cdr ptr)))
2605
2606 (when (consp ptr)
2607 (if (eq (cdr ptr) c-state-cache)
2608 (setq c-state-cache nil
2609 c-state-cache-good-pos c-state-min-scan-pos)
2610 (setcdr ptr nil)
2611 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2612 )))
2613
2614 (setq c-state-point-min (point-min)))
2615
2616 (defun c-append-lower-brace-pair-to-state-cache (from &optional upper-lim)
2617 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2618 ;; of nesting (not necessarily immediately preceding), push a cons onto
2619 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2620 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2621 ;; UPPER-LIM.
2622 ;;
2623 ;; Return non-nil when this has been done.
2624 ;;
2625 ;; The situation it copes with is this transformation:
2626 ;;
2627 ;; OLD: { (.) {...........}
2628 ;; ^ ^
2629 ;; FROM HERE
2630 ;;
2631 ;; NEW: { {....} (.) {.........
2632 ;; ^ ^ ^
2633 ;; LOWER BRACE PAIR HERE or HERE
2634 ;;
2635 ;; This routine should be fast. Since it can get called a LOT, we maintain
2636 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2637 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2638 (save-excursion
2639 (save-restriction
2640 (let ((bra from) ce ; Positions of "{" and "}".
2641 new-cons
2642 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2643 (macro-start-or-from
2644 (progn (goto-char from)
2645 (c-beginning-of-macro)
2646 (point))))
2647 (or upper-lim (setq upper-lim from))
2648
2649 ;; If we're essentially repeating a fruitless search, just give up.
2650 (unless (and c-state-brace-pair-desert
2651 (eq cache-pos (car c-state-brace-pair-desert))
2652 (<= from (cdr c-state-brace-pair-desert)))
2653 ;; DESERT-LIM. Only search what we absolutely need to,
2654 (let ((desert-lim
2655 (and c-state-brace-pair-desert
2656 (eq cache-pos (car c-state-brace-pair-desert))
2657 (cdr c-state-brace-pair-desert)))
2658 ;; CACHE-LIM. This limit will be necessary when an opening
2659 ;; paren at `cache-pos' has just had its matching close paren
2660 ;; inserted. `cache-pos' continues to be a search bound, even
2661 ;; though the algorithm below would skip over the new paren
2662 ;; pair.
2663 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2664 (narrow-to-region
2665 (cond
2666 ((and desert-lim cache-lim)
2667 (max desert-lim cache-lim))
2668 (desert-lim)
2669 (cache-lim)
2670 ((point-min)))
2671 (point-max)))
2672
2673 ;; In the next pair of nested loops, the inner one moves back past a
2674 ;; pair of (mis-)matching parens or brackets; the outer one moves
2675 ;; back over a sequence of unmatched close brace/paren/bracket each
2676 ;; time round.
2677 (while
2678 (progn
2679 (c-safe
2680 (while
2681 (and (setq ce (scan-lists bra -1 -1)) ; back past )/]/}; might signal
2682 (setq bra (scan-lists ce -1 1)) ; back past (/[/{; might signal
2683 (or (> ce upper-lim)
2684 (not (eq (char-after bra) ?\{))
2685 (and (goto-char bra)
2686 (c-beginning-of-macro)
2687 (< (point) macro-start-or-from))))))
2688 (and ce (< ce bra)))
2689 (setq bra ce)) ; If we just backed over an unbalanced closing
2690 ; brace, ignore it.
2691
2692 (if (and ce (< bra ce) (eq (char-after bra) ?\{))
2693 ;; We've found the desired brace-pair.
2694 (progn
2695 (setq new-cons (cons bra (1+ ce)))
2696 (cond
2697 ((consp (car c-state-cache))
2698 (setcar c-state-cache new-cons))
2699 ((and (numberp (car c-state-cache)) ; probably never happens
2700 (< ce (car c-state-cache)))
2701 (setcdr c-state-cache
2702 (cons new-cons (cdr c-state-cache))))
2703 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2704
2705 ;; We haven't found a brace pair. Record this in the cache.
2706 (setq c-state-brace-pair-desert (cons cache-pos from))))))))
2707
2708 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2709 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2710 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2711 ;; "push" "a" brace pair onto `c-state-cache'.
2712 ;;
2713 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2714 ;; otherwise push it normally.
2715 ;;
2716 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2717 ;; latter is inside a macro, not being a macro containing
2718 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2719 ;; base pair. This latter case is assumed to be rare.
2720 ;;
2721 ;; Note: POINT is not preserved in this routine.
2722 (if bra+1
2723 (if (or (> bra+1 macro-start-or-here)
2724 (progn (goto-char bra+1)
2725 (not (c-beginning-of-macro))))
2726 (setq c-state-cache
2727 (cons (cons (1- bra+1)
2728 (scan-lists bra+1 1 1))
2729 (if (consp (car c-state-cache))
2730 (cdr c-state-cache)
2731 c-state-cache)))
2732 ;; N.B. This defsubst codes one method for the simple, normal case,
2733 ;; and a more sophisticated, slower way for the general case. Don't
2734 ;; eliminate this defsubst - it's a speed optimization.
2735 (c-append-lower-brace-pair-to-state-cache (1- bra+1)))))
2736
2737 (defun c-append-to-state-cache (from)
2738 ;; Scan the buffer from FROM to (point-max), adding elements into
2739 ;; `c-state-cache' for braces etc. Return a candidate for
2740 ;; `c-state-cache-good-pos'.
2741 ;;
2742 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2743 ;; any. Typically, it is immediately after it. It must not be inside a
2744 ;; literal.
2745 (let ((here-bol (c-point 'bol (point-max)))
2746 (macro-start-or-here
2747 (save-excursion (goto-char (point-max))
2748 (if (c-beginning-of-macro)
2749 (point)
2750 (point-max))))
2751 pa+1 ; pos just after an opening PAren (or brace).
2752 (ren+1 from) ; usually a pos just after an closing paREN etc.
2753 ; Is actually the pos. to scan for a (/{/[ from,
2754 ; which sometimes is after a silly )/}/].
2755 paren+1 ; Pos after some opening or closing paren.
2756 paren+1s ; A list of `paren+1's; used to determine a
2757 ; good-pos.
2758 bra+1 ce+1 ; just after L/R bra-ces.
2759 bra+1s ; list of OLD values of bra+1.
2760 mstart) ; start of a macro.
2761
2762 (save-excursion
2763 ;; Each time round the following loop, we enter a successively deeper
2764 ;; level of brace/paren nesting. (Except sometimes we "continue at
2765 ;; the existing level".) `pa+1' is a pos inside an opening
2766 ;; brace/paren/bracket, usually just after it.
2767 (while
2768 (progn
2769 ;; Each time round the next loop moves forward over an opening then
2770 ;; a closing brace/bracket/paren. This loop is white hot, so it
2771 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2772 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2773 ;; call of `scan-lists' signals an error, which happens when there
2774 ;; are no more b/b/p's to scan.
2775 (c-safe
2776 (while t
2777 (setq pa+1 (scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2778 paren+1s (cons pa+1 paren+1s))
2779 (setq ren+1 (scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2780 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2781 (setq bra+1 pa+1))
2782 (setcar paren+1s ren+1)))
2783
2784 (if (and pa+1 (> pa+1 ren+1))
2785 ;; We've just entered a deeper nesting level.
2786 (progn
2787 ;; Insert the brace pair (if present) and the single open
2788 ;; paren/brace/bracket into `c-state-cache' It cannot be
2789 ;; inside a macro, except one around point, because of what
2790 ;; `c-neutralize-syntax-in-CPP' has done.
2791 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2792 ;; Insert the opening brace/bracket/paren position.
2793 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2794 ;; Clear admin stuff for the next more nested part of the scan.
2795 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2796 t) ; Carry on the loop
2797
2798 ;; All open p/b/b's at this nesting level, if any, have probably
2799 ;; been closed by matching/mismatching ones. We're probably
2800 ;; finished - we just need to check for having found an
2801 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2802 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2803 (c-safe (setq ren+1 (scan-lists ren+1 1 1)))))) ; acts as loop control.
2804
2805 ;; Record the final, innermost, brace-pair if there is one.
2806 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2807
2808 ;; Determine a good pos
2809 (while (and (setq paren+1 (car paren+1s))
2810 (> (if (> paren+1 macro-start-or-here)
2811 paren+1
2812 (goto-char paren+1)
2813 (setq mstart (and (c-beginning-of-macro)
2814 (point)))
2815 (or mstart paren+1))
2816 here-bol))
2817 (setq paren+1s (cdr paren+1s)))
2818 (cond
2819 ((and paren+1 mstart)
2820 (min paren+1 mstart))
2821 (paren+1)
2822 (t from)))))
2823
2824 (defun c-remove-stale-state-cache (good-pos pps-point)
2825 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2826 ;; not be in it when it is amended for position (point-max).
2827 ;; Additionally, the "outermost" open-brace entry before (point-max)
2828 ;; will be converted to a cons if the matching close-brace is scanned.
2829 ;;
2830 ;; GOOD-POS is a "maximal" "safe position" - there must be no open
2831 ;; parens/braces/brackets between GOOD-POS and (point-max).
2832 ;;
2833 ;; As a second thing, calculate the result of parse-partial-sexp at
2834 ;; PPS-POINT, w.r.t. GOOD-POS. The motivation here is that
2835 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
2836 ;; adjust it to get outside a string/comment. (Sorry about this! The code
2837 ;; needs to be FAST).
2838 ;;
2839 ;; Return a list (GOOD-POS SCAN-BACK-POS PPS-STATE), where
2840 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
2841 ;; to be good (we aim for this to be as high as possible);
2842 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
2843 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
2844 ;; position to scan backwards from.
2845 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
2846 (save-restriction
2847 (narrow-to-region 1 (point-max))
2848 (save-excursion
2849 (let* ((in-macro-start ; start of macro containing (point-max) or nil.
2850 (save-excursion
2851 (goto-char (point-max))
2852 (and (c-beginning-of-macro)
2853 (point))))
2854 (good-pos-actual-macro-start ; Start of macro containing good-pos
2855 ; or nil
2856 (and (< good-pos (point-max))
2857 (save-excursion
2858 (goto-char good-pos)
2859 (and (c-beginning-of-macro)
2860 (point)))))
2861 (good-pos-actual-macro-end ; End of this macro, (maybe
2862 ; (point-max)), or nil.
2863 (and good-pos-actual-macro-start
2864 (save-excursion
2865 (goto-char good-pos-actual-macro-start)
2866 (c-end-of-macro)
2867 (point))))
2868 pps-state ; Will be 9 or 10 elements long.
2869 pos
2870 upper-lim ; ,beyond which `c-state-cache' entries are removed
2871 scan-back-pos
2872 pair-beg pps-point-state target-depth)
2873
2874 ;; Remove entries beyond (point-max). Also remove any entries inside
2875 ;; a macro, unless (point-max) is in the same macro.
2876 (setq upper-lim
2877 (if (or (null c-state-old-cpp-beg)
2878 (and (> (point-max) c-state-old-cpp-beg)
2879 (< (point-max) c-state-old-cpp-end)))
2880 (point-max)
2881 (min (point-max) c-state-old-cpp-beg)))
2882 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
2883 (setq c-state-cache (cdr c-state-cache)))
2884 ;; If `upper-lim' is inside the last recorded brace pair, remove its
2885 ;; RBrace and indicate we'll need to search backwards for a previous
2886 ;; brace pair.
2887 (when (and c-state-cache
2888 (consp (car c-state-cache))
2889 (> (cdar c-state-cache) upper-lim))
2890 (setcar c-state-cache (caar c-state-cache))
2891 (setq scan-back-pos (car c-state-cache)))
2892
2893 ;; The next loop jumps forward out of a nested level of parens each
2894 ;; time round; the corresponding elements in `c-state-cache' are
2895 ;; removed. `pos' is just after the brace-pair or the open paren at
2896 ;; (car c-state-cache). There can be no open parens/braces/brackets
2897 ;; between `good-pos'/`good-pos-actual-macro-start' and (point-max),
2898 ;; due to the interface spec to this function.
2899 (setq pos (if (and good-pos-actual-macro-end
2900 (not (eq good-pos-actual-macro-start
2901 in-macro-start)))
2902 (1+ good-pos-actual-macro-end) ; get outside the macro as
2903 ; marked by a `category' text property.
2904 good-pos))
2905 (goto-char pos)
2906 (while (and c-state-cache
2907 (< (point) (point-max)))
2908 (cond
2909 ((null pps-state) ; first time through
2910 (setq target-depth -1))
2911 ((eq (car pps-state) target-depth) ; found closing ),},]
2912 (setq target-depth (1- (car pps-state))))
2913 ;; Do nothing when we've merely reached pps-point.
2914 )
2915
2916 ;; Scan!
2917 (setq pps-state
2918 (parse-partial-sexp
2919 (point) (if (< (point) pps-point) pps-point (point-max))
2920 target-depth
2921 nil pps-state))
2922
2923 (if (= (point) pps-point)
2924 (setq pps-point-state pps-state))
2925
2926 (when (eq (car pps-state) target-depth)
2927 (setq pos (point)) ; POS is now just after an R-paren/brace.
2928 (cond
2929 ((and (consp (car c-state-cache))
2930 (eq (point) (cdar c-state-cache)))
2931 ;; We've just moved out of the paren pair containing the brace-pair
2932 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
2933 ;; and is potentially where the open brace of a cons in
2934 ;; c-state-cache will be.
2935 (setq pair-beg (car-safe (cdr c-state-cache))
2936 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
2937 ((numberp (car c-state-cache))
2938 (setq pair-beg (car c-state-cache)
2939 c-state-cache (cdr c-state-cache))) ; remove this
2940 ; containing Lparen
2941 ((numberp (cadr c-state-cache))
2942 (setq pair-beg (cadr c-state-cache)
2943 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
2944 ; together with enclosed brace pair.
2945 ;; (t nil) ; Ignore an unmated Rparen.
2946 )))
2947
2948 (if (< (point) pps-point)
2949 (setq pps-state (parse-partial-sexp (point) pps-point
2950 nil nil ; TARGETDEPTH, STOPBEFORE
2951 pps-state)))
2952
2953 ;; If the last paren pair we moved out of was actually a brace pair,
2954 ;; insert it into `c-state-cache'.
2955 (when (and pair-beg (eq (char-after pair-beg) ?{))
2956 (if (consp (car-safe c-state-cache))
2957 (setq c-state-cache (cdr c-state-cache)))
2958 (setq c-state-cache (cons (cons pair-beg pos)
2959 c-state-cache)))
2960
2961 (list pos scan-back-pos pps-state)))))
2962
2963 (defun c-remove-stale-state-cache-backwards (here cache-pos)
2964 ;; Strip stale elements of `c-state-cache' by moving backwards through the
2965 ;; buffer, and inform the caller of the scenario detected.
2966 ;;
2967 ;; HERE is the position we're setting `c-state-cache' for.
2968 ;; CACHE-POS is just after the latest recorded position in `c-state-cache'
2969 ;; before HERE, or a position at or near point-min which isn't in a
2970 ;; literal.
2971 ;;
2972 ;; This function must only be called only when (> `c-state-cache-good-pos'
2973 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
2974 ;; optimized to eliminate (or minimize) scanning between these two
2975 ;; positions.
2976 ;;
2977 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
2978 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
2979 ;; could become so after missing elements are inserted into
2980 ;; `c-state-cache'. This is JUST AFTER an opening or closing
2981 ;; brace/paren/bracket which is already in `c-state-cache' or just before
2982 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
2983 ;; before `here''s line, or the start of the literal containing it.
2984 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
2985 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
2986 ;; to scan backwards from.
2987 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
2988 ;; POS and HERE which aren't recorded in `c-state-cache'.
2989 ;;
2990 ;; The comments in this defun use "paren" to mean parenthesis or square
2991 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
2992 ;;
2993 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
2994 ;; | | | | | |
2995 ;; CP E here D C good
2996 (let ((pos c-state-cache-good-pos)
2997 pa ren ; positions of "(" and ")"
2998 dropped-cons ; whether the last element dropped from `c-state-cache'
2999 ; was a cons (representing a brace-pair)
3000 good-pos ; see above.
3001 lit ; (START . END) of a literal containing some point.
3002 here-lit-start here-lit-end ; bounds of literal containing `here'
3003 ; or `here' itself.
3004 here- here+ ; start/end of macro around HERE, or HERE
3005 (here-bol (c-point 'bol here))
3006 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3007
3008 ;; Remove completely irrelevant entries from `c-state-cache'.
3009 (while (and c-state-cache
3010 (>= (setq pa (c-state-cache-top-lparen)) here))
3011 (setq dropped-cons (consp (car c-state-cache)))
3012 (setq c-state-cache (cdr c-state-cache))
3013 (setq pos pa))
3014 ;; At this stage, (> pos here);
3015 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3016
3017 (cond
3018 ((and (consp (car c-state-cache))
3019 (> (cdar c-state-cache) here))
3020 ;; CASE 1: The top of the cache is a brace pair which now encloses
3021 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3022 ;; knowledge of what's inside these braces, we have no alternative but
3023 ;; to direct the caller to scan the buffer from the opening brace.
3024 (setq pos (caar c-state-cache))
3025 (setcar c-state-cache pos)
3026 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3027 ; entry into a { entry, so the caller needs to
3028 ; search for a brace pair before the {.
3029
3030 ;; `here' might be inside a literal. Check for this.
3031 ((progn
3032 (setq lit (c-state-literal-at here)
3033 here-lit-start (or (car lit) here)
3034 here-lit-end (or (cdr lit) here))
3035 ;; Has `here' just "newly entered" a macro?
3036 (save-excursion
3037 (goto-char here-lit-start)
3038 (if (and (c-beginning-of-macro)
3039 (or (null c-state-old-cpp-beg)
3040 (not (= (point) c-state-old-cpp-beg))))
3041 (progn
3042 (setq here- (point))
3043 (c-end-of-macro)
3044 (setq here+ (point)))
3045 (setq here- here-lit-start
3046 here+ here-lit-end)))
3047
3048 ;; `here' might be nested inside any depth of parens (or brackets but
3049 ;; not braces). Scan backwards to find the outermost such opening
3050 ;; paren, if there is one. This will be the scan position to return.
3051 (save-restriction
3052 (narrow-to-region cache-pos (point-max))
3053 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3054 nil)) ; for the cond
3055
3056 ((< pos here-lit-start)
3057 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3058 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3059 ;; a brace pair preceding this, it will already be in `c-state-cache',
3060 ;; unless there was a brace pair after it, i.e. there'll only be one to
3061 ;; scan for if we've just deleted one.
3062 (list pos (and dropped-cons pos) t)) ; Return value.
3063
3064 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3065 ;; Further forward scanning isn't needed, but we still need to find a
3066 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3067 ((progn
3068 (save-restriction
3069 (narrow-to-region here-bol (point-max))
3070 (setq pos here-lit-start)
3071 (c-safe (while (setq pa (scan-lists pos -1 1))
3072 (setq pos pa)))) ; might signal
3073 nil)) ; for the cond
3074
3075 ((setq ren (c-safe-scan-lists pos -1 -1 too-far-back))
3076 ;; CASE 3: After a }/)/] before `here''s BOL.
3077 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3078
3079 (t
3080 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3081 ;; literal containing it.
3082 (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3083 (list good-pos (and dropped-cons good-pos) nil)))))
3084
3085
3086 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3087 ;; Externally visible routines.
3088
3089 (defun c-state-cache-init ()
3090 (setq c-state-cache nil
3091 c-state-cache-good-pos 1
3092 c-state-nonlit-pos-cache nil
3093 c-state-nonlit-pos-cache-limit 1
3094 c-state-semi-nonlit-pos-cache nil
3095 c-state-semi-nonlit-pos-cache-limit 1
3096 c-state-brace-pair-desert nil
3097 c-state-point-min 1
3098 c-state-point-min-lit-type nil
3099 c-state-point-min-lit-start nil
3100 c-state-min-scan-pos 1
3101 c-state-old-cpp-beg nil
3102 c-state-old-cpp-end nil)
3103 (c-state-mark-point-min-literal))
3104
3105 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3106 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3107 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3108 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3109 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3110 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3111 ;; (defun c-state-dump ()
3112 ;; ;; For debugging.
3113 ;; ;(message
3114 ;; (concat
3115 ;; (c-sc-qde c-state-cache)
3116 ;; (c-sc-de c-state-cache-good-pos)
3117 ;; (c-sc-qde c-state-nonlit-pos-cache)
3118 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3119 ;; (c-sc-qde c-state-brace-pair-desert)
3120 ;; (c-sc-de c-state-point-min)
3121 ;; (c-sc-de c-state-point-min-lit-type)
3122 ;; (c-sc-de c-state-point-min-lit-start)
3123 ;; (c-sc-de c-state-min-scan-pos)
3124 ;; (c-sc-de c-state-old-cpp-beg)
3125 ;; (c-sc-de c-state-old-cpp-end)))
3126 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3127
3128 (defun c-invalidate-state-cache-1 (here)
3129 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3130 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3131 ;; left in a consistent state.
3132 ;;
3133 ;; This is much like `c-whack-state-after', but it never changes a paren
3134 ;; pair element into an open paren element. Doing that would mean that the
3135 ;; new open paren wouldn't have the required preceding paren pair element.
3136 ;;
3137 ;; This function is called from c-after-change.
3138
3139 ;; The caches of non-literals:
3140 (if (< here c-state-nonlit-pos-cache-limit)
3141 (setq c-state-nonlit-pos-cache-limit here))
3142 (if (< here c-state-semi-nonlit-pos-cache-limit)
3143 (setq c-state-semi-nonlit-pos-cache-limit here))
3144
3145 ;; `c-state-cache':
3146 ;; Case 1: if `here' is in a literal containing point-min, everything
3147 ;; becomes (or is already) nil.
3148 (if (or (null c-state-cache-good-pos)
3149 (< here (c-state-get-min-scan-pos)))
3150 (setq c-state-cache nil
3151 c-state-cache-good-pos nil
3152 c-state-min-scan-pos nil)
3153
3154 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3155 ;; below `here'. To maintain its consistency, we may need to insert a new
3156 ;; brace pair.
3157 (let ((here-bol (c-point 'bol here))
3158 too-high-pa ; recorded {/(/[ next above here, or nil.
3159 dropped-cons ; was the last removed element a brace pair?
3160 pa)
3161 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3162 (while (and c-state-cache
3163 (>= (setq pa (c-state-cache-top-paren)) here))
3164 (setq dropped-cons (consp (car c-state-cache))
3165 too-high-pa (c-state-cache-top-lparen)
3166 c-state-cache (cdr c-state-cache)))
3167
3168 ;; Do we need to add in an earlier brace pair, having lopped one off?
3169 (if (and dropped-cons
3170 (< too-high-pa (+ here c-state-cache-too-far)))
3171 (c-append-lower-brace-pair-to-state-cache too-high-pa here-bol))
3172 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3173 (c-state-get-min-scan-pos)))))
3174
3175 ;; The brace-pair desert marker:
3176 (when (car c-state-brace-pair-desert)
3177 (if (< here (car c-state-brace-pair-desert))
3178 (setq c-state-brace-pair-desert nil)
3179 (if (< here (cdr c-state-brace-pair-desert))
3180 (setcdr c-state-brace-pair-desert here)))))
3181
3182 (defun c-parse-state-1 ()
3183 ;; Find and record all noteworthy parens between some good point earlier in
3184 ;; the file and point. That good point is at least the beginning of the
3185 ;; top-level construct we are in, or the beginning of the preceding
3186 ;; top-level construct if we aren't in one.
3187 ;;
3188 ;; The returned value is a list of the noteworthy parens with the last one
3189 ;; first. If an element in the list is an integer, it's the position of an
3190 ;; open paren (of any type) which has not been closed before the point. If
3191 ;; an element is a cons, it gives the position of a closed BRACE paren
3192 ;; pair[*]; the car is the start brace position and the cdr is the position
3193 ;; following the closing brace. Only the last closed brace paren pair
3194 ;; before each open paren and before the point is recorded, and thus the
3195 ;; state never contains two cons elements in succession. When a close brace
3196 ;; has no matching open brace (e.g., the matching brace is outside the
3197 ;; visible region), it is not represented in the returned value.
3198 ;;
3199 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3200 ;; This defun explicitly treats mismatching parens/braces/brackets as
3201 ;; matching. It is the open brace which makes it a "brace" pair.
3202 ;;
3203 ;; If POINT is within a macro, open parens and brace pairs within
3204 ;; THIS macro MIGHT be recorded. This depends on whether their
3205 ;; syntactic properties have been suppressed by
3206 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3207 ;;
3208 ;; Currently no characters which are given paren syntax with the
3209 ;; syntax-table property are recorded, i.e. angle bracket arglist
3210 ;; parens are never present here. Note that this might change.
3211 ;;
3212 ;; BUG: This function doesn't cope entirely well with unbalanced
3213 ;; parens in macros. (2008-12-11: this has probably been resolved
3214 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3215 ;; following case the brace before the macro isn't balanced with the
3216 ;; one after it:
3217 ;;
3218 ;; {
3219 ;; #define X {
3220 ;; }
3221 ;;
3222 ;; Note to maintainers: this function DOES get called with point
3223 ;; within comments and strings, so don't assume it doesn't!
3224 ;;
3225 ;; This function might do hidden buffer changes.
3226 (let* ((here (point))
3227 (here-bopl (c-point 'bopl))
3228 strategy ; 'forward, 'backward etc..
3229 ;; Candidate positions to start scanning from:
3230 cache-pos ; highest position below HERE already existing in
3231 ; cache (or 1).
3232 good-pos
3233 start-point
3234 bopl-state
3235 res
3236 scan-backward-pos scan-forward-p) ; used for 'backward.
3237 ;; If POINT-MIN has changed, adjust the cache
3238 (unless (= (point-min) c-state-point-min)
3239 (c-renarrow-state-cache))
3240
3241 ;; Strategy?
3242 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3243 strategy (car res)
3244 cache-pos (cadr res)
3245 start-point (nth 2 res))
3246
3247 (when (eq strategy 'BOD)
3248 (setq c-state-cache nil
3249 c-state-cache-good-pos start-point))
3250
3251 ;; SCAN!
3252 (save-restriction
3253 (cond
3254 ((memq strategy '(forward BOD))
3255 (narrow-to-region (point-min) here)
3256 (setq res (c-remove-stale-state-cache start-point here-bopl))
3257 (setq cache-pos (car res)
3258 scan-backward-pos (cadr res)
3259 bopl-state (car (cddr res))) ; will be nil if (< here-bopl
3260 ; start-point)
3261 (if scan-backward-pos
3262 (c-append-lower-brace-pair-to-state-cache scan-backward-pos))
3263 (setq good-pos
3264 (c-append-to-state-cache cache-pos))
3265 (setq c-state-cache-good-pos
3266 (if (and bopl-state
3267 (< good-pos (- here c-state-cache-too-far)))
3268 (c-state-cache-non-literal-place here-bopl bopl-state)
3269 good-pos)))
3270
3271 ((eq strategy 'backward)
3272 (setq res (c-remove-stale-state-cache-backwards here cache-pos)
3273 good-pos (car res)
3274 scan-backward-pos (cadr res)
3275 scan-forward-p (car (cddr res)))
3276 (if scan-backward-pos
3277 (c-append-lower-brace-pair-to-state-cache
3278 scan-backward-pos))
3279 (setq c-state-cache-good-pos
3280 (if scan-forward-p
3281 (progn (narrow-to-region (point-min) here)
3282 (c-append-to-state-cache good-pos))
3283 good-pos)))
3284
3285 (t ; (eq strategy 'IN-LIT)
3286 (setq c-state-cache nil
3287 c-state-cache-good-pos nil)))))
3288
3289 c-state-cache)
3290
3291 (defun c-invalidate-state-cache (here)
3292 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3293 ;;
3294 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3295 ;; of all parens in preprocessor constructs, except for any such construct
3296 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3297 ;; worrying further about macros and template delimiters.
3298 (c-with-<->-as-parens-suppressed
3299 (if (and c-state-old-cpp-beg
3300 (< c-state-old-cpp-beg here))
3301 (c-with-all-but-one-cpps-commented-out
3302 c-state-old-cpp-beg
3303 (min c-state-old-cpp-end here)
3304 (c-invalidate-state-cache-1 here))
3305 (c-with-cpps-commented-out
3306 (c-invalidate-state-cache-1 here)))))
3307
3308 (defun c-parse-state ()
3309 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3310 ;; description of the functionality and return value.
3311 ;;
3312 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3313 ;; of all parens in preprocessor constructs, except for any such construct
3314 ;; containing point. We can then call `c-parse-state-1' without worrying
3315 ;; further about macros and template delimiters.
3316 (let (here-cpp-beg here-cpp-end)
3317 (save-excursion
3318 (when (c-beginning-of-macro)
3319 (setq here-cpp-beg (point))
3320 (unless
3321 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3322 here-cpp-beg)
3323 (setq here-cpp-beg nil here-cpp-end nil))))
3324 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3325 ;; subsystem.
3326 (prog1
3327 (c-with-<->-as-parens-suppressed
3328 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3329 (c-with-all-but-one-cpps-commented-out
3330 here-cpp-beg here-cpp-end
3331 (c-parse-state-1))
3332 (c-with-cpps-commented-out
3333 (c-parse-state-1))))
3334 (setq c-state-old-cpp-beg (and here-cpp-beg (copy-marker here-cpp-beg t))
3335 c-state-old-cpp-end (and here-cpp-end (copy-marker here-cpp-end t)))
3336 )))
3337
3338 ;; Debug tool to catch cache inconsistencies. This is called from
3339 ;; 000tests.el.
3340 (defvar c-debug-parse-state nil)
3341 (unless (fboundp 'c-real-parse-state)
3342 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3343 (cc-bytecomp-defun c-real-parse-state)
3344
3345 (defvar c-parse-state-state nil)
3346 (defun c-record-parse-state-state ()
3347 (setq c-parse-state-state
3348 (mapcar
3349 (lambda (arg)
3350 (cons arg (symbol-value arg)))
3351 '(c-state-cache
3352 c-state-cache-good-pos
3353 c-state-nonlit-pos-cache
3354 c-state-nonlit-pos-cache-limit
3355 c-state-semi-nonlit-pos-cache
3356 c-state-semi-nonlit-pos-cache-limit
3357 c-state-brace-pair-desert
3358 c-state-point-min
3359 c-state-point-min-lit-type
3360 c-state-point-min-lit-start
3361 c-state-min-scan-pos
3362 c-state-old-cpp-beg
3363 c-state-old-cpp-end))))
3364 (defun c-replay-parse-state-state ()
3365 (message
3366 (concat "(setq "
3367 (mapconcat
3368 (lambda (arg)
3369 (format "%s %s%s" (car arg) (if (atom (cdr arg)) "" "'") (cdr arg)))
3370 c-parse-state-state " ")
3371 ")")))
3372
3373 (defun c-debug-parse-state ()
3374 (let ((here (point)) (res1 (c-real-parse-state)) res2)
3375 (let ((c-state-cache nil)
3376 (c-state-cache-good-pos 1)
3377 (c-state-nonlit-pos-cache nil)
3378 (c-state-nonlit-pos-cache-limit 1)
3379 (c-state-brace-pair-desert nil)
3380 (c-state-point-min 1)
3381 (c-state-point-min-lit-type nil)
3382 (c-state-point-min-lit-start nil)
3383 (c-state-min-scan-pos 1)
3384 (c-state-old-cpp-beg nil)
3385 (c-state-old-cpp-end nil))
3386 (setq res2 (c-real-parse-state)))
3387 (unless (equal res1 res2)
3388 ;; The cache can actually go further back due to the ad-hoc way
3389 ;; the first paren is found, so try to whack off a bit of its
3390 ;; start before complaining.
3391 ;; (save-excursion
3392 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3393 ;; (c-beginning-of-defun-1)
3394 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3395 ;; (c-beginning-of-defun-1))
3396 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3397 ;; (message (concat "c-parse-state inconsistency at %s: "
3398 ;; "using cache: %s, from scratch: %s")
3399 ;; here res1 res2)))
3400 (message (concat "c-parse-state inconsistency at %s: "
3401 "using cache: %s, from scratch: %s")
3402 here res1 res2)
3403 (message "Old state:")
3404 (c-replay-parse-state-state))
3405 (c-record-parse-state-state)
3406 res1))
3407
3408 (defun c-toggle-parse-state-debug (&optional arg)
3409 (interactive "P")
3410 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3411 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3412 'c-debug-parse-state
3413 'c-real-parse-state)))
3414 (c-keep-region-active))
3415 (when c-debug-parse-state
3416 (c-toggle-parse-state-debug 1))
3417
3418 \f
3419 (defun c-whack-state-before (bufpos paren-state)
3420 ;; Whack off any state information from PAREN-STATE which lies
3421 ;; before BUFPOS. Not destructive on PAREN-STATE.
3422 (let* ((newstate (list nil))
3423 (ptr newstate)
3424 car)
3425 (while paren-state
3426 (setq car (car paren-state)
3427 paren-state (cdr paren-state))
3428 (if (< (if (consp car) (car car) car) bufpos)
3429 (setq paren-state nil)
3430 (setcdr ptr (list car))
3431 (setq ptr (cdr ptr))))
3432 (cdr newstate)))
3433
3434 (defun c-whack-state-after (bufpos paren-state)
3435 ;; Whack off any state information from PAREN-STATE which lies at or
3436 ;; after BUFPOS. Not destructive on PAREN-STATE.
3437 (catch 'done
3438 (while paren-state
3439 (let ((car (car paren-state)))
3440 (if (consp car)
3441 ;; just check the car, because in a balanced brace
3442 ;; expression, it must be impossible for the corresponding
3443 ;; close brace to be before point, but the open brace to
3444 ;; be after.
3445 (if (<= bufpos (car car))
3446 nil ; whack it off
3447 (if (< bufpos (cdr car))
3448 ;; its possible that the open brace is before
3449 ;; bufpos, but the close brace is after. In that
3450 ;; case, convert this to a non-cons element. The
3451 ;; rest of the state is before bufpos, so we're
3452 ;; done.
3453 (throw 'done (cons (car car) (cdr paren-state)))
3454 ;; we know that both the open and close braces are
3455 ;; before bufpos, so we also know that everything else
3456 ;; on state is before bufpos.
3457 (throw 'done paren-state)))
3458 (if (<= bufpos car)
3459 nil ; whack it off
3460 ;; it's before bufpos, so everything else should too.
3461 (throw 'done paren-state)))
3462 (setq paren-state (cdr paren-state)))
3463 nil)))
3464
3465 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3466 ;; Return the bufpos of the innermost enclosing open paren before
3467 ;; bufpos, or nil if none was found.
3468 (let (enclosingp)
3469 (or bufpos (setq bufpos 134217727))
3470 (while paren-state
3471 (setq enclosingp (car paren-state)
3472 paren-state (cdr paren-state))
3473 (if (or (consp enclosingp)
3474 (>= enclosingp bufpos))
3475 (setq enclosingp nil)
3476 (setq paren-state nil)))
3477 enclosingp))
3478
3479 (defun c-least-enclosing-brace (paren-state)
3480 ;; Return the bufpos of the outermost enclosing open paren, or nil
3481 ;; if none was found.
3482 (let (pos elem)
3483 (while paren-state
3484 (setq elem (car paren-state)
3485 paren-state (cdr paren-state))
3486 (if (integerp elem)
3487 (setq pos elem)))
3488 pos))
3489
3490 (defun c-safe-position (bufpos paren-state)
3491 ;; Return the closest "safe" position recorded on PAREN-STATE that
3492 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3493 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3494 ;; find the closest limit before a given limit that might be nil.
3495 ;;
3496 ;; A "safe" position is a position at or after a recorded open
3497 ;; paren, or after a recorded close paren. The returned position is
3498 ;; thus either the first position after a close brace, or the first
3499 ;; position after an enclosing paren, or at the enclosing paren in
3500 ;; case BUFPOS is immediately after it.
3501 (when bufpos
3502 (let (elem)
3503 (catch 'done
3504 (while paren-state
3505 (setq elem (car paren-state))
3506 (if (consp elem)
3507 (cond ((< (cdr elem) bufpos)
3508 (throw 'done (cdr elem)))
3509 ((< (car elem) bufpos)
3510 ;; See below.
3511 (throw 'done (min (1+ (car elem)) bufpos))))
3512 (if (< elem bufpos)
3513 ;; elem is the position at and not after the opening paren, so
3514 ;; we can go forward one more step unless it's equal to
3515 ;; bufpos. This is useful in some cases avoid an extra paren
3516 ;; level between the safe position and bufpos.
3517 (throw 'done (min (1+ elem) bufpos))))
3518 (setq paren-state (cdr paren-state)))))))
3519
3520 (defun c-beginning-of-syntax ()
3521 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3522 ;; goes to the closest previous point that is known to be outside
3523 ;; any string literal or comment. `c-state-cache' is used if it has
3524 ;; a position in the vicinity.
3525 (let* ((paren-state c-state-cache)
3526 elem
3527
3528 (pos (catch 'done
3529 ;; Note: Similar code in `c-safe-position'. The
3530 ;; difference is that we accept a safe position at
3531 ;; the point and don't bother to go forward past open
3532 ;; parens.
3533 (while paren-state
3534 (setq elem (car paren-state))
3535 (if (consp elem)
3536 (cond ((<= (cdr elem) (point))
3537 (throw 'done (cdr elem)))
3538 ((<= (car elem) (point))
3539 (throw 'done (car elem))))
3540 (if (<= elem (point))
3541 (throw 'done elem)))
3542 (setq paren-state (cdr paren-state)))
3543 (point-min))))
3544
3545 (if (> pos (- (point) 4000))
3546 (goto-char pos)
3547 ;; The position is far back. Try `c-beginning-of-defun-1'
3548 ;; (although we can't be entirely sure it will go to a position
3549 ;; outside a comment or string in current emacsen). FIXME:
3550 ;; Consult `syntax-ppss' here.
3551 (c-beginning-of-defun-1)
3552 (if (< (point) pos)
3553 (goto-char pos)))))
3554
3555 \f
3556 ;; Tools for scanning identifiers and other tokens.
3557
3558 (defun c-on-identifier ()
3559 "Return non-nil if the point is on or directly after an identifier.
3560 Keywords are recognized and not considered identifiers. If an
3561 identifier is detected, the returned value is its starting position.
3562 If an identifier ends at the point and another begins at it \(can only
3563 happen in Pike) then the point for the preceding one is returned.
3564
3565 Note that this function might do hidden buffer changes. See the
3566 comment at the start of cc-engine.el for more info."
3567
3568 ;; FIXME: Shouldn't this function handle "operator" in C++?
3569
3570 (save-excursion
3571 (skip-syntax-backward "w_")
3572
3573 (or
3574
3575 ;; Check for a normal (non-keyword) identifier.
3576 (and (looking-at c-symbol-start)
3577 (not (looking-at c-keywords-regexp))
3578 (point))
3579
3580 (when (c-major-mode-is 'pike-mode)
3581 ;; Handle the `<operator> syntax in Pike.
3582 (let ((pos (point)))
3583 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3584 (and (if (< (skip-chars-backward "`") 0)
3585 t
3586 (goto-char pos)
3587 (eq (char-after) ?\`))
3588 (looking-at c-symbol-key)
3589 (>= (match-end 0) pos)
3590 (point))))
3591
3592 ;; Handle the "operator +" syntax in C++.
3593 (when (and c-overloadable-operators-regexp
3594 (= (c-backward-token-2 0) 0))
3595
3596 (cond ((and (looking-at c-overloadable-operators-regexp)
3597 (or (not c-opt-op-identifier-prefix)
3598 (and (= (c-backward-token-2 1) 0)
3599 (looking-at c-opt-op-identifier-prefix))))
3600 (point))
3601
3602 ((save-excursion
3603 (and c-opt-op-identifier-prefix
3604 (looking-at c-opt-op-identifier-prefix)
3605 (= (c-forward-token-2 1) 0)
3606 (looking-at c-overloadable-operators-regexp)))
3607 (point))))
3608
3609 )))
3610
3611 (defsubst c-simple-skip-symbol-backward ()
3612 ;; If the point is at the end of a symbol then skip backward to the
3613 ;; beginning of it. Don't move otherwise. Return non-nil if point
3614 ;; moved.
3615 ;;
3616 ;; This function might do hidden buffer changes.
3617 (or (< (skip-syntax-backward "w_") 0)
3618 (and (c-major-mode-is 'pike-mode)
3619 ;; Handle the `<operator> syntax in Pike.
3620 (let ((pos (point)))
3621 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3622 (< (skip-chars-backward "`") 0)
3623 (looking-at c-symbol-key)
3624 (>= (match-end 0) pos))
3625 t
3626 (goto-char pos)
3627 nil)))))
3628
3629 (defun c-beginning-of-current-token (&optional back-limit)
3630 ;; Move to the beginning of the current token. Do not move if not
3631 ;; in the middle of one. BACK-LIMIT may be used to bound the
3632 ;; backward search; if given it's assumed to be at the boundary
3633 ;; between two tokens. Return non-nil if the point is moved, nil
3634 ;; otherwise.
3635 ;;
3636 ;; This function might do hidden buffer changes.
3637 (let ((start (point)))
3638 (if (looking-at "\\w\\|\\s_")
3639 (skip-syntax-backward "w_" back-limit)
3640 (when (< (skip-syntax-backward ".()" back-limit) 0)
3641 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3642 (match-end 0))
3643 ;; `c-nonsymbol-token-regexp' should always match
3644 ;; since we've skipped backward over punctuator
3645 ;; or paren syntax, but consume one char in case
3646 ;; it doesn't so that we don't leave point before
3647 ;; some earlier incorrect token.
3648 (1+ (point)))))
3649 (if (<= pos start)
3650 (goto-char pos))))))
3651 (< (point) start)))
3652
3653 (defun c-end-of-current-token (&optional back-limit)
3654 ;; Move to the end of the current token. Do not move if not in the
3655 ;; middle of one. BACK-LIMIT may be used to bound the backward
3656 ;; search; if given it's assumed to be at the boundary between two
3657 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3658 ;;
3659 ;; This function might do hidden buffer changes.
3660 (let ((start (point)))
3661 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3662 (skip-syntax-forward "w_"))
3663 ((< (skip-syntax-backward ".()" back-limit) 0)
3664 (while (progn
3665 (if (looking-at c-nonsymbol-token-regexp)
3666 (goto-char (match-end 0))
3667 ;; `c-nonsymbol-token-regexp' should always match since
3668 ;; we've skipped backward over punctuator or paren
3669 ;; syntax, but move forward in case it doesn't so that
3670 ;; we don't leave point earlier than we started with.
3671 (forward-char))
3672 (< (point) start)))))
3673 (> (point) start)))
3674
3675 (defconst c-jump-syntax-balanced
3676 (if (memq 'gen-string-delim c-emacs-features)
3677 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\"\\|\\s|"
3678 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\""))
3679
3680 (defconst c-jump-syntax-unbalanced
3681 (if (memq 'gen-string-delim c-emacs-features)
3682 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3683 "\\w\\|\\s_\\|\\s\""))
3684
3685 (defun c-forward-token-2 (&optional count balanced limit)
3686 "Move forward by tokens.
3687 A token is defined as all symbols and identifiers which aren't
3688 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3689 treated properly). Point is always either left at the beginning of a
3690 token or not moved at all. COUNT specifies the number of tokens to
3691 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3692 moves to the next token beginning only if not already at one. If
3693 BALANCED is true, move over balanced parens, otherwise move into them.
3694 Also, if BALANCED is true, never move out of an enclosing paren.
3695
3696 LIMIT sets the limit for the movement and defaults to the point limit.
3697 The case when LIMIT is set in the middle of a token, comment or macro
3698 is handled correctly, i.e. the point won't be left there.
3699
3700 Return the number of tokens left to move \(positive or negative). If
3701 BALANCED is true, a move over a balanced paren counts as one. Note
3702 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3703 be returned. Thus, a return value of 0 guarantees that point is at
3704 the requested position and a return value less \(without signs) than
3705 COUNT guarantees that point is at the beginning of some token.
3706
3707 Note that this function might do hidden buffer changes. See the
3708 comment at the start of cc-engine.el for more info."
3709
3710 (or count (setq count 1))
3711 (if (< count 0)
3712 (- (c-backward-token-2 (- count) balanced limit))
3713
3714 (let ((jump-syntax (if balanced
3715 c-jump-syntax-balanced
3716 c-jump-syntax-unbalanced))
3717 (last (point))
3718 (prev (point)))
3719
3720 (if (zerop count)
3721 ;; If count is zero we should jump if in the middle of a token.
3722 (c-end-of-current-token))
3723
3724 (save-restriction
3725 (if limit (narrow-to-region (point-min) limit))
3726 (if (/= (point)
3727 (progn (c-forward-syntactic-ws) (point)))
3728 ;; Skip whitespace. Count this as a move if we did in
3729 ;; fact move.
3730 (setq count (max (1- count) 0)))
3731
3732 (if (eobp)
3733 ;; Moved out of bounds. Make sure the returned count isn't zero.
3734 (progn
3735 (if (zerop count) (setq count 1))
3736 (goto-char last))
3737
3738 ;; Use `condition-case' to avoid having the limit tests
3739 ;; inside the loop.
3740 (condition-case nil
3741 (while (and
3742 (> count 0)
3743 (progn
3744 (setq last (point))
3745 (cond ((looking-at jump-syntax)
3746 (goto-char (scan-sexps (point) 1))
3747 t)
3748 ((looking-at c-nonsymbol-token-regexp)
3749 (goto-char (match-end 0))
3750 t)
3751 ;; `c-nonsymbol-token-regexp' above should always
3752 ;; match if there are correct tokens. Try to
3753 ;; widen to see if the limit was set in the
3754 ;; middle of one, else fall back to treating
3755 ;; the offending thing as a one character token.
3756 ((and limit
3757 (save-restriction
3758 (widen)
3759 (looking-at c-nonsymbol-token-regexp)))
3760 nil)
3761 (t
3762 (forward-char)
3763 t))))
3764 (c-forward-syntactic-ws)
3765 (setq prev last
3766 count (1- count)))
3767 (error (goto-char last)))
3768
3769 (when (eobp)
3770 (goto-char prev)
3771 (setq count (1+ count)))))
3772
3773 count)))
3774
3775 (defun c-backward-token-2 (&optional count balanced limit)
3776 "Move backward by tokens.
3777 See `c-forward-token-2' for details."
3778
3779 (or count (setq count 1))
3780 (if (< count 0)
3781 (- (c-forward-token-2 (- count) balanced limit))
3782
3783 (or limit (setq limit (point-min)))
3784 (let ((jump-syntax (if balanced
3785 c-jump-syntax-balanced
3786 c-jump-syntax-unbalanced))
3787 (last (point)))
3788
3789 (if (zerop count)
3790 ;; The count is zero so try to skip to the beginning of the
3791 ;; current token.
3792 (if (> (point)
3793 (progn (c-beginning-of-current-token) (point)))
3794 (if (< (point) limit)
3795 ;; The limit is inside the same token, so return 1.
3796 (setq count 1))
3797
3798 ;; We're not in the middle of a token. If there's
3799 ;; whitespace after the point then we must move backward,
3800 ;; so set count to 1 in that case.
3801 (and (looking-at c-syntactic-ws-start)
3802 ;; If we're looking at a '#' that might start a cpp
3803 ;; directive then we have to do a more elaborate check.
3804 (or (/= (char-after) ?#)
3805 (not c-opt-cpp-prefix)
3806 (save-excursion
3807 (and (= (point)
3808 (progn (beginning-of-line)
3809 (looking-at "[ \t]*")
3810 (match-end 0)))
3811 (or (bobp)
3812 (progn (backward-char)
3813 (not (eq (char-before) ?\\)))))))
3814 (setq count 1))))
3815
3816 ;; Use `condition-case' to avoid having to check for buffer
3817 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
3818 (condition-case nil
3819 (while (and
3820 (> count 0)
3821 (progn
3822 (c-backward-syntactic-ws)
3823 (backward-char)
3824 (if (looking-at jump-syntax)
3825 (goto-char (scan-sexps (1+ (point)) -1))
3826 ;; This can be very inefficient if there's a long
3827 ;; sequence of operator tokens without any separation.
3828 ;; That doesn't happen in practice, anyway.
3829 (c-beginning-of-current-token))
3830 (>= (point) limit)))
3831 (setq last (point)
3832 count (1- count)))
3833 (error (goto-char last)))
3834
3835 (if (< (point) limit)
3836 (goto-char last))
3837
3838 count)))
3839
3840 (defun c-forward-token-1 (&optional count balanced limit)
3841 "Like `c-forward-token-2' but doesn't treat multicharacter operator
3842 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3843 characters are jumped over character by character. This function is
3844 for compatibility only; it's only a wrapper over `c-forward-token-2'."
3845 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3846 (c-forward-token-2 count balanced limit)))
3847
3848 (defun c-backward-token-1 (&optional count balanced limit)
3849 "Like `c-backward-token-2' but doesn't treat multicharacter operator
3850 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3851 characters are jumped over character by character. This function is
3852 for compatibility only; it's only a wrapper over `c-backward-token-2'."
3853 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3854 (c-backward-token-2 count balanced limit)))
3855
3856 \f
3857 ;; Tools for doing searches restricted to syntactically relevant text.
3858
3859 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
3860 paren-level not-inside-token
3861 lookbehind-submatch)
3862 "Like `re-search-forward', but only report matches that are found
3863 in syntactically significant text. I.e. matches in comments, macros
3864 or string literals are ignored. The start point is assumed to be
3865 outside any comment, macro or string literal, or else the content of
3866 that region is taken as syntactically significant text.
3867
3868 If PAREN-LEVEL is non-nil, an additional restriction is added to
3869 ignore matches in nested paren sexps. The search will also not go
3870 outside the current list sexp, which has the effect that if the point
3871 should be moved to BOUND when no match is found \(i.e. NOERROR is
3872 neither nil nor t), then it will be at the closing paren if the end of
3873 the current list sexp is encountered first.
3874
3875 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
3876 ignored. Things like multicharacter operators and special symbols
3877 \(e.g. \"`()\" in Pike) are handled but currently not floating point
3878 constants.
3879
3880 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
3881 subexpression in REGEXP. The end of that submatch is used as the
3882 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
3883 isn't used or if that subexpression didn't match then the start
3884 position of the whole match is used instead. The \"look behind\"
3885 subexpression is never tested before the starting position, so it
3886 might be a good idea to include \\=\\= as a match alternative in it.
3887
3888 Optimization note: Matches might be missed if the \"look behind\"
3889 subexpression can match the end of nonwhite syntactic whitespace,
3890 i.e. the end of comments or cpp directives. This since the function
3891 skips over such things before resuming the search. It's on the other
3892 hand not safe to assume that the \"look behind\" subexpression never
3893 matches syntactic whitespace.
3894
3895 Bug: Unbalanced parens inside cpp directives are currently not handled
3896 correctly \(i.e. they don't get ignored as they should) when
3897 PAREN-LEVEL is set.
3898
3899 Note that this function might do hidden buffer changes. See the
3900 comment at the start of cc-engine.el for more info."
3901
3902 (or bound (setq bound (point-max)))
3903 (if paren-level (setq paren-level -1))
3904
3905 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
3906
3907 (let ((start (point))
3908 tmp
3909 ;; Start position for the last search.
3910 search-pos
3911 ;; The `parse-partial-sexp' state between the start position
3912 ;; and the point.
3913 state
3914 ;; The current position after the last state update. The next
3915 ;; `parse-partial-sexp' continues from here.
3916 (state-pos (point))
3917 ;; The position at which to check the state and the state
3918 ;; there. This is separate from `state-pos' since we might
3919 ;; need to back up before doing the next search round.
3920 check-pos check-state
3921 ;; Last position known to end a token.
3922 (last-token-end-pos (point-min))
3923 ;; Set when a valid match is found.
3924 found)
3925
3926 (condition-case err
3927 (while
3928 (and
3929 (progn
3930 (setq search-pos (point))
3931 (re-search-forward regexp bound noerror))
3932
3933 (progn
3934 (setq state (parse-partial-sexp
3935 state-pos (match-beginning 0) paren-level nil state)
3936 state-pos (point))
3937 (if (setq check-pos (and lookbehind-submatch
3938 (or (not paren-level)
3939 (>= (car state) 0))
3940 (match-end lookbehind-submatch)))
3941 (setq check-state (parse-partial-sexp
3942 state-pos check-pos paren-level nil state))
3943 (setq check-pos state-pos
3944 check-state state))
3945
3946 ;; NOTE: If we got a look behind subexpression and get
3947 ;; an insignificant match in something that isn't
3948 ;; syntactic whitespace (i.e. strings or in nested
3949 ;; parentheses), then we can never skip more than a
3950 ;; single character from the match start position
3951 ;; (i.e. `state-pos' here) before continuing the
3952 ;; search. That since the look behind subexpression
3953 ;; might match the end of the insignificant region in
3954 ;; the next search.
3955
3956 (cond
3957 ((elt check-state 7)
3958 ;; Match inside a line comment. Skip to eol. Use
3959 ;; `re-search-forward' instead of `skip-chars-forward' to get
3960 ;; the right bound behavior.
3961 (re-search-forward "[\n\r]" bound noerror))
3962
3963 ((elt check-state 4)
3964 ;; Match inside a block comment. Skip to the '*/'.
3965 (search-forward "*/" bound noerror))
3966
3967 ((and (not (elt check-state 5))
3968 (eq (char-before check-pos) ?/)
3969 (not (c-get-char-property (1- check-pos) 'syntax-table))
3970 (memq (char-after check-pos) '(?/ ?*)))
3971 ;; Match in the middle of the opener of a block or line
3972 ;; comment.
3973 (if (= (char-after check-pos) ?/)
3974 (re-search-forward "[\n\r]" bound noerror)
3975 (search-forward "*/" bound noerror)))
3976
3977 ;; The last `parse-partial-sexp' above might have
3978 ;; stopped short of the real check position if the end
3979 ;; of the current sexp was encountered in paren-level
3980 ;; mode. The checks above are always false in that
3981 ;; case, and since they can do better skipping in
3982 ;; lookbehind-submatch mode, we do them before
3983 ;; checking the paren level.
3984
3985 ((and paren-level
3986 (/= (setq tmp (car check-state)) 0))
3987 ;; Check the paren level first since we're short of the
3988 ;; syntactic checking position if the end of the
3989 ;; current sexp was encountered by `parse-partial-sexp'.
3990 (if (> tmp 0)
3991
3992 ;; Inside a nested paren sexp.
3993 (if lookbehind-submatch
3994 ;; See the NOTE above.
3995 (progn (goto-char state-pos) t)
3996 ;; Skip out of the paren quickly.
3997 (setq state (parse-partial-sexp state-pos bound 0 nil state)
3998 state-pos (point)))
3999
4000 ;; Have exited the current paren sexp.
4001 (if noerror
4002 (progn
4003 ;; The last `parse-partial-sexp' call above
4004 ;; has left us just after the closing paren
4005 ;; in this case, so we can modify the bound
4006 ;; to leave the point at the right position
4007 ;; upon return.
4008 (setq bound (1- (point)))
4009 nil)
4010 (signal 'search-failed (list regexp)))))
4011
4012 ((setq tmp (elt check-state 3))
4013 ;; Match inside a string.
4014 (if (or lookbehind-submatch
4015 (not (integerp tmp)))
4016 ;; See the NOTE above.
4017 (progn (goto-char state-pos) t)
4018 ;; Skip to the end of the string before continuing.
4019 (let ((ender (make-string 1 tmp)) (continue t))
4020 (while (if (search-forward ender bound noerror)
4021 (progn
4022 (setq state (parse-partial-sexp
4023 state-pos (point) nil nil state)
4024 state-pos (point))
4025 (elt state 3))
4026 (setq continue nil)))
4027 continue)))
4028
4029 ((save-excursion
4030 (save-match-data
4031 (c-beginning-of-macro start)))
4032 ;; Match inside a macro. Skip to the end of it.
4033 (c-end-of-macro)
4034 (cond ((<= (point) bound) t)
4035 (noerror nil)
4036 (t (signal 'search-failed (list regexp)))))
4037
4038 ((and not-inside-token
4039 (or (< check-pos last-token-end-pos)
4040 (< check-pos
4041 (save-excursion
4042 (goto-char check-pos)
4043 (save-match-data
4044 (c-end-of-current-token last-token-end-pos))
4045 (setq last-token-end-pos (point))))))
4046 ;; Inside a token.
4047 (if lookbehind-submatch
4048 ;; See the NOTE above.
4049 (goto-char state-pos)
4050 (goto-char (min last-token-end-pos bound))))
4051
4052 (t
4053 ;; A real match.
4054 (setq found t)
4055 nil)))
4056
4057 ;; Should loop to search again, but take care to avoid
4058 ;; looping on the same spot.
4059 (or (/= search-pos (point))
4060 (if (= (point) bound)
4061 (if noerror
4062 nil
4063 (signal 'search-failed (list regexp)))
4064 (forward-char)
4065 t))))
4066
4067 (error
4068 (goto-char start)
4069 (signal (car err) (cdr err))))
4070
4071 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4072
4073 (if found
4074 (progn
4075 (goto-char (match-end 0))
4076 (match-end 0))
4077
4078 ;; Search failed. Set point as appropriate.
4079 (if (eq noerror t)
4080 (goto-char start)
4081 (goto-char bound))
4082 nil)))
4083
4084 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4085
4086 (defsubst c-ssb-lit-begin ()
4087 ;; Return the start of the literal point is in, or nil.
4088 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4089 ;; bound in the caller.
4090
4091 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4092 ;; if it's outside comments and strings.
4093 (save-excursion
4094 (let ((pos (point)) safe-pos state pps-end-pos)
4095 ;; Pick a safe position as close to the point as possible.
4096 ;;
4097 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4098 ;; position.
4099
4100 (while (and safe-pos-list
4101 (> (car safe-pos-list) (point)))
4102 (setq safe-pos-list (cdr safe-pos-list)))
4103 (unless (setq safe-pos (car-safe safe-pos-list))
4104 (setq safe-pos (max (or (c-safe-position
4105 (point) (or c-state-cache
4106 (c-parse-state)))
4107 0)
4108 (point-min))
4109 safe-pos-list (list safe-pos)))
4110
4111 ;; Cache positions along the way to use if we have to back up more. We
4112 ;; cache every closing paren on the same level. If the paren cache is
4113 ;; relevant in this region then we're typically already on the same
4114 ;; level as the target position. Note that we might cache positions
4115 ;; after opening parens in case safe-pos is in a nested list. That's
4116 ;; both uncommon and harmless.
4117 (while (progn
4118 (setq state (parse-partial-sexp
4119 safe-pos pos 0))
4120 (< (point) pos))
4121 (setq safe-pos (point)
4122 safe-pos-list (cons safe-pos safe-pos-list)))
4123
4124 ;; If the state contains the start of the containing sexp we cache that
4125 ;; position too, so that parse-partial-sexp in the next run has a bigger
4126 ;; chance of starting at the same level as the target position and thus
4127 ;; will get more good safe positions into the list.
4128 (if (elt state 1)
4129 (setq safe-pos (1+ (elt state 1))
4130 safe-pos-list (cons safe-pos safe-pos-list)))
4131
4132 (if (or (elt state 3) (elt state 4))
4133 ;; Inside string or comment. Continue search at the
4134 ;; beginning of it.
4135 (elt state 8)))))
4136
4137 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4138 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4139 i.e. don't stop at positions inside syntactic whitespace or string
4140 literals. Preprocessor directives are also ignored, with the exception
4141 of the one that the point starts within, if any. If LIMIT is given,
4142 it's assumed to be at a syntactically relevant position.
4143
4144 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4145 sexps, and the search will also not go outside the current paren sexp.
4146 However, if LIMIT or the buffer limit is reached inside a nested paren
4147 then the point will be left at the limit.
4148
4149 Non-nil is returned if the point moved, nil otherwise.
4150
4151 Note that this function might do hidden buffer changes. See the
4152 comment at the start of cc-engine.el for more info."
4153
4154 (let ((start (point))
4155 state-2
4156 ;; A list of syntactically relevant positions in descending
4157 ;; order. It's used to avoid scanning repeatedly over
4158 ;; potentially large regions with `parse-partial-sexp' to verify
4159 ;; each position. Used in `c-ssb-lit-begin'
4160 safe-pos-list
4161 ;; The result from `c-beginning-of-macro' at the start position or the
4162 ;; start position itself if it isn't within a macro. Evaluated on
4163 ;; demand.
4164 start-macro-beg
4165 ;; The earliest position after the current one with the same paren
4166 ;; level. Used only when `paren-level' is set.
4167 lit-beg
4168 (paren-level-pos (point)))
4169
4170 (while
4171 (progn
4172 ;; The next loop "tries" to find the end point each time round,
4173 ;; loops when it hasn't succeeded.
4174 (while
4175 (and
4176 (< (skip-chars-backward skip-chars limit) 0)
4177
4178 (let ((pos (point)) state-2 pps-end-pos)
4179
4180 (cond
4181 ;; Don't stop inside a literal
4182 ((setq lit-beg (c-ssb-lit-begin))
4183 (goto-char lit-beg)
4184 t)
4185
4186 ((and paren-level
4187 (save-excursion
4188 (setq state-2 (parse-partial-sexp
4189 pos paren-level-pos -1)
4190 pps-end-pos (point))
4191 (/= (car state-2) 0)))
4192 ;; Not at the right level.
4193
4194 (if (and (< (car state-2) 0)
4195 ;; We stop above if we go out of a paren.
4196 ;; Now check whether it precedes or is
4197 ;; nested in the starting sexp.
4198 (save-excursion
4199 (setq state-2
4200 (parse-partial-sexp
4201 pps-end-pos paren-level-pos
4202 nil nil state-2))
4203 (< (car state-2) 0)))
4204
4205 ;; We've stopped short of the starting position
4206 ;; so the hit was inside a nested list. Go up
4207 ;; until we are at the right level.
4208 (condition-case nil
4209 (progn
4210 (goto-char (scan-lists pos -1
4211 (- (car state-2))))
4212 (setq paren-level-pos (point))
4213 (if (and limit (>= limit paren-level-pos))
4214 (progn
4215 (goto-char limit)
4216 nil)
4217 t))
4218 (error
4219 (goto-char (or limit (point-min)))
4220 nil))
4221
4222 ;; The hit was outside the list at the start
4223 ;; position. Go to the start of the list and exit.
4224 (goto-char (1+ (elt state-2 1)))
4225 nil))
4226
4227 ((c-beginning-of-macro limit)
4228 ;; Inside a macro.
4229 (if (< (point)
4230 (or start-macro-beg
4231 (setq start-macro-beg
4232 (save-excursion
4233 (goto-char start)
4234 (c-beginning-of-macro limit)
4235 (point)))))
4236 t
4237
4238 ;; It's inside the same macro we started in so it's
4239 ;; a relevant match.
4240 (goto-char pos)
4241 nil))))))
4242
4243 (> (point)
4244 (progn
4245 ;; Skip syntactic ws afterwards so that we don't stop at the
4246 ;; end of a comment if `skip-chars' is something like "^/".
4247 (c-backward-syntactic-ws)
4248 (point)))))
4249
4250 ;; We might want to extend this with more useful return values in
4251 ;; the future.
4252 (/= (point) start)))
4253
4254 ;; The following is an alternative implementation of
4255 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4256 ;; track of the syntactic context. It turned out to be generally
4257 ;; slower than the one above which uses forward checks from earlier
4258 ;; safe positions.
4259 ;;
4260 ;;(defconst c-ssb-stop-re
4261 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4262 ;; ;; stop at to avoid going into comments and literals.
4263 ;; (concat
4264 ;; ;; Match comment end syntax and string literal syntax. Also match
4265 ;; ;; '/' for block comment endings (not covered by comment end
4266 ;; ;; syntax).
4267 ;; "\\s>\\|/\\|\\s\""
4268 ;; (if (memq 'gen-string-delim c-emacs-features)
4269 ;; "\\|\\s|"
4270 ;; "")
4271 ;; (if (memq 'gen-comment-delim c-emacs-features)
4272 ;; "\\|\\s!"
4273 ;; "")))
4274 ;;
4275 ;;(defconst c-ssb-stop-paren-re
4276 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4277 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4278 ;;
4279 ;;(defconst c-ssb-sexp-end-re
4280 ;; ;; Regexp matching the ending syntax of a complex sexp.
4281 ;; (concat c-string-limit-regexp "\\|\\s)"))
4282 ;;
4283 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4284 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4285 ;;i.e. don't stop at positions inside syntactic whitespace or string
4286 ;;literals. Preprocessor directives are also ignored. However, if the
4287 ;;point is within a comment, string literal or preprocessor directory to
4288 ;;begin with, its contents is treated as syntactically relevant chars.
4289 ;;If LIMIT is given, it limits the backward search and the point will be
4290 ;;left there if no earlier position is found.
4291 ;;
4292 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4293 ;;sexps, and the search will also not go outside the current paren sexp.
4294 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4295 ;;then the point will be left at the limit.
4296 ;;
4297 ;;Non-nil is returned if the point moved, nil otherwise.
4298 ;;
4299 ;;Note that this function might do hidden buffer changes. See the
4300 ;;comment at the start of cc-engine.el for more info."
4301 ;;
4302 ;; (save-restriction
4303 ;; (when limit
4304 ;; (narrow-to-region limit (point-max)))
4305 ;;
4306 ;; (let ((start (point)))
4307 ;; (catch 'done
4308 ;; (while (let ((last-pos (point))
4309 ;; (stop-pos (progn
4310 ;; (skip-chars-backward skip-chars)
4311 ;; (point))))
4312 ;;
4313 ;; ;; Skip back over the same region as
4314 ;; ;; `skip-chars-backward' above, but keep to
4315 ;; ;; syntactically relevant positions.
4316 ;; (goto-char last-pos)
4317 ;; (while (and
4318 ;; ;; `re-search-backward' with a single char regexp
4319 ;; ;; should be fast.
4320 ;; (re-search-backward
4321 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4322 ;; stop-pos 'move)
4323 ;;
4324 ;; (progn
4325 ;; (cond
4326 ;; ((looking-at "\\s(")
4327 ;; ;; `paren-level' is set and we've found the
4328 ;; ;; start of the containing paren.
4329 ;; (forward-char)
4330 ;; (throw 'done t))
4331 ;;
4332 ;; ((looking-at c-ssb-sexp-end-re)
4333 ;; ;; We're at the end of a string literal or paren
4334 ;; ;; sexp (if `paren-level' is set).
4335 ;; (forward-char)
4336 ;; (condition-case nil
4337 ;; (c-backward-sexp)
4338 ;; (error
4339 ;; (goto-char limit)
4340 ;; (throw 'done t))))
4341 ;;
4342 ;; (t
4343 ;; (forward-char)
4344 ;; ;; At the end of some syntactic ws or possibly
4345 ;; ;; after a plain '/' operator.
4346 ;; (let ((pos (point)))
4347 ;; (c-backward-syntactic-ws)
4348 ;; (if (= pos (point))
4349 ;; ;; Was a plain '/' operator. Go past it.
4350 ;; (backward-char)))))
4351 ;;
4352 ;; (> (point) stop-pos))))
4353 ;;
4354 ;; ;; Now the point is either at `stop-pos' or at some
4355 ;; ;; position further back if `stop-pos' was at a
4356 ;; ;; syntactically irrelevant place.
4357 ;;
4358 ;; ;; Skip additional syntactic ws so that we don't stop
4359 ;; ;; at the end of a comment if `skip-chars' is
4360 ;; ;; something like "^/".
4361 ;; (c-backward-syntactic-ws)
4362 ;;
4363 ;; (< (point) stop-pos))))
4364 ;;
4365 ;; ;; We might want to extend this with more useful return values
4366 ;; ;; in the future.
4367 ;; (/= (point) start))))
4368
4369 \f
4370 ;; Tools for handling comments and string literals.
4371
4372 (defun c-in-literal (&optional lim detect-cpp)
4373 "Return the type of literal point is in, if any.
4374 The return value is `c' if in a C-style comment, `c++' if in a C++
4375 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4376 is non-nil and in a preprocessor line, or nil if somewhere else.
4377 Optional LIM is used as the backward limit of the search. If omitted,
4378 or nil, `c-beginning-of-defun' is used.
4379
4380 The last point calculated is cached if the cache is enabled, i.e. if
4381 `c-in-literal-cache' is bound to a two element vector.
4382
4383 Note that this function might do hidden buffer changes. See the
4384 comment at the start of cc-engine.el for more info."
4385 (save-restriction
4386 (widen)
4387 (let* ((safe-place (c-state-semi-safe-place (point)))
4388 (lit (c-state-pp-to-literal safe-place (point))))
4389 (or (cadr lit)
4390 (and detect-cpp
4391 (save-excursion (c-beginning-of-macro))
4392 'pound)))))
4393
4394 (defun c-literal-limits (&optional lim near not-in-delimiter)
4395 "Return a cons of the beginning and end positions of the comment or
4396 string surrounding point (including both delimiters), or nil if point
4397 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4398 to start parsing from. If NEAR is non-nil, then the limits of any
4399 literal next to point is returned. \"Next to\" means there's only
4400 spaces and tabs between point and the literal. The search for such a
4401 literal is done first in forward direction. If NOT-IN-DELIMITER is
4402 non-nil, the case when point is inside a starting delimiter won't be
4403 recognized. This only has effect for comments which have starting
4404 delimiters with more than one character.
4405
4406 Note that this function might do hidden buffer changes. See the
4407 comment at the start of cc-engine.el for more info."
4408
4409 (save-excursion
4410 (let* ((pos (point))
4411 (lim (or lim (c-state-semi-safe-place pos)))
4412 (pp-to-lit (save-restriction
4413 (widen)
4414 (c-state-pp-to-literal lim pos)))
4415 (state (car pp-to-lit))
4416 (lit-limits (car (cddr pp-to-lit))))
4417
4418 (cond
4419 (lit-limits)
4420 ((and (not not-in-delimiter)
4421 (not (elt state 5))
4422 (eq (char-before) ?/)
4423 (looking-at "[/*]")) ; FIXME!!! use c-line/block-comment-starter. 2008-09-28.
4424 ;; We're standing in a comment starter.
4425 (backward-char 1)
4426 (cons (point) (progn (c-forward-single-comment) (point))))
4427
4428 (near
4429 (goto-char pos)
4430 ;; Search forward for a literal.
4431 (skip-chars-forward " \t")
4432 (cond
4433 ((looking-at c-string-limit-regexp) ; String.
4434 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4435 (point-max))))
4436
4437 ((looking-at c-comment-start-regexp) ; Line or block comment.
4438 (cons (point) (progn (c-forward-single-comment) (point))))
4439
4440 (t
4441 ;; Search backward.
4442 (skip-chars-backward " \t")
4443
4444 (let ((end (point)) beg)
4445 (cond
4446 ((save-excursion
4447 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4448 (setq beg (c-safe (c-backward-sexp 1) (point))))
4449
4450 ((and (c-safe (forward-char -2) t)
4451 (looking-at "*/"))
4452 ;; Block comment. Due to the nature of line
4453 ;; comments, they will always be covered by the
4454 ;; normal case above.
4455 (goto-char end)
4456 (c-backward-single-comment)
4457 ;; If LIM is bogus, beg will be bogus.
4458 (setq beg (point))))
4459
4460 (if beg (cons beg end))))))
4461 ))))
4462
4463 ;; In case external callers use this; it did have a docstring.
4464 (defalias 'c-literal-limits-fast 'c-literal-limits)
4465
4466 (defun c-collect-line-comments (range)
4467 "If the argument is a cons of two buffer positions (such as returned by
4468 `c-literal-limits'), and that range contains a C++ style line comment,
4469 then an extended range is returned that contains all adjacent line
4470 comments (i.e. all comments that starts in the same column with no
4471 empty lines or non-whitespace characters between them). Otherwise the
4472 argument is returned.
4473
4474 Note that this function might do hidden buffer changes. See the
4475 comment at the start of cc-engine.el for more info."
4476
4477 (save-excursion
4478 (condition-case nil
4479 (if (and (consp range) (progn
4480 (goto-char (car range))
4481 (looking-at c-line-comment-starter)))
4482 (let ((col (current-column))
4483 (beg (point))
4484 (bopl (c-point 'bopl))
4485 (end (cdr range)))
4486 ;; Got to take care in the backward direction to handle
4487 ;; comments which are preceded by code.
4488 (while (and (c-backward-single-comment)
4489 (>= (point) bopl)
4490 (looking-at c-line-comment-starter)
4491 (= col (current-column)))
4492 (setq beg (point)
4493 bopl (c-point 'bopl)))
4494 (goto-char end)
4495 (while (and (progn (skip-chars-forward " \t")
4496 (looking-at c-line-comment-starter))
4497 (= col (current-column))
4498 (prog1 (zerop (forward-line 1))
4499 (setq end (point)))))
4500 (cons beg end))
4501 range)
4502 (error range))))
4503
4504 (defun c-literal-type (range)
4505 "Convenience function that given the result of `c-literal-limits',
4506 returns nil or the type of literal that the range surrounds, one
4507 of the symbols 'c, 'c++ or 'string. It's much faster than using
4508 `c-in-literal' and is intended to be used when you need both the
4509 type of a literal and its limits.
4510
4511 Note that this function might do hidden buffer changes. See the
4512 comment at the start of cc-engine.el for more info."
4513
4514 (if (consp range)
4515 (save-excursion
4516 (goto-char (car range))
4517 (cond ((looking-at c-string-limit-regexp) 'string)
4518 ((or (looking-at "//") ; c++ line comment
4519 (and (looking-at "\\s<") ; comment starter
4520 (looking-at "#"))) ; awk comment.
4521 'c++)
4522 (t 'c))) ; Assuming the range is valid.
4523 range))
4524
4525 (defsubst c-determine-limit-get-base (start try-size)
4526 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4527 ;; This doesn't preserve point.
4528 (let* ((pos (max (- start try-size) (point-min)))
4529 (base (c-state-semi-safe-place pos))
4530 (s (parse-partial-sexp base pos)))
4531 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4532 (nth 8 s)
4533 (point))))
4534
4535 (defun c-determine-limit (how-far-back &optional start try-size)
4536 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4537 ;; (default point). This is done by going back further in the buffer then
4538 ;; searching forward for literals. The position found won't be in a
4539 ;; literal. We start searching for the sought position TRY-SIZE (default
4540 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4541 ;; :-)
4542 (save-excursion
4543 (let* ((start (or start (point)))
4544 (try-size (or try-size (* 2 how-far-back)))
4545 (base (c-determine-limit-get-base start try-size))
4546 (pos base)
4547
4548 (s (parse-partial-sexp pos pos)) ; null state.
4549 stack elt size
4550 (count 0))
4551 (while (< pos start)
4552 ;; Move forward one literal each time round this loop.
4553 ;; Move forward to the start of a comment or string.
4554 (setq s (parse-partial-sexp
4555 pos
4556 start
4557 nil ; target-depth
4558 nil ; stop-before
4559 s ; state
4560 'syntax-table)) ; stop-comment
4561
4562 ;; Gather details of the non-literal-bit - starting pos and size.
4563 (setq size (- (if (or (nth 4 s) (nth 3 s))
4564 (nth 8 s)
4565 (point))
4566 pos))
4567 (if (> size 0)
4568 (setq stack (cons (cons pos size) stack)))
4569
4570 ;; Move forward to the end of the comment/string.
4571 (if (or (nth 4 s) (nth 3 s))
4572 (setq s (parse-partial-sexp
4573 (point)
4574 start
4575 nil ; target-depth
4576 nil ; stop-before
4577 s ; state
4578 'syntax-table))) ; stop-comment
4579 (setq pos (point)))
4580
4581 ;; Now try and find enough non-literal characters recorded on the stack.
4582 ;; Go back one recorded literal each time round this loop.
4583 (while (and (< count how-far-back)
4584 stack)
4585 (setq elt (car stack)
4586 stack (cdr stack))
4587 (setq count (+ count (cdr elt))))
4588
4589 ;; Have we found enough yet?
4590 (cond
4591 ((>= count how-far-back)
4592 (+ (car elt) (- count how-far-back)))
4593 ((eq base (point-min))
4594 (point-min))
4595 (t
4596 (c-determine-limit (- how-far-back count) base try-size))))))
4597
4598 (defun c-determine-+ve-limit (how-far &optional start-pos)
4599 ;; Return a buffer position about HOW-FAR non-literal characters forward
4600 ;; from START-POS (default point), which must not be inside a literal.
4601 (save-excursion
4602 (let ((pos (or start-pos (point)))
4603 (count how-far)
4604 (s (parse-partial-sexp (point) (point)))) ; null state
4605 (while (and (not (eobp))
4606 (> count 0))
4607 ;; Scan over counted characters.
4608 (setq s (parse-partial-sexp
4609 pos
4610 (min (+ pos count) (point-max))
4611 nil ; target-depth
4612 nil ; stop-before
4613 s ; state
4614 'syntax-table)) ; stop-comment
4615 (setq count (- count (- (point) pos) 1)
4616 pos (point))
4617 ;; Scan over literal characters.
4618 (if (nth 8 s)
4619 (setq s (parse-partial-sexp
4620 pos
4621 (point-max)
4622 nil ; target-depth
4623 nil ; stop-before
4624 s ; state
4625 'syntax-table) ; stop-comment
4626 pos (point))))
4627 (point))))
4628
4629 \f
4630 ;; `c-find-decl-spots' and accompanying stuff.
4631
4632 ;; Variables used in `c-find-decl-spots' to cache the search done for
4633 ;; the first declaration in the last call. When that function starts,
4634 ;; it needs to back up over syntactic whitespace to look at the last
4635 ;; token before the region being searched. That can sometimes cause
4636 ;; moves back and forth over a quite large region of comments and
4637 ;; macros, which would be repeated for each changed character when
4638 ;; we're called during fontification, since font-lock refontifies the
4639 ;; current line for each change. Thus it's worthwhile to cache the
4640 ;; first match.
4641 ;;
4642 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4643 ;; the syntactic whitespace less or equal to some start position.
4644 ;; There's no cached value if it's nil.
4645 ;;
4646 ;; `c-find-decl-match-pos' is the match position if
4647 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4648 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4649 (defvar c-find-decl-syntactic-pos nil)
4650 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4651 (defvar c-find-decl-match-pos nil)
4652 (make-variable-buffer-local 'c-find-decl-match-pos)
4653
4654 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4655 (and c-find-decl-syntactic-pos
4656 (< change-min-pos c-find-decl-syntactic-pos)
4657 (setq c-find-decl-syntactic-pos nil)))
4658
4659 ; (defface c-debug-decl-spot-face
4660 ; '((t (:background "Turquoise")))
4661 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4662 ; (defface c-debug-decl-sws-face
4663 ; '((t (:background "Khaki")))
4664 ; "Debug face to mark the syntactic whitespace between the declaration
4665 ; spots and the preceding token end.")
4666
4667 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4668 (when (facep 'c-debug-decl-spot-face)
4669 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4670 (c-debug-add-face (max match-pos (point-min)) decl-pos
4671 'c-debug-decl-sws-face)
4672 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4673 'c-debug-decl-spot-face))))
4674 (defmacro c-debug-remove-decl-spot-faces (beg end)
4675 (when (facep 'c-debug-decl-spot-face)
4676 `(c-save-buffer-state ()
4677 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4678 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4679
4680 (defmacro c-find-decl-prefix-search ()
4681 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4682 ;; but it contains lots of free variables that refer to things
4683 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4684 ;; if there is a match, otherwise at `cfd-limit'.
4685 ;;
4686 ;; This macro might do hidden buffer changes.
4687
4688 '(progn
4689 ;; Find the next property match position if we haven't got one already.
4690 (unless cfd-prop-match
4691 (save-excursion
4692 (while (progn
4693 (goto-char (next-single-property-change
4694 (point) 'c-type nil cfd-limit))
4695 (and (< (point) cfd-limit)
4696 (not (eq (c-get-char-property (1- (point)) 'c-type)
4697 'c-decl-end)))))
4698 (setq cfd-prop-match (point))))
4699
4700 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4701 ;; got one already.
4702 (unless cfd-re-match
4703
4704 (if (> cfd-re-match-end (point))
4705 (goto-char cfd-re-match-end))
4706
4707 (while (if (setq cfd-re-match-end
4708 (re-search-forward c-decl-prefix-or-start-re
4709 cfd-limit 'move))
4710
4711 ;; Match. Check if it's inside a comment or string literal.
4712 (c-got-face-at
4713 (if (setq cfd-re-match (match-end 1))
4714 ;; Matched the end of a token preceding a decl spot.
4715 (progn
4716 (goto-char cfd-re-match)
4717 (1- cfd-re-match))
4718 ;; Matched a token that start a decl spot.
4719 (goto-char (match-beginning 0))
4720 (point))
4721 c-literal-faces)
4722
4723 ;; No match. Finish up and exit the loop.
4724 (setq cfd-re-match cfd-limit)
4725 nil)
4726
4727 ;; Skip out of comments and string literals.
4728 (while (progn
4729 (goto-char (next-single-property-change
4730 (point) 'face nil cfd-limit))
4731 (and (< (point) cfd-limit)
4732 (c-got-face-at (point) c-literal-faces)))))
4733
4734 ;; If we matched at the decl start, we have to back up over the
4735 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4736 ;; any decl spots in the syntactic ws.
4737 (unless cfd-re-match
4738 (c-backward-syntactic-ws)
4739 (setq cfd-re-match (point))))
4740
4741 ;; Choose whichever match is closer to the start.
4742 (if (< cfd-re-match cfd-prop-match)
4743 (setq cfd-match-pos cfd-re-match
4744 cfd-re-match nil)
4745 (setq cfd-match-pos cfd-prop-match
4746 cfd-prop-match nil))
4747
4748 (goto-char cfd-match-pos)
4749
4750 (when (< cfd-match-pos cfd-limit)
4751 ;; Skip forward past comments only so we don't skip macros.
4752 (c-forward-comments)
4753 ;; Set the position to continue at. We can avoid going over
4754 ;; the comments skipped above a second time, but it's possible
4755 ;; that the comment skipping has taken us past `cfd-prop-match'
4756 ;; since the property might be used inside comments.
4757 (setq cfd-continue-pos (if cfd-prop-match
4758 (min cfd-prop-match (point))
4759 (point))))))
4760
4761 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
4762 ;; Call CFD-FUN for each possible spot for a declaration, cast or
4763 ;; label from the point to CFD-LIMIT.
4764 ;;
4765 ;; CFD-FUN is called with point at the start of the spot. It's passed two
4766 ;; arguments: The first is the end position of the token preceding the spot,
4767 ;; or 0 for the implicit match at bob. The second is a flag that is t when
4768 ;; the match is inside a macro. Point should be moved forward by at least
4769 ;; one token.
4770 ;;
4771 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
4772 ;; it should return non-nil to ensure that the next search will find them.
4773 ;;
4774 ;; Such a spot is:
4775 ;; o The first token after bob.
4776 ;; o The first token after the end of submatch 1 in
4777 ;; `c-decl-prefix-or-start-re' when that submatch matches.
4778 ;; o The start of each `c-decl-prefix-or-start-re' match when
4779 ;; submatch 1 doesn't match.
4780 ;; o The first token after the end of each occurrence of the
4781 ;; `c-type' text property with the value `c-decl-end', provided
4782 ;; `c-type-decl-end-used' is set.
4783 ;;
4784 ;; Only a spot that match CFD-DECL-RE and whose face is in the
4785 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
4786 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
4787 ;;
4788 ;; If the match is inside a macro then the buffer is narrowed to the
4789 ;; end of it, so that CFD-FUN can investigate the following tokens
4790 ;; without matching something that begins inside a macro and ends
4791 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
4792 ;; CFD-FACE-CHECKLIST checks exist.
4793 ;;
4794 ;; The spots are visited approximately in order from top to bottom.
4795 ;; It's however the positions where `c-decl-prefix-or-start-re'
4796 ;; matches and where `c-decl-end' properties are found that are in
4797 ;; order. Since the spots often are at the following token, they
4798 ;; might be visited out of order insofar as more spots are reported
4799 ;; later on within the syntactic whitespace between the match
4800 ;; positions and their spots.
4801 ;;
4802 ;; It's assumed that comments and strings are fontified in the
4803 ;; searched range.
4804 ;;
4805 ;; This is mainly used in fontification, and so has an elaborate
4806 ;; cache to handle repeated calls from the same start position; see
4807 ;; the variables above.
4808 ;;
4809 ;; All variables in this function begin with `cfd-' to avoid name
4810 ;; collision with the (dynamically bound) variables used in CFD-FUN.
4811 ;;
4812 ;; This function might do hidden buffer changes.
4813
4814 (let ((cfd-start-pos (point))
4815 (cfd-buffer-end (point-max))
4816 ;; The end of the token preceding the decl spot last found
4817 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
4818 ;; no match.
4819 cfd-re-match
4820 ;; The end position of the last `c-decl-prefix-or-start-re'
4821 ;; match. If this is greater than `cfd-continue-pos', the
4822 ;; next regexp search is started here instead.
4823 (cfd-re-match-end (point-min))
4824 ;; The end of the last `c-decl-end' found by
4825 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
4826 ;; match. If searching for the property isn't needed then we
4827 ;; disable it by setting it to `cfd-limit' directly.
4828 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
4829 ;; The end of the token preceding the decl spot last found by
4830 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
4831 ;; bob. `cfd-limit' if there's no match. In other words,
4832 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
4833 (cfd-match-pos cfd-limit)
4834 ;; The position to continue searching at.
4835 cfd-continue-pos
4836 ;; The position of the last "real" token we've stopped at.
4837 ;; This can be greater than `cfd-continue-pos' when we get
4838 ;; hits inside macros or at `c-decl-end' positions inside
4839 ;; comments.
4840 (cfd-token-pos 0)
4841 ;; The end position of the last entered macro.
4842 (cfd-macro-end 0))
4843
4844 ;; Initialize by finding a syntactically relevant start position
4845 ;; before the point, and do the first `c-decl-prefix-or-start-re'
4846 ;; search unless we're at bob.
4847
4848 (let (start-in-literal start-in-macro syntactic-pos)
4849 ;; Must back up a bit since we look for the end of the previous
4850 ;; statement or declaration, which is earlier than the first
4851 ;; returned match.
4852
4853 (cond
4854 ;; First we need to move to a syntactically relevant position.
4855 ;; Begin by backing out of comment or string literals.
4856 ((and
4857 (when (c-got-face-at (point) c-literal-faces)
4858 ;; Try to use the faces to back up to the start of the
4859 ;; literal. FIXME: What if the point is on a declaration
4860 ;; inside a comment?
4861 (while (and (not (bobp))
4862 (c-got-face-at (1- (point)) c-literal-faces))
4863 (goto-char (previous-single-property-change
4864 (point) 'face nil (point-min))))
4865
4866 ;; XEmacs doesn't fontify the quotes surrounding string
4867 ;; literals.
4868 (and (featurep 'xemacs)
4869 (eq (get-text-property (point) 'face)
4870 'font-lock-string-face)
4871 (not (bobp))
4872 (progn (backward-char)
4873 (not (looking-at c-string-limit-regexp)))
4874 (forward-char))
4875
4876 ;; Don't trust the literal to contain only literal faces
4877 ;; (the font lock package might not have fontified the
4878 ;; start of it at all, for instance) so check that we have
4879 ;; arrived at something that looks like a start or else
4880 ;; resort to `c-literal-limits'.
4881 (unless (looking-at c-literal-start-regexp)
4882 (let ((range (c-literal-limits)))
4883 (if range (goto-char (car range)))))
4884
4885 (setq start-in-literal (point)))
4886
4887 ;; The start is in a literal. If the limit is in the same
4888 ;; one we don't have to find a syntactic position etc. We
4889 ;; only check that if the limit is at or before bonl to save
4890 ;; time; it covers the by far most common case when font-lock
4891 ;; refontifies the current line only.
4892 (<= cfd-limit (c-point 'bonl cfd-start-pos))
4893 (save-excursion
4894 (goto-char cfd-start-pos)
4895 (while (progn
4896 (goto-char (next-single-property-change
4897 (point) 'face nil cfd-limit))
4898 (and (< (point) cfd-limit)
4899 (c-got-face-at (point) c-literal-faces))))
4900 (= (point) cfd-limit)))
4901
4902 ;; Completely inside a literal. Set up variables to trig the
4903 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
4904 ;; find a suitable start position.
4905 (setq cfd-continue-pos start-in-literal))
4906
4907 ;; Check if the region might be completely inside a macro, to
4908 ;; optimize that like the completely-inside-literal above.
4909 ((save-excursion
4910 (and (= (forward-line 1) 0)
4911 (bolp) ; forward-line has funny behavior at eob.
4912 (>= (point) cfd-limit)
4913 (progn (backward-char)
4914 (eq (char-before) ?\\))))
4915 ;; (Maybe) completely inside a macro. Only need to trig the
4916 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
4917 ;; set things up.
4918 (setq cfd-continue-pos (1- cfd-start-pos)
4919 start-in-macro t))
4920
4921 (t
4922 ;; Back out of any macro so we don't miss any declaration
4923 ;; that could follow after it.
4924 (when (c-beginning-of-macro)
4925 (setq start-in-macro t))
4926
4927 ;; Now we're at a proper syntactically relevant position so we
4928 ;; can use the cache. But first clear it if it applied
4929 ;; further down.
4930 (c-invalidate-find-decl-cache cfd-start-pos)
4931
4932 (setq syntactic-pos (point))
4933 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
4934 ;; Don't have to do this if the cache is relevant here,
4935 ;; typically if the same line is refontified again. If
4936 ;; we're just some syntactic whitespace further down we can
4937 ;; still use the cache to limit the skipping.
4938 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
4939
4940 ;; If we hit `c-find-decl-syntactic-pos' and
4941 ;; `c-find-decl-match-pos' is set then we install the cached
4942 ;; values. If we hit `c-find-decl-syntactic-pos' and
4943 ;; `c-find-decl-match-pos' is nil then we know there's no decl
4944 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
4945 ;; and so we can continue the search from this point. If we
4946 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
4947 ;; the right spot to begin searching anyway.
4948 (if (and (eq (point) c-find-decl-syntactic-pos)
4949 c-find-decl-match-pos)
4950 (setq cfd-match-pos c-find-decl-match-pos
4951 cfd-continue-pos syntactic-pos)
4952
4953 (setq c-find-decl-syntactic-pos syntactic-pos)
4954
4955 (when (if (bobp)
4956 ;; Always consider bob a match to get the first
4957 ;; declaration in the file. Do this separately instead of
4958 ;; letting `c-decl-prefix-or-start-re' match bob, so that
4959 ;; regexp always can consume at least one character to
4960 ;; ensure that we won't get stuck in an infinite loop.
4961 (setq cfd-re-match 0)
4962 (backward-char)
4963 (c-beginning-of-current-token)
4964 (< (point) cfd-limit))
4965 ;; Do an initial search now. In the bob case above it's
4966 ;; only done to search for a `c-decl-end' spot.
4967 (c-find-decl-prefix-search))
4968
4969 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
4970 cfd-match-pos)))))
4971
4972 ;; Advance `cfd-continue-pos' if it's before the start position.
4973 ;; The closest continue position that might have effect at or
4974 ;; after the start depends on what we started in. This also
4975 ;; finds a suitable start position in the special cases when the
4976 ;; region is completely within a literal or macro.
4977 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
4978
4979 (cond
4980 (start-in-macro
4981 ;; If we're in a macro then it's the closest preceding token
4982 ;; in the macro. Check this before `start-in-literal',
4983 ;; since if we're inside a literal in a macro, the preceding
4984 ;; token is earlier than any `c-decl-end' spot inside the
4985 ;; literal (comment).
4986 (goto-char (or start-in-literal cfd-start-pos))
4987 ;; The only syntactic ws in macros are comments.
4988 (c-backward-comments)
4989 (backward-char)
4990 (c-beginning-of-current-token))
4991
4992 (start-in-literal
4993 ;; If we're in a comment it can only be the closest
4994 ;; preceding `c-decl-end' position within that comment, if
4995 ;; any. Go back to the beginning of such a property so that
4996 ;; `c-find-decl-prefix-search' will find the end of it.
4997 ;; (Can't stop at the end and install it directly on
4998 ;; `cfd-prop-match' since that variable might be cleared
4999 ;; after `cfd-fun' below.)
5000 ;;
5001 ;; Note that if the literal is a string then the property
5002 ;; search will simply skip to the beginning of it right
5003 ;; away.
5004 (if (not c-type-decl-end-used)
5005 (goto-char start-in-literal)
5006 (goto-char cfd-start-pos)
5007 (while (progn
5008 (goto-char (previous-single-property-change
5009 (point) 'c-type nil start-in-literal))
5010 (and (> (point) start-in-literal)
5011 (not (eq (c-get-char-property (point) 'c-type)
5012 'c-decl-end))))))
5013
5014 (when (= (point) start-in-literal)
5015 ;; Didn't find any property inside the comment, so we can
5016 ;; skip it entirely. (This won't skip past a string, but
5017 ;; that'll be handled quickly by the next
5018 ;; `c-find-decl-prefix-search' anyway.)
5019 (c-forward-single-comment)
5020 (if (> (point) cfd-limit)
5021 (goto-char cfd-limit))))
5022
5023 (t
5024 ;; If we started in normal code, the only match that might
5025 ;; apply before the start is what we already got in
5026 ;; `cfd-match-pos' so we can continue at the start position.
5027 ;; (Note that we don't get here if the first match is below
5028 ;; it.)
5029 (goto-char cfd-start-pos)))
5030
5031 ;; Delete found matches if they are before our new continue
5032 ;; position, so that `c-find-decl-prefix-search' won't back up
5033 ;; to them later on.
5034 (setq cfd-continue-pos (point))
5035 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5036 (setq cfd-re-match nil))
5037 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5038 (setq cfd-prop-match nil)))
5039
5040 (if syntactic-pos
5041 ;; This is the normal case and we got a proper syntactic
5042 ;; position. If there's a match then it's always outside
5043 ;; macros and comments, so advance to the next token and set
5044 ;; `cfd-token-pos'. The loop below will later go back using
5045 ;; `cfd-continue-pos' to fix declarations inside the
5046 ;; syntactic ws.
5047 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5048 (goto-char syntactic-pos)
5049 (c-forward-syntactic-ws)
5050 (and cfd-continue-pos
5051 (< cfd-continue-pos (point))
5052 (setq cfd-token-pos (point))))
5053
5054 ;; Have one of the special cases when the region is completely
5055 ;; within a literal or macro. `cfd-continue-pos' is set to a
5056 ;; good start position for the search, so do it.
5057 (c-find-decl-prefix-search)))
5058
5059 ;; Now loop. Round what? (ACM, 2006/7/5). We already got the first match.
5060
5061 (while (progn
5062 (while (and
5063 (< cfd-match-pos cfd-limit)
5064
5065 (or
5066 ;; Kludge to filter out matches on the "<" that
5067 ;; aren't open parens, for the sake of languages
5068 ;; that got `c-recognize-<>-arglists' set.
5069 (and (eq (char-before cfd-match-pos) ?<)
5070 (not (c-get-char-property (1- cfd-match-pos)
5071 'syntax-table)))
5072
5073 ;; If `cfd-continue-pos' is less or equal to
5074 ;; `cfd-token-pos', we've got a hit inside a macro
5075 ;; that's in the syntactic whitespace before the last
5076 ;; "real" declaration we've checked. If they're equal
5077 ;; we've arrived at the declaration a second time, so
5078 ;; there's nothing to do.
5079 (= cfd-continue-pos cfd-token-pos)
5080
5081 (progn
5082 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5083 ;; we're still searching for declarations embedded in
5084 ;; the syntactic whitespace. In that case we need
5085 ;; only to skip comments and not macros, since they
5086 ;; can't be nested, and that's already been done in
5087 ;; `c-find-decl-prefix-search'.
5088 (when (> cfd-continue-pos cfd-token-pos)
5089 (c-forward-syntactic-ws)
5090 (setq cfd-token-pos (point)))
5091
5092 ;; Continue if the following token fails the
5093 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5094 (when (or (>= (point) cfd-limit)
5095 (not (looking-at cfd-decl-re))
5096 (and cfd-face-checklist
5097 (not (c-got-face-at
5098 (point) cfd-face-checklist))))
5099 (goto-char cfd-continue-pos)
5100 t)))
5101
5102 (< (point) cfd-limit))
5103 (c-find-decl-prefix-search))
5104
5105 (< (point) cfd-limit))
5106
5107 (when (and
5108 (>= (point) cfd-start-pos)
5109
5110 (progn
5111 ;; Narrow to the end of the macro if we got a hit inside
5112 ;; one, to avoid recognizing things that start inside the
5113 ;; macro and end outside it.
5114 (when (> cfd-match-pos cfd-macro-end)
5115 ;; Not in the same macro as in the previous round.
5116 (save-excursion
5117 (goto-char cfd-match-pos)
5118 (setq cfd-macro-end
5119 (if (save-excursion (and (c-beginning-of-macro)
5120 (< (point) cfd-match-pos)))
5121 (progn (c-end-of-macro)
5122 (point))
5123 0))))
5124
5125 (if (zerop cfd-macro-end)
5126 t
5127 (if (> cfd-macro-end (point))
5128 (progn (narrow-to-region (point-min) cfd-macro-end)
5129 t)
5130 ;; The matched token was the last thing in the macro,
5131 ;; so the whole match is bogus.
5132 (setq cfd-macro-end 0)
5133 nil))))
5134
5135 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5136 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5137 (setq cfd-prop-match nil))
5138
5139 (when (/= cfd-macro-end 0)
5140 ;; Restore limits if we did macro narrowing above.
5141 (narrow-to-region (point-min) cfd-buffer-end)))
5142
5143 (goto-char cfd-continue-pos)
5144 (if (= cfd-continue-pos cfd-limit)
5145 (setq cfd-match-pos cfd-limit)
5146 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5147 ; cfd-match-pos, etc.
5148
5149 \f
5150 ;; A cache for found types.
5151
5152 ;; Buffer local variable that contains an obarray with the types we've
5153 ;; found. If a declaration is recognized somewhere we record the
5154 ;; fully qualified identifier in it to recognize it as a type
5155 ;; elsewhere in the file too. This is not accurate since we do not
5156 ;; bother with the scoping rules of the languages, but in practice the
5157 ;; same name is seldom used as both a type and something else in a
5158 ;; file, and we only use this as a last resort in ambiguous cases (see
5159 ;; `c-forward-decl-or-cast-1').
5160 ;;
5161 ;; Not every type need be in this cache. However, things which have
5162 ;; ceased to be types must be removed from it.
5163 ;;
5164 ;; Template types in C++ are added here too but with the template
5165 ;; arglist replaced with "<>" in references or "<" for the one in the
5166 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5167 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5168 ;; template specs can be fairly sized programs in themselves) and
5169 ;; improves the hit ratio (it's a type regardless of the template
5170 ;; args; it's just not the same type, but we're only interested in
5171 ;; recognizing types, not telling distinct types apart). Note that
5172 ;; template types in references are added here too; from the example
5173 ;; above there will also be an entry "Foo<".
5174 (defvar c-found-types nil)
5175 (make-variable-buffer-local 'c-found-types)
5176
5177 (defsubst c-clear-found-types ()
5178 ;; Clears `c-found-types'.
5179 (setq c-found-types (make-vector 53 0)))
5180
5181 (defun c-add-type (from to)
5182 ;; Add the given region as a type in `c-found-types'. If the region
5183 ;; doesn't match an existing type but there is a type which is equal
5184 ;; to the given one except that the last character is missing, then
5185 ;; the shorter type is removed. That's done to avoid adding all
5186 ;; prefixes of a type as it's being entered and font locked. This
5187 ;; doesn't cover cases like when characters are removed from a type
5188 ;; or added in the middle. We'd need the position of point when the
5189 ;; font locking is invoked to solve this well.
5190 ;;
5191 ;; This function might do hidden buffer changes.
5192 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5193 (unless (intern-soft type c-found-types)
5194 (unintern (substring type 0 -1) c-found-types)
5195 (intern type c-found-types))))
5196
5197 (defun c-unfind-type (name)
5198 ;; Remove the "NAME" from c-found-types, if present.
5199 (unintern name c-found-types))
5200
5201 (defsubst c-check-type (from to)
5202 ;; Return non-nil if the given region contains a type in
5203 ;; `c-found-types'.
5204 ;;
5205 ;; This function might do hidden buffer changes.
5206 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5207 c-found-types))
5208
5209 (defun c-list-found-types ()
5210 ;; Return all the types in `c-found-types' as a sorted list of
5211 ;; strings.
5212 (let (type-list)
5213 (mapatoms (lambda (type)
5214 (setq type-list (cons (symbol-name type)
5215 type-list)))
5216 c-found-types)
5217 (sort type-list 'string-lessp)))
5218
5219 ;; Shut up the byte compiler.
5220 (defvar c-maybe-stale-found-type)
5221
5222 (defun c-trim-found-types (beg end old-len)
5223 ;; An after change function which, in conjunction with the info in
5224 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5225 ;; from `c-found-types', should this type have become stale. For
5226 ;; example, this happens to "foo" when "foo \n bar();" becomes
5227 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5228 ;; the fontification.
5229 ;;
5230 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5231 ;; type?
5232 (when (> end beg)
5233 (save-excursion
5234 (when (< end (point-max))
5235 (goto-char end)
5236 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5237 (progn (goto-char end)
5238 (c-end-of-current-token)))
5239 (c-unfind-type (buffer-substring-no-properties
5240 end (point)))))
5241 (when (> beg (point-min))
5242 (goto-char beg)
5243 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5244 (progn (goto-char beg)
5245 (c-beginning-of-current-token)))
5246 (c-unfind-type (buffer-substring-no-properties
5247 (point) beg))))))
5248
5249 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5250 (cond
5251 ;; Changing the amount of (already existing) whitespace - don't do anything.
5252 ((and (c-partial-ws-p beg end)
5253 (or (= beg end) ; removal of WS
5254 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5255
5256 ;; The syntactic relationship which defined a "found type" has been
5257 ;; destroyed.
5258 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5259 (c-unfind-type (cadr c-maybe-stale-found-type)))
5260 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5261 )))
5262
5263 \f
5264 ;; Setting and removing syntax properties on < and > in languages (C++
5265 ;; and Java) where they can be template/generic delimiters as well as
5266 ;; their normal meaning of "less/greater than".
5267
5268 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5269 ;; be delimiters, they are marked as such with the category properties
5270 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5271
5272 ;; STRATEGY:
5273 ;;
5274 ;; It is impossible to determine with certainty whether a <..> pair in
5275 ;; C++ is two comparison operators or is template delimiters, unless
5276 ;; one duplicates a lot of a C++ compiler. For example, the following
5277 ;; code fragment:
5278 ;;
5279 ;; foo (a < b, c > d) ;
5280 ;;
5281 ;; could be a function call with two integer parameters (each a
5282 ;; relational expression), or it could be a constructor for class foo
5283 ;; taking one parameter d of templated type "a < b, c >". They are
5284 ;; somewhat easier to distinguish in Java.
5285 ;;
5286 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5287 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5288 ;; individually when their context so indicated. This gave rise to
5289 ;; intractable problems when one of a matching pair was deleted, or
5290 ;; pulled into a literal.]
5291 ;;
5292 ;; At each buffer change, the syntax-table properties are removed in a
5293 ;; before-change function and reapplied, when needed, in an
5294 ;; after-change function. It is far more important that the
5295 ;; properties get removed when they they are spurious than that they
5296 ;; be present when wanted.
5297 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5298 (defun c-clear-<-pair-props (&optional pos)
5299 ;; POS (default point) is at a < character. If it is marked with
5300 ;; open paren syntax-table text property, remove the property,
5301 ;; together with the close paren property on the matching > (if
5302 ;; any).
5303 (save-excursion
5304 (if pos
5305 (goto-char pos)
5306 (setq pos (point)))
5307 (when (equal (c-get-char-property (point) 'syntax-table)
5308 c-<-as-paren-syntax)
5309 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5310 (c-go-list-forward))
5311 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5312 c->-as-paren-syntax) ; should always be true.
5313 (c-clear-char-property (1- (point)) 'category))
5314 (c-clear-char-property pos 'category))))
5315
5316 (defun c-clear->-pair-props (&optional pos)
5317 ;; POS (default point) is at a > character. If it is marked with
5318 ;; close paren syntax-table property, remove the property, together
5319 ;; with the open paren property on the matching < (if any).
5320 (save-excursion
5321 (if pos
5322 (goto-char pos)
5323 (setq pos (point)))
5324 (when (equal (c-get-char-property (point) 'syntax-table)
5325 c->-as-paren-syntax)
5326 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5327 (c-go-up-list-backward))
5328 (when (equal (c-get-char-property (point) 'syntax-table)
5329 c-<-as-paren-syntax) ; should always be true.
5330 (c-clear-char-property (point) 'category))
5331 (c-clear-char-property pos 'category))))
5332
5333 (defun c-clear-<>-pair-props (&optional pos)
5334 ;; POS (default point) is at a < or > character. If it has an
5335 ;; open/close paren syntax-table property, remove this property both
5336 ;; from the current character and its partner (which will also be
5337 ;; thusly marked).
5338 (cond
5339 ((eq (char-after) ?\<)
5340 (c-clear-<-pair-props pos))
5341 ((eq (char-after) ?\>)
5342 (c-clear->-pair-props pos))
5343 (t (c-benign-error
5344 "c-clear-<>-pair-props called from wrong position"))))
5345
5346 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5347 ;; POS (default point) is at a < character. If it is both marked
5348 ;; with open/close paren syntax-table property, and has a matching >
5349 ;; (also marked) which is after LIM, remove the property both from
5350 ;; the current > and its partner. Return t when this happens, nil
5351 ;; when it doesn't.
5352 (save-excursion
5353 (if pos
5354 (goto-char pos)
5355 (setq pos (point)))
5356 (when (equal (c-get-char-property (point) 'syntax-table)
5357 c-<-as-paren-syntax)
5358 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5359 (c-go-list-forward))
5360 (when (and (>= (point) lim)
5361 (equal (c-get-char-property (1- (point)) 'syntax-table)
5362 c->-as-paren-syntax)) ; should always be true.
5363 (c-unmark-<->-as-paren (1- (point)))
5364 (c-unmark-<->-as-paren pos))
5365 t)))
5366
5367 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5368 ;; POS (default point) is at a > character. If it is both marked
5369 ;; with open/close paren syntax-table property, and has a matching <
5370 ;; (also marked) which is before LIM, remove the property both from
5371 ;; the current < and its partner. Return t when this happens, nil
5372 ;; when it doesn't.
5373 (save-excursion
5374 (if pos
5375 (goto-char pos)
5376 (setq pos (point)))
5377 (when (equal (c-get-char-property (point) 'syntax-table)
5378 c->-as-paren-syntax)
5379 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5380 (c-go-up-list-backward))
5381 (when (and (<= (point) lim)
5382 (equal (c-get-char-property (point) 'syntax-table)
5383 c-<-as-paren-syntax)) ; should always be true.
5384 (c-unmark-<->-as-paren (point))
5385 (c-unmark-<->-as-paren pos))
5386 t)))
5387
5388 ;; Set by c-common-init in cc-mode.el.
5389 (defvar c-new-BEG)
5390 (defvar c-new-END)
5391
5392 (defun c-before-change-check-<>-operators (beg end)
5393 ;; Unmark certain pairs of "< .... >" which are currently marked as
5394 ;; template/generic delimiters. (This marking is via syntax-table
5395 ;; text properties).
5396 ;;
5397 ;; These pairs are those which are in the current "statement" (i.e.,
5398 ;; the region between the {, }, or ; before BEG and the one after
5399 ;; END), and which enclose any part of the interval (BEG END).
5400 ;;
5401 ;; Note that in C++ (?and Java), template/generic parens cannot
5402 ;; enclose a brace or semicolon, so we use these as bounds on the
5403 ;; region we must work on.
5404 ;;
5405 ;; This function is called from before-change-functions (via
5406 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5407 ;; and point is undefined, both at entry and exit.
5408 ;;
5409 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5410 ;; 2010-01-29.
5411 (save-excursion
5412 (let ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5413 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5414 new-beg new-end need-new-beg need-new-end)
5415 ;; Locate the barrier before the changed region
5416 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5417 (c-syntactic-skip-backward "^;{}" (c-determine-limit 512))
5418 (setq new-beg (point))
5419
5420 ;; Remove the syntax-table properties from each pertinent <...> pair.
5421 ;; Firsly, the ones with the < before beg and > after beg.
5422 (while (c-search-forward-char-property 'category 'c-<-as-paren-syntax beg)
5423 (if (c-clear-<-pair-props-if-match-after beg (1- (point)))
5424 (setq need-new-beg t)))
5425
5426 ;; Locate the barrier after END.
5427 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5428 (c-syntactic-re-search-forward "[;{}]" (c-determine-+ve-limit 512) 'end)
5429 (setq new-end (point))
5430
5431 ;; Remove syntax-table properties from the remaining pertinent <...>
5432 ;; pairs, those with a > after end and < before end.
5433 (while (c-search-backward-char-property 'category 'c->-as-paren-syntax end)
5434 (if (c-clear->-pair-props-if-match-before end)
5435 (setq need-new-end t)))
5436
5437 ;; Extend the fontification region, if needed.
5438 (when need-new-beg
5439 (goto-char new-beg)
5440 (c-forward-syntactic-ws)
5441 (and (< (point) c-new-BEG) (setq c-new-BEG (point))))
5442
5443 (when need-new-end
5444 (and (> new-end c-new-END) (setq c-new-END new-end))))))
5445
5446
5447
5448 (defun c-after-change-check-<>-operators (beg end)
5449 ;; This is called from `after-change-functions' when
5450 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5451 ;; chars with paren syntax become part of another operator like "<<"
5452 ;; or ">=".
5453 ;;
5454 ;; This function might do hidden buffer changes.
5455
5456 (save-excursion
5457 (goto-char beg)
5458 (when (or (looking-at "[<>]")
5459 (< (skip-chars-backward "<>") 0))
5460
5461 (goto-char beg)
5462 (c-beginning-of-current-token)
5463 (when (and (< (point) beg)
5464 (looking-at c-<>-multichar-token-regexp)
5465 (< beg (setq beg (match-end 0))))
5466 (while (progn (skip-chars-forward "^<>" beg)
5467 (< (point) beg))
5468 (c-clear-<>-pair-props)
5469 (forward-char))))
5470
5471 (when (< beg end)
5472 (goto-char end)
5473 (when (or (looking-at "[<>]")
5474 (< (skip-chars-backward "<>") 0))
5475
5476 (goto-char end)
5477 (c-beginning-of-current-token)
5478 (when (and (< (point) end)
5479 (looking-at c-<>-multichar-token-regexp)
5480 (< end (setq end (match-end 0))))
5481 (while (progn (skip-chars-forward "^<>" end)
5482 (< (point) end))
5483 (c-clear-<>-pair-props)
5484 (forward-char)))))))
5485
5486
5487 \f
5488 ;; Handling of small scale constructs like types and names.
5489
5490 ;; Dynamically bound variable that instructs `c-forward-type' to also
5491 ;; treat possible types (i.e. those that it normally returns 'maybe or
5492 ;; 'found for) as actual types (and always return 'found for them).
5493 ;; This means that it records them in `c-record-type-identifiers' if
5494 ;; that is set, and that it adds them to `c-found-types'.
5495 (defvar c-promote-possible-types nil)
5496
5497 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5498 ;; mark up successfully parsed arglists with paren syntax properties on
5499 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5500 ;; `c-type' property of each argument separating comma.
5501 ;;
5502 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5503 ;; all arglists for side effects (i.e. recording types), otherwise it
5504 ;; exploits any existing paren syntax properties to quickly jump to the
5505 ;; end of already parsed arglists.
5506 ;;
5507 ;; Marking up the arglists is not the default since doing that correctly
5508 ;; depends on a proper value for `c-restricted-<>-arglists'.
5509 (defvar c-parse-and-markup-<>-arglists nil)
5510
5511 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5512 ;; not accept arglists that contain binary operators.
5513 ;;
5514 ;; This is primarily used to handle C++ template arglists. C++
5515 ;; disambiguates them by checking whether the preceding name is a
5516 ;; template or not. We can't do that, so we assume it is a template
5517 ;; if it can be parsed as one. That usually works well since
5518 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5519 ;; in almost all cases would be pointless.
5520 ;;
5521 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5522 ;; should let the comma separate the function arguments instead. And
5523 ;; in a context where the value of the expression is taken, e.g. in
5524 ;; "if (a < b || c > d)", it's probably not a template.
5525 (defvar c-restricted-<>-arglists nil)
5526
5527 ;; Dynamically bound variables that instructs
5528 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5529 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5530 ;; `c-forward-label' to record the ranges of all the type and
5531 ;; reference identifiers they encounter. They will build lists on
5532 ;; these variables where each element is a cons of the buffer
5533 ;; positions surrounding each identifier. This recording is only
5534 ;; activated when `c-record-type-identifiers' is non-nil.
5535 ;;
5536 ;; All known types that can't be identifiers are recorded, and also
5537 ;; other possible types if `c-promote-possible-types' is set.
5538 ;; Recording is however disabled inside angle bracket arglists that
5539 ;; are encountered inside names and other angle bracket arglists.
5540 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
5541 ;; instead.
5542 ;;
5543 ;; Only the names in C++ template style references (e.g. "tmpl" in
5544 ;; "tmpl<a,b>::foo") are recorded as references, other references
5545 ;; aren't handled here.
5546 ;;
5547 ;; `c-forward-label' records the label identifier(s) on
5548 ;; `c-record-ref-identifiers'.
5549 (defvar c-record-type-identifiers nil)
5550 (defvar c-record-ref-identifiers nil)
5551
5552 ;; This variable will receive a cons cell of the range of the last
5553 ;; single identifier symbol stepped over by `c-forward-name' if it's
5554 ;; successful. This is the range that should be put on one of the
5555 ;; record lists above by the caller. It's assigned nil if there's no
5556 ;; such symbol in the name.
5557 (defvar c-last-identifier-range nil)
5558
5559 (defmacro c-record-type-id (range)
5560 (if (eq (car-safe range) 'cons)
5561 ;; Always true.
5562 `(setq c-record-type-identifiers
5563 (cons ,range c-record-type-identifiers))
5564 `(let ((range ,range))
5565 (if range
5566 (setq c-record-type-identifiers
5567 (cons range c-record-type-identifiers))))))
5568
5569 (defmacro c-record-ref-id (range)
5570 (if (eq (car-safe range) 'cons)
5571 ;; Always true.
5572 `(setq c-record-ref-identifiers
5573 (cons ,range c-record-ref-identifiers))
5574 `(let ((range ,range))
5575 (if range
5576 (setq c-record-ref-identifiers
5577 (cons range c-record-ref-identifiers))))))
5578
5579 ;; Dynamically bound variable that instructs `c-forward-type' to
5580 ;; record the ranges of types that only are found. Behaves otherwise
5581 ;; like `c-record-type-identifiers'.
5582 (defvar c-record-found-types nil)
5583
5584 (defmacro c-forward-keyword-prefixed-id (type)
5585 ;; Used internally in `c-forward-keyword-clause' to move forward
5586 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5587 ;; possibly is prefixed by keywords and their associated clauses.
5588 ;; Try with a type/name first to not trip up on those that begin
5589 ;; with a keyword. Return t if a known or found type is moved
5590 ;; over. The point is clobbered if nil is returned. If range
5591 ;; recording is enabled, the identifier is recorded on as a type
5592 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
5593 ;;
5594 ;; This macro might do hidden buffer changes.
5595 `(let (res)
5596 (while (if (setq res ,(if (eq type 'type)
5597 `(c-forward-type)
5598 `(c-forward-name)))
5599 nil
5600 (and (looking-at c-keywords-regexp)
5601 (c-forward-keyword-clause 1))))
5602 (when (memq res '(t known found prefix))
5603 ,(when (eq type 'ref)
5604 `(when c-record-type-identifiers
5605 (c-record-ref-id c-last-identifier-range)))
5606 t)))
5607
5608 (defmacro c-forward-id-comma-list (type update-safe-pos)
5609 ;; Used internally in `c-forward-keyword-clause' to move forward
5610 ;; over a comma separated list of types or names using
5611 ;; `c-forward-keyword-prefixed-id'.
5612 ;;
5613 ;; This macro might do hidden buffer changes.
5614 `(while (and (progn
5615 ,(when update-safe-pos
5616 `(setq safe-pos (point)))
5617 (eq (char-after) ?,))
5618 (progn
5619 (forward-char)
5620 (c-forward-syntactic-ws)
5621 (c-forward-keyword-prefixed-id ,type)))))
5622
5623 (defun c-forward-keyword-clause (match)
5624 ;; Submatch MATCH in the current match data is assumed to surround a
5625 ;; token. If it's a keyword, move over it and any immediately
5626 ;; following clauses associated with it, stopping at the start of
5627 ;; the next token. t is returned in that case, otherwise the point
5628 ;; stays and nil is returned. The kind of clauses that are
5629 ;; recognized are those specified by `c-type-list-kwds',
5630 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5631 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5632 ;; and `c-<>-arglist-kwds'.
5633 ;;
5634 ;; This function records identifier ranges on
5635 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5636 ;; `c-record-type-identifiers' is non-nil.
5637 ;;
5638 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5639 ;; apply directly after the keyword, the type list is moved over
5640 ;; only when there is no unaccounted token before it (i.e. a token
5641 ;; that isn't moved over due to some other keyword list). The
5642 ;; identifier ranges in the list are still recorded if that should
5643 ;; be done, though.
5644 ;;
5645 ;; This function might do hidden buffer changes.
5646
5647 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
5648 ;; The call to `c-forward-<>-arglist' below is made after
5649 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5650 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5651 ;; should therefore be nil.
5652 (c-parse-and-markup-<>-arglists t)
5653 c-restricted-<>-arglists)
5654
5655 (when kwd-sym
5656 (goto-char (match-end match))
5657 (c-forward-syntactic-ws)
5658 (setq safe-pos (point))
5659
5660 (cond
5661 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
5662 (c-forward-keyword-prefixed-id type))
5663 ;; There's a type directly after a keyword in `c-type-list-kwds'.
5664 (c-forward-id-comma-list type t))
5665
5666 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
5667 (c-forward-keyword-prefixed-id ref))
5668 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
5669 (c-forward-id-comma-list ref t))
5670
5671 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
5672 (eq (char-after) ?\())
5673 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5674
5675 (forward-char)
5676 (when (and (setq pos (c-up-list-forward))
5677 (eq (char-before pos) ?\)))
5678 (when (and c-record-type-identifiers
5679 (c-keyword-member kwd-sym 'c-paren-type-kwds))
5680 ;; Use `c-forward-type' on every identifier we can find
5681 ;; inside the paren, to record the types.
5682 (while (c-syntactic-re-search-forward c-symbol-start pos t)
5683 (goto-char (match-beginning 0))
5684 (unless (c-forward-type)
5685 (looking-at c-symbol-key) ; Always matches.
5686 (goto-char (match-end 0)))))
5687
5688 (goto-char pos)
5689 (c-forward-syntactic-ws)
5690 (setq safe-pos (point))))
5691
5692 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
5693 (eq (char-after) ?<)
5694 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
5695 (c-forward-syntactic-ws)
5696 (setq safe-pos (point)))
5697
5698 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
5699 (not (looking-at c-symbol-start))
5700 (c-safe (c-forward-sexp) t))
5701 (c-forward-syntactic-ws)
5702 (setq safe-pos (point))))
5703
5704 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
5705 (if (eq (char-after) ?:)
5706 ;; If we are at the colon already, we move over the type
5707 ;; list after it.
5708 (progn
5709 (forward-char)
5710 (c-forward-syntactic-ws)
5711 (when (c-forward-keyword-prefixed-id type)
5712 (c-forward-id-comma-list type t)))
5713 ;; Not at the colon, so stop here. But the identifier
5714 ;; ranges in the type list later on should still be
5715 ;; recorded.
5716 (and c-record-type-identifiers
5717 (progn
5718 ;; If a keyword matched both one of the types above and
5719 ;; this one, we match `c-colon-type-list-re' after the
5720 ;; clause matched above.
5721 (goto-char safe-pos)
5722 (looking-at c-colon-type-list-re))
5723 (progn
5724 (goto-char (match-end 0))
5725 (c-forward-syntactic-ws)
5726 (c-forward-keyword-prefixed-id type))
5727 ;; There's a type after the `c-colon-type-list-re' match
5728 ;; after a keyword in `c-colon-type-list-kwds'.
5729 (c-forward-id-comma-list type nil))))
5730
5731 (goto-char safe-pos)
5732 t)))
5733
5734 ;; cc-mode requires cc-fonts.
5735 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
5736
5737 (defun c-forward-<>-arglist (all-types)
5738 ;; The point is assumed to be at a "<". Try to treat it as the open
5739 ;; paren of an angle bracket arglist and move forward to the
5740 ;; corresponding ">". If successful, the point is left after the
5741 ;; ">" and t is returned, otherwise the point isn't moved and nil is
5742 ;; returned. If ALL-TYPES is t then all encountered arguments in
5743 ;; the arglist that might be types are treated as found types.
5744 ;;
5745 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
5746 ;; function handles text properties on the angle brackets and argument
5747 ;; separating commas.
5748 ;;
5749 ;; `c-restricted-<>-arglists' controls how lenient the template
5750 ;; arglist recognition should be.
5751 ;;
5752 ;; This function records identifier ranges on
5753 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5754 ;; `c-record-type-identifiers' is non-nil.
5755 ;;
5756 ;; This function might do hidden buffer changes.
5757
5758 (let ((start (point))
5759 ;; If `c-record-type-identifiers' is set then activate
5760 ;; recording of any found types that constitute an argument in
5761 ;; the arglist.
5762 (c-record-found-types (if c-record-type-identifiers t)))
5763 (if (catch 'angle-bracket-arglist-escape
5764 (setq c-record-found-types
5765 (c-forward-<>-arglist-recur all-types)))
5766 (progn
5767 (when (consp c-record-found-types)
5768 (setq c-record-type-identifiers
5769 ;; `nconc' doesn't mind that the tail of
5770 ;; `c-record-found-types' is t.
5771 (nconc c-record-found-types c-record-type-identifiers)))
5772 (if (c-major-mode-is 'java-mode) (c-fontify-recorded-types-and-refs))
5773 t)
5774
5775 (goto-char start)
5776 nil)))
5777
5778 (defun c-forward-<>-arglist-recur (all-types)
5779 ;; Recursive part of `c-forward-<>-arglist'.
5780 ;;
5781 ;; This function might do hidden buffer changes.
5782
5783 (let ((start (point)) res pos tmp
5784 ;; Cover this so that any recorded found type ranges are
5785 ;; automatically lost if it turns out to not be an angle
5786 ;; bracket arglist. It's propagated through the return value
5787 ;; on successful completion.
5788 (c-record-found-types c-record-found-types)
5789 ;; List that collects the positions after the argument
5790 ;; separating ',' in the arglist.
5791 arg-start-pos)
5792 ;; If the '<' has paren open syntax then we've marked it as an angle
5793 ;; bracket arglist before, so skip to the end.
5794 (if (and (not c-parse-and-markup-<>-arglists)
5795 (c-get-char-property (point) 'syntax-table))
5796
5797 (progn
5798 (forward-char)
5799 (if (and (c-go-up-list-forward)
5800 (eq (char-before) ?>))
5801 t
5802 ;; Got unmatched paren angle brackets. We don't clear the paren
5803 ;; syntax properties and retry, on the basis that it's very
5804 ;; unlikely that paren angle brackets become operators by code
5805 ;; manipulation. It's far more likely that it doesn't match due
5806 ;; to narrowing or some temporary change.
5807 (goto-char start)
5808 nil))
5809
5810 (forward-char) ; Forward over the opening '<'.
5811
5812 (unless (looking-at c-<-op-cont-regexp)
5813 ;; go forward one non-alphanumeric character (group) per iteration of
5814 ;; this loop.
5815 (while (and
5816 (progn
5817 (c-forward-syntactic-ws)
5818 (let ((orig-record-found-types c-record-found-types))
5819 (when (or (and c-record-type-identifiers all-types)
5820 (c-major-mode-is 'java-mode))
5821 ;; All encountered identifiers are types, so set the
5822 ;; promote flag and parse the type.
5823 (progn
5824 (c-forward-syntactic-ws)
5825 (if (looking-at "\\?")
5826 (forward-char)
5827 (when (looking-at c-identifier-start)
5828 (let ((c-promote-possible-types t)
5829 (c-record-found-types t))
5830 (c-forward-type))))
5831
5832 (c-forward-syntactic-ws)
5833
5834 (when (or (looking-at "extends")
5835 (looking-at "super"))
5836 (forward-word)
5837 (c-forward-syntactic-ws)
5838 (let ((c-promote-possible-types t)
5839 (c-record-found-types t))
5840 (c-forward-type)
5841 (c-forward-syntactic-ws))))))
5842
5843 (setq pos (point)) ; e.g. first token inside the '<'
5844
5845 ;; Note: These regexps exploit the match order in \| so
5846 ;; that "<>" is matched by "<" rather than "[^>:-]>".
5847 (c-syntactic-re-search-forward
5848 ;; Stop on ',', '|', '&', '+' and '-' to catch
5849 ;; common binary operators that could be between
5850 ;; two comparison expressions "a<b" and "c>d".
5851 "[<;{},|+&-]\\|[>)]"
5852 nil t t))
5853
5854 (cond
5855 ((eq (char-before) ?>)
5856 ;; Either an operator starting with '>' or the end of
5857 ;; the angle bracket arglist.
5858
5859 (if (looking-at c->-op-cont-regexp)
5860 (progn
5861 (goto-char (match-end 0))
5862 t) ; Continue the loop.
5863
5864 ;; The angle bracket arglist is finished.
5865 (when c-parse-and-markup-<>-arglists
5866 (while arg-start-pos
5867 (c-put-c-type-property (1- (car arg-start-pos))
5868 'c-<>-arg-sep)
5869 (setq arg-start-pos (cdr arg-start-pos)))
5870 (c-mark-<-as-paren start)
5871 (c-mark->-as-paren (1- (point))))
5872 (setq res t)
5873 nil)) ; Exit the loop.
5874
5875 ((eq (char-before) ?<)
5876 ;; Either an operator starting with '<' or a nested arglist.
5877 (setq pos (point))
5878 (let (id-start id-end subres keyword-match)
5879 (cond
5880 ;; The '<' begins a multi-char operator.
5881 ((looking-at c-<-op-cont-regexp)
5882 (setq tmp (match-end 0))
5883 (goto-char (match-end 0)))
5884 ;; We're at a nested <.....>
5885 ((progn
5886 (setq tmp pos)
5887 (backward-char) ; to the '<'
5888 (and
5889 (save-excursion
5890 ;; There's always an identifier before an angle
5891 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
5892 ;; or `c-<>-arglist-kwds'.
5893 (c-backward-syntactic-ws)
5894 (setq id-end (point))
5895 (c-simple-skip-symbol-backward)
5896 (when (or (setq keyword-match
5897 (looking-at c-opt-<>-sexp-key))
5898 (not (looking-at c-keywords-regexp)))
5899 (setq id-start (point))))
5900 (setq subres
5901 (let ((c-promote-possible-types t)
5902 (c-record-found-types t))
5903 (c-forward-<>-arglist-recur
5904 (and keyword-match
5905 (c-keyword-member
5906 (c-keyword-sym (match-string 1))
5907 'c-<>-type-kwds)))))))
5908
5909 ;; It was an angle bracket arglist.
5910 (setq c-record-found-types subres)
5911
5912 ;; Record the identifier before the template as a type
5913 ;; or reference depending on whether the arglist is last
5914 ;; in a qualified identifier.
5915 (when (and c-record-type-identifiers
5916 (not keyword-match))
5917 (if (and c-opt-identifier-concat-key
5918 (progn
5919 (c-forward-syntactic-ws)
5920 (looking-at c-opt-identifier-concat-key)))
5921 (c-record-ref-id (cons id-start id-end))
5922 (c-record-type-id (cons id-start id-end)))))
5923
5924 ;; At a "less than" operator.
5925 (t
5926 (forward-char)
5927 )))
5928 t) ; carry on looping.
5929
5930 ((and (not c-restricted-<>-arglists)
5931 (or (and (eq (char-before) ?&)
5932 (not (eq (char-after) ?&)))
5933 (eq (char-before) ?,)))
5934 ;; Just another argument. Record the position. The
5935 ;; type check stuff that made us stop at it is at
5936 ;; the top of the loop.
5937 (setq arg-start-pos (cons (point) arg-start-pos)))
5938
5939 (t
5940 ;; Got a character that can't be in an angle bracket
5941 ;; arglist argument. Abort using `throw', since
5942 ;; it's useless to try to find a surrounding arglist
5943 ;; if we're nested.
5944 (throw 'angle-bracket-arglist-escape nil))))))
5945 (if res
5946 (or c-record-found-types t)))))
5947
5948 (defun c-backward-<>-arglist (all-types &optional limit)
5949 ;; The point is assumed to be directly after a ">". Try to treat it
5950 ;; as the close paren of an angle bracket arglist and move back to
5951 ;; the corresponding "<". If successful, the point is left at
5952 ;; the "<" and t is returned, otherwise the point isn't moved and
5953 ;; nil is returned. ALL-TYPES is passed on to
5954 ;; `c-forward-<>-arglist'.
5955 ;;
5956 ;; If the optional LIMIT is given, it bounds the backward search.
5957 ;; It's then assumed to be at a syntactically relevant position.
5958 ;;
5959 ;; This is a wrapper around `c-forward-<>-arglist'. See that
5960 ;; function for more details.
5961
5962 (let ((start (point)))
5963 (backward-char)
5964 (if (and (not c-parse-and-markup-<>-arglists)
5965 (c-get-char-property (point) 'syntax-table))
5966
5967 (if (and (c-go-up-list-backward)
5968 (eq (char-after) ?<))
5969 t
5970 ;; See corresponding note in `c-forward-<>-arglist'.
5971 (goto-char start)
5972 nil)
5973
5974 (while (progn
5975 (c-syntactic-skip-backward "^<;{}" limit t)
5976
5977 (and
5978 (if (eq (char-before) ?<)
5979 t
5980 ;; Stopped at bob or a char that isn't allowed in an
5981 ;; arglist, so we've failed.
5982 (goto-char start)
5983 nil)
5984
5985 (if (> (point)
5986 (progn (c-beginning-of-current-token)
5987 (point)))
5988 ;; If we moved then the "<" was part of some
5989 ;; multicharacter token.
5990 t
5991
5992 (backward-char)
5993 (let ((beg-pos (point)))
5994 (if (c-forward-<>-arglist all-types)
5995 (cond ((= (point) start)
5996 ;; Matched the arglist. Break the while.
5997 (goto-char beg-pos)
5998 nil)
5999 ((> (point) start)
6000 ;; We started from a non-paren ">" inside an
6001 ;; arglist.
6002 (goto-char start)
6003 nil)
6004 (t
6005 ;; Matched a shorter arglist. Can be a nested
6006 ;; one so continue looking.
6007 (goto-char beg-pos)
6008 t))
6009 t))))))
6010
6011 (/= (point) start))))
6012
6013 (defun c-forward-name ()
6014 ;; Move forward over a complete name if at the beginning of one,
6015 ;; stopping at the next following token. A keyword, as such,
6016 ;; doesn't count as a name. If the point is not at something that
6017 ;; is recognized as a name then it stays put.
6018 ;;
6019 ;; A name could be something as simple as "foo" in C or something as
6020 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6021 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6022 ;; int>::*volatile const" in C++ (this function is actually little
6023 ;; more than a `looking-at' call in all modes except those that,
6024 ;; like C++, have `c-recognize-<>-arglists' set).
6025 ;;
6026 ;; Return
6027 ;; o - nil if no name is found;
6028 ;; o - 'template if it's an identifier ending with an angle bracket
6029 ;; arglist;
6030 ;; o - 'operator of it's an operator identifier;
6031 ;; o - t if it's some other kind of name.
6032 ;;
6033 ;; This function records identifier ranges on
6034 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6035 ;; `c-record-type-identifiers' is non-nil.
6036 ;;
6037 ;; This function might do hidden buffer changes.
6038
6039 (let ((pos (point)) (start (point)) res id-start id-end
6040 ;; Turn off `c-promote-possible-types' here since we might
6041 ;; call `c-forward-<>-arglist' and we don't want it to promote
6042 ;; every suspect thing in the arglist to a type. We're
6043 ;; typically called from `c-forward-type' in this case, and
6044 ;; the caller only wants the top level type that it finds to
6045 ;; be promoted.
6046 c-promote-possible-types)
6047 (while
6048 (and
6049 (looking-at c-identifier-key)
6050
6051 (progn
6052 ;; Check for keyword. We go to the last symbol in
6053 ;; `c-identifier-key' first.
6054 (goto-char (setq id-end (match-end 0)))
6055 (c-simple-skip-symbol-backward)
6056 (setq id-start (point))
6057
6058 (if (looking-at c-keywords-regexp)
6059 (when (and (c-major-mode-is 'c++-mode)
6060 (looking-at
6061 (cc-eval-when-compile
6062 (concat "\\(operator\\|\\(template\\)\\)"
6063 "\\(" (c-lang-const c-nonsymbol-key c++)
6064 "\\|$\\)")))
6065 (if (match-beginning 2)
6066 ;; "template" is only valid inside an
6067 ;; identifier if preceded by "::".
6068 (save-excursion
6069 (c-backward-syntactic-ws)
6070 (and (c-safe (backward-char 2) t)
6071 (looking-at "::")))
6072 t))
6073
6074 ;; Handle a C++ operator or template identifier.
6075 (goto-char id-end)
6076 (c-forward-syntactic-ws)
6077 (cond ((eq (char-before id-end) ?e)
6078 ;; Got "... ::template".
6079 (let ((subres (c-forward-name)))
6080 (when subres
6081 (setq pos (point)
6082 res subres))))
6083
6084 ((looking-at c-identifier-start)
6085 ;; Got a cast operator.
6086 (when (c-forward-type)
6087 (setq pos (point)
6088 res 'operator)
6089 ;; Now we should match a sequence of either
6090 ;; '*', '&' or a name followed by ":: *",
6091 ;; where each can be followed by a sequence
6092 ;; of `c-opt-type-modifier-key'.
6093 (while (cond ((looking-at "[*&]")
6094 (goto-char (match-end 0))
6095 t)
6096 ((looking-at c-identifier-start)
6097 (and (c-forward-name)
6098 (looking-at "::")
6099 (progn
6100 (goto-char (match-end 0))
6101 (c-forward-syntactic-ws)
6102 (eq (char-after) ?*))
6103 (progn
6104 (forward-char)
6105 t))))
6106 (while (progn
6107 (c-forward-syntactic-ws)
6108 (setq pos (point))
6109 (looking-at c-opt-type-modifier-key))
6110 (goto-char (match-end 1))))))
6111
6112 ((looking-at c-overloadable-operators-regexp)
6113 ;; Got some other operator.
6114 (setq c-last-identifier-range
6115 (cons (point) (match-end 0)))
6116 (goto-char (match-end 0))
6117 (c-forward-syntactic-ws)
6118 (setq pos (point)
6119 res 'operator)))
6120
6121 nil)
6122
6123 ;; `id-start' is equal to `id-end' if we've jumped over
6124 ;; an identifier that doesn't end with a symbol token.
6125 ;; That can occur e.g. for Java import directives on the
6126 ;; form "foo.bar.*".
6127 (when (and id-start (/= id-start id-end))
6128 (setq c-last-identifier-range
6129 (cons id-start id-end)))
6130 (goto-char id-end)
6131 (c-forward-syntactic-ws)
6132 (setq pos (point)
6133 res t)))
6134
6135 (progn
6136 (goto-char pos)
6137 (when (or c-opt-identifier-concat-key
6138 c-recognize-<>-arglists)
6139
6140 (cond
6141 ((and c-opt-identifier-concat-key
6142 (looking-at c-opt-identifier-concat-key))
6143 ;; Got a concatenated identifier. This handles the
6144 ;; cases with tricky syntactic whitespace that aren't
6145 ;; covered in `c-identifier-key'.
6146 (goto-char (match-end 0))
6147 (c-forward-syntactic-ws)
6148 t)
6149
6150 ((and c-recognize-<>-arglists
6151 (eq (char-after) ?<))
6152 ;; Maybe an angle bracket arglist.
6153 (when (let ((c-record-type-identifiers t)
6154 (c-record-found-types t))
6155 (c-forward-<>-arglist nil))
6156
6157 (c-add-type start (1+ pos))
6158 (c-forward-syntactic-ws)
6159 (setq pos (point)
6160 c-last-identifier-range nil)
6161
6162 (if (and c-opt-identifier-concat-key
6163 (looking-at c-opt-identifier-concat-key))
6164
6165 ;; Continue if there's an identifier concatenation
6166 ;; operator after the template argument.
6167 (progn
6168 (when (and c-record-type-identifiers id-start)
6169 (c-record-ref-id (cons id-start id-end)))
6170 (forward-char 2)
6171 (c-forward-syntactic-ws)
6172 t)
6173
6174 (when (and c-record-type-identifiers id-start)
6175 (c-record-type-id (cons id-start id-end)))
6176 (setq res 'template)
6177 nil)))
6178 )))))
6179
6180 (goto-char pos)
6181 res))
6182
6183 (defun c-forward-type (&optional brace-block-too)
6184 ;; Move forward over a type spec if at the beginning of one,
6185 ;; stopping at the next following token. The keyword "typedef"
6186 ;; isn't part of a type spec here.
6187 ;;
6188 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6189 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6190 ;; The current (2009-03-10) intention is to convert all uses of
6191 ;; `c-forward-type' to call with this parameter set, then to
6192 ;; eliminate it.
6193 ;;
6194 ;; Return
6195 ;; o - t if it's a known type that can't be a name or other
6196 ;; expression;
6197 ;; o - 'known if it's an otherwise known type (according to
6198 ;; `*-font-lock-extra-types');
6199 ;; o - 'prefix if it's a known prefix of a type;
6200 ;; o - 'found if it's a type that matches one in `c-found-types';
6201 ;; o - 'maybe if it's an identifier that might be a type; or
6202 ;; o - nil if it can't be a type (the point isn't moved then).
6203 ;;
6204 ;; The point is assumed to be at the beginning of a token.
6205 ;;
6206 ;; Note that this function doesn't skip past the brace definition
6207 ;; that might be considered part of the type, e.g.
6208 ;; "enum {a, b, c} foo".
6209 ;;
6210 ;; This function records identifier ranges on
6211 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6212 ;; `c-record-type-identifiers' is non-nil.
6213 ;;
6214 ;; This function might do hidden buffer changes.
6215 (when (and c-recognize-<>-arglists
6216 (looking-at "<"))
6217 (c-forward-<>-arglist t)
6218 (c-forward-syntactic-ws))
6219
6220 (let ((start (point)) pos res name-res id-start id-end id-range)
6221
6222 ;; Skip leading type modifiers. If any are found we know it's a
6223 ;; prefix of a type.
6224 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6225 (while (looking-at c-opt-type-modifier-key)
6226 (goto-char (match-end 1))
6227 (c-forward-syntactic-ws)
6228 (setq res 'prefix)))
6229
6230 (cond
6231 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6232 ; "typedef".
6233 (goto-char (match-end 1))
6234 (c-forward-syntactic-ws)
6235 (setq pos (point))
6236
6237 (setq name-res (c-forward-name))
6238 (setq res (not (null name-res)))
6239 (when (eq name-res t)
6240 ;; In many languages the name can be used without the
6241 ;; prefix, so we add it to `c-found-types'.
6242 (c-add-type pos (point))
6243 (when (and c-record-type-identifiers
6244 c-last-identifier-range)
6245 (c-record-type-id c-last-identifier-range)))
6246 (when (and brace-block-too
6247 (memq res '(t nil))
6248 (eq (char-after) ?\{)
6249 (save-excursion
6250 (c-safe
6251 (progn (c-forward-sexp)
6252 (c-forward-syntactic-ws)
6253 (setq pos (point))))))
6254 (goto-char pos)
6255 (setq res t))
6256 (unless res (goto-char start))) ; invalid syntax
6257
6258 ((progn
6259 (setq pos nil)
6260 (if (looking-at c-identifier-start)
6261 (save-excursion
6262 (setq id-start (point)
6263 name-res (c-forward-name))
6264 (when name-res
6265 (setq id-end (point)
6266 id-range c-last-identifier-range))))
6267 (and (cond ((looking-at c-primitive-type-key)
6268 (setq res t))
6269 ((c-with-syntax-table c-identifier-syntax-table
6270 (looking-at c-known-type-key))
6271 (setq res 'known)))
6272 (or (not id-end)
6273 (>= (save-excursion
6274 (save-match-data
6275 (goto-char (match-end 1))
6276 (c-forward-syntactic-ws)
6277 (setq pos (point))))
6278 id-end)
6279 (setq res nil))))
6280 ;; Looking at a primitive or known type identifier. We've
6281 ;; checked for a name first so that we don't go here if the
6282 ;; known type match only is a prefix of another name.
6283
6284 (setq id-end (match-end 1))
6285
6286 (when (and c-record-type-identifiers
6287 (or c-promote-possible-types (eq res t)))
6288 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6289
6290 (if (and c-opt-type-component-key
6291 (save-match-data
6292 (looking-at c-opt-type-component-key)))
6293 ;; There might be more keywords for the type.
6294 (let (safe-pos)
6295 (c-forward-keyword-clause 1)
6296 (while (progn
6297 (setq safe-pos (point))
6298 (looking-at c-opt-type-component-key))
6299 (when (and c-record-type-identifiers
6300 (looking-at c-primitive-type-key))
6301 (c-record-type-id (cons (match-beginning 1)
6302 (match-end 1))))
6303 (c-forward-keyword-clause 1))
6304 (if (looking-at c-primitive-type-key)
6305 (progn
6306 (when c-record-type-identifiers
6307 (c-record-type-id (cons (match-beginning 1)
6308 (match-end 1))))
6309 (c-forward-keyword-clause 1)
6310 (setq res t))
6311 (goto-char safe-pos)
6312 (setq res 'prefix)))
6313 (unless (save-match-data (c-forward-keyword-clause 1))
6314 (if pos
6315 (goto-char pos)
6316 (goto-char (match-end 1))
6317 (c-forward-syntactic-ws)))))
6318
6319 (name-res
6320 (cond ((eq name-res t)
6321 ;; A normal identifier.
6322 (goto-char id-end)
6323 (if (or res c-promote-possible-types)
6324 (progn
6325 (c-add-type id-start id-end)
6326 (when (and c-record-type-identifiers id-range)
6327 (c-record-type-id id-range))
6328 (unless res
6329 (setq res 'found)))
6330 (setq res (if (c-check-type id-start id-end)
6331 ;; It's an identifier that has been used as
6332 ;; a type somewhere else.
6333 'found
6334 ;; It's an identifier that might be a type.
6335 'maybe))))
6336 ((eq name-res 'template)
6337 ;; A template is a type.
6338 (goto-char id-end)
6339 (setq res t))
6340 (t
6341 ;; Otherwise it's an operator identifier, which is not a type.
6342 (goto-char start)
6343 (setq res nil)))))
6344
6345 (when res
6346 ;; Skip trailing type modifiers. If any are found we know it's
6347 ;; a type.
6348 (when c-opt-type-modifier-key
6349 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
6350 (goto-char (match-end 1))
6351 (c-forward-syntactic-ws)
6352 (setq res t)))
6353 ;; Step over any type suffix operator. Do not let the existence
6354 ;; of these alter the classification of the found type, since
6355 ;; these operators typically are allowed in normal expressions
6356 ;; too.
6357 (when c-opt-type-suffix-key
6358 (while (looking-at c-opt-type-suffix-key)
6359 (goto-char (match-end 1))
6360 (c-forward-syntactic-ws)))
6361
6362 (when c-opt-type-concat-key ; Only/mainly for pike.
6363 ;; Look for a trailing operator that concatenates the type
6364 ;; with a following one, and if so step past that one through
6365 ;; a recursive call. Note that we don't record concatenated
6366 ;; types in `c-found-types' - it's the component types that
6367 ;; are recorded when appropriate.
6368 (setq pos (point))
6369 (let* ((c-promote-possible-types (or (memq res '(t known))
6370 c-promote-possible-types))
6371 ;; If we can't promote then set `c-record-found-types' so that
6372 ;; we can merge in the types from the second part afterwards if
6373 ;; it turns out to be a known type there.
6374 (c-record-found-types (and c-record-type-identifiers
6375 (not c-promote-possible-types)))
6376 subres)
6377 (if (and (looking-at c-opt-type-concat-key)
6378
6379 (progn
6380 (goto-char (match-end 1))
6381 (c-forward-syntactic-ws)
6382 (setq subres (c-forward-type))))
6383
6384 (progn
6385 ;; If either operand certainly is a type then both are, but we
6386 ;; don't let the existence of the operator itself promote two
6387 ;; uncertain types to a certain one.
6388 (cond ((eq res t))
6389 ((eq subres t)
6390 (unless (eq name-res 'template)
6391 (c-add-type id-start id-end))
6392 (when (and c-record-type-identifiers id-range)
6393 (c-record-type-id id-range))
6394 (setq res t))
6395 ((eq res 'known))
6396 ((eq subres 'known)
6397 (setq res 'known))
6398 ((eq res 'found))
6399 ((eq subres 'found)
6400 (setq res 'found))
6401 (t
6402 (setq res 'maybe)))
6403
6404 (when (and (eq res t)
6405 (consp c-record-found-types))
6406 ;; Merge in the ranges of any types found by the second
6407 ;; `c-forward-type'.
6408 (setq c-record-type-identifiers
6409 ;; `nconc' doesn't mind that the tail of
6410 ;; `c-record-found-types' is t.
6411 (nconc c-record-found-types
6412 c-record-type-identifiers))))
6413
6414 (goto-char pos))))
6415
6416 (when (and c-record-found-types (memq res '(known found)) id-range)
6417 (setq c-record-found-types
6418 (cons id-range c-record-found-types))))
6419
6420 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6421
6422 res))
6423
6424 (defun c-forward-annotation ()
6425 ;; Used for Java code only at the moment. Assumes point is on the
6426 ;; @, moves forward an annotation. returns nil if there is no
6427 ;; annotation at point.
6428 (and (looking-at "@")
6429 (progn (forward-char) t)
6430 (c-forward-type)
6431 (progn (c-forward-syntactic-ws) t)
6432 (if (looking-at "(")
6433 (c-go-list-forward)
6434 t)))
6435
6436 \f
6437 ;; Handling of large scale constructs like statements and declarations.
6438
6439 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6440 ;; defsubst or perhaps even a defun, but it contains lots of free
6441 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6442 (defmacro c-fdoc-shift-type-backward (&optional short)
6443 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6444 ;; of types when parsing a declaration, which means that it
6445 ;; sometimes consumes the identifier in the declaration as a type.
6446 ;; This is used to "backtrack" and make the last type be treated as
6447 ;; an identifier instead.
6448 `(progn
6449 ,(unless short
6450 ;; These identifiers are bound only in the inner let.
6451 '(setq identifier-type at-type
6452 identifier-start type-start
6453 got-parens nil
6454 got-identifier t
6455 got-suffix t
6456 got-suffix-after-parens id-start
6457 paren-depth 0))
6458
6459 (if (setq at-type (if (eq backup-at-type 'prefix)
6460 t
6461 backup-at-type))
6462 (setq type-start backup-type-start
6463 id-start backup-id-start)
6464 (setq type-start start-pos
6465 id-start start-pos))
6466
6467 ;; When these flags already are set we've found specifiers that
6468 ;; unconditionally signal these attributes - backtracking doesn't
6469 ;; change that. So keep them set in that case.
6470 (or at-type-decl
6471 (setq at-type-decl backup-at-type-decl))
6472 (or maybe-typeless
6473 (setq maybe-typeless backup-maybe-typeless))
6474
6475 ,(unless short
6476 ;; This identifier is bound only in the inner let.
6477 '(setq start id-start))))
6478
6479 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
6480 ;; Move forward over a declaration or a cast if at the start of one.
6481 ;; The point is assumed to be at the start of some token. Nil is
6482 ;; returned if no declaration or cast is recognized, and the point
6483 ;; is clobbered in that case.
6484 ;;
6485 ;; If a declaration is parsed:
6486 ;;
6487 ;; The point is left at the first token after the first complete
6488 ;; declarator, if there is one. The return value is a cons where
6489 ;; the car is the position of the first token in the declarator. (See
6490 ;; below for the cdr.)
6491 ;; Some examples:
6492 ;;
6493 ;; void foo (int a, char *b) stuff ...
6494 ;; car ^ ^ point
6495 ;; float (*a)[], b;
6496 ;; car ^ ^ point
6497 ;; unsigned int a = c_style_initializer, b;
6498 ;; car ^ ^ point
6499 ;; unsigned int a (cplusplus_style_initializer), b;
6500 ;; car ^ ^ point (might change)
6501 ;; class Foo : public Bar {}
6502 ;; car ^ ^ point
6503 ;; class PikeClass (int a, string b) stuff ...
6504 ;; car ^ ^ point
6505 ;; enum bool;
6506 ;; car ^ ^ point
6507 ;; enum bool flag;
6508 ;; car ^ ^ point
6509 ;; void cplusplus_function (int x) throw (Bad);
6510 ;; car ^ ^ point
6511 ;; Foo::Foo (int b) : Base (b) {}
6512 ;; car ^ ^ point
6513 ;;
6514 ;; The cdr of the return value is non-nil when a
6515 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
6516 ;; Specifically it is a dotted pair (A . B) where B is t when a
6517 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
6518 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
6519 ;; specifier is present. I.e., (some of) the declared
6520 ;; identifier(s) are types.
6521 ;;
6522 ;; If a cast is parsed:
6523 ;;
6524 ;; The point is left at the first token after the closing paren of
6525 ;; the cast. The return value is `cast'. Note that the start
6526 ;; position must be at the first token inside the cast parenthesis
6527 ;; to recognize it.
6528 ;;
6529 ;; PRECEDING-TOKEN-END is the first position after the preceding
6530 ;; token, i.e. on the other side of the syntactic ws from the point.
6531 ;; Use a value less than or equal to (point-min) if the point is at
6532 ;; the first token in (the visible part of) the buffer.
6533 ;;
6534 ;; CONTEXT is a symbol that describes the context at the point:
6535 ;; 'decl In a comma-separated declaration context (typically
6536 ;; inside a function declaration arglist).
6537 ;; '<> In an angle bracket arglist.
6538 ;; 'arglist Some other type of arglist.
6539 ;; nil Some other context or unknown context. Includes
6540 ;; within the parens of an if, for, ... construct.
6541 ;;
6542 ;; LAST-CAST-END is the first token after the closing paren of a
6543 ;; preceding cast, or nil if none is known. If
6544 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
6545 ;; the position after the closest preceding call where a cast was
6546 ;; matched. In that case it's used to discover chains of casts like
6547 ;; "(a) (b) c".
6548 ;;
6549 ;; This function records identifier ranges on
6550 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6551 ;; `c-record-type-identifiers' is non-nil.
6552 ;;
6553 ;; This function might do hidden buffer changes.
6554
6555 (let (;; `start-pos' is used below to point to the start of the
6556 ;; first type, i.e. after any leading specifiers. It might
6557 ;; also point at the beginning of the preceding syntactic
6558 ;; whitespace.
6559 (start-pos (point))
6560 ;; Set to the result of `c-forward-type'.
6561 at-type
6562 ;; The position of the first token in what we currently
6563 ;; believe is the type in the declaration or cast, after any
6564 ;; specifiers and their associated clauses.
6565 type-start
6566 ;; The position of the first token in what we currently
6567 ;; believe is the declarator for the first identifier. Set
6568 ;; when the type is found, and moved forward over any
6569 ;; `c-decl-hangon-kwds' and their associated clauses that
6570 ;; occurs after the type.
6571 id-start
6572 ;; These store `at-type', `type-start' and `id-start' of the
6573 ;; identifier before the one in those variables. The previous
6574 ;; identifier might turn out to be the real type in a
6575 ;; declaration if the last one has to be the declarator in it.
6576 ;; If `backup-at-type' is nil then the other variables have
6577 ;; undefined values.
6578 backup-at-type backup-type-start backup-id-start
6579 ;; Set if we've found a specifier (apart from "typedef") that makes
6580 ;; the defined identifier(s) types.
6581 at-type-decl
6582 ;; Set if we've a "typedef" keyword.
6583 at-typedef
6584 ;; Set if we've found a specifier that can start a declaration
6585 ;; where there's no type.
6586 maybe-typeless
6587 ;; If a specifier is found that also can be a type prefix,
6588 ;; these flags are set instead of those above. If we need to
6589 ;; back up an identifier, they are copied to the real flag
6590 ;; variables. Thus they only take effect if we fail to
6591 ;; interpret it as a type.
6592 backup-at-type-decl backup-maybe-typeless
6593 ;; Whether we've found a declaration or a cast. We might know
6594 ;; this before we've found the type in it. It's 'ids if we've
6595 ;; found two consecutive identifiers (usually a sure sign, but
6596 ;; we should allow that in labels too), and t if we've found a
6597 ;; specifier keyword (a 100% sure sign).
6598 at-decl-or-cast
6599 ;; Set when we need to back up to parse this as a declaration
6600 ;; but not as a cast.
6601 backup-if-not-cast
6602 ;; For casts, the return position.
6603 cast-end
6604 ;; Save `c-record-type-identifiers' and
6605 ;; `c-record-ref-identifiers' since ranges are recorded
6606 ;; speculatively and should be thrown away if it turns out
6607 ;; that it isn't a declaration or cast.
6608 (save-rec-type-ids c-record-type-identifiers)
6609 (save-rec-ref-ids c-record-ref-identifiers))
6610
6611 (while (c-forward-annotation)
6612 (c-forward-syntactic-ws))
6613
6614 ;; Check for a type. Unknown symbols are treated as possible
6615 ;; types, but they could also be specifiers disguised through
6616 ;; macros like __INLINE__, so we recognize both types and known
6617 ;; specifiers after them too.
6618 (while
6619 (let* ((start (point)) kwd-sym kwd-clause-end found-type)
6620
6621 ;; Look for a specifier keyword clause.
6622 (when (or (looking-at c-prefix-spec-kwds-re)
6623 (and (c-major-mode-is 'java-mode)
6624 (looking-at "@[A-Za-z0-9]+")))
6625 (if (looking-at c-typedef-key)
6626 (setq at-typedef t))
6627 (setq kwd-sym (c-keyword-sym (match-string 1)))
6628 (save-excursion
6629 (c-forward-keyword-clause 1)
6630 (setq kwd-clause-end (point))))
6631
6632 (when (setq found-type (c-forward-type t)) ; brace-block-too
6633 ;; Found a known or possible type or a prefix of a known type.
6634
6635 (when at-type
6636 ;; Got two identifiers with nothing but whitespace
6637 ;; between them. That can only happen in declarations.
6638 (setq at-decl-or-cast 'ids)
6639
6640 (when (eq at-type 'found)
6641 ;; If the previous identifier is a found type we
6642 ;; record it as a real one; it might be some sort of
6643 ;; alias for a prefix like "unsigned".
6644 (save-excursion
6645 (goto-char type-start)
6646 (let ((c-promote-possible-types t))
6647 (c-forward-type)))))
6648
6649 (setq backup-at-type at-type
6650 backup-type-start type-start
6651 backup-id-start id-start
6652 at-type found-type
6653 type-start start
6654 id-start (point)
6655 ;; The previous ambiguous specifier/type turned out
6656 ;; to be a type since we've parsed another one after
6657 ;; it, so clear these backup flags.
6658 backup-at-type-decl nil
6659 backup-maybe-typeless nil))
6660
6661 (if kwd-sym
6662 (progn
6663 ;; Handle known specifier keywords and
6664 ;; `c-decl-hangon-kwds' which can occur after known
6665 ;; types.
6666
6667 (if (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
6668 ;; It's a hang-on keyword that can occur anywhere.
6669 (progn
6670 (setq at-decl-or-cast t)
6671 (if at-type
6672 ;; Move the identifier start position if
6673 ;; we've passed a type.
6674 (setq id-start kwd-clause-end)
6675 ;; Otherwise treat this as a specifier and
6676 ;; move the fallback position.
6677 (setq start-pos kwd-clause-end))
6678 (goto-char kwd-clause-end))
6679
6680 ;; It's an ordinary specifier so we know that
6681 ;; anything before this can't be the type.
6682 (setq backup-at-type nil
6683 start-pos kwd-clause-end)
6684
6685 (if found-type
6686 ;; It's ambiguous whether this keyword is a
6687 ;; specifier or a type prefix, so set the backup
6688 ;; flags. (It's assumed that `c-forward-type'
6689 ;; moved further than `c-forward-keyword-clause'.)
6690 (progn
6691 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6692 (setq backup-at-type-decl t))
6693 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6694 (setq backup-maybe-typeless t)))
6695
6696 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6697 ;; This test only happens after we've scanned a type.
6698 ;; So, with valid syntax, kwd-sym can't be 'typedef.
6699 (setq at-type-decl t))
6700 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6701 (setq maybe-typeless t))
6702
6703 ;; Haven't matched a type so it's an unambiguous
6704 ;; specifier keyword and we know we're in a
6705 ;; declaration.
6706 (setq at-decl-or-cast t)
6707
6708 (goto-char kwd-clause-end))))
6709
6710 ;; If the type isn't known we continue so that we'll jump
6711 ;; over all specifiers and type identifiers. The reason
6712 ;; to do this for a known type prefix is to make things
6713 ;; like "unsigned INT16" work.
6714 (and found-type (not (eq found-type t))))))
6715
6716 (cond
6717 ((eq at-type t)
6718 ;; If a known type was found, we still need to skip over any
6719 ;; hangon keyword clauses after it. Otherwise it has already
6720 ;; been done in the loop above.
6721 (while (looking-at c-decl-hangon-key)
6722 (c-forward-keyword-clause 1))
6723 (setq id-start (point)))
6724
6725 ((eq at-type 'prefix)
6726 ;; A prefix type is itself a primitive type when it's not
6727 ;; followed by another type.
6728 (setq at-type t))
6729
6730 ((not at-type)
6731 ;; Got no type but set things up to continue anyway to handle
6732 ;; the various cases when a declaration doesn't start with a
6733 ;; type.
6734 (setq id-start start-pos))
6735
6736 ((and (eq at-type 'maybe)
6737 (c-major-mode-is 'c++-mode))
6738 ;; If it's C++ then check if the last "type" ends on the form
6739 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
6740 ;; (con|de)structor.
6741 (save-excursion
6742 (let (name end-2 end-1)
6743 (goto-char id-start)
6744 (c-backward-syntactic-ws)
6745 (setq end-2 (point))
6746 (when (and
6747 (c-simple-skip-symbol-backward)
6748 (progn
6749 (setq name
6750 (buffer-substring-no-properties (point) end-2))
6751 ;; Cheating in the handling of syntactic ws below.
6752 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
6753 (progn
6754 (setq end-1 (point))
6755 (c-simple-skip-symbol-backward))
6756 (>= (point) type-start)
6757 (equal (buffer-substring-no-properties (point) end-1)
6758 name))
6759 ;; It is a (con|de)structor name. In that case the
6760 ;; declaration is typeless so zap out any preceding
6761 ;; identifier(s) that we might have taken as types.
6762 (goto-char type-start)
6763 (setq at-type nil
6764 backup-at-type nil
6765 id-start type-start))))))
6766
6767 ;; Check for and step over a type decl expression after the thing
6768 ;; that is or might be a type. This can't be skipped since we
6769 ;; need the correct end position of the declarator for
6770 ;; `max-type-decl-end-*'.
6771 (let ((start (point)) (paren-depth 0) pos
6772 ;; True if there's a non-open-paren match of
6773 ;; `c-type-decl-prefix-key'.
6774 got-prefix
6775 ;; True if the declarator is surrounded by a parenthesis pair.
6776 got-parens
6777 ;; True if there is an identifier in the declarator.
6778 got-identifier
6779 ;; True if there's a non-close-paren match of
6780 ;; `c-type-decl-suffix-key'.
6781 got-suffix
6782 ;; True if there's a prefix match outside the outermost
6783 ;; paren pair that surrounds the declarator.
6784 got-prefix-before-parens
6785 ;; True if there's a suffix match outside the outermost
6786 ;; paren pair that surrounds the declarator. The value is
6787 ;; the position of the first suffix match.
6788 got-suffix-after-parens
6789 ;; True if we've parsed the type decl to a token that is
6790 ;; known to end declarations in this context.
6791 at-decl-end
6792 ;; The earlier values of `at-type' and `type-start' if we've
6793 ;; shifted the type backwards.
6794 identifier-type identifier-start
6795 ;; If `c-parse-and-markup-<>-arglists' is set we need to
6796 ;; turn it off during the name skipping below to avoid
6797 ;; getting `c-type' properties that might be bogus. That
6798 ;; can happen since we don't know if
6799 ;; `c-restricted-<>-arglists' will be correct inside the
6800 ;; arglist paren that gets entered.
6801 c-parse-and-markup-<>-arglists)
6802
6803 (goto-char id-start)
6804
6805 ;; Skip over type decl prefix operators. (Note similar code in
6806 ;; `c-font-lock-declarators'.)
6807 (while (and (looking-at c-type-decl-prefix-key)
6808 (if (and (c-major-mode-is 'c++-mode)
6809 (match-beginning 3))
6810 ;; If the second submatch matches in C++ then
6811 ;; we're looking at an identifier that's a
6812 ;; prefix only if it specifies a member pointer.
6813 (when (setq got-identifier (c-forward-name))
6814 (if (looking-at "\\(::\\)")
6815 ;; We only check for a trailing "::" and
6816 ;; let the "*" that should follow be
6817 ;; matched in the next round.
6818 (progn (setq got-identifier nil) t)
6819 ;; It turned out to be the real identifier,
6820 ;; so stop.
6821 nil))
6822 t))
6823
6824 (if (eq (char-after) ?\()
6825 (progn
6826 (setq paren-depth (1+ paren-depth))
6827 (forward-char))
6828 (unless got-prefix-before-parens
6829 (setq got-prefix-before-parens (= paren-depth 0)))
6830 (setq got-prefix t)
6831 (goto-char (match-end 1)))
6832 (c-forward-syntactic-ws))
6833
6834 (setq got-parens (> paren-depth 0))
6835
6836 ;; Skip over an identifier.
6837 (or got-identifier
6838 (and (looking-at c-identifier-start)
6839 (setq got-identifier (c-forward-name))))
6840
6841 ;; Skip over type decl suffix operators.
6842 (while (if (looking-at c-type-decl-suffix-key)
6843
6844 (if (eq (char-after) ?\))
6845 (when (> paren-depth 0)
6846 (setq paren-depth (1- paren-depth))
6847 (forward-char)
6848 t)
6849 (when (if (save-match-data (looking-at "\\s\("))
6850 (c-safe (c-forward-sexp 1) t)
6851 (goto-char (match-end 1))
6852 t)
6853 (when (and (not got-suffix-after-parens)
6854 (= paren-depth 0))
6855 (setq got-suffix-after-parens (match-beginning 0)))
6856 (setq got-suffix t)))
6857
6858 ;; No suffix matched. We might have matched the
6859 ;; identifier as a type and the open paren of a
6860 ;; function arglist as a type decl prefix. In that
6861 ;; case we should "backtrack": Reinterpret the last
6862 ;; type as the identifier, move out of the arglist and
6863 ;; continue searching for suffix operators.
6864 ;;
6865 ;; Do this even if there's no preceding type, to cope
6866 ;; with old style function declarations in K&R C,
6867 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
6868 ;; style declarations. That isn't applicable in an
6869 ;; arglist context, though.
6870 (when (and (= paren-depth 1)
6871 (not got-prefix-before-parens)
6872 (not (eq at-type t))
6873 (or backup-at-type
6874 maybe-typeless
6875 backup-maybe-typeless
6876 (when c-recognize-typeless-decls
6877 (not context)))
6878 (setq pos (c-up-list-forward (point)))
6879 (eq (char-before pos) ?\)))
6880 (c-fdoc-shift-type-backward)
6881 (goto-char pos)
6882 t))
6883
6884 (c-forward-syntactic-ws))
6885
6886 (when (and (or maybe-typeless backup-maybe-typeless)
6887 (not got-identifier)
6888 (not got-prefix)
6889 at-type)
6890 ;; Have found no identifier but `c-typeless-decl-kwds' has
6891 ;; matched so we know we're inside a declaration. The
6892 ;; preceding type must be the identifier instead.
6893 (c-fdoc-shift-type-backward))
6894
6895 (setq
6896 at-decl-or-cast
6897 (catch 'at-decl-or-cast
6898
6899 ;; CASE 1
6900 (when (> paren-depth 0)
6901 ;; Encountered something inside parens that isn't matched by
6902 ;; the `c-type-decl-*' regexps, so it's not a type decl
6903 ;; expression. Try to skip out to the same paren depth to
6904 ;; not confuse the cast check below.
6905 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
6906 ;; If we've found a specifier keyword then it's a
6907 ;; declaration regardless.
6908 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
6909
6910 (setq at-decl-end
6911 (looking-at (cond ((eq context '<>) "[,>]")
6912 (context "[,\)]")
6913 (t "[,;]"))))
6914
6915 ;; Now we've collected info about various characteristics of
6916 ;; the construct we're looking at. Below follows a decision
6917 ;; tree based on that. It's ordered to check more certain
6918 ;; signs before less certain ones.
6919
6920 (if got-identifier
6921 (progn
6922
6923 ;; CASE 2
6924 (when (and (or at-type maybe-typeless)
6925 (not (or got-prefix got-parens)))
6926 ;; Got another identifier directly after the type, so it's a
6927 ;; declaration.
6928 (throw 'at-decl-or-cast t))
6929
6930 (when (and got-parens
6931 (not got-prefix)
6932 (not got-suffix-after-parens)
6933 (or backup-at-type
6934 maybe-typeless
6935 backup-maybe-typeless))
6936 ;; Got a declaration of the form "foo bar (gnu);" where we've
6937 ;; recognized "bar" as the type and "gnu" as the declarator.
6938 ;; In this case it's however more likely that "bar" is the
6939 ;; declarator and "gnu" a function argument or initializer (if
6940 ;; `c-recognize-paren-inits' is set), since the parens around
6941 ;; "gnu" would be superfluous if it's a declarator. Shift the
6942 ;; type one step backward.
6943 (c-fdoc-shift-type-backward)))
6944
6945 ;; Found no identifier.
6946
6947 (if backup-at-type
6948 (progn
6949
6950
6951 ;; CASE 3
6952 (when (= (point) start)
6953 ;; Got a plain list of identifiers. If a colon follows it's
6954 ;; a valid label, or maybe a bitfield. Otherwise the last
6955 ;; one probably is the declared identifier and we should
6956 ;; back up to the previous type, providing it isn't a cast.
6957 (if (and (eq (char-after) ?:)
6958 (not (c-major-mode-is 'java-mode)))
6959 (cond
6960 ;; If we've found a specifier keyword then it's a
6961 ;; declaration regardless.
6962 ((eq at-decl-or-cast t)
6963 (throw 'at-decl-or-cast t))
6964 ((and c-has-bitfields
6965 (eq at-decl-or-cast 'ids)) ; bitfield.
6966 (setq backup-if-not-cast t)
6967 (throw 'at-decl-or-cast t)))
6968
6969 (setq backup-if-not-cast t)
6970 (throw 'at-decl-or-cast t)))
6971
6972 ;; CASE 4
6973 (when (and got-suffix
6974 (not got-prefix)
6975 (not got-parens))
6976 ;; Got a plain list of identifiers followed by some suffix.
6977 ;; If this isn't a cast then the last identifier probably is
6978 ;; the declared one and we should back up to the previous
6979 ;; type.
6980 (setq backup-if-not-cast t)
6981 (throw 'at-decl-or-cast t)))
6982
6983 ;; CASE 5
6984 (when (eq at-type t)
6985 ;; If the type is known we know that there can't be any
6986 ;; identifier somewhere else, and it's only in declarations in
6987 ;; e.g. function prototypes and in casts that the identifier may
6988 ;; be left out.
6989 (throw 'at-decl-or-cast t))
6990
6991 (when (= (point) start)
6992 ;; Only got a single identifier (parsed as a type so far).
6993 ;; CASE 6
6994 (if (and
6995 ;; Check that the identifier isn't at the start of an
6996 ;; expression.
6997 at-decl-end
6998 (cond
6999 ((eq context 'decl)
7000 ;; Inside an arglist that contains declarations. If K&R
7001 ;; style declarations and parenthesis style initializers
7002 ;; aren't allowed then the single identifier must be a
7003 ;; type, else we require that it's known or found
7004 ;; (primitive types are handled above).
7005 (or (and (not c-recognize-knr-p)
7006 (not c-recognize-paren-inits))
7007 (memq at-type '(known found))))
7008 ((eq context '<>)
7009 ;; Inside a template arglist. Accept known and found
7010 ;; types; other identifiers could just as well be
7011 ;; constants in C++.
7012 (memq at-type '(known found)))))
7013 (throw 'at-decl-or-cast t)
7014 ;; CASE 7
7015 ;; Can't be a valid declaration or cast, but if we've found a
7016 ;; specifier it can't be anything else either, so treat it as
7017 ;; an invalid/unfinished declaration or cast.
7018 (throw 'at-decl-or-cast at-decl-or-cast))))
7019
7020 (if (and got-parens
7021 (not got-prefix)
7022 (not context)
7023 (not (eq at-type t))
7024 (or backup-at-type
7025 maybe-typeless
7026 backup-maybe-typeless
7027 (when c-recognize-typeless-decls
7028 (or (not got-suffix)
7029 (not (looking-at
7030 c-after-suffixed-type-maybe-decl-key))))))
7031 ;; Got an empty paren pair and a preceding type that probably
7032 ;; really is the identifier. Shift the type backwards to make
7033 ;; the last one the identifier. This is analogous to the
7034 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
7035 ;; above.
7036 ;;
7037 ;; Exception: In addition to the conditions in that
7038 ;; "backtracking" code, do not shift backward if we're not
7039 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
7040 ;; Since there's no preceding type, the shift would mean that
7041 ;; the declaration is typeless. But if the regexp doesn't match
7042 ;; then we will simply fall through in the tests below and not
7043 ;; recognize it at all, so it's better to try it as an abstract
7044 ;; declarator instead.
7045 (c-fdoc-shift-type-backward)
7046
7047 ;; Still no identifier.
7048 ;; CASE 8
7049 (when (and got-prefix (or got-parens got-suffix))
7050 ;; Require `got-prefix' together with either `got-parens' or
7051 ;; `got-suffix' to recognize it as an abstract declarator:
7052 ;; `got-parens' only is probably an empty function call.
7053 ;; `got-suffix' only can build an ordinary expression together
7054 ;; with the preceding identifier which we've taken as a type.
7055 ;; We could actually accept on `got-prefix' only, but that can
7056 ;; easily occur temporarily while writing an expression so we
7057 ;; avoid that case anyway. We could do a better job if we knew
7058 ;; the point when the fontification was invoked.
7059 (throw 'at-decl-or-cast t))
7060
7061 ;; CASE 9
7062 (when (and at-type
7063 (not got-prefix)
7064 (not got-parens)
7065 got-suffix-after-parens
7066 (eq (char-after got-suffix-after-parens) ?\())
7067 ;; Got a type, no declarator but a paren suffix. I.e. it's a
7068 ;; normal function call after all (or perhaps a C++ style object
7069 ;; instantiation expression).
7070 (throw 'at-decl-or-cast nil))))
7071
7072 ;; CASE 10
7073 (when at-decl-or-cast
7074 ;; By now we've located the type in the declaration that we know
7075 ;; we're in.
7076 (throw 'at-decl-or-cast t))
7077
7078 ;; CASE 11
7079 (when (and got-identifier
7080 (not context)
7081 (looking-at c-after-suffixed-type-decl-key)
7082 (if (and got-parens
7083 (not got-prefix)
7084 (not got-suffix)
7085 (not (eq at-type t)))
7086 ;; Shift the type backward in the case that there's a
7087 ;; single identifier inside parens. That can only
7088 ;; occur in K&R style function declarations so it's
7089 ;; more likely that it really is a function call.
7090 ;; Therefore we only do this after
7091 ;; `c-after-suffixed-type-decl-key' has matched.
7092 (progn (c-fdoc-shift-type-backward) t)
7093 got-suffix-after-parens))
7094 ;; A declaration according to `c-after-suffixed-type-decl-key'.
7095 (throw 'at-decl-or-cast t))
7096
7097 ;; CASE 12
7098 (when (and (or got-prefix (not got-parens))
7099 (memq at-type '(t known)))
7100 ;; It's a declaration if a known type precedes it and it can't be a
7101 ;; function call.
7102 (throw 'at-decl-or-cast t))
7103
7104 ;; If we get here we can't tell if this is a type decl or a normal
7105 ;; expression by looking at it alone. (That's under the assumption
7106 ;; that normal expressions always can look like type decl expressions,
7107 ;; which isn't really true but the cases where it doesn't hold are so
7108 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
7109 ;; the effort to look for them.)
7110
7111 (unless (or at-decl-end (looking-at "=[^=]"))
7112 ;; If this is a declaration it should end here or its initializer(*)
7113 ;; should start here, so check for allowed separation tokens. Note
7114 ;; that this rule doesn't work e.g. with a K&R arglist after a
7115 ;; function header.
7116 ;;
7117 ;; *) Don't check for C++ style initializers using parens
7118 ;; since those already have been matched as suffixes.
7119 ;;
7120 ;; If `at-decl-or-cast' is then we've found some other sign that
7121 ;; it's a declaration or cast, so then it's probably an
7122 ;; invalid/unfinished one.
7123 (throw 'at-decl-or-cast at-decl-or-cast))
7124
7125 ;; Below are tests that only should be applied when we're certain to
7126 ;; not have parsed halfway through an expression.
7127
7128 ;; CASE 14
7129 (when (memq at-type '(t known))
7130 ;; The expression starts with a known type so treat it as a
7131 ;; declaration.
7132 (throw 'at-decl-or-cast t))
7133
7134 ;; CASE 15
7135 (when (and (c-major-mode-is 'c++-mode)
7136 ;; In C++ we check if the identifier is a known type, since
7137 ;; (con|de)structors use the class name as identifier.
7138 ;; We've always shifted over the identifier as a type and
7139 ;; then backed up again in this case.
7140 identifier-type
7141 (or (memq identifier-type '(found known))
7142 (and (eq (char-after identifier-start) ?~)
7143 ;; `at-type' probably won't be 'found for
7144 ;; destructors since the "~" is then part of the
7145 ;; type name being checked against the list of
7146 ;; known types, so do a check without that
7147 ;; operator.
7148 (or (save-excursion
7149 (goto-char (1+ identifier-start))
7150 (c-forward-syntactic-ws)
7151 (c-with-syntax-table
7152 c-identifier-syntax-table
7153 (looking-at c-known-type-key)))
7154 (save-excursion
7155 (goto-char (1+ identifier-start))
7156 ;; We have already parsed the type earlier,
7157 ;; so it'd be possible to cache the end
7158 ;; position instead of redoing it here, but
7159 ;; then we'd need to keep track of another
7160 ;; position everywhere.
7161 (c-check-type (point)
7162 (progn (c-forward-type)
7163 (point))))))))
7164 (throw 'at-decl-or-cast t))
7165
7166 (if got-identifier
7167 (progn
7168 ;; CASE 16
7169 (when (and got-prefix-before-parens
7170 at-type
7171 (or at-decl-end (looking-at "=[^=]"))
7172 (not context)
7173 (not got-suffix))
7174 ;; Got something like "foo * bar;". Since we're not inside an
7175 ;; arglist it would be a meaningless expression because the
7176 ;; result isn't used. We therefore choose to recognize it as
7177 ;; a declaration. Do not allow a suffix since it could then
7178 ;; be a function call.
7179 (throw 'at-decl-or-cast t))
7180
7181 ;; CASE 17
7182 (when (and (or got-suffix-after-parens
7183 (looking-at "=[^=]"))
7184 (eq at-type 'found)
7185 (not (eq context 'arglist)))
7186 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
7187 ;; be an odd expression or it could be a declaration. Treat
7188 ;; it as a declaration if "a" has been used as a type
7189 ;; somewhere else (if it's a known type we won't get here).
7190 (throw 'at-decl-or-cast t)))
7191
7192 ;; CASE 18
7193 (when (and context
7194 (or got-prefix
7195 (and (eq context 'decl)
7196 (not c-recognize-paren-inits)
7197 (or got-parens got-suffix))))
7198 ;; Got a type followed by an abstract declarator. If `got-prefix'
7199 ;; is set it's something like "a *" without anything after it. If
7200 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
7201 ;; or similar, which we accept only if the context rules out
7202 ;; expressions.
7203 (throw 'at-decl-or-cast t)))
7204
7205 ;; If we had a complete symbol table here (which rules out
7206 ;; `c-found-types') we should return t due to the disambiguation rule
7207 ;; (in at least C++) that anything that can be parsed as a declaration
7208 ;; is a declaration. Now we're being more defensive and prefer to
7209 ;; highlight things like "foo (bar);" as a declaration only if we're
7210 ;; inside an arglist that contains declarations.
7211 (eq context 'decl))))
7212
7213 ;; The point is now after the type decl expression.
7214
7215 (cond
7216 ;; Check for a cast.
7217 ((save-excursion
7218 (and
7219 c-cast-parens
7220
7221 ;; Should be the first type/identifier in a cast paren.
7222 (> preceding-token-end (point-min))
7223 (memq (char-before preceding-token-end) c-cast-parens)
7224
7225 ;; The closing paren should follow.
7226 (progn
7227 (c-forward-syntactic-ws)
7228 (looking-at "\\s\)"))
7229
7230 ;; There should be a primary expression after it.
7231 (let (pos)
7232 (forward-char)
7233 (c-forward-syntactic-ws)
7234 (setq cast-end (point))
7235 (and (looking-at c-primary-expr-regexp)
7236 (progn
7237 (setq pos (match-end 0))
7238 (or
7239 ;; Check if the expression begins with a prefix keyword.
7240 (match-beginning 2)
7241 (if (match-beginning 1)
7242 ;; Expression begins with an ambiguous operator. Treat
7243 ;; it as a cast if it's a type decl or if we've
7244 ;; recognized the type somewhere else.
7245 (or at-decl-or-cast
7246 (memq at-type '(t known found)))
7247 ;; Unless it's a keyword, it's the beginning of a primary
7248 ;; expression.
7249 (not (looking-at c-keywords-regexp)))))
7250 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
7251 ;; that it matched a whole one so that we don't e.g. confuse
7252 ;; the operator '-' with '->'. It's ok if it matches further,
7253 ;; though, since it e.g. can match the float '.5' while the
7254 ;; operator regexp only matches '.'.
7255 (or (not (looking-at c-nonsymbol-token-regexp))
7256 (<= (match-end 0) pos))))
7257
7258 ;; There should either be a cast before it or something that isn't an
7259 ;; identifier or close paren.
7260 (> preceding-token-end (point-min))
7261 (progn
7262 (goto-char (1- preceding-token-end))
7263 (or (eq (point) last-cast-end)
7264 (progn
7265 (c-backward-syntactic-ws)
7266 (if (< (skip-syntax-backward "w_") 0)
7267 ;; It's a symbol. Accept it only if it's one of the
7268 ;; keywords that can precede an expression (without
7269 ;; surrounding parens).
7270 (looking-at c-simple-stmt-key)
7271 (and
7272 ;; Check that it isn't a close paren (block close is ok,
7273 ;; though).
7274 (not (memq (char-before) '(?\) ?\])))
7275 ;; Check that it isn't a nonsymbol identifier.
7276 (not (c-on-identifier)))))))))
7277
7278 ;; Handle the cast.
7279 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7280 (let ((c-promote-possible-types t))
7281 (goto-char type-start)
7282 (c-forward-type)))
7283
7284 (goto-char cast-end)
7285 'cast)
7286
7287 (at-decl-or-cast
7288 ;; We're at a declaration. Highlight the type and the following
7289 ;; declarators.
7290
7291 (when backup-if-not-cast
7292 (c-fdoc-shift-type-backward t))
7293
7294 (when (and (eq context 'decl) (looking-at ","))
7295 ;; Make sure to propagate the `c-decl-arg-start' property to
7296 ;; the next argument if it's set in this one, to cope with
7297 ;; interactive refontification.
7298 (c-put-c-type-property (point) 'c-decl-arg-start))
7299
7300 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7301 (let ((c-promote-possible-types t))
7302 (save-excursion
7303 (goto-char type-start)
7304 (c-forward-type))))
7305
7306 (cons id-start
7307 (and (or at-type-decl at-typedef)
7308 (cons at-type-decl at-typedef))))
7309
7310 (t
7311 ;; False alarm. Restore the recorded ranges.
7312 (setq c-record-type-identifiers save-rec-type-ids
7313 c-record-ref-identifiers save-rec-ref-ids)
7314 nil))))
7315
7316 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
7317 ;; Assuming that point is at the beginning of a token, check if it starts a
7318 ;; label and if so move over it and return non-nil (t in default situations,
7319 ;; specific symbols (see below) for interesting situations), otherwise don't
7320 ;; move and return nil. "Label" here means "most things with a colon".
7321 ;;
7322 ;; More precisely, a "label" is regarded as one of:
7323 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
7324 ;; (ii) A case label - either the entire construct "case FOO:", or just the
7325 ;; bare "case", should the colon be missing. We return t;
7326 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
7327 ;; return t;
7328 ;; (iv) One of QT's "extended" C++ variants of
7329 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
7330 ;; Returns the symbol `qt-2kwds-colon'.
7331 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
7332 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
7333 ;; colon). Currently (2006-03), this applies only to Objective C's
7334 ;; keywords "@private", "@protected", and "@public". Returns t.
7335 ;;
7336 ;; One of the things which will NOT be recognized as a label is a bit-field
7337 ;; element of a struct, something like "int foo:5".
7338 ;;
7339 ;; The end of the label is taken to be just after the colon, or the end of
7340 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
7341 ;; after the end on return. The terminating char gets marked with
7342 ;; `c-decl-end' to improve recognition of the following declaration or
7343 ;; statement.
7344 ;;
7345 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
7346 ;; label, if any, has already been marked up like that.
7347 ;;
7348 ;; If PRECEDING-TOKEN-END is given, it should be the first position
7349 ;; after the preceding token, i.e. on the other side of the
7350 ;; syntactic ws from the point. Use a value less than or equal to
7351 ;; (point-min) if the point is at the first token in (the visible
7352 ;; part of) the buffer.
7353 ;;
7354 ;; The optional LIMIT limits the forward scan for the colon.
7355 ;;
7356 ;; This function records the ranges of the label symbols on
7357 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
7358 ;; non-nil.
7359 ;;
7360 ;; This function might do hidden buffer changes.
7361
7362 (let ((start (point))
7363 label-end
7364 qt-symbol-idx
7365 macro-start ; if we're in one.
7366 label-type
7367 kwd)
7368 (cond
7369 ;; "case" or "default" (Doesn't apply to AWK).
7370 ((looking-at c-label-kwds-regexp)
7371 (let ((kwd-end (match-end 1)))
7372 ;; Record only the keyword itself for fontification, since in
7373 ;; case labels the following is a constant expression and not
7374 ;; a label.
7375 (when c-record-type-identifiers
7376 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
7377
7378 ;; Find the label end.
7379 (goto-char kwd-end)
7380 (setq label-type
7381 (if (and (c-syntactic-re-search-forward
7382 ;; Stop on chars that aren't allowed in expressions,
7383 ;; and on operator chars that would be meaningless
7384 ;; there. FIXME: This doesn't cope with ?: operators.
7385 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
7386 limit t t nil 1)
7387 (match-beginning 2))
7388
7389 (progn ; there's a proper :
7390 (goto-char (match-beginning 2)) ; just after the :
7391 (c-put-c-type-property (1- (point)) 'c-decl-end)
7392 t)
7393
7394 ;; It's an unfinished label. We consider the keyword enough
7395 ;; to recognize it as a label, so that it gets fontified.
7396 ;; Leave the point at the end of it, but don't put any
7397 ;; `c-decl-end' marker.
7398 (goto-char kwd-end)
7399 t))))
7400
7401 ;; @private, @protected, @public, in Objective C, or similar.
7402 ((and c-opt-extra-label-key
7403 (looking-at c-opt-extra-label-key))
7404 ;; For a `c-opt-extra-label-key' match, we record the whole
7405 ;; thing for fontification. That's to get the leading '@' in
7406 ;; Objective-C protection labels fontified.
7407 (goto-char (match-end 1))
7408 (when c-record-type-identifiers
7409 (c-record-ref-id (cons (match-beginning 1) (point))))
7410 (c-put-c-type-property (1- (point)) 'c-decl-end)
7411 (setq label-type t))
7412
7413 ;; All other cases of labels.
7414 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
7415
7416 ;; A colon label must have something before the colon.
7417 (not (eq (char-after) ?:))
7418
7419 ;; Check that we're not after a token that can't precede a label.
7420 (or
7421 ;; Trivially succeeds when there's no preceding token.
7422 ;; Succeeds when we're at a virtual semicolon.
7423 (if preceding-token-end
7424 (<= preceding-token-end (point-min))
7425 (save-excursion
7426 (c-backward-syntactic-ws)
7427 (setq preceding-token-end (point))
7428 (or (bobp)
7429 (c-at-vsemi-p))))
7430
7431 ;; Check if we're after a label, if we're after a closing
7432 ;; paren that belong to statement, and with
7433 ;; `c-label-prefix-re'. It's done in different order
7434 ;; depending on `assume-markup' since the checks have
7435 ;; different expensiveness.
7436 (if assume-markup
7437 (or
7438 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
7439 'c-decl-end)
7440
7441 (save-excursion
7442 (goto-char (1- preceding-token-end))
7443 (c-beginning-of-current-token)
7444 (or (looking-at c-label-prefix-re)
7445 (looking-at c-block-stmt-1-key)))
7446
7447 (and (eq (char-before preceding-token-end) ?\))
7448 (c-after-conditional)))
7449
7450 (or
7451 (save-excursion
7452 (goto-char (1- preceding-token-end))
7453 (c-beginning-of-current-token)
7454 (or (looking-at c-label-prefix-re)
7455 (looking-at c-block-stmt-1-key)))
7456
7457 (cond
7458 ((eq (char-before preceding-token-end) ?\))
7459 (c-after-conditional))
7460
7461 ((eq (char-before preceding-token-end) ?:)
7462 ;; Might be after another label, so check it recursively.
7463 (save-restriction
7464 (save-excursion
7465 (goto-char (1- preceding-token-end))
7466 ;; Essentially the same as the
7467 ;; `c-syntactic-re-search-forward' regexp below.
7468 (setq macro-start
7469 (save-excursion (and (c-beginning-of-macro)
7470 (point))))
7471 (if macro-start (narrow-to-region macro-start (point-max)))
7472 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
7473 ;; Note: the following should work instead of the
7474 ;; narrow-to-region above. Investigate why not,
7475 ;; sometime. ACM, 2006-03-31.
7476 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
7477 ;; macro-start t)
7478 (let ((pte (point))
7479 ;; If the caller turned on recording for us,
7480 ;; it shouldn't apply when we check the
7481 ;; preceding label.
7482 c-record-type-identifiers)
7483 ;; A label can't start at a cpp directive. Check for
7484 ;; this, since c-forward-syntactic-ws would foul up on it.
7485 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
7486 (c-forward-syntactic-ws)
7487 (c-forward-label nil pte start))))))))))
7488
7489 ;; Point is still at the beginning of the possible label construct.
7490 ;;
7491 ;; Check that the next nonsymbol token is ":", or that we're in one
7492 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
7493 ;; arguments. FIXME: Should build this regexp from the language
7494 ;; constants.
7495 (cond
7496 ;; public: protected: private:
7497 ((and
7498 (c-major-mode-is 'c++-mode)
7499 (search-forward-regexp
7500 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
7501 (progn (backward-char)
7502 (c-forward-syntactic-ws limit)
7503 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
7504 (forward-char)
7505 (setq label-type t))
7506 ;; QT double keyword like "protected slots:" or goto target.
7507 ((progn (goto-char start) nil))
7508 ((when (c-syntactic-re-search-forward
7509 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
7510 (backward-char)
7511 (setq label-end (point))
7512 (setq qt-symbol-idx
7513 (and (c-major-mode-is 'c++-mode)
7514 (string-match
7515 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
7516 (buffer-substring start (point)))))
7517 (c-forward-syntactic-ws limit)
7518 (cond
7519 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
7520 (forward-char)
7521 (setq label-type
7522 (if (or (string= "signals" ; Special QT macro
7523 (setq kwd (buffer-substring-no-properties start label-end)))
7524 (string= "Q_SIGNALS" kwd))
7525 'qt-1kwd-colon
7526 'goto-target)))
7527 ((and qt-symbol-idx
7528 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
7529 (progn (c-forward-syntactic-ws limit)
7530 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
7531 (forward-char)
7532 (setq label-type 'qt-2kwds-colon)))))))
7533
7534 (save-restriction
7535 (narrow-to-region start (point))
7536
7537 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
7538 (catch 'check-label
7539 (goto-char start)
7540 (while (progn
7541 (when (looking-at c-nonlabel-token-key)
7542 (goto-char start)
7543 (setq label-type nil)
7544 (throw 'check-label nil))
7545 (and (c-safe (c-forward-sexp)
7546 (c-forward-syntactic-ws)
7547 t)
7548 (not (eobp)))))
7549
7550 ;; Record the identifiers in the label for fontification, unless
7551 ;; it begins with `c-label-kwds' in which case the following
7552 ;; identifiers are part of a (constant) expression that
7553 ;; shouldn't be fontified.
7554 (when (and c-record-type-identifiers
7555 (progn (goto-char start)
7556 (not (looking-at c-label-kwds-regexp))))
7557 (while (c-syntactic-re-search-forward c-symbol-key nil t)
7558 (c-record-ref-id (cons (match-beginning 0)
7559 (match-end 0)))))
7560
7561 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
7562 (goto-char (point-max)))))
7563
7564 (t
7565 ;; Not a label.
7566 (goto-char start)))
7567 label-type))
7568
7569 (defun c-forward-objc-directive ()
7570 ;; Assuming the point is at the beginning of a token, try to move
7571 ;; forward to the end of the Objective-C directive that starts
7572 ;; there. Return t if a directive was fully recognized, otherwise
7573 ;; the point is moved as far as one could be successfully parsed and
7574 ;; nil is returned.
7575 ;;
7576 ;; This function records identifier ranges on
7577 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7578 ;; `c-record-type-identifiers' is non-nil.
7579 ;;
7580 ;; This function might do hidden buffer changes.
7581
7582 (let ((start (point))
7583 start-char
7584 (c-promote-possible-types t)
7585 lim
7586 ;; Turn off recognition of angle bracket arglists while parsing
7587 ;; types here since the protocol reference list might then be
7588 ;; considered part of the preceding name or superclass-name.
7589 c-recognize-<>-arglists)
7590
7591 (if (or
7592 (when (looking-at
7593 (eval-when-compile
7594 (c-make-keywords-re t
7595 (append (c-lang-const c-protection-kwds objc)
7596 '("@end"))
7597 'objc-mode)))
7598 (goto-char (match-end 1))
7599 t)
7600
7601 (and
7602 (looking-at
7603 (eval-when-compile
7604 (c-make-keywords-re t
7605 '("@interface" "@implementation" "@protocol")
7606 'objc-mode)))
7607
7608 ;; Handle the name of the class itself.
7609 (progn
7610 ; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
7611 ; at EOB.
7612 (goto-char (match-end 0))
7613 (setq lim (point))
7614 (c-skip-ws-forward)
7615 (c-forward-type))
7616
7617 (catch 'break
7618 ;; Look for ": superclass-name" or "( category-name )".
7619 (when (looking-at "[:\(]")
7620 (setq start-char (char-after))
7621 (forward-char)
7622 (c-forward-syntactic-ws)
7623 (unless (c-forward-type) (throw 'break nil))
7624 (when (eq start-char ?\()
7625 (unless (eq (char-after) ?\)) (throw 'break nil))
7626 (forward-char)
7627 (c-forward-syntactic-ws)))
7628
7629 ;; Look for a protocol reference list.
7630 (if (eq (char-after) ?<)
7631 (let ((c-recognize-<>-arglists t)
7632 (c-parse-and-markup-<>-arglists t)
7633 c-restricted-<>-arglists)
7634 (c-forward-<>-arglist t))
7635 t))))
7636
7637 (progn
7638 (c-backward-syntactic-ws lim)
7639 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
7640 (c-put-c-type-property (1- (point)) 'c-decl-end)
7641 t)
7642
7643 (c-clear-c-type-property start (point) 'c-decl-end)
7644 nil)))
7645
7646 (defun c-beginning-of-inheritance-list (&optional lim)
7647 ;; Go to the first non-whitespace after the colon that starts a
7648 ;; multiple inheritance introduction. Optional LIM is the farthest
7649 ;; back we should search.
7650 ;;
7651 ;; This function might do hidden buffer changes.
7652 (c-with-syntax-table c++-template-syntax-table
7653 (c-backward-token-2 0 t lim)
7654 (while (and (or (looking-at c-symbol-start)
7655 (looking-at "[<,]\\|::"))
7656 (zerop (c-backward-token-2 1 t lim))))))
7657
7658 (defun c-in-method-def-p ()
7659 ;; Return nil if we aren't in a method definition, otherwise the
7660 ;; position of the initial [+-].
7661 ;;
7662 ;; This function might do hidden buffer changes.
7663 (save-excursion
7664 (beginning-of-line)
7665 (and c-opt-method-key
7666 (looking-at c-opt-method-key)
7667 (point))
7668 ))
7669
7670 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
7671 (defun c-in-gcc-asm-p ()
7672 ;; Return non-nil if point is within a gcc \"asm\" block.
7673 ;;
7674 ;; This should be called with point inside an argument list.
7675 ;;
7676 ;; Only one level of enclosing parentheses is considered, so for
7677 ;; instance `nil' is returned when in a function call within an asm
7678 ;; operand.
7679 ;;
7680 ;; This function might do hidden buffer changes.
7681
7682 (and c-opt-asm-stmt-key
7683 (save-excursion
7684 (beginning-of-line)
7685 (backward-up-list 1)
7686 (c-beginning-of-statement-1 (point-min) nil t)
7687 (looking-at c-opt-asm-stmt-key))))
7688
7689 (defun c-at-toplevel-p ()
7690 "Return a determination as to whether point is \"at the top level\".
7691 Informally, \"at the top level\" is anywhere where you can write
7692 a function.
7693
7694 More precisely, being at the top-level means that point is either
7695 outside any enclosing block (such as a function definition), or
7696 directly inside a class, namespace or other block that contains
7697 another declaration level.
7698
7699 If point is not at the top-level (e.g. it is inside a method
7700 definition), then nil is returned. Otherwise, if point is at a
7701 top-level not enclosed within a class definition, t is returned.
7702 Otherwise, a 2-vector is returned where the zeroth element is the
7703 buffer position of the start of the class declaration, and the first
7704 element is the buffer position of the enclosing class's opening
7705 brace.
7706
7707 Note that this function might do hidden buffer changes. See the
7708 comment at the start of cc-engine.el for more info."
7709 (let ((paren-state (c-parse-state)))
7710 (or (not (c-most-enclosing-brace paren-state))
7711 (c-search-uplist-for-classkey paren-state))))
7712
7713 (defun c-just-after-func-arglist-p (&optional lim)
7714 ;; Return non-nil if the point is in the region after the argument
7715 ;; list of a function and its opening brace (or semicolon in case it
7716 ;; got no body). If there are K&R style argument declarations in
7717 ;; that region, the point has to be inside the first one for this
7718 ;; function to recognize it.
7719 ;;
7720 ;; If successful, the point is moved to the first token after the
7721 ;; function header (see `c-forward-decl-or-cast-1' for details) and
7722 ;; the position of the opening paren of the function arglist is
7723 ;; returned.
7724 ;;
7725 ;; The point is clobbered if not successful.
7726 ;;
7727 ;; LIM is used as bound for backward buffer searches.
7728 ;;
7729 ;; This function might do hidden buffer changes.
7730
7731 (let ((beg (point)) end id-start)
7732 (and
7733 (eq (c-beginning-of-statement-1 lim) 'same)
7734
7735 (not (and (c-major-mode-is 'objc-mode)
7736 (c-forward-objc-directive)))
7737
7738 (setq id-start
7739 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
7740 (< id-start beg)
7741
7742 ;; There should not be a '=' or ',' between beg and the
7743 ;; start of the declaration since that means we were in the
7744 ;; "expression part" of the declaration.
7745 (or (> (point) beg)
7746 (not (looking-at "[=,]")))
7747
7748 (save-excursion
7749 ;; Check that there's an arglist paren in the
7750 ;; declaration.
7751 (goto-char id-start)
7752 (cond ((eq (char-after) ?\()
7753 ;; The declarator is a paren expression, so skip past it
7754 ;; so that we don't get stuck on that instead of the
7755 ;; function arglist.
7756 (c-forward-sexp))
7757 ((and c-opt-op-identifier-prefix
7758 (looking-at c-opt-op-identifier-prefix))
7759 ;; Don't trip up on "operator ()".
7760 (c-forward-token-2 2 t)))
7761 (and (< (point) beg)
7762 (c-syntactic-re-search-forward "(" beg t t)
7763 (1- (point)))))))
7764
7765 (defun c-in-knr-argdecl (&optional lim)
7766 ;; Return the position of the first argument declaration if point is
7767 ;; inside a K&R style argument declaration list, nil otherwise.
7768 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
7769 ;; position that bounds the backward search for the argument list.
7770 ;;
7771 ;; Point must be within a possible K&R region, e.g. just before a top-level
7772 ;; "{". It must be outside of parens and brackets. The test can return
7773 ;; false positives otherwise.
7774 ;;
7775 ;; This function might do hidden buffer changes.
7776
7777 (save-excursion
7778 (save-restriction
7779 ;; If we're in a macro, our search range is restricted to it. Narrow to
7780 ;; the searchable range.
7781 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
7782 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
7783 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
7784 before-lparen after-rparen
7785 (pp-count-out 20)) ; Max number of paren/brace constructs before
7786 ; we give up
7787 (narrow-to-region low-lim (or macro-end (point-max)))
7788
7789 ;; Search backwards for the defun's argument list. We give up if we
7790 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
7791 ;; a knr region) or BOB.
7792 ;;
7793 ;; The criterion for a paren structure being the arg list is:
7794 ;; o - there is non-WS stuff after it but before any "{"; AND
7795 ;; o - the token after it isn't a ";" AND
7796 ;; o - it is preceded by either an identifier (the function name) or
7797 ;; a macro expansion like "DEFUN (...)"; AND
7798 ;; o - its content is a non-empty comma-separated list of identifiers
7799 ;; (an empty arg list won't have a knr region).
7800 ;;
7801 ;; The following snippet illustrates these rules:
7802 ;; int foo (bar, baz, yuk)
7803 ;; int bar [] ;
7804 ;; int (*baz) (my_type) ;
7805 ;; int (*) (void) (*yuk) (void) ;
7806 ;; {
7807
7808 (catch 'knr
7809 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
7810 (setq pp-count-out (1- pp-count-out))
7811 (c-syntactic-skip-backward "^)]}=")
7812 (cond ((eq (char-before) ?\))
7813 (setq after-rparen (point)))
7814 ((eq (char-before) ?\])
7815 (setq after-rparen nil))
7816 (t ; either } (hit previous defun) or = or no more
7817 ; parens/brackets.
7818 (throw 'knr nil)))
7819
7820 (if after-rparen
7821 ;; We're inside a paren. Could it be our argument list....?
7822 (if
7823 (and
7824 (progn
7825 (goto-char after-rparen)
7826 (unless (c-go-list-backward) (throw 'knr nil)) ;
7827 ;; FIXME!!! What about macros between the parens? 2007/01/20
7828 (setq before-lparen (point)))
7829
7830 ;; It can't be the arg list if next token is ; or {
7831 (progn (goto-char after-rparen)
7832 (c-forward-syntactic-ws)
7833 (not (memq (char-after) '(?\; ?\{ ?\=))))
7834
7835 ;; Is the thing preceding the list an identifier (the
7836 ;; function name), or a macro expansion?
7837 (progn
7838 (goto-char before-lparen)
7839 (eq (c-backward-token-2) 0)
7840 (or (eq (c-on-identifier) (point))
7841 (and (eq (char-after) ?\))
7842 (c-go-up-list-backward)
7843 (eq (c-backward-token-2) 0)
7844 (eq (c-on-identifier) (point)))))
7845
7846 ;; Have we got a non-empty list of comma-separated
7847 ;; identifiers?
7848 (progn
7849 (goto-char before-lparen)
7850 (c-forward-token-2) ; to first token inside parens
7851 (and
7852 (c-on-identifier)
7853 (c-forward-token-2)
7854 (catch 'id-list
7855 (while (eq (char-after) ?\,)
7856 (c-forward-token-2)
7857 (unless (c-on-identifier) (throw 'id-list nil))
7858 (c-forward-token-2))
7859 (eq (char-after) ?\))))))
7860
7861 ;; ...Yes. We've identified the function's argument list.
7862 (throw 'knr
7863 (progn (goto-char after-rparen)
7864 (c-forward-syntactic-ws)
7865 (point)))
7866
7867 ;; ...No. The current parens aren't the function's arg list.
7868 (goto-char before-lparen))
7869
7870 (or (c-go-list-backward) ; backwards over [ .... ]
7871 (throw 'knr nil)))))))))
7872
7873 (defun c-skip-conditional ()
7874 ;; skip forward over conditional at point, including any predicate
7875 ;; statements in parentheses. No error checking is performed.
7876 ;;
7877 ;; This function might do hidden buffer changes.
7878 (c-forward-sexp (cond
7879 ;; else if()
7880 ((looking-at (concat "\\<else"
7881 "\\([ \t\n]\\|\\\\\n\\)+"
7882 "if\\>\\([^_]\\|$\\)"))
7883 3)
7884 ;; do, else, try, finally
7885 ((looking-at (concat "\\<\\("
7886 "do\\|else\\|try\\|finally"
7887 "\\)\\>\\([^_]\\|$\\)"))
7888 1)
7889 ;; for, if, while, switch, catch, synchronized, foreach
7890 (t 2))))
7891
7892 (defun c-after-conditional (&optional lim)
7893 ;; If looking at the token after a conditional then return the
7894 ;; position of its start, otherwise return nil.
7895 ;;
7896 ;; This function might do hidden buffer changes.
7897 (save-excursion
7898 (and (zerop (c-backward-token-2 1 t lim))
7899 (or (looking-at c-block-stmt-1-key)
7900 (and (eq (char-after) ?\()
7901 (zerop (c-backward-token-2 1 t lim))
7902 (looking-at c-block-stmt-2-key)))
7903 (point))))
7904
7905 (defun c-after-special-operator-id (&optional lim)
7906 ;; If the point is after an operator identifier that isn't handled
7907 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
7908 ;; position of the start of that identifier is returned. nil is
7909 ;; returned otherwise. The point may be anywhere in the syntactic
7910 ;; whitespace after the last token of the operator identifier.
7911 ;;
7912 ;; This function might do hidden buffer changes.
7913 (save-excursion
7914 (and c-overloadable-operators-regexp
7915 (zerop (c-backward-token-2 1 nil lim))
7916 (looking-at c-overloadable-operators-regexp)
7917 (or (not c-opt-op-identifier-prefix)
7918 (and
7919 (zerop (c-backward-token-2 1 nil lim))
7920 (looking-at c-opt-op-identifier-prefix)))
7921 (point))))
7922
7923 (defsubst c-backward-to-block-anchor (&optional lim)
7924 ;; Assuming point is at a brace that opens a statement block of some
7925 ;; kind, move to the proper anchor point for that block. It might
7926 ;; need to be adjusted further by c-add-stmt-syntax, but the
7927 ;; position at return is suitable as start position for that
7928 ;; function.
7929 ;;
7930 ;; This function might do hidden buffer changes.
7931 (unless (= (point) (c-point 'boi))
7932 (let ((start (c-after-conditional lim)))
7933 (if start
7934 (goto-char start)))))
7935
7936 (defsubst c-backward-to-decl-anchor (&optional lim)
7937 ;; Assuming point is at a brace that opens the block of a top level
7938 ;; declaration of some kind, move to the proper anchor point for
7939 ;; that block.
7940 ;;
7941 ;; This function might do hidden buffer changes.
7942 (unless (= (point) (c-point 'boi))
7943 (c-beginning-of-statement-1 lim)))
7944
7945 (defun c-search-decl-header-end ()
7946 ;; Search forward for the end of the "header" of the current
7947 ;; declaration. That's the position where the definition body
7948 ;; starts, or the first variable initializer, or the ending
7949 ;; semicolon. I.e. search forward for the closest following
7950 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
7951 ;; _after_ the first found token, or at point-max if none is found.
7952 ;;
7953 ;; This function might do hidden buffer changes.
7954
7955 (let ((base (point)))
7956 (if (c-major-mode-is 'c++-mode)
7957
7958 ;; In C++ we need to take special care to handle operator
7959 ;; tokens and those pesky template brackets.
7960 (while (and
7961 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
7962 (or
7963 (c-end-of-current-token base)
7964 ;; Handle operator identifiers, i.e. ignore any
7965 ;; operator token preceded by "operator".
7966 (save-excursion
7967 (and (c-safe (c-backward-sexp) t)
7968 (looking-at c-opt-op-identifier-prefix)))
7969 (and (eq (char-before) ?<)
7970 (c-with-syntax-table c++-template-syntax-table
7971 (if (c-safe (goto-char (c-up-list-forward (point))))
7972 t
7973 (goto-char (point-max))
7974 nil)))))
7975 (setq base (point)))
7976
7977 (while (and
7978 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
7979 (c-end-of-current-token base))
7980 (setq base (point))))))
7981
7982 (defun c-beginning-of-decl-1 (&optional lim)
7983 ;; Go to the beginning of the current declaration, or the beginning
7984 ;; of the previous one if already at the start of it. Point won't
7985 ;; be moved out of any surrounding paren. Return a cons cell of the
7986 ;; form (MOVE . KNR-POS). MOVE is like the return value from
7987 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
7988 ;; style argument declarations (and they are to be recognized) then
7989 ;; KNR-POS is set to the start of the first such argument
7990 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
7991 ;; position that bounds the backward search.
7992 ;;
7993 ;; NB: Cases where the declaration continues after the block, as in
7994 ;; "struct foo { ... } bar;", are currently recognized as two
7995 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
7996 ;;
7997 ;; This function might do hidden buffer changes.
7998 (catch 'return
7999 (let* ((start (point))
8000 (last-stmt-start (point))
8001 (move (c-beginning-of-statement-1 lim nil t)))
8002
8003 ;; `c-beginning-of-statement-1' stops at a block start, but we
8004 ;; want to continue if the block doesn't begin a top level
8005 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
8006 ;; or an open paren.
8007 (let ((beg (point)) tentative-move)
8008 ;; Go back one "statement" each time round the loop until we're just
8009 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
8010 ;; an ObjC method. This will move over a multiple declaration whose
8011 ;; components are comma separated.
8012 (while (and
8013 ;; Must check with c-opt-method-key in ObjC mode.
8014 (not (and c-opt-method-key
8015 (looking-at c-opt-method-key)))
8016 (/= last-stmt-start (point))
8017 (progn
8018 (c-backward-syntactic-ws lim)
8019 (not (memq (char-before) '(?\; ?} ?: nil))))
8020 (save-excursion
8021 (backward-char)
8022 (not (looking-at "\\s(")))
8023 ;; Check that we don't move from the first thing in a
8024 ;; macro to its header.
8025 (not (eq (setq tentative-move
8026 (c-beginning-of-statement-1 lim nil t))
8027 'macro)))
8028 (setq last-stmt-start beg
8029 beg (point)
8030 move tentative-move))
8031 (goto-char beg))
8032
8033 (when c-recognize-knr-p
8034 (let ((fallback-pos (point)) knr-argdecl-start)
8035 ;; Handle K&R argdecls. Back up after the "statement" jumped
8036 ;; over by `c-beginning-of-statement-1', unless it was the
8037 ;; function body, in which case we're sitting on the opening
8038 ;; brace now. Then test if we're in a K&R argdecl region and
8039 ;; that we started at the other side of the first argdecl in
8040 ;; it.
8041 (unless (eq (char-after) ?{)
8042 (goto-char last-stmt-start))
8043 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
8044 (< knr-argdecl-start start)
8045 (progn
8046 (goto-char knr-argdecl-start)
8047 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
8048 (throw 'return
8049 (cons (if (eq (char-after fallback-pos) ?{)
8050 'previous
8051 'same)
8052 knr-argdecl-start))
8053 (goto-char fallback-pos))))
8054
8055 ;; `c-beginning-of-statement-1' counts each brace block as a separate
8056 ;; statement, so the result will be 'previous if we've moved over any.
8057 ;; So change our result back to 'same if necessary.
8058 ;;
8059 ;; If they were brace list initializers we might not have moved over a
8060 ;; declaration boundary though, so change it to 'same if we've moved
8061 ;; past a '=' before '{', but not ';'. (This ought to be integrated
8062 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
8063 ;; potentially can search over a large amount of text.). Take special
8064 ;; pains not to get mislead by C++'s "operator=", and the like.
8065 (if (and (eq move 'previous)
8066 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
8067 c++-template-syntax-table
8068 (syntax-table))
8069 (save-excursion
8070 (and
8071 (progn
8072 (while ; keep going back to "[;={"s until we either find
8073 ; no more, or get to one which isn't an "operator ="
8074 (and (c-syntactic-re-search-forward "[;={]" start t t t)
8075 (eq (char-before) ?=)
8076 c-overloadable-operators-regexp
8077 c-opt-op-identifier-prefix
8078 (save-excursion
8079 (eq (c-backward-token-2) 0)
8080 (looking-at c-overloadable-operators-regexp)
8081 (eq (c-backward-token-2) 0)
8082 (looking-at c-opt-op-identifier-prefix))))
8083 (eq (char-before) ?=))
8084 (c-syntactic-re-search-forward "[;{]" start t t)
8085 (eq (char-before) ?{)
8086 (c-safe (goto-char (c-up-list-forward (point))) t)
8087 (not (c-syntactic-re-search-forward ";" start t t))))))
8088 (cons 'same nil)
8089 (cons move nil)))))
8090
8091 (defun c-end-of-decl-1 ()
8092 ;; Assuming point is at the start of a declaration (as detected by
8093 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
8094 ;; `c-beginning-of-decl-1', this function handles the case when a
8095 ;; block is followed by identifiers in e.g. struct declarations in C
8096 ;; or C++. If a proper end was found then t is returned, otherwise
8097 ;; point is moved as far as possible within the current sexp and nil
8098 ;; is returned. This function doesn't handle macros; use
8099 ;; `c-end-of-macro' instead in those cases.
8100 ;;
8101 ;; This function might do hidden buffer changes.
8102 (let ((start (point))
8103 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
8104 c++-template-syntax-table
8105 (syntax-table))))
8106 (catch 'return
8107 (c-search-decl-header-end)
8108
8109 (when (and c-recognize-knr-p
8110 (eq (char-before) ?\;)
8111 (c-in-knr-argdecl start))
8112 ;; Stopped at the ';' in a K&R argdecl section which is
8113 ;; detected using the same criteria as in
8114 ;; `c-beginning-of-decl-1'. Move to the following block
8115 ;; start.
8116 (c-syntactic-re-search-forward "{" nil 'move t))
8117
8118 (when (eq (char-before) ?{)
8119 ;; Encountered a block in the declaration. Jump over it.
8120 (condition-case nil
8121 (goto-char (c-up-list-forward (point)))
8122 (error (goto-char (point-max))
8123 (throw 'return nil)))
8124 (if (or (not c-opt-block-decls-with-vars-key)
8125 (save-excursion
8126 (c-with-syntax-table decl-syntax-table
8127 (let ((lim (point)))
8128 (goto-char start)
8129 (not (and
8130 ;; Check for `c-opt-block-decls-with-vars-key'
8131 ;; before the first paren.
8132 (c-syntactic-re-search-forward
8133 (concat "[;=\(\[{]\\|\\("
8134 c-opt-block-decls-with-vars-key
8135 "\\)")
8136 lim t t t)
8137 (match-beginning 1)
8138 (not (eq (char-before) ?_))
8139 ;; Check that the first following paren is
8140 ;; the block.
8141 (c-syntactic-re-search-forward "[;=\(\[{]"
8142 lim t t t)
8143 (eq (char-before) ?{)))))))
8144 ;; The declaration doesn't have any of the
8145 ;; `c-opt-block-decls-with-vars' keywords in the
8146 ;; beginning, so it ends here at the end of the block.
8147 (throw 'return t)))
8148
8149 (c-with-syntax-table decl-syntax-table
8150 (while (progn
8151 (if (eq (char-before) ?\;)
8152 (throw 'return t))
8153 (c-syntactic-re-search-forward ";" nil 'move t))))
8154 nil)))
8155
8156 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
8157 ;; Assuming the point is at an open brace, check if it starts a
8158 ;; block that contains another declaration level, i.e. that isn't a
8159 ;; statement block or a brace list, and if so return non-nil.
8160 ;;
8161 ;; If the check is successful, the return value is the start of the
8162 ;; keyword that tells what kind of construct it is, i.e. typically
8163 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
8164 ;; the point will be at the start of the construct, before any
8165 ;; leading specifiers, otherwise it's at the returned position.
8166 ;;
8167 ;; The point is clobbered if the check is unsuccessful.
8168 ;;
8169 ;; CONTAINING-SEXP is the position of the open of the surrounding
8170 ;; paren, or nil if none.
8171 ;;
8172 ;; The optional LIMIT limits the backward search for the start of
8173 ;; the construct. It's assumed to be at a syntactically relevant
8174 ;; position.
8175 ;;
8176 ;; If any template arglists are found in the searched region before
8177 ;; the open brace, they get marked with paren syntax.
8178 ;;
8179 ;; This function might do hidden buffer changes.
8180
8181 (let ((open-brace (point)) kwd-start first-specifier-pos)
8182 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8183
8184 (when (and c-recognize-<>-arglists
8185 (eq (char-before) ?>))
8186 ;; Could be at the end of a template arglist.
8187 (let ((c-parse-and-markup-<>-arglists t)
8188 (c-disallow-comma-in-<>-arglists
8189 (and containing-sexp
8190 (not (eq (char-after containing-sexp) ?{)))))
8191 (while (and
8192 (c-backward-<>-arglist nil limit)
8193 (progn
8194 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8195 (eq (char-before) ?>))))))
8196
8197 ;; Note: Can't get bogus hits inside template arglists below since they
8198 ;; have gotten paren syntax above.
8199 (when (and
8200 ;; If `goto-start' is set we begin by searching for the
8201 ;; first possible position of a leading specifier list.
8202 ;; The `c-decl-block-key' search continues from there since
8203 ;; we know it can't match earlier.
8204 (if goto-start
8205 (when (c-syntactic-re-search-forward c-symbol-start
8206 open-brace t t)
8207 (goto-char (setq first-specifier-pos (match-beginning 0)))
8208 t)
8209 t)
8210
8211 (cond
8212 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
8213 (goto-char (setq kwd-start (match-beginning 0)))
8214 (or
8215
8216 ;; Found a keyword that can't be a type?
8217 (match-beginning 1)
8218
8219 ;; Can be a type too, in which case it's the return type of a
8220 ;; function (under the assumption that no declaration level
8221 ;; block construct starts with a type).
8222 (not (c-forward-type))
8223
8224 ;; Jumped over a type, but it could be a declaration keyword
8225 ;; followed by the declared identifier that we've jumped over
8226 ;; instead (e.g. in "class Foo {"). If it indeed is a type
8227 ;; then we should be at the declarator now, so check for a
8228 ;; valid declarator start.
8229 ;;
8230 ;; Note: This doesn't cope with the case when a declared
8231 ;; identifier is followed by e.g. '(' in a language where '('
8232 ;; also might be part of a declarator expression. Currently
8233 ;; there's no such language.
8234 (not (or (looking-at c-symbol-start)
8235 (looking-at c-type-decl-prefix-key)))))
8236
8237 ;; In Pike a list of modifiers may be followed by a brace
8238 ;; to make them apply to many identifiers. Note that the
8239 ;; match data will be empty on return in this case.
8240 ((and (c-major-mode-is 'pike-mode)
8241 (progn
8242 (goto-char open-brace)
8243 (= (c-backward-token-2) 0))
8244 (looking-at c-specifier-key)
8245 ;; Use this variant to avoid yet another special regexp.
8246 (c-keyword-member (c-keyword-sym (match-string 1))
8247 'c-modifier-kwds))
8248 (setq kwd-start (point))
8249 t)))
8250
8251 ;; Got a match.
8252
8253 (if goto-start
8254 ;; Back up over any preceding specifiers and their clauses
8255 ;; by going forward from `first-specifier-pos', which is the
8256 ;; earliest possible position where the specifier list can
8257 ;; start.
8258 (progn
8259 (goto-char first-specifier-pos)
8260
8261 (while (< (point) kwd-start)
8262 (if (looking-at c-symbol-key)
8263 ;; Accept any plain symbol token on the ground that
8264 ;; it's a specifier masked through a macro (just
8265 ;; like `c-forward-decl-or-cast-1' skip forward over
8266 ;; such tokens).
8267 ;;
8268 ;; Could be more restrictive wrt invalid keywords,
8269 ;; but that'd only occur in invalid code so there's
8270 ;; no use spending effort on it.
8271 (let ((end (match-end 0)))
8272 (unless (c-forward-keyword-clause 0)
8273 (goto-char end)
8274 (c-forward-syntactic-ws)))
8275
8276 ;; Can't parse a declaration preamble and is still
8277 ;; before `kwd-start'. That means `first-specifier-pos'
8278 ;; was in some earlier construct. Search again.
8279 (if (c-syntactic-re-search-forward c-symbol-start
8280 kwd-start 'move t)
8281 (goto-char (setq first-specifier-pos (match-beginning 0)))
8282 ;; Got no preamble before the block declaration keyword.
8283 (setq first-specifier-pos kwd-start))))
8284
8285 (goto-char first-specifier-pos))
8286 (goto-char kwd-start))
8287
8288 kwd-start)))
8289
8290 (defun c-search-uplist-for-classkey (paren-state)
8291 ;; Check if the closest containing paren sexp is a declaration
8292 ;; block, returning a 2 element vector in that case. Aref 0
8293 ;; contains the bufpos at boi of the class key line, and aref 1
8294 ;; contains the bufpos of the open brace. This function is an
8295 ;; obsolete wrapper for `c-looking-at-decl-block'.
8296 ;;
8297 ;; This function might do hidden buffer changes.
8298 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
8299 (when open-paren-pos
8300 (save-excursion
8301 (goto-char open-paren-pos)
8302 (when (and (eq (char-after) ?{)
8303 (c-looking-at-decl-block
8304 (c-safe-position open-paren-pos paren-state)
8305 nil))
8306 (back-to-indentation)
8307 (vector (point) open-paren-pos))))))
8308
8309 (defmacro c-pull-open-brace (ps)
8310 ;; Pull the next open brace from PS (which has the form of paren-state),
8311 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
8312 `(progn
8313 (while (consp (car ,ps))
8314 (setq ,ps (cdr ,ps)))
8315 (prog1 (car ,ps)
8316 (setq ,ps (cdr ,ps)))))
8317
8318 (defun c-most-enclosing-decl-block (paren-state)
8319 ;; Return the buffer position of the most enclosing decl-block brace (in the
8320 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
8321 ;; none was found.
8322 (let* ((open-brace (c-pull-open-brace paren-state))
8323 (next-open-brace (c-pull-open-brace paren-state)))
8324 (while (and open-brace
8325 (save-excursion
8326 (goto-char open-brace)
8327 (not (c-looking-at-decl-block next-open-brace nil))))
8328 (setq open-brace next-open-brace
8329 next-open-brace (c-pull-open-brace paren-state)))
8330 open-brace))
8331
8332 (defun c-cheap-inside-bracelist-p (paren-state)
8333 ;; Return the position of the L-brace if point is inside a brace list
8334 ;; initialization of an array, etc. This is an approximate function,
8335 ;; designed for speed over accuracy. It will not find every bracelist, but
8336 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
8337 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
8338 ;; is everywhere else.
8339 (let (b-pos)
8340 (save-excursion
8341 (while
8342 (and (setq b-pos (c-pull-open-brace paren-state))
8343 (progn (goto-char b-pos)
8344 (c-backward-sws)
8345 (c-backward-token-2)
8346 (not (looking-at "=")))))
8347 b-pos)))
8348
8349 (defun c-inside-bracelist-p (containing-sexp paren-state)
8350 ;; return the buffer position of the beginning of the brace list
8351 ;; statement if we're inside a brace list, otherwise return nil.
8352 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
8353 ;; paren. PAREN-STATE is the remainder of the state of enclosing
8354 ;; braces
8355 ;;
8356 ;; N.B.: This algorithm can potentially get confused by cpp macros
8357 ;; placed in inconvenient locations. It's a trade-off we make for
8358 ;; speed.
8359 ;;
8360 ;; This function might do hidden buffer changes.
8361 (or
8362 ;; This will pick up brace list declarations.
8363 (c-safe
8364 (save-excursion
8365 (goto-char containing-sexp)
8366 (c-forward-sexp -1)
8367 (let (bracepos)
8368 (if (and (or (looking-at c-brace-list-key)
8369 (progn (c-forward-sexp -1)
8370 (looking-at c-brace-list-key)))
8371 (setq bracepos (c-down-list-forward (point)))
8372 (not (c-crosses-statement-barrier-p (point)
8373 (- bracepos 2))))
8374 (point)))))
8375 ;; this will pick up array/aggregate init lists, even if they are nested.
8376 (save-excursion
8377 (let ((class-key
8378 ;; Pike can have class definitions anywhere, so we must
8379 ;; check for the class key here.
8380 (and (c-major-mode-is 'pike-mode)
8381 c-decl-block-key))
8382 bufpos braceassignp lim next-containing)
8383 (while (and (not bufpos)
8384 containing-sexp)
8385 (when paren-state
8386 (if (consp (car paren-state))
8387 (setq lim (cdr (car paren-state))
8388 paren-state (cdr paren-state))
8389 (setq lim (car paren-state)))
8390 (when paren-state
8391 (setq next-containing (car paren-state)
8392 paren-state (cdr paren-state))))
8393 (goto-char containing-sexp)
8394 (if (c-looking-at-inexpr-block next-containing next-containing)
8395 ;; We're in an in-expression block of some kind. Do not
8396 ;; check nesting. We deliberately set the limit to the
8397 ;; containing sexp, so that c-looking-at-inexpr-block
8398 ;; doesn't check for an identifier before it.
8399 (setq containing-sexp nil)
8400 ;; see if the open brace is preceded by = or [...] in
8401 ;; this statement, but watch out for operator=
8402 (setq braceassignp 'dontknow)
8403 (c-backward-token-2 1 t lim)
8404 ;; Checks to do only on the first sexp before the brace.
8405 (when (and c-opt-inexpr-brace-list-key
8406 (eq (char-after) ?\[))
8407 ;; In Java, an initialization brace list may follow
8408 ;; directly after "new Foo[]", so check for a "new"
8409 ;; earlier.
8410 (while (eq braceassignp 'dontknow)
8411 (setq braceassignp
8412 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
8413 ((looking-at c-opt-inexpr-brace-list-key) t)
8414 ((looking-at "\\sw\\|\\s_\\|[.[]")
8415 ;; Carry on looking if this is an
8416 ;; identifier (may contain "." in Java)
8417 ;; or another "[]" sexp.
8418 'dontknow)
8419 (t nil)))))
8420 ;; Checks to do on all sexps before the brace, up to the
8421 ;; beginning of the statement.
8422 (while (eq braceassignp 'dontknow)
8423 (cond ((eq (char-after) ?\;)
8424 (setq braceassignp nil))
8425 ((and class-key
8426 (looking-at class-key))
8427 (setq braceassignp nil))
8428 ((eq (char-after) ?=)
8429 ;; We've seen a =, but must check earlier tokens so
8430 ;; that it isn't something that should be ignored.
8431 (setq braceassignp 'maybe)
8432 (while (and (eq braceassignp 'maybe)
8433 (zerop (c-backward-token-2 1 t lim)))
8434 (setq braceassignp
8435 (cond
8436 ;; Check for operator =
8437 ((and c-opt-op-identifier-prefix
8438 (looking-at c-opt-op-identifier-prefix))
8439 nil)
8440 ;; Check for `<opchar>= in Pike.
8441 ((and (c-major-mode-is 'pike-mode)
8442 (or (eq (char-after) ?`)
8443 ;; Special case for Pikes
8444 ;; `[]=, since '[' is not in
8445 ;; the punctuation class.
8446 (and (eq (char-after) ?\[)
8447 (eq (char-before) ?`))))
8448 nil)
8449 ((looking-at "\\s.") 'maybe)
8450 ;; make sure we're not in a C++ template
8451 ;; argument assignment
8452 ((and
8453 (c-major-mode-is 'c++-mode)
8454 (save-excursion
8455 (let ((here (point))
8456 (pos< (progn
8457 (skip-chars-backward "^<>")
8458 (point))))
8459 (and (eq (char-before) ?<)
8460 (not (c-crosses-statement-barrier-p
8461 pos< here))
8462 (not (c-in-literal))
8463 ))))
8464 nil)
8465 (t t))))))
8466 (if (and (eq braceassignp 'dontknow)
8467 (/= (c-backward-token-2 1 t lim) 0))
8468 (setq braceassignp nil)))
8469 (if (not braceassignp)
8470 (if (eq (char-after) ?\;)
8471 ;; Brace lists can't contain a semicolon, so we're done.
8472 (setq containing-sexp nil)
8473 ;; Go up one level.
8474 (setq containing-sexp next-containing
8475 lim nil
8476 next-containing nil))
8477 ;; we've hit the beginning of the aggregate list
8478 (c-beginning-of-statement-1
8479 (c-most-enclosing-brace paren-state))
8480 (setq bufpos (point))))
8481 )
8482 bufpos))
8483 ))
8484
8485 (defun c-looking-at-special-brace-list (&optional lim)
8486 ;; If we're looking at the start of a pike-style list, ie `({ })',
8487 ;; `([ ])', `(< >)' etc, a cons of a cons of its starting and ending
8488 ;; positions and its entry in c-special-brace-lists is returned, nil
8489 ;; otherwise. The ending position is nil if the list is still open.
8490 ;; LIM is the limit for forward search. The point may either be at
8491 ;; the `(' or at the following paren character. Tries to check the
8492 ;; matching closer, but assumes it's correct if no balanced paren is
8493 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
8494 ;; a special brace list).
8495 ;;
8496 ;; This function might do hidden buffer changes.
8497 (if c-special-brace-lists
8498 (condition-case ()
8499 (save-excursion
8500 (let ((beg (point))
8501 inner-beg end type)
8502 (c-forward-syntactic-ws)
8503 (if (eq (char-after) ?\()
8504 (progn
8505 (forward-char 1)
8506 (c-forward-syntactic-ws)
8507 (setq inner-beg (point))
8508 (setq type (assq (char-after) c-special-brace-lists)))
8509 (if (setq type (assq (char-after) c-special-brace-lists))
8510 (progn
8511 (setq inner-beg (point))
8512 (c-backward-syntactic-ws)
8513 (forward-char -1)
8514 (setq beg (if (eq (char-after) ?\()
8515 (point)
8516 nil)))))
8517 (if (and beg type)
8518 (if (and (c-safe
8519 (goto-char beg)
8520 (c-forward-sexp 1)
8521 (setq end (point))
8522 (= (char-before) ?\)))
8523 (c-safe
8524 (goto-char inner-beg)
8525 (if (looking-at "\\s(")
8526 ;; Check balancing of the inner paren
8527 ;; below.
8528 (progn
8529 (c-forward-sexp 1)
8530 t)
8531 ;; If the inner char isn't a paren then
8532 ;; we can't check balancing, so just
8533 ;; check the char before the outer
8534 ;; closing paren.
8535 (goto-char end)
8536 (backward-char)
8537 (c-backward-syntactic-ws)
8538 (= (char-before) (cdr type)))))
8539 (if (or (/= (char-syntax (char-before)) ?\))
8540 (= (progn
8541 (c-forward-syntactic-ws)
8542 (point))
8543 (1- end)))
8544 (cons (cons beg end) type))
8545 (cons (list beg) type)))))
8546 (error nil))))
8547
8548 (defun c-looking-at-bos (&optional lim)
8549 ;; Return non-nil if between two statements or declarations, assuming
8550 ;; point is not inside a literal or comment.
8551 ;;
8552 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
8553 ;; are recommended instead.
8554 ;;
8555 ;; This function might do hidden buffer changes.
8556 (c-at-statement-start-p))
8557 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
8558
8559 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
8560 ;; Return non-nil if we're looking at the beginning of a block
8561 ;; inside an expression. The value returned is actually a cons of
8562 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
8563 ;; position of the beginning of the construct.
8564 ;;
8565 ;; LIM limits the backward search. CONTAINING-SEXP is the start
8566 ;; position of the closest containing list. If it's nil, the
8567 ;; containing paren isn't used to decide whether we're inside an
8568 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
8569 ;; needs to be farther back.
8570 ;;
8571 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
8572 ;; brace block might be done. It should only be used when the
8573 ;; construct can be assumed to be complete, i.e. when the original
8574 ;; starting position was further down than that.
8575 ;;
8576 ;; This function might do hidden buffer changes.
8577
8578 (save-excursion
8579 (let ((res 'maybe) passed-paren
8580 (closest-lim (or containing-sexp lim (point-min)))
8581 ;; Look at the character after point only as a last resort
8582 ;; when we can't disambiguate.
8583 (block-follows (and (eq (char-after) ?{) (point))))
8584
8585 (while (and (eq res 'maybe)
8586 (progn (c-backward-syntactic-ws)
8587 (> (point) closest-lim))
8588 (not (bobp))
8589 (progn (backward-char)
8590 (looking-at "[\]\).]\\|\\w\\|\\s_"))
8591 (c-safe (forward-char)
8592 (goto-char (scan-sexps (point) -1))))
8593
8594 (setq res
8595 (if (looking-at c-keywords-regexp)
8596 (let ((kw-sym (c-keyword-sym (match-string 1))))
8597 (cond
8598 ((and block-follows
8599 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
8600 (and (not (eq passed-paren ?\[))
8601 (or (not (looking-at c-class-key))
8602 ;; If the class definition is at the start of
8603 ;; a statement, we don't consider it an
8604 ;; in-expression class.
8605 (let ((prev (point)))
8606 (while (and
8607 (= (c-backward-token-2 1 nil closest-lim) 0)
8608 (eq (char-syntax (char-after)) ?w))
8609 (setq prev (point)))
8610 (goto-char prev)
8611 (not (c-at-statement-start-p)))
8612 ;; Also, in Pike we treat it as an
8613 ;; in-expression class if it's used in an
8614 ;; object clone expression.
8615 (save-excursion
8616 (and check-at-end
8617 (c-major-mode-is 'pike-mode)
8618 (progn (goto-char block-follows)
8619 (zerop (c-forward-token-2 1 t)))
8620 (eq (char-after) ?\())))
8621 (cons 'inexpr-class (point))))
8622 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
8623 (when (not passed-paren)
8624 (cons 'inexpr-statement (point))))
8625 ((c-keyword-member kw-sym 'c-lambda-kwds)
8626 (when (or (not passed-paren)
8627 (eq passed-paren ?\())
8628 (cons 'inlambda (point))))
8629 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
8630 nil)
8631 (t
8632 'maybe)))
8633
8634 (if (looking-at "\\s(")
8635 (if passed-paren
8636 (if (and (eq passed-paren ?\[)
8637 (eq (char-after) ?\[))
8638 ;; Accept several square bracket sexps for
8639 ;; Java array initializations.
8640 'maybe)
8641 (setq passed-paren (char-after))
8642 'maybe)
8643 'maybe))))
8644
8645 (if (eq res 'maybe)
8646 (when (and c-recognize-paren-inexpr-blocks
8647 block-follows
8648 containing-sexp
8649 (eq (char-after containing-sexp) ?\())
8650 (goto-char containing-sexp)
8651 (if (or (save-excursion
8652 (c-backward-syntactic-ws lim)
8653 (and (> (point) (or lim (point-min)))
8654 (c-on-identifier)))
8655 (and c-special-brace-lists
8656 (c-looking-at-special-brace-list)))
8657 nil
8658 (cons 'inexpr-statement (point))))
8659
8660 res))))
8661
8662 (defun c-looking-at-inexpr-block-backward (paren-state)
8663 ;; Returns non-nil if we're looking at the end of an in-expression
8664 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
8665 ;; PAREN-STATE is the paren state relevant at the current position.
8666 ;;
8667 ;; This function might do hidden buffer changes.
8668 (save-excursion
8669 ;; We currently only recognize a block.
8670 (let ((here (point))
8671 (elem (car-safe paren-state))
8672 containing-sexp)
8673 (when (and (consp elem)
8674 (progn (goto-char (cdr elem))
8675 (c-forward-syntactic-ws here)
8676 (= (point) here)))
8677 (goto-char (car elem))
8678 (if (setq paren-state (cdr paren-state))
8679 (setq containing-sexp (car-safe paren-state)))
8680 (c-looking-at-inexpr-block (c-safe-position containing-sexp
8681 paren-state)
8682 containing-sexp)))))
8683
8684 (defun c-at-macro-vsemi-p (&optional pos)
8685 ;; Is there a "virtual semicolon" at POS or point?
8686 ;; (See cc-defs.el for full details of "virtual semicolons".)
8687 ;;
8688 ;; This is true when point is at the last non syntactic WS position on the
8689 ;; line, there is a macro call last on the line, and this particular macro's
8690 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
8691 ;; semicolon.
8692 (save-excursion
8693 (save-restriction
8694 (widen)
8695 (if pos
8696 (goto-char pos)
8697 (setq pos (point)))
8698 (and
8699 c-macro-with-semi-re
8700 (eq (skip-chars-backward " \t") 0)
8701
8702 ;; Check we've got nothing after this except comments and empty lines
8703 ;; joined by escaped EOLs.
8704 (skip-chars-forward " \t") ; always returns non-nil.
8705 (progn
8706 (while ; go over 1 block comment per iteration.
8707 (and
8708 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
8709 (goto-char (match-end 0))
8710 (cond
8711 ((looking-at c-block-comment-start-regexp)
8712 (and (forward-comment 1)
8713 (skip-chars-forward " \t"))) ; always returns non-nil
8714 ((looking-at c-line-comment-start-regexp)
8715 (end-of-line)
8716 nil)
8717 (t nil))))
8718 (eolp))
8719
8720 (goto-char pos)
8721 (progn (c-backward-syntactic-ws)
8722 (eq (point) pos))
8723
8724 ;; Check for one of the listed macros being before point.
8725 (or (not (eq (char-before) ?\)))
8726 (when (c-go-list-backward)
8727 (c-backward-syntactic-ws)
8728 t))
8729 (c-simple-skip-symbol-backward)
8730 (looking-at c-macro-with-semi-re)
8731 (goto-char pos)
8732 (not (c-in-literal)))))) ; The most expensive check last.
8733
8734 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
8735
8736 \f
8737 ;; `c-guess-basic-syntax' and the functions that precedes it below
8738 ;; implements the main decision tree for determining the syntactic
8739 ;; analysis of the current line of code.
8740
8741 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
8742 ;; auto newline analysis.
8743 (defvar c-auto-newline-analysis nil)
8744
8745 (defun c-brace-anchor-point (bracepos)
8746 ;; BRACEPOS is the position of a brace in a construct like "namespace
8747 ;; Bar {". Return the anchor point in this construct; this is the
8748 ;; earliest symbol on the brace's line which isn't earlier than
8749 ;; "namespace".
8750 ;;
8751 ;; Currently (2007-08-17), "like namespace" means "matches
8752 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
8753 ;; or anything like that.
8754 (save-excursion
8755 (let ((boi (c-point 'boi bracepos)))
8756 (goto-char bracepos)
8757 (while (and (> (point) boi)
8758 (not (looking-at c-other-decl-block-key)))
8759 (c-backward-token-2))
8760 (if (> (point) boi) (point) boi))))
8761
8762 (defsubst c-add-syntax (symbol &rest args)
8763 ;; A simple function to prepend a new syntax element to
8764 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
8765 ;; should always be dynamically bound but since we read it first
8766 ;; we'll fail properly anyway if this function is misused.
8767 (setq c-syntactic-context (cons (cons symbol args)
8768 c-syntactic-context)))
8769
8770 (defsubst c-append-syntax (symbol &rest args)
8771 ;; Like `c-add-syntax' but appends to the end of the syntax list.
8772 ;; (Normally not necessary.)
8773 (setq c-syntactic-context (nconc c-syntactic-context
8774 (list (cons symbol args)))))
8775
8776 (defun c-add-stmt-syntax (syntax-symbol
8777 syntax-extra-args
8778 stop-at-boi-only
8779 containing-sexp
8780 paren-state)
8781 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
8782 ;; needed with further syntax elements of the types `substatement',
8783 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
8784 ;; `defun-block-intro'.
8785 ;;
8786 ;; Do the generic processing to anchor the given syntax symbol on
8787 ;; the preceding statement: Skip over any labels and containing
8788 ;; statements on the same line, and then search backward until we
8789 ;; find a statement or block start that begins at boi without a
8790 ;; label or comment.
8791 ;;
8792 ;; Point is assumed to be at the prospective anchor point for the
8793 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
8794 ;; skip past open parens and containing statements. Most of the added
8795 ;; syntax elements will get the same anchor point - the exception is
8796 ;; for an anchor in a construct like "namespace"[*] - this is as early
8797 ;; as possible in the construct but on the same line as the {.
8798 ;;
8799 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
8800 ;;
8801 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
8802 ;; syntax symbol. They are appended after the anchor point.
8803 ;;
8804 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
8805 ;; if the current statement starts there.
8806 ;;
8807 ;; Note: It's not a problem if PAREN-STATE "overshoots"
8808 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
8809 ;;
8810 ;; This function might do hidden buffer changes.
8811
8812 (if (= (point) (c-point 'boi))
8813 ;; This is by far the most common case, so let's give it special
8814 ;; treatment.
8815 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
8816
8817 (let ((syntax-last c-syntactic-context)
8818 (boi (c-point 'boi))
8819 ;; Set when we're on a label, so that we don't stop there.
8820 ;; FIXME: To be complete we should check if we're on a label
8821 ;; now at the start.
8822 on-label)
8823
8824 ;; Use point as the anchor point for "namespace", "extern", etc.
8825 (apply 'c-add-syntax syntax-symbol
8826 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
8827 (point) nil)
8828 syntax-extra-args)
8829
8830 ;; Loop while we have to back out of containing blocks.
8831 (while
8832 (and
8833 (catch 'back-up-block
8834
8835 ;; Loop while we have to back up statements.
8836 (while (or (/= (point) boi)
8837 on-label
8838 (looking-at c-comment-start-regexp))
8839
8840 ;; Skip past any comments that stands between the
8841 ;; statement start and boi.
8842 (let ((savepos (point)))
8843 (while (and (/= savepos boi)
8844 (c-backward-single-comment))
8845 (setq savepos (point)
8846 boi (c-point 'boi)))
8847 (goto-char savepos))
8848
8849 ;; Skip to the beginning of this statement or backward
8850 ;; another one.
8851 (let ((old-pos (point))
8852 (old-boi boi)
8853 (step-type (c-beginning-of-statement-1 containing-sexp)))
8854 (setq boi (c-point 'boi)
8855 on-label (eq step-type 'label))
8856
8857 (cond ((= (point) old-pos)
8858 ;; If we didn't move we're at the start of a block and
8859 ;; have to continue outside it.
8860 (throw 'back-up-block t))
8861
8862 ((and (eq step-type 'up)
8863 (>= (point) old-boi)
8864 (looking-at "else\\>[^_]")
8865 (save-excursion
8866 (goto-char old-pos)
8867 (looking-at "if\\>[^_]")))
8868 ;; Special case to avoid deeper and deeper indentation
8869 ;; of "else if" clauses.
8870 )
8871
8872 ((and (not stop-at-boi-only)
8873 (/= old-pos old-boi)
8874 (memq step-type '(up previous)))
8875 ;; If stop-at-boi-only is nil, we shouldn't back up
8876 ;; over previous or containing statements to try to
8877 ;; reach boi, so go back to the last position and
8878 ;; exit.
8879 (goto-char old-pos)
8880 (throw 'back-up-block nil))
8881
8882 (t
8883 (if (and (not stop-at-boi-only)
8884 (memq step-type '(up previous beginning)))
8885 ;; If we've moved into another statement then we
8886 ;; should no longer try to stop in the middle of a
8887 ;; line.
8888 (setq stop-at-boi-only t))
8889
8890 ;; Record this as a substatement if we skipped up one
8891 ;; level.
8892 (when (eq step-type 'up)
8893 (c-add-syntax 'substatement nil))))
8894 )))
8895
8896 containing-sexp)
8897
8898 ;; Now we have to go out of this block.
8899 (goto-char containing-sexp)
8900
8901 ;; Don't stop in the middle of a special brace list opener
8902 ;; like "({".
8903 (when c-special-brace-lists
8904 (let ((special-list (c-looking-at-special-brace-list)))
8905 (when (and special-list
8906 (< (car (car special-list)) (point)))
8907 (setq containing-sexp (car (car special-list)))
8908 (goto-char containing-sexp))))
8909
8910 (setq paren-state (c-whack-state-after containing-sexp paren-state)
8911 containing-sexp (c-most-enclosing-brace paren-state)
8912 boi (c-point 'boi))
8913
8914 ;; Analyze the construct in front of the block we've stepped out
8915 ;; from and add the right syntactic element for it.
8916 (let ((paren-pos (point))
8917 (paren-char (char-after))
8918 step-type)
8919
8920 (if (eq paren-char ?\()
8921 ;; Stepped out of a parenthesis block, so we're in an
8922 ;; expression now.
8923 (progn
8924 (when (/= paren-pos boi)
8925 (if (and c-recognize-paren-inexpr-blocks
8926 (progn
8927 (c-backward-syntactic-ws containing-sexp)
8928 (or (not (looking-at "\\>"))
8929 (not (c-on-identifier))))
8930 (save-excursion
8931 (goto-char (1+ paren-pos))
8932 (c-forward-syntactic-ws)
8933 (eq (char-after) ?{)))
8934 ;; Stepped out of an in-expression statement. This
8935 ;; syntactic element won't get an anchor pos.
8936 (c-add-syntax 'inexpr-statement)
8937
8938 ;; A parenthesis normally belongs to an arglist.
8939 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
8940
8941 (goto-char (max boi
8942 (if containing-sexp
8943 (1+ containing-sexp)
8944 (point-min))))
8945 (setq step-type 'same
8946 on-label nil))
8947
8948 ;; Stepped out of a brace block.
8949 (setq step-type (c-beginning-of-statement-1 containing-sexp)
8950 on-label (eq step-type 'label))
8951
8952 (if (and (eq step-type 'same)
8953 (/= paren-pos (point)))
8954 (let (inexpr)
8955 (cond
8956 ((save-excursion
8957 (goto-char paren-pos)
8958 (setq inexpr (c-looking-at-inexpr-block
8959 (c-safe-position containing-sexp paren-state)
8960 containing-sexp)))
8961 (c-add-syntax (if (eq (car inexpr) 'inlambda)
8962 'defun-block-intro
8963 'statement-block-intro)
8964 nil))
8965 ((looking-at c-other-decl-block-key)
8966 (c-add-syntax
8967 (cdr (assoc (match-string 1)
8968 c-other-decl-block-key-in-symbols-alist))
8969 (max (c-point 'boi paren-pos) (point))))
8970 (t (c-add-syntax 'defun-block-intro nil))))
8971
8972 (c-add-syntax 'statement-block-intro nil)))
8973
8974 (if (= paren-pos boi)
8975 ;; Always done if the open brace was at boi. The
8976 ;; c-beginning-of-statement-1 call above is necessary
8977 ;; anyway, to decide the type of block-intro to add.
8978 (goto-char paren-pos)
8979 (setq boi (c-point 'boi)))
8980 ))
8981
8982 ;; Fill in the current point as the anchor for all the symbols
8983 ;; added above.
8984 (let ((p c-syntactic-context) q)
8985 (while (not (eq p syntax-last))
8986 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
8987 (while q
8988 (unless (car q)
8989 (setcar q (point)))
8990 (setq q (cdr q)))
8991 (setq p (cdr p))))
8992 )))
8993
8994 (defun c-add-class-syntax (symbol
8995 containing-decl-open
8996 containing-decl-start
8997 containing-decl-kwd
8998 paren-state)
8999 ;; The inclass and class-close syntactic symbols are added in
9000 ;; several places and some work is needed to fix everything.
9001 ;; Therefore it's collected here.
9002 ;;
9003 ;; This function might do hidden buffer changes.
9004 (goto-char containing-decl-open)
9005 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
9006 (progn
9007 (c-add-syntax symbol containing-decl-open)
9008 containing-decl-open)
9009 (goto-char containing-decl-start)
9010 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
9011 ;; here, but we have to do like this for compatibility.
9012 (back-to-indentation)
9013 (c-add-syntax symbol (point))
9014 (if (and (c-keyword-member containing-decl-kwd
9015 'c-inexpr-class-kwds)
9016 (/= containing-decl-start (c-point 'boi containing-decl-start)))
9017 (c-add-syntax 'inexpr-class))
9018 (point)))
9019
9020 (defun c-guess-continued-construct (indent-point
9021 char-after-ip
9022 beg-of-same-or-containing-stmt
9023 containing-sexp
9024 paren-state)
9025 ;; This function contains the decision tree reached through both
9026 ;; cases 18 and 10. It's a continued statement or top level
9027 ;; construct of some kind.
9028 ;;
9029 ;; This function might do hidden buffer changes.
9030
9031 (let (special-brace-list placeholder)
9032 (goto-char indent-point)
9033 (skip-chars-forward " \t")
9034
9035 (cond
9036 ;; (CASE A removed.)
9037 ;; CASE B: open braces for class or brace-lists
9038 ((setq special-brace-list
9039 (or (and c-special-brace-lists
9040 (c-looking-at-special-brace-list))
9041 (eq char-after-ip ?{)))
9042
9043 (cond
9044 ;; CASE B.1: class-open
9045 ((save-excursion
9046 (and (eq (char-after) ?{)
9047 (c-looking-at-decl-block containing-sexp t)
9048 (setq beg-of-same-or-containing-stmt (point))))
9049 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
9050
9051 ;; CASE B.2: brace-list-open
9052 ((or (consp special-brace-list)
9053 (save-excursion
9054 (goto-char beg-of-same-or-containing-stmt)
9055 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
9056 indent-point t t t)))
9057 ;; The most semantically accurate symbol here is
9058 ;; brace-list-open, but we normally report it simply as a
9059 ;; statement-cont. The reason is that one normally adjusts
9060 ;; brace-list-open for brace lists as top-level constructs,
9061 ;; and brace lists inside statements is a completely different
9062 ;; context. C.f. case 5A.3.
9063 (c-beginning-of-statement-1 containing-sexp)
9064 (c-add-stmt-syntax (if c-auto-newline-analysis
9065 ;; Turn off the dwim above when we're
9066 ;; analyzing the nature of the brace
9067 ;; for the auto newline feature.
9068 'brace-list-open
9069 'statement-cont)
9070 nil nil
9071 containing-sexp paren-state))
9072
9073 ;; CASE B.3: The body of a function declared inside a normal
9074 ;; block. Can occur e.g. in Pike and when using gcc
9075 ;; extensions, but watch out for macros followed by blocks.
9076 ;; C.f. cases E, 16F and 17G.
9077 ((and (not (c-at-statement-start-p))
9078 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9079 'same)
9080 (save-excursion
9081 (let ((c-recognize-typeless-decls nil))
9082 ;; Turn off recognition of constructs that lacks a
9083 ;; type in this case, since that's more likely to be
9084 ;; a macro followed by a block.
9085 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9086 (c-add-stmt-syntax 'defun-open nil t
9087 containing-sexp paren-state))
9088
9089 ;; CASE B.4: Continued statement with block open. The most
9090 ;; accurate analysis is perhaps `statement-cont' together with
9091 ;; `block-open' but we play DWIM and use `substatement-open'
9092 ;; instead. The rationale is that this typically is a macro
9093 ;; followed by a block which makes it very similar to a
9094 ;; statement with a substatement block.
9095 (t
9096 (c-add-stmt-syntax 'substatement-open nil nil
9097 containing-sexp paren-state))
9098 ))
9099
9100 ;; CASE C: iostream insertion or extraction operator
9101 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
9102 (save-excursion
9103 (goto-char beg-of-same-or-containing-stmt)
9104 ;; If there is no preceding streamop in the statement
9105 ;; then indent this line as a normal statement-cont.
9106 (when (c-syntactic-re-search-forward
9107 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
9108 (c-add-syntax 'stream-op (c-point 'boi))
9109 t))))
9110
9111 ;; CASE E: In the "K&R region" of a function declared inside a
9112 ;; normal block. C.f. case B.3.
9113 ((and (save-excursion
9114 ;; Check that the next token is a '{'. This works as
9115 ;; long as no language that allows nested function
9116 ;; definitions allows stuff like member init lists, K&R
9117 ;; declarations or throws clauses there.
9118 ;;
9119 ;; Note that we do a forward search for something ahead
9120 ;; of the indentation line here. That's not good since
9121 ;; the user might not have typed it yet. Unfortunately
9122 ;; it's exceedingly tricky to recognize a function
9123 ;; prototype in a code block without resorting to this.
9124 (c-forward-syntactic-ws)
9125 (eq (char-after) ?{))
9126 (not (c-at-statement-start-p))
9127 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9128 'same)
9129 (save-excursion
9130 (let ((c-recognize-typeless-decls nil))
9131 ;; Turn off recognition of constructs that lacks a
9132 ;; type in this case, since that's more likely to be
9133 ;; a macro followed by a block.
9134 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9135 (c-add-stmt-syntax 'func-decl-cont nil t
9136 containing-sexp paren-state))
9137
9138 ;;CASE F: continued statement and the only preceding items are
9139 ;;annotations.
9140 ((and (c-major-mode-is 'java-mode)
9141 (setq placeholder (point))
9142 (c-beginning-of-statement-1)
9143 (progn
9144 (while (and (c-forward-annotation)
9145 (< (point) placeholder))
9146 (c-forward-syntactic-ws))
9147 t)
9148 (prog1
9149 (>= (point) placeholder)
9150 (goto-char placeholder)))
9151 (c-beginning-of-statement-1 containing-sexp)
9152 (c-add-syntax 'annotation-var-cont (point)))
9153
9154 ;; CASE G: a template list continuation?
9155 ;; Mostly a duplication of case 5D.3 to fix templates-19:
9156 ((and (c-major-mode-is 'c++-mode)
9157 (save-excursion
9158 (goto-char indent-point)
9159 (c-with-syntax-table c++-template-syntax-table
9160 (setq placeholder (c-up-list-backward)))
9161 (and placeholder
9162 (eq (char-after placeholder) ?<)
9163 (/= (char-before placeholder) ?<)
9164 (progn
9165 (goto-char (1+ placeholder))
9166 (not (looking-at c-<-op-cont-regexp))))))
9167 (c-with-syntax-table c++-template-syntax-table
9168 (goto-char placeholder)
9169 (c-beginning-of-statement-1 containing-sexp t)
9170 (if (save-excursion
9171 (c-backward-syntactic-ws containing-sexp)
9172 (eq (char-before) ?<))
9173 ;; In a nested template arglist.
9174 (progn
9175 (goto-char placeholder)
9176 (c-syntactic-skip-backward "^,;" containing-sexp t)
9177 (c-forward-syntactic-ws))
9178 (back-to-indentation)))
9179 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9180 ;; template aware.
9181 (c-add-syntax 'template-args-cont (point) placeholder))
9182
9183 ;; CASE D: continued statement.
9184 (t
9185 (c-beginning-of-statement-1 containing-sexp)
9186 (c-add-stmt-syntax 'statement-cont nil nil
9187 containing-sexp paren-state))
9188 )))
9189
9190 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
9191 ;; 2005/11/29).
9192 ;;;###autoload
9193 (defun c-guess-basic-syntax ()
9194 "Return the syntactic context of the current line."
9195 (save-excursion
9196 (beginning-of-line)
9197 (c-save-buffer-state
9198 ((indent-point (point))
9199 (case-fold-search nil)
9200 ;; A whole ugly bunch of various temporary variables. Have
9201 ;; to declare them here since it's not possible to declare
9202 ;; a variable with only the scope of a cond test and the
9203 ;; following result clauses, and most of this function is a
9204 ;; single gigantic cond. :P
9205 literal char-before-ip before-ws-ip char-after-ip macro-start
9206 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
9207 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
9208 containing-<
9209 ;; The following record some positions for the containing
9210 ;; declaration block if we're directly within one:
9211 ;; `containing-decl-open' is the position of the open
9212 ;; brace. `containing-decl-start' is the start of the
9213 ;; declaration. `containing-decl-kwd' is the keyword
9214 ;; symbol of the keyword that tells what kind of block it
9215 ;; is.
9216 containing-decl-open
9217 containing-decl-start
9218 containing-decl-kwd
9219 ;; The open paren of the closest surrounding sexp or nil if
9220 ;; there is none.
9221 containing-sexp
9222 ;; The position after the closest preceding brace sexp
9223 ;; (nested sexps are ignored), or the position after
9224 ;; `containing-sexp' if there is none, or (point-min) if
9225 ;; `containing-sexp' is nil.
9226 lim
9227 ;; The paren state outside `containing-sexp', or at
9228 ;; `indent-point' if `containing-sexp' is nil.
9229 (paren-state (c-parse-state))
9230 ;; There's always at most one syntactic element which got
9231 ;; an anchor pos. It's stored in syntactic-relpos.
9232 syntactic-relpos
9233 (c-stmt-delim-chars c-stmt-delim-chars))
9234
9235 ;; Check if we're directly inside an enclosing declaration
9236 ;; level block.
9237 (when (and (setq containing-sexp
9238 (c-most-enclosing-brace paren-state))
9239 (progn
9240 (goto-char containing-sexp)
9241 (eq (char-after) ?{))
9242 (setq placeholder
9243 (c-looking-at-decl-block
9244 (c-most-enclosing-brace paren-state
9245 containing-sexp)
9246 t)))
9247 (setq containing-decl-open containing-sexp
9248 containing-decl-start (point)
9249 containing-sexp nil)
9250 (goto-char placeholder)
9251 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
9252 (c-keyword-sym (match-string 1)))))
9253
9254 ;; Init some position variables.
9255 (if c-state-cache
9256 (progn
9257 (setq containing-sexp (car paren-state)
9258 paren-state (cdr paren-state))
9259 (if (consp containing-sexp)
9260 (progn
9261 (setq lim (cdr containing-sexp))
9262 (if (cdr c-state-cache)
9263 ;; Ignore balanced paren. The next entry
9264 ;; can't be another one.
9265 (setq containing-sexp (car (cdr c-state-cache))
9266 paren-state (cdr paren-state))
9267 ;; If there is no surrounding open paren then
9268 ;; put the last balanced pair back on paren-state.
9269 (setq paren-state (cons containing-sexp paren-state)
9270 containing-sexp nil)))
9271 (setq lim (1+ containing-sexp))))
9272 (setq lim (point-min)))
9273 (when (c-beginning-of-macro)
9274 (goto-char indent-point)
9275 (let ((lim1 (c-determine-limit 2000)))
9276 (setq lim (max lim lim1))))
9277
9278 ;; If we're in a parenthesis list then ',' delimits the
9279 ;; "statements" rather than being an operator (with the
9280 ;; exception of the "for" clause). This difference is
9281 ;; typically only noticeable when statements are used in macro
9282 ;; arglists.
9283 (when (and containing-sexp
9284 (eq (char-after containing-sexp) ?\())
9285 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
9286 ;; cache char before and after indent point, and move point to
9287 ;; the most likely position to perform the majority of tests
9288 (goto-char indent-point)
9289 (c-backward-syntactic-ws lim)
9290 (setq before-ws-ip (point)
9291 char-before-ip (char-before))
9292 (goto-char indent-point)
9293 (skip-chars-forward " \t")
9294 (setq char-after-ip (char-after))
9295
9296 ;; are we in a literal?
9297 (setq literal (c-in-literal lim))
9298
9299 ;; now figure out syntactic qualities of the current line
9300 (cond
9301
9302 ;; CASE 1: in a string.
9303 ((eq literal 'string)
9304 (c-add-syntax 'string (c-point 'bopl)))
9305
9306 ;; CASE 2: in a C or C++ style comment.
9307 ((and (memq literal '(c c++))
9308 ;; This is a kludge for XEmacs where we use
9309 ;; `buffer-syntactic-context', which doesn't correctly
9310 ;; recognize "\*/" to end a block comment.
9311 ;; `parse-partial-sexp' which is used by
9312 ;; `c-literal-limits' will however do that in most
9313 ;; versions, which results in that we get nil from
9314 ;; `c-literal-limits' even when `c-in-literal' claims
9315 ;; we're inside a comment.
9316 (setq placeholder (c-literal-limits lim)))
9317 (c-add-syntax literal (car placeholder)))
9318
9319 ;; CASE 3: in a cpp preprocessor macro continuation.
9320 ((and (save-excursion
9321 (when (c-beginning-of-macro)
9322 (setq macro-start (point))))
9323 (/= macro-start (c-point 'boi))
9324 (progn
9325 (setq tmpsymbol 'cpp-macro-cont)
9326 (or (not c-syntactic-indentation-in-macros)
9327 (save-excursion
9328 (goto-char macro-start)
9329 ;; If at the beginning of the body of a #define
9330 ;; directive then analyze as cpp-define-intro
9331 ;; only. Go on with the syntactic analysis
9332 ;; otherwise. in-macro-expr is set if we're in a
9333 ;; cpp expression, i.e. before the #define body
9334 ;; or anywhere in a non-#define directive.
9335 (if (c-forward-to-cpp-define-body)
9336 (let ((indent-boi (c-point 'boi indent-point)))
9337 (setq in-macro-expr (> (point) indent-boi)
9338 tmpsymbol 'cpp-define-intro)
9339 (= (point) indent-boi))
9340 (setq in-macro-expr t)
9341 nil)))))
9342 (c-add-syntax tmpsymbol macro-start)
9343 (setq macro-start nil))
9344
9345 ;; CASE 11: an else clause?
9346 ((looking-at "else\\>[^_]")
9347 (c-beginning-of-statement-1 containing-sexp)
9348 (c-add-stmt-syntax 'else-clause nil t
9349 containing-sexp paren-state))
9350
9351 ;; CASE 12: while closure of a do/while construct?
9352 ((and (looking-at "while\\>[^_]")
9353 (save-excursion
9354 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
9355 'beginning)
9356 (setq placeholder (point)))))
9357 (goto-char placeholder)
9358 (c-add-stmt-syntax 'do-while-closure nil t
9359 containing-sexp paren-state))
9360
9361 ;; CASE 13: A catch or finally clause? This case is simpler
9362 ;; than if-else and do-while, because a block is required
9363 ;; after every try, catch and finally.
9364 ((save-excursion
9365 (and (cond ((c-major-mode-is 'c++-mode)
9366 (looking-at "catch\\>[^_]"))
9367 ((c-major-mode-is 'java-mode)
9368 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
9369 (and (c-safe (c-backward-syntactic-ws)
9370 (c-backward-sexp)
9371 t)
9372 (eq (char-after) ?{)
9373 (c-safe (c-backward-syntactic-ws)
9374 (c-backward-sexp)
9375 t)
9376 (if (eq (char-after) ?\()
9377 (c-safe (c-backward-sexp) t)
9378 t))
9379 (looking-at "\\(try\\|catch\\)\\>[^_]")
9380 (setq placeholder (point))))
9381 (goto-char placeholder)
9382 (c-add-stmt-syntax 'catch-clause nil t
9383 containing-sexp paren-state))
9384
9385 ;; CASE 18: A substatement we can recognize by keyword.
9386 ((save-excursion
9387 (and c-opt-block-stmt-key
9388 (not (eq char-before-ip ?\;))
9389 (not (c-at-vsemi-p before-ws-ip))
9390 (not (memq char-after-ip '(?\) ?\] ?,)))
9391 (or (not (eq char-before-ip ?}))
9392 (c-looking-at-inexpr-block-backward c-state-cache))
9393 (> (point)
9394 (progn
9395 ;; Ought to cache the result from the
9396 ;; c-beginning-of-statement-1 calls here.
9397 (setq placeholder (point))
9398 (while (eq (setq step-type
9399 (c-beginning-of-statement-1 lim))
9400 'label))
9401 (if (eq step-type 'previous)
9402 (goto-char placeholder)
9403 (setq placeholder (point))
9404 (if (and (eq step-type 'same)
9405 (not (looking-at c-opt-block-stmt-key)))
9406 ;; Step up to the containing statement if we
9407 ;; stayed in the same one.
9408 (let (step)
9409 (while (eq
9410 (setq step
9411 (c-beginning-of-statement-1 lim))
9412 'label))
9413 (if (eq step 'up)
9414 (setq placeholder (point))
9415 ;; There was no containing statement after all.
9416 (goto-char placeholder)))))
9417 placeholder))
9418 (if (looking-at c-block-stmt-2-key)
9419 ;; Require a parenthesis after these keywords.
9420 ;; Necessary to catch e.g. synchronized in Java,
9421 ;; which can be used both as statement and
9422 ;; modifier.
9423 (and (zerop (c-forward-token-2 1 nil))
9424 (eq (char-after) ?\())
9425 (looking-at c-opt-block-stmt-key))))
9426
9427 (if (eq step-type 'up)
9428 ;; CASE 18A: Simple substatement.
9429 (progn
9430 (goto-char placeholder)
9431 (cond
9432 ((eq char-after-ip ?{)
9433 (c-add-stmt-syntax 'substatement-open nil nil
9434 containing-sexp paren-state))
9435 ((save-excursion
9436 (goto-char indent-point)
9437 (back-to-indentation)
9438 (c-forward-label))
9439 (c-add-stmt-syntax 'substatement-label nil nil
9440 containing-sexp paren-state))
9441 (t
9442 (c-add-stmt-syntax 'substatement nil nil
9443 containing-sexp paren-state))))
9444
9445 ;; CASE 18B: Some other substatement. This is shared
9446 ;; with case 10.
9447 (c-guess-continued-construct indent-point
9448 char-after-ip
9449 placeholder
9450 lim
9451 paren-state)))
9452
9453 ;; CASE 14: A case or default label
9454 ((looking-at c-label-kwds-regexp)
9455 (if containing-sexp
9456 (progn
9457 (goto-char containing-sexp)
9458 (setq lim (c-most-enclosing-brace c-state-cache
9459 containing-sexp))
9460 (c-backward-to-block-anchor lim)
9461 (c-add-stmt-syntax 'case-label nil t lim paren-state))
9462 ;; Got a bogus label at the top level. In lack of better
9463 ;; alternatives, anchor it on (point-min).
9464 (c-add-syntax 'case-label (point-min))))
9465
9466 ;; CASE 15: any other label
9467 ((save-excursion
9468 (back-to-indentation)
9469 (and (not (looking-at c-syntactic-ws-start))
9470 (c-forward-label)))
9471 (cond (containing-decl-open
9472 (setq placeholder (c-add-class-syntax 'inclass
9473 containing-decl-open
9474 containing-decl-start
9475 containing-decl-kwd
9476 paren-state))
9477 ;; Append access-label with the same anchor point as
9478 ;; inclass gets.
9479 (c-append-syntax 'access-label placeholder))
9480
9481 (containing-sexp
9482 (goto-char containing-sexp)
9483 (setq lim (c-most-enclosing-brace c-state-cache
9484 containing-sexp))
9485 (save-excursion
9486 (setq tmpsymbol
9487 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
9488 (looking-at "switch\\>[^_]"))
9489 ;; If the surrounding statement is a switch then
9490 ;; let's analyze all labels as switch labels, so
9491 ;; that they get lined up consistently.
9492 'case-label
9493 'label)))
9494 (c-backward-to-block-anchor lim)
9495 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
9496
9497 (t
9498 ;; A label on the top level. Treat it as a class
9499 ;; context. (point-min) is the closest we get to the
9500 ;; class open brace.
9501 (c-add-syntax 'access-label (point-min)))))
9502
9503 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
9504 ;; 17E.
9505 ((setq placeholder (c-looking-at-inexpr-block
9506 (c-safe-position containing-sexp paren-state)
9507 containing-sexp
9508 ;; Have to turn on the heuristics after
9509 ;; the point even though it doesn't work
9510 ;; very well. C.f. test case class-16.pike.
9511 t))
9512 (setq tmpsymbol (assq (car placeholder)
9513 '((inexpr-class . class-open)
9514 (inexpr-statement . block-open))))
9515 (if tmpsymbol
9516 ;; It's a statement block or an anonymous class.
9517 (setq tmpsymbol (cdr tmpsymbol))
9518 ;; It's a Pike lambda. Check whether we are between the
9519 ;; lambda keyword and the argument list or at the defun
9520 ;; opener.
9521 (setq tmpsymbol (if (eq char-after-ip ?{)
9522 'inline-open
9523 'lambda-intro-cont)))
9524 (goto-char (cdr placeholder))
9525 (back-to-indentation)
9526 (c-add-stmt-syntax tmpsymbol nil t
9527 (c-most-enclosing-brace c-state-cache (point))
9528 paren-state)
9529 (unless (eq (point) (cdr placeholder))
9530 (c-add-syntax (car placeholder))))
9531
9532 ;; CASE 5: Line is inside a declaration level block or at top level.
9533 ((or containing-decl-open (null containing-sexp))
9534 (cond
9535
9536 ;; CASE 5A: we are looking at a defun, brace list, class,
9537 ;; or inline-inclass method opening brace
9538 ((setq special-brace-list
9539 (or (and c-special-brace-lists
9540 (c-looking-at-special-brace-list))
9541 (eq char-after-ip ?{)))
9542 (cond
9543
9544 ;; CASE 5A.1: Non-class declaration block open.
9545 ((save-excursion
9546 (let (tmp)
9547 (and (eq char-after-ip ?{)
9548 (setq tmp (c-looking-at-decl-block containing-sexp t))
9549 (progn
9550 (setq placeholder (point))
9551 (goto-char tmp)
9552 (looking-at c-symbol-key))
9553 (c-keyword-member
9554 (c-keyword-sym (setq keyword (match-string 0)))
9555 'c-other-block-decl-kwds))))
9556 (goto-char placeholder)
9557 (c-add-stmt-syntax
9558 (if (string-equal keyword "extern")
9559 ;; Special case for extern-lang-open.
9560 'extern-lang-open
9561 (intern (concat keyword "-open")))
9562 nil t containing-sexp paren-state))
9563
9564 ;; CASE 5A.2: we are looking at a class opening brace
9565 ((save-excursion
9566 (goto-char indent-point)
9567 (skip-chars-forward " \t")
9568 (and (eq (char-after) ?{)
9569 (c-looking-at-decl-block containing-sexp t)
9570 (setq placeholder (point))))
9571 (c-add-syntax 'class-open placeholder))
9572
9573 ;; CASE 5A.3: brace list open
9574 ((save-excursion
9575 (c-beginning-of-decl-1 lim)
9576 (while (looking-at c-specifier-key)
9577 (goto-char (match-end 1))
9578 (c-forward-syntactic-ws indent-point))
9579 (setq placeholder (c-point 'boi))
9580 (or (consp special-brace-list)
9581 (and (or (save-excursion
9582 (goto-char indent-point)
9583 (setq tmpsymbol nil)
9584 (while (and (> (point) placeholder)
9585 (zerop (c-backward-token-2 1 t))
9586 (not (looking-at "=\\([^=]\\|$\\)")))
9587 (and c-opt-inexpr-brace-list-key
9588 (not tmpsymbol)
9589 (looking-at c-opt-inexpr-brace-list-key)
9590 (setq tmpsymbol 'topmost-intro-cont)))
9591 (looking-at "=\\([^=]\\|$\\)"))
9592 (looking-at c-brace-list-key))
9593 (save-excursion
9594 (while (and (< (point) indent-point)
9595 (zerop (c-forward-token-2 1 t))
9596 (not (memq (char-after) '(?\; ?\()))))
9597 (not (memq (char-after) '(?\; ?\()))
9598 ))))
9599 (if (and (not c-auto-newline-analysis)
9600 (c-major-mode-is 'java-mode)
9601 (eq tmpsymbol 'topmost-intro-cont))
9602 ;; We're in Java and have found that the open brace
9603 ;; belongs to a "new Foo[]" initialization list,
9604 ;; which means the brace list is part of an
9605 ;; expression and not a top level definition. We
9606 ;; therefore treat it as any topmost continuation
9607 ;; even though the semantically correct symbol still
9608 ;; is brace-list-open, on the same grounds as in
9609 ;; case B.2.
9610 (progn
9611 (c-beginning-of-statement-1 lim)
9612 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
9613 (c-add-syntax 'brace-list-open placeholder)))
9614
9615 ;; CASE 5A.4: inline defun open
9616 ((and containing-decl-open
9617 (not (c-keyword-member containing-decl-kwd
9618 'c-other-block-decl-kwds)))
9619 (c-add-syntax 'inline-open)
9620 (c-add-class-syntax 'inclass
9621 containing-decl-open
9622 containing-decl-start
9623 containing-decl-kwd
9624 paren-state))
9625
9626 ;; CASE 5A.5: ordinary defun open
9627 (t
9628 (save-excursion
9629 (c-beginning-of-decl-1 lim)
9630 (while (looking-at c-specifier-key)
9631 (goto-char (match-end 1))
9632 (c-forward-syntactic-ws indent-point))
9633 (c-add-syntax 'defun-open (c-point 'boi))
9634 ;; Bogus to use bol here, but it's the legacy. (Resolved,
9635 ;; 2007-11-09)
9636 ))))
9637
9638 ;; CASE 5B: After a function header but before the body (or
9639 ;; the ending semicolon if there's no body).
9640 ((save-excursion
9641 (when (setq placeholder (c-just-after-func-arglist-p
9642 (max lim (c-determine-limit 500))))
9643 (setq tmp-pos (point))))
9644 (cond
9645
9646 ;; CASE 5B.1: Member init list.
9647 ((eq (char-after tmp-pos) ?:)
9648 (if (or (>= tmp-pos indent-point)
9649 (= (c-point 'bosws) (1+ tmp-pos)))
9650 (progn
9651 ;; There is no preceding member init clause.
9652 ;; Indent relative to the beginning of indentation
9653 ;; for the topmost-intro line that contains the
9654 ;; prototype's open paren.
9655 (goto-char placeholder)
9656 (c-add-syntax 'member-init-intro (c-point 'boi)))
9657 ;; Indent relative to the first member init clause.
9658 (goto-char (1+ tmp-pos))
9659 (c-forward-syntactic-ws)
9660 (c-add-syntax 'member-init-cont (point))))
9661
9662 ;; CASE 5B.2: K&R arg decl intro
9663 ((and c-recognize-knr-p
9664 (c-in-knr-argdecl lim))
9665 (c-beginning-of-statement-1 lim)
9666 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
9667 (if containing-decl-open
9668 (c-add-class-syntax 'inclass
9669 containing-decl-open
9670 containing-decl-start
9671 containing-decl-kwd
9672 paren-state)))
9673
9674 ;; CASE 5B.4: Nether region after a C++ or Java func
9675 ;; decl, which could include a `throws' declaration.
9676 (t
9677 (c-beginning-of-statement-1 lim)
9678 (c-add-syntax 'func-decl-cont (c-point 'boi))
9679 )))
9680
9681 ;; CASE 5C: inheritance line. could be first inheritance
9682 ;; line, or continuation of a multiple inheritance
9683 ((or (and (c-major-mode-is 'c++-mode)
9684 (progn
9685 (when (eq char-after-ip ?,)
9686 (skip-chars-forward " \t")
9687 (forward-char))
9688 (looking-at c-opt-postfix-decl-spec-key)))
9689 (and (or (eq char-before-ip ?:)
9690 ;; watch out for scope operator
9691 (save-excursion
9692 (and (eq char-after-ip ?:)
9693 (c-safe (forward-char 1) t)
9694 (not (eq (char-after) ?:))
9695 )))
9696 (save-excursion
9697 (c-backward-syntactic-ws lim)
9698 (if (eq char-before-ip ?:)
9699 (progn
9700 (forward-char -1)
9701 (c-backward-syntactic-ws lim)))
9702 (back-to-indentation)
9703 (looking-at c-class-key)))
9704 ;; for Java
9705 (and (c-major-mode-is 'java-mode)
9706 (let ((fence (save-excursion
9707 (c-beginning-of-statement-1 lim)
9708 (point)))
9709 cont done)
9710 (save-excursion
9711 (while (not done)
9712 (cond ((looking-at c-opt-postfix-decl-spec-key)
9713 (setq injava-inher (cons cont (point))
9714 done t))
9715 ((or (not (c-safe (c-forward-sexp -1) t))
9716 (<= (point) fence))
9717 (setq done t))
9718 )
9719 (setq cont t)))
9720 injava-inher)
9721 (not (c-crosses-statement-barrier-p (cdr injava-inher)
9722 (point)))
9723 ))
9724 (cond
9725
9726 ;; CASE 5C.1: non-hanging colon on an inher intro
9727 ((eq char-after-ip ?:)
9728 (c-beginning-of-statement-1 lim)
9729 (c-add-syntax 'inher-intro (c-point 'boi))
9730 ;; don't add inclass symbol since relative point already
9731 ;; contains any class offset
9732 )
9733
9734 ;; CASE 5C.2: hanging colon on an inher intro
9735 ((eq char-before-ip ?:)
9736 (c-beginning-of-statement-1 lim)
9737 (c-add-syntax 'inher-intro (c-point 'boi))
9738 (if containing-decl-open
9739 (c-add-class-syntax 'inclass
9740 containing-decl-open
9741 containing-decl-start
9742 containing-decl-kwd
9743 paren-state)))
9744
9745 ;; CASE 5C.3: in a Java implements/extends
9746 (injava-inher
9747 (let ((where (cdr injava-inher))
9748 (cont (car injava-inher)))
9749 (goto-char where)
9750 (cond ((looking-at "throws\\>[^_]")
9751 (c-add-syntax 'func-decl-cont
9752 (progn (c-beginning-of-statement-1 lim)
9753 (c-point 'boi))))
9754 (cont (c-add-syntax 'inher-cont where))
9755 (t (c-add-syntax 'inher-intro
9756 (progn (goto-char (cdr injava-inher))
9757 (c-beginning-of-statement-1 lim)
9758 (point))))
9759 )))
9760
9761 ;; CASE 5C.4: a continued inheritance line
9762 (t
9763 (c-beginning-of-inheritance-list lim)
9764 (c-add-syntax 'inher-cont (point))
9765 ;; don't add inclass symbol since relative point already
9766 ;; contains any class offset
9767 )))
9768
9769 ;; CASE 5D: this could be a top-level initialization, a
9770 ;; member init list continuation, or a template argument
9771 ;; list continuation.
9772 ((save-excursion
9773 ;; Note: We use the fact that lim is always after any
9774 ;; preceding brace sexp.
9775 (if c-recognize-<>-arglists
9776 (while (and
9777 (progn
9778 (c-syntactic-skip-backward "^;,=<>" lim t)
9779 (> (point) lim))
9780 (or
9781 (when c-overloadable-operators-regexp
9782 (when (setq placeholder (c-after-special-operator-id lim))
9783 (goto-char placeholder)
9784 t))
9785 (cond
9786 ((eq (char-before) ?>)
9787 (or (c-backward-<>-arglist nil lim)
9788 (backward-char))
9789 t)
9790 ((eq (char-before) ?<)
9791 (backward-char)
9792 (if (save-excursion
9793 (c-forward-<>-arglist nil))
9794 (progn (forward-char)
9795 nil)
9796 t))
9797 (t nil)))))
9798 ;; NB: No c-after-special-operator-id stuff in this
9799 ;; clause - we assume only C++ needs it.
9800 (c-syntactic-skip-backward "^;,=" lim t))
9801 (memq (char-before) '(?, ?= ?<)))
9802 (cond
9803
9804 ;; CASE 5D.3: perhaps a template list continuation?
9805 ((and (c-major-mode-is 'c++-mode)
9806 (save-excursion
9807 (save-restriction
9808 (c-with-syntax-table c++-template-syntax-table
9809 (goto-char indent-point)
9810 (setq placeholder (c-up-list-backward))
9811 (and placeholder
9812 (eq (char-after placeholder) ?<))))))
9813 (c-with-syntax-table c++-template-syntax-table
9814 (goto-char placeholder)
9815 (c-beginning-of-statement-1 lim t)
9816 (if (save-excursion
9817 (c-backward-syntactic-ws lim)
9818 (eq (char-before) ?<))
9819 ;; In a nested template arglist.
9820 (progn
9821 (goto-char placeholder)
9822 (c-syntactic-skip-backward "^,;" lim t)
9823 (c-forward-syntactic-ws))
9824 (back-to-indentation)))
9825 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9826 ;; template aware.
9827 (c-add-syntax 'template-args-cont (point) placeholder))
9828
9829 ;; CASE 5D.4: perhaps a multiple inheritance line?
9830 ((and (c-major-mode-is 'c++-mode)
9831 (save-excursion
9832 (c-beginning-of-statement-1 lim)
9833 (setq placeholder (point))
9834 (if (looking-at "static\\>[^_]")
9835 (c-forward-token-2 1 nil indent-point))
9836 (and (looking-at c-class-key)
9837 (zerop (c-forward-token-2 2 nil indent-point))
9838 (if (eq (char-after) ?<)
9839 (c-with-syntax-table c++-template-syntax-table
9840 (zerop (c-forward-token-2 1 t indent-point)))
9841 t)
9842 (eq (char-after) ?:))))
9843 (goto-char placeholder)
9844 (c-add-syntax 'inher-cont (c-point 'boi)))
9845
9846 ;; CASE 5D.5: Continuation of the "expression part" of a
9847 ;; top level construct. Or, perhaps, an unrecognized construct.
9848 (t
9849 (while (and (setq placeholder (point))
9850 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
9851 'same)
9852 (save-excursion
9853 (c-backward-syntactic-ws)
9854 (eq (char-before) ?}))
9855 (< (point) placeholder)))
9856 (c-add-stmt-syntax
9857 (cond
9858 ((eq (point) placeholder) 'statement) ; unrecognized construct
9859 ;; A preceding comma at the top level means that a
9860 ;; new variable declaration starts here. Use
9861 ;; topmost-intro-cont for it, for consistency with
9862 ;; the first variable declaration. C.f. case 5N.
9863 ((eq char-before-ip ?,) 'topmost-intro-cont)
9864 (t 'statement-cont))
9865 nil nil containing-sexp paren-state))
9866 ))
9867
9868 ;; CASE 5F: Close of a non-class declaration level block.
9869 ((and (eq char-after-ip ?})
9870 (c-keyword-member containing-decl-kwd
9871 'c-other-block-decl-kwds))
9872 ;; This is inconsistent: Should use `containing-decl-open'
9873 ;; here if it's at boi, like in case 5J.
9874 (goto-char containing-decl-start)
9875 (c-add-stmt-syntax
9876 (if (string-equal (symbol-name containing-decl-kwd) "extern")
9877 ;; Special case for compatibility with the
9878 ;; extern-lang syntactic symbols.
9879 'extern-lang-close
9880 (intern (concat (symbol-name containing-decl-kwd)
9881 "-close")))
9882 nil t
9883 (c-most-enclosing-brace paren-state (point))
9884 paren-state))
9885
9886 ;; CASE 5G: we are looking at the brace which closes the
9887 ;; enclosing nested class decl
9888 ((and containing-sexp
9889 (eq char-after-ip ?})
9890 (eq containing-decl-open containing-sexp))
9891 (c-add-class-syntax 'class-close
9892 containing-decl-open
9893 containing-decl-start
9894 containing-decl-kwd
9895 paren-state))
9896
9897 ;; CASE 5H: we could be looking at subsequent knr-argdecls
9898 ((and c-recognize-knr-p
9899 (not containing-sexp) ; can't be knr inside braces.
9900 (not (eq char-before-ip ?}))
9901 (save-excursion
9902 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
9903 (and placeholder
9904 ;; Do an extra check to avoid tripping up on
9905 ;; statements that occur in invalid contexts
9906 ;; (e.g. in macro bodies where we don't really
9907 ;; know the context of what we're looking at).
9908 (not (and c-opt-block-stmt-key
9909 (looking-at c-opt-block-stmt-key)))))
9910 (< placeholder indent-point))
9911 (goto-char placeholder)
9912 (c-add-syntax 'knr-argdecl (point)))
9913
9914 ;; CASE 5I: ObjC method definition.
9915 ((and c-opt-method-key
9916 (looking-at c-opt-method-key))
9917 (c-beginning-of-statement-1 nil t)
9918 (if (= (point) indent-point)
9919 ;; Handle the case when it's the first (non-comment)
9920 ;; thing in the buffer. Can't look for a 'same return
9921 ;; value from cbos1 since ObjC directives currently
9922 ;; aren't recognized fully, so that we get 'same
9923 ;; instead of 'previous if it moved over a preceding
9924 ;; directive.
9925 (goto-char (point-min)))
9926 (c-add-syntax 'objc-method-intro (c-point 'boi)))
9927
9928 ;; CASE 5P: AWK pattern or function or continuation
9929 ;; thereof.
9930 ((c-major-mode-is 'awk-mode)
9931 (setq placeholder (point))
9932 (c-add-stmt-syntax
9933 (if (and (eq (c-beginning-of-statement-1) 'same)
9934 (/= (point) placeholder))
9935 'topmost-intro-cont
9936 'topmost-intro)
9937 nil nil
9938 containing-sexp paren-state))
9939
9940 ;; CASE 5N: At a variable declaration that follows a class
9941 ;; definition or some other block declaration that doesn't
9942 ;; end at the closing '}'. C.f. case 5D.5.
9943 ((progn
9944 (c-backward-syntactic-ws lim)
9945 (and (eq (char-before) ?})
9946 (save-excursion
9947 (let ((start (point)))
9948 (if (and c-state-cache
9949 (consp (car c-state-cache))
9950 (eq (cdar c-state-cache) (point)))
9951 ;; Speed up the backward search a bit.
9952 (goto-char (caar c-state-cache)))
9953 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
9954 (setq placeholder (point))
9955 (if (= start (point))
9956 ;; The '}' is unbalanced.
9957 nil
9958 (c-end-of-decl-1)
9959 (>= (point) indent-point))))))
9960 (goto-char placeholder)
9961 (c-add-stmt-syntax 'topmost-intro-cont nil nil
9962 containing-sexp paren-state))
9963
9964 ;; NOTE: The point is at the end of the previous token here.
9965
9966 ;; CASE 5J: we are at the topmost level, make
9967 ;; sure we skip back past any access specifiers
9968 ((and
9969 ;; A macro continuation line is never at top level.
9970 (not (and macro-start
9971 (> indent-point macro-start)))
9972 (save-excursion
9973 (setq placeholder (point))
9974 (or (memq char-before-ip '(?\; ?{ ?} nil))
9975 (c-at-vsemi-p before-ws-ip)
9976 (when (and (eq char-before-ip ?:)
9977 (eq (c-beginning-of-statement-1 lim)
9978 'label))
9979 (c-backward-syntactic-ws lim)
9980 (setq placeholder (point)))
9981 (and (c-major-mode-is 'objc-mode)
9982 (catch 'not-in-directive
9983 (c-beginning-of-statement-1 lim)
9984 (setq placeholder (point))
9985 (while (and (c-forward-objc-directive)
9986 (< (point) indent-point))
9987 (c-forward-syntactic-ws)
9988 (if (>= (point) indent-point)
9989 (throw 'not-in-directive t))
9990 (setq placeholder (point)))
9991 nil)))))
9992 ;; For historic reasons we anchor at bol of the last
9993 ;; line of the previous declaration. That's clearly
9994 ;; highly bogus and useless, and it makes our lives hard
9995 ;; to remain compatible. :P
9996 (goto-char placeholder)
9997 (c-add-syntax 'topmost-intro (c-point 'bol))
9998 (if containing-decl-open
9999 (if (c-keyword-member containing-decl-kwd
10000 'c-other-block-decl-kwds)
10001 (progn
10002 (goto-char (c-brace-anchor-point containing-decl-open))
10003 (c-add-stmt-syntax
10004 (if (string-equal (symbol-name containing-decl-kwd)
10005 "extern")
10006 ;; Special case for compatibility with the
10007 ;; extern-lang syntactic symbols.
10008 'inextern-lang
10009 (intern (concat "in"
10010 (symbol-name containing-decl-kwd))))
10011 nil t
10012 (c-most-enclosing-brace paren-state (point))
10013 paren-state))
10014 (c-add-class-syntax 'inclass
10015 containing-decl-open
10016 containing-decl-start
10017 containing-decl-kwd
10018 paren-state)))
10019 (when (and c-syntactic-indentation-in-macros
10020 macro-start
10021 (/= macro-start (c-point 'boi indent-point)))
10022 (c-add-syntax 'cpp-define-intro)
10023 (setq macro-start nil)))
10024
10025 ;; CASE 5K: we are at an ObjC method definition
10026 ;; continuation line.
10027 ((and c-opt-method-key
10028 (save-excursion
10029 (c-beginning-of-statement-1 lim)
10030 (beginning-of-line)
10031 (when (looking-at c-opt-method-key)
10032 (setq placeholder (point)))))
10033 (c-add-syntax 'objc-method-args-cont placeholder))
10034
10035 ;; CASE 5L: we are at the first argument of a template
10036 ;; arglist that begins on the previous line.
10037 ((and c-recognize-<>-arglists
10038 (eq (char-before) ?<)
10039 (not (and c-overloadable-operators-regexp
10040 (c-after-special-operator-id lim))))
10041 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10042 (c-add-syntax 'template-args-cont (c-point 'boi)))
10043
10044 ;; CASE 5Q: we are at a statement within a macro.
10045 (macro-start
10046 (c-beginning-of-statement-1 containing-sexp)
10047 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
10048
10049 ;;CASE 5N: We are at a topmost continuation line and the only
10050 ;;preceding items are annotations.
10051 ((and (c-major-mode-is 'java-mode)
10052 (setq placeholder (point))
10053 (c-beginning-of-statement-1)
10054 (progn
10055 (while (and (c-forward-annotation))
10056 (c-forward-syntactic-ws))
10057 t)
10058 (prog1
10059 (>= (point) placeholder)
10060 (goto-char placeholder)))
10061 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
10062
10063 ;; CASE 5M: we are at a topmost continuation line
10064 (t
10065 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10066 (when (c-major-mode-is 'objc-mode)
10067 (setq placeholder (point))
10068 (while (and (c-forward-objc-directive)
10069 (< (point) indent-point))
10070 (c-forward-syntactic-ws)
10071 (setq placeholder (point)))
10072 (goto-char placeholder))
10073 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10074 ))
10075
10076
10077 ;; (CASE 6 has been removed.)
10078
10079 ;; CASE 7: line is an expression, not a statement. Most
10080 ;; likely we are either in a function prototype or a function
10081 ;; call argument list
10082 ((not (or (and c-special-brace-lists
10083 (save-excursion
10084 (goto-char containing-sexp)
10085 (c-looking-at-special-brace-list)))
10086 (eq (char-after containing-sexp) ?{)))
10087 (cond
10088
10089 ;; CASE 7A: we are looking at the arglist closing paren.
10090 ;; C.f. case 7F.
10091 ((memq char-after-ip '(?\) ?\]))
10092 (goto-char containing-sexp)
10093 (setq placeholder (c-point 'boi))
10094 (if (and (c-safe (backward-up-list 1) t)
10095 (>= (point) placeholder))
10096 (progn
10097 (forward-char)
10098 (skip-chars-forward " \t"))
10099 (goto-char placeholder))
10100 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
10101 (c-most-enclosing-brace paren-state (point))
10102 paren-state))
10103
10104 ;; CASE 7B: Looking at the opening brace of an
10105 ;; in-expression block or brace list. C.f. cases 4, 16A
10106 ;; and 17E.
10107 ((and (eq char-after-ip ?{)
10108 (progn
10109 (setq placeholder (c-inside-bracelist-p (point)
10110 paren-state))
10111 (if placeholder
10112 (setq tmpsymbol '(brace-list-open . inexpr-class))
10113 (setq tmpsymbol '(block-open . inexpr-statement)
10114 placeholder
10115 (cdr-safe (c-looking-at-inexpr-block
10116 (c-safe-position containing-sexp
10117 paren-state)
10118 containing-sexp)))
10119 ;; placeholder is nil if it's a block directly in
10120 ;; a function arglist. That makes us skip out of
10121 ;; this case.
10122 )))
10123 (goto-char placeholder)
10124 (back-to-indentation)
10125 (c-add-stmt-syntax (car tmpsymbol) nil t
10126 (c-most-enclosing-brace paren-state (point))
10127 paren-state)
10128 (if (/= (point) placeholder)
10129 (c-add-syntax (cdr tmpsymbol))))
10130
10131 ;; CASE 7C: we are looking at the first argument in an empty
10132 ;; argument list. Use arglist-close if we're actually
10133 ;; looking at a close paren or bracket.
10134 ((memq char-before-ip '(?\( ?\[))
10135 (goto-char containing-sexp)
10136 (setq placeholder (c-point 'boi))
10137 (if (and (c-safe (backward-up-list 1) t)
10138 (>= (point) placeholder))
10139 (progn
10140 (forward-char)
10141 (skip-chars-forward " \t"))
10142 (goto-char placeholder))
10143 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
10144 (c-most-enclosing-brace paren-state (point))
10145 paren-state))
10146
10147 ;; CASE 7D: we are inside a conditional test clause. treat
10148 ;; these things as statements
10149 ((progn
10150 (goto-char containing-sexp)
10151 (and (c-safe (c-forward-sexp -1) t)
10152 (looking-at "\\<for\\>[^_]")))
10153 (goto-char (1+ containing-sexp))
10154 (c-forward-syntactic-ws indent-point)
10155 (if (eq char-before-ip ?\;)
10156 (c-add-syntax 'statement (point))
10157 (c-add-syntax 'statement-cont (point))
10158 ))
10159
10160 ;; CASE 7E: maybe a continued ObjC method call. This is the
10161 ;; case when we are inside a [] bracketed exp, and what
10162 ;; precede the opening bracket is not an identifier.
10163 ((and c-opt-method-key
10164 (eq (char-after containing-sexp) ?\[)
10165 (progn
10166 (goto-char (1- containing-sexp))
10167 (c-backward-syntactic-ws (c-point 'bod))
10168 (if (not (looking-at c-symbol-key))
10169 (c-add-syntax 'objc-method-call-cont containing-sexp))
10170 )))
10171
10172 ;; CASE 7F: we are looking at an arglist continuation line,
10173 ;; but the preceding argument is on the same line as the
10174 ;; opening paren. This case includes multi-line
10175 ;; mathematical paren groupings, but we could be on a
10176 ;; for-list continuation line. C.f. case 7A.
10177 ((progn
10178 (goto-char (1+ containing-sexp))
10179 (< (save-excursion
10180 (c-forward-syntactic-ws)
10181 (point))
10182 (c-point 'bonl)))
10183 (goto-char containing-sexp) ; paren opening the arglist
10184 (setq placeholder (c-point 'boi))
10185 (if (and (c-safe (backward-up-list 1) t)
10186 (>= (point) placeholder))
10187 (progn
10188 (forward-char)
10189 (skip-chars-forward " \t"))
10190 (goto-char placeholder))
10191 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
10192 (c-most-enclosing-brace c-state-cache (point))
10193 paren-state))
10194
10195 ;; CASE 7G: we are looking at just a normal arglist
10196 ;; continuation line
10197 (t (c-forward-syntactic-ws indent-point)
10198 (c-add-syntax 'arglist-cont (c-point 'boi)))
10199 ))
10200
10201 ;; CASE 8: func-local multi-inheritance line
10202 ((and (c-major-mode-is 'c++-mode)
10203 (save-excursion
10204 (goto-char indent-point)
10205 (skip-chars-forward " \t")
10206 (looking-at c-opt-postfix-decl-spec-key)))
10207 (goto-char indent-point)
10208 (skip-chars-forward " \t")
10209 (cond
10210
10211 ;; CASE 8A: non-hanging colon on an inher intro
10212 ((eq char-after-ip ?:)
10213 (c-backward-syntactic-ws lim)
10214 (c-add-syntax 'inher-intro (c-point 'boi)))
10215
10216 ;; CASE 8B: hanging colon on an inher intro
10217 ((eq char-before-ip ?:)
10218 (c-add-syntax 'inher-intro (c-point 'boi)))
10219
10220 ;; CASE 8C: a continued inheritance line
10221 (t
10222 (c-beginning-of-inheritance-list lim)
10223 (c-add-syntax 'inher-cont (point))
10224 )))
10225
10226 ;; CASE 9: we are inside a brace-list
10227 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
10228 (setq special-brace-list
10229 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
10230 (save-excursion
10231 (goto-char containing-sexp)
10232 (c-looking-at-special-brace-list)))
10233 (c-inside-bracelist-p containing-sexp paren-state))))
10234 (cond
10235
10236 ;; CASE 9A: In the middle of a special brace list opener.
10237 ((and (consp special-brace-list)
10238 (save-excursion
10239 (goto-char containing-sexp)
10240 (eq (char-after) ?\())
10241 (eq char-after-ip (car (cdr special-brace-list))))
10242 (goto-char (car (car special-brace-list)))
10243 (skip-chars-backward " \t")
10244 (if (and (bolp)
10245 (assoc 'statement-cont
10246 (setq placeholder (c-guess-basic-syntax))))
10247 (setq c-syntactic-context placeholder)
10248 (c-beginning-of-statement-1
10249 (c-safe-position (1- containing-sexp) paren-state))
10250 (c-forward-token-2 0)
10251 (while (looking-at c-specifier-key)
10252 (goto-char (match-end 1))
10253 (c-forward-syntactic-ws))
10254 (c-add-syntax 'brace-list-open (c-point 'boi))))
10255
10256 ;; CASE 9B: brace-list-close brace
10257 ((if (consp special-brace-list)
10258 ;; Check special brace list closer.
10259 (progn
10260 (goto-char (car (car special-brace-list)))
10261 (save-excursion
10262 (goto-char indent-point)
10263 (back-to-indentation)
10264 (or
10265 ;; We were between the special close char and the `)'.
10266 (and (eq (char-after) ?\))
10267 (eq (1+ (point)) (cdr (car special-brace-list))))
10268 ;; We were before the special close char.
10269 (and (eq (char-after) (cdr (cdr special-brace-list)))
10270 (zerop (c-forward-token-2))
10271 (eq (1+ (point)) (cdr (car special-brace-list)))))))
10272 ;; Normal brace list check.
10273 (and (eq char-after-ip ?})
10274 (c-safe (goto-char (c-up-list-backward (point))) t)
10275 (= (point) containing-sexp)))
10276 (if (eq (point) (c-point 'boi))
10277 (c-add-syntax 'brace-list-close (point))
10278 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10279 (c-beginning-of-statement-1 lim)
10280 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
10281
10282 (t
10283 ;; Prepare for the rest of the cases below by going to the
10284 ;; token following the opening brace
10285 (if (consp special-brace-list)
10286 (progn
10287 (goto-char (car (car special-brace-list)))
10288 (c-forward-token-2 1 nil indent-point))
10289 (goto-char containing-sexp))
10290 (forward-char)
10291 (let ((start (point)))
10292 (c-forward-syntactic-ws indent-point)
10293 (goto-char (max start (c-point 'bol))))
10294 (c-skip-ws-forward indent-point)
10295 (cond
10296
10297 ;; CASE 9C: we're looking at the first line in a brace-list
10298 ((= (point) indent-point)
10299 (if (consp special-brace-list)
10300 (goto-char (car (car special-brace-list)))
10301 (goto-char containing-sexp))
10302 (if (eq (point) (c-point 'boi))
10303 (c-add-syntax 'brace-list-intro (point))
10304 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10305 (c-beginning-of-statement-1 lim)
10306 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
10307
10308 ;; CASE 9D: this is just a later brace-list-entry or
10309 ;; brace-entry-open
10310 (t (if (or (eq char-after-ip ?{)
10311 (and c-special-brace-lists
10312 (save-excursion
10313 (goto-char indent-point)
10314 (c-forward-syntactic-ws (c-point 'eol))
10315 (c-looking-at-special-brace-list (point)))))
10316 (c-add-syntax 'brace-entry-open (point))
10317 (c-add-syntax 'brace-list-entry (point))
10318 ))
10319 ))))
10320
10321 ;; CASE 10: A continued statement or top level construct.
10322 ((and (not (memq char-before-ip '(?\; ?:)))
10323 (not (c-at-vsemi-p before-ws-ip))
10324 (or (not (eq char-before-ip ?}))
10325 (c-looking-at-inexpr-block-backward c-state-cache))
10326 (> (point)
10327 (save-excursion
10328 (c-beginning-of-statement-1 containing-sexp)
10329 (setq placeholder (point))))
10330 (/= placeholder containing-sexp))
10331 ;; This is shared with case 18.
10332 (c-guess-continued-construct indent-point
10333 char-after-ip
10334 placeholder
10335 containing-sexp
10336 paren-state))
10337
10338 ;; CASE 16: block close brace, possibly closing the defun or
10339 ;; the class
10340 ((eq char-after-ip ?})
10341 ;; From here on we have the next containing sexp in lim.
10342 (setq lim (c-most-enclosing-brace paren-state))
10343 (goto-char containing-sexp)
10344 (cond
10345
10346 ;; CASE 16E: Closing a statement block? This catches
10347 ;; cases where it's preceded by a statement keyword,
10348 ;; which works even when used in an "invalid" context,
10349 ;; e.g. a macro argument.
10350 ((c-after-conditional)
10351 (c-backward-to-block-anchor lim)
10352 (c-add-stmt-syntax 'block-close nil t lim paren-state))
10353
10354 ;; CASE 16A: closing a lambda defun or an in-expression
10355 ;; block? C.f. cases 4, 7B and 17E.
10356 ((setq placeholder (c-looking-at-inexpr-block
10357 (c-safe-position containing-sexp paren-state)
10358 nil))
10359 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10360 'inline-close
10361 'block-close))
10362 (goto-char containing-sexp)
10363 (back-to-indentation)
10364 (if (= containing-sexp (point))
10365 (c-add-syntax tmpsymbol (point))
10366 (goto-char (cdr placeholder))
10367 (back-to-indentation)
10368 (c-add-stmt-syntax tmpsymbol nil t
10369 (c-most-enclosing-brace paren-state (point))
10370 paren-state)
10371 (if (/= (point) (cdr placeholder))
10372 (c-add-syntax (car placeholder)))))
10373
10374 ;; CASE 16B: does this close an inline or a function in
10375 ;; a non-class declaration level block?
10376 ((save-excursion
10377 (and lim
10378 (progn
10379 (goto-char lim)
10380 (c-looking-at-decl-block
10381 (c-most-enclosing-brace paren-state lim)
10382 nil))
10383 (setq placeholder (point))))
10384 (c-backward-to-decl-anchor lim)
10385 (back-to-indentation)
10386 (if (save-excursion
10387 (goto-char placeholder)
10388 (looking-at c-other-decl-block-key))
10389 (c-add-syntax 'defun-close (point))
10390 (c-add-syntax 'inline-close (point))))
10391
10392 ;; CASE 16F: Can be a defun-close of a function declared
10393 ;; in a statement block, e.g. in Pike or when using gcc
10394 ;; extensions, but watch out for macros followed by
10395 ;; blocks. Let it through to be handled below.
10396 ;; C.f. cases B.3 and 17G.
10397 ((save-excursion
10398 (and (not (c-at-statement-start-p))
10399 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10400 (setq placeholder (point))
10401 (let ((c-recognize-typeless-decls nil))
10402 ;; Turn off recognition of constructs that
10403 ;; lacks a type in this case, since that's more
10404 ;; likely to be a macro followed by a block.
10405 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10406 (back-to-indentation)
10407 (if (/= (point) containing-sexp)
10408 (goto-char placeholder))
10409 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
10410
10411 ;; CASE 16C: If there is an enclosing brace then this is
10412 ;; a block close since defun closes inside declaration
10413 ;; level blocks have been handled above.
10414 (lim
10415 ;; If the block is preceded by a case/switch label on
10416 ;; the same line, we anchor at the first preceding label
10417 ;; at boi. The default handling in c-add-stmt-syntax
10418 ;; really fixes it better, but we do like this to keep
10419 ;; the indentation compatible with version 5.28 and
10420 ;; earlier. C.f. case 17H.
10421 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10422 (eq (c-beginning-of-statement-1 lim) 'label)))
10423 (goto-char placeholder)
10424 (if (looking-at c-label-kwds-regexp)
10425 (c-add-syntax 'block-close (point))
10426 (goto-char containing-sexp)
10427 ;; c-backward-to-block-anchor not necessary here; those
10428 ;; situations are handled in case 16E above.
10429 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
10430
10431 ;; CASE 16D: Only top level defun close left.
10432 (t
10433 (goto-char containing-sexp)
10434 (c-backward-to-decl-anchor lim)
10435 (c-add-stmt-syntax 'defun-close nil nil
10436 (c-most-enclosing-brace paren-state)
10437 paren-state))
10438 ))
10439
10440 ;; CASE 19: line is an expression, not a statement, and is directly
10441 ;; contained by a template delimiter. Most likely, we are in a
10442 ;; template arglist within a statement. This case is based on CASE
10443 ;; 7. At some point in the future, we may wish to create more
10444 ;; syntactic symbols such as `template-intro',
10445 ;; `template-cont-nonempty', etc., and distinguish between them as we
10446 ;; do for `arglist-intro' etc. (2009-12-07).
10447 ((and c-recognize-<>-arglists
10448 (setq containing-< (c-up-list-backward indent-point containing-sexp))
10449 (eq (char-after containing-<) ?\<))
10450 (setq placeholder (c-point 'boi containing-<))
10451 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
10452 ; '<') before indent-point.
10453 (if (>= (point) placeholder)
10454 (progn
10455 (forward-char)
10456 (skip-chars-forward " \t"))
10457 (goto-char placeholder))
10458 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
10459 (c-most-enclosing-brace c-state-cache (point))
10460 paren-state))
10461
10462 ;; CASE 17: Statement or defun catchall.
10463 (t
10464 (goto-char indent-point)
10465 ;; Back up statements until we find one that starts at boi.
10466 (while (let* ((prev-point (point))
10467 (last-step-type (c-beginning-of-statement-1
10468 containing-sexp)))
10469 (if (= (point) prev-point)
10470 (progn
10471 (setq step-type (or step-type last-step-type))
10472 nil)
10473 (setq step-type last-step-type)
10474 (/= (point) (c-point 'boi)))))
10475 (cond
10476
10477 ;; CASE 17B: continued statement
10478 ((and (eq step-type 'same)
10479 (/= (point) indent-point))
10480 (c-add-stmt-syntax 'statement-cont nil nil
10481 containing-sexp paren-state))
10482
10483 ;; CASE 17A: After a case/default label?
10484 ((progn
10485 (while (and (eq step-type 'label)
10486 (not (looking-at c-label-kwds-regexp)))
10487 (setq step-type
10488 (c-beginning-of-statement-1 containing-sexp)))
10489 (eq step-type 'label))
10490 (c-add-stmt-syntax (if (eq char-after-ip ?{)
10491 'statement-case-open
10492 'statement-case-intro)
10493 nil t containing-sexp paren-state))
10494
10495 ;; CASE 17D: any old statement
10496 ((progn
10497 (while (eq step-type 'label)
10498 (setq step-type
10499 (c-beginning-of-statement-1 containing-sexp)))
10500 (eq step-type 'previous))
10501 (c-add-stmt-syntax 'statement nil t
10502 containing-sexp paren-state)
10503 (if (eq char-after-ip ?{)
10504 (c-add-syntax 'block-open)))
10505
10506 ;; CASE 17I: Inside a substatement block.
10507 ((progn
10508 ;; The following tests are all based on containing-sexp.
10509 (goto-char containing-sexp)
10510 ;; From here on we have the next containing sexp in lim.
10511 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
10512 (c-after-conditional))
10513 (c-backward-to-block-anchor lim)
10514 (c-add-stmt-syntax 'statement-block-intro nil t
10515 lim paren-state)
10516 (if (eq char-after-ip ?{)
10517 (c-add-syntax 'block-open)))
10518
10519 ;; CASE 17E: first statement in an in-expression block.
10520 ;; C.f. cases 4, 7B and 16A.
10521 ((setq placeholder (c-looking-at-inexpr-block
10522 (c-safe-position containing-sexp paren-state)
10523 nil))
10524 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10525 'defun-block-intro
10526 'statement-block-intro))
10527 (back-to-indentation)
10528 (if (= containing-sexp (point))
10529 (c-add-syntax tmpsymbol (point))
10530 (goto-char (cdr placeholder))
10531 (back-to-indentation)
10532 (c-add-stmt-syntax tmpsymbol nil t
10533 (c-most-enclosing-brace c-state-cache (point))
10534 paren-state)
10535 (if (/= (point) (cdr placeholder))
10536 (c-add-syntax (car placeholder))))
10537 (if (eq char-after-ip ?{)
10538 (c-add-syntax 'block-open)))
10539
10540 ;; CASE 17F: first statement in an inline, or first
10541 ;; statement in a top-level defun. we can tell this is it
10542 ;; if there are no enclosing braces that haven't been
10543 ;; narrowed out by a class (i.e. don't use bod here).
10544 ((save-excursion
10545 (or (not (setq placeholder (c-most-enclosing-brace
10546 paren-state)))
10547 (and (progn
10548 (goto-char placeholder)
10549 (eq (char-after) ?{))
10550 (c-looking-at-decl-block (c-most-enclosing-brace
10551 paren-state (point))
10552 nil))))
10553 (c-backward-to-decl-anchor lim)
10554 (back-to-indentation)
10555 (c-add-syntax 'defun-block-intro (point)))
10556
10557 ;; CASE 17G: First statement in a function declared inside
10558 ;; a normal block. This can occur in Pike and with
10559 ;; e.g. the gcc extensions, but watch out for macros
10560 ;; followed by blocks. C.f. cases B.3 and 16F.
10561 ((save-excursion
10562 (and (not (c-at-statement-start-p))
10563 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10564 (setq placeholder (point))
10565 (let ((c-recognize-typeless-decls nil))
10566 ;; Turn off recognition of constructs that lacks
10567 ;; a type in this case, since that's more likely
10568 ;; to be a macro followed by a block.
10569 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10570 (back-to-indentation)
10571 (if (/= (point) containing-sexp)
10572 (goto-char placeholder))
10573 (c-add-stmt-syntax 'defun-block-intro nil t
10574 lim paren-state))
10575
10576 ;; CASE 17H: First statement in a block.
10577 (t
10578 ;; If the block is preceded by a case/switch label on the
10579 ;; same line, we anchor at the first preceding label at
10580 ;; boi. The default handling in c-add-stmt-syntax is
10581 ;; really fixes it better, but we do like this to keep the
10582 ;; indentation compatible with version 5.28 and earlier.
10583 ;; C.f. case 16C.
10584 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10585 (eq (c-beginning-of-statement-1 lim) 'label)))
10586 (goto-char placeholder)
10587 (if (looking-at c-label-kwds-regexp)
10588 (c-add-syntax 'statement-block-intro (point))
10589 (goto-char containing-sexp)
10590 ;; c-backward-to-block-anchor not necessary here; those
10591 ;; situations are handled in case 17I above.
10592 (c-add-stmt-syntax 'statement-block-intro nil t
10593 lim paren-state))
10594 (if (eq char-after-ip ?{)
10595 (c-add-syntax 'block-open)))
10596 ))
10597 )
10598
10599 ;; now we need to look at any modifiers
10600 (goto-char indent-point)
10601 (skip-chars-forward " \t")
10602
10603 ;; are we looking at a comment only line?
10604 (when (and (looking-at c-comment-start-regexp)
10605 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
10606 (c-append-syntax 'comment-intro))
10607
10608 ;; we might want to give additional offset to friends (in C++).
10609 (when (and c-opt-friend-key
10610 (looking-at c-opt-friend-key))
10611 (c-append-syntax 'friend))
10612
10613 ;; Set syntactic-relpos.
10614 (let ((p c-syntactic-context))
10615 (while (and p
10616 (if (integerp (c-langelem-pos (car p)))
10617 (progn
10618 (setq syntactic-relpos (c-langelem-pos (car p)))
10619 nil)
10620 t))
10621 (setq p (cdr p))))
10622
10623 ;; Start of or a continuation of a preprocessor directive?
10624 (if (and macro-start
10625 (eq macro-start (c-point 'boi))
10626 (not (and (c-major-mode-is 'pike-mode)
10627 (eq (char-after (1+ macro-start)) ?\"))))
10628 (c-append-syntax 'cpp-macro)
10629 (when (and c-syntactic-indentation-in-macros macro-start)
10630 (if in-macro-expr
10631 (when (or
10632 (< syntactic-relpos macro-start)
10633 (not (or
10634 (assq 'arglist-intro c-syntactic-context)
10635 (assq 'arglist-cont c-syntactic-context)
10636 (assq 'arglist-cont-nonempty c-syntactic-context)
10637 (assq 'arglist-close c-syntactic-context))))
10638 ;; If inside a cpp expression, i.e. anywhere in a
10639 ;; cpp directive except a #define body, we only let
10640 ;; through the syntactic analysis that is internal
10641 ;; in the expression. That means the arglist
10642 ;; elements, if they are anchored inside the cpp
10643 ;; expression.
10644 (setq c-syntactic-context nil)
10645 (c-add-syntax 'cpp-macro-cont macro-start))
10646 (when (and (eq macro-start syntactic-relpos)
10647 (not (assq 'cpp-define-intro c-syntactic-context))
10648 (save-excursion
10649 (goto-char macro-start)
10650 (or (not (c-forward-to-cpp-define-body))
10651 (<= (point) (c-point 'boi indent-point)))))
10652 ;; Inside a #define body and the syntactic analysis is
10653 ;; anchored on the start of the #define. In this case
10654 ;; we add cpp-define-intro to get the extra
10655 ;; indentation of the #define body.
10656 (c-add-syntax 'cpp-define-intro)))))
10657
10658 ;; return the syntax
10659 c-syntactic-context)))
10660
10661 \f
10662 ;; Indentation calculation.
10663
10664 (defun c-evaluate-offset (offset langelem symbol)
10665 ;; offset can be a number, a function, a variable, a list, or one of
10666 ;; the symbols + or -
10667 ;;
10668 ;; This function might do hidden buffer changes.
10669 (let ((res
10670 (cond
10671 ((numberp offset) offset)
10672 ((vectorp offset) offset)
10673 ((null offset) nil)
10674
10675 ((eq offset '+) c-basic-offset)
10676 ((eq offset '-) (- c-basic-offset))
10677 ((eq offset '++) (* 2 c-basic-offset))
10678 ((eq offset '--) (* 2 (- c-basic-offset)))
10679 ((eq offset '*) (/ c-basic-offset 2))
10680 ((eq offset '/) (/ (- c-basic-offset) 2))
10681
10682 ((functionp offset)
10683 (c-evaluate-offset
10684 (funcall offset
10685 (cons (c-langelem-sym langelem)
10686 (c-langelem-pos langelem)))
10687 langelem symbol))
10688
10689 ((listp offset)
10690 (cond
10691 ((eq (car offset) 'quote)
10692 (c-benign-error "The offset %S for %s was mistakenly quoted"
10693 offset symbol)
10694 nil)
10695
10696 ((memq (car offset) '(min max))
10697 (let (res val (method (car offset)))
10698 (setq offset (cdr offset))
10699 (while offset
10700 (setq val (c-evaluate-offset (car offset) langelem symbol))
10701 (cond
10702 ((not val))
10703 ((not res)
10704 (setq res val))
10705 ((integerp val)
10706 (if (vectorp res)
10707 (c-benign-error "\
10708 Error evaluating offset %S for %s: \
10709 Cannot combine absolute offset %S with relative %S in `%s' method"
10710 (car offset) symbol res val method)
10711 (setq res (funcall method res val))))
10712 (t
10713 (if (integerp res)
10714 (c-benign-error "\
10715 Error evaluating offset %S for %s: \
10716 Cannot combine relative offset %S with absolute %S in `%s' method"
10717 (car offset) symbol res val method)
10718 (setq res (vector (funcall method (aref res 0)
10719 (aref val 0)))))))
10720 (setq offset (cdr offset)))
10721 res))
10722
10723 ((eq (car offset) 'add)
10724 (let (res val)
10725 (setq offset (cdr offset))
10726 (while offset
10727 (setq val (c-evaluate-offset (car offset) langelem symbol))
10728 (cond
10729 ((not val))
10730 ((not res)
10731 (setq res val))
10732 ((integerp val)
10733 (if (vectorp res)
10734 (setq res (vector (+ (aref res 0) val)))
10735 (setq res (+ res val))))
10736 (t
10737 (if (vectorp res)
10738 (c-benign-error "\
10739 Error evaluating offset %S for %s: \
10740 Cannot combine absolute offsets %S and %S in `add' method"
10741 (car offset) symbol res val)
10742 (setq res val)))) ; Override.
10743 (setq offset (cdr offset)))
10744 res))
10745
10746 (t
10747 (let (res)
10748 (when (eq (car offset) 'first)
10749 (setq offset (cdr offset)))
10750 (while (and (not res) offset)
10751 (setq res (c-evaluate-offset (car offset) langelem symbol)
10752 offset (cdr offset)))
10753 res))))
10754
10755 ((and (symbolp offset) (boundp offset))
10756 (symbol-value offset))
10757
10758 (t
10759 (c-benign-error "Unknown offset format %S for %s" offset symbol)
10760 nil))))
10761
10762 (if (or (null res) (integerp res)
10763 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
10764 res
10765 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
10766 offset symbol res)
10767 nil)))
10768
10769 (defun c-calc-offset (langelem)
10770 ;; Get offset from LANGELEM which is a list beginning with the
10771 ;; syntactic symbol and followed by any analysis data it provides.
10772 ;; That data may be zero or more elements, but if at least one is
10773 ;; given then the first is the anchor position (or nil). The symbol
10774 ;; is matched against `c-offsets-alist' and the offset calculated
10775 ;; from that is returned.
10776 ;;
10777 ;; This function might do hidden buffer changes.
10778 (let* ((symbol (c-langelem-sym langelem))
10779 (match (assq symbol c-offsets-alist))
10780 (offset (cdr-safe match)))
10781 (if match
10782 (setq offset (c-evaluate-offset offset langelem symbol))
10783 (if c-strict-syntax-p
10784 (c-benign-error "No offset found for syntactic symbol %s" symbol))
10785 (setq offset 0))
10786 (if (vectorp offset)
10787 offset
10788 (or (and (numberp offset) offset)
10789 (and (symbolp offset) (symbol-value offset))
10790 0))
10791 ))
10792
10793 (defun c-get-offset (langelem)
10794 ;; This is a compatibility wrapper for `c-calc-offset' in case
10795 ;; someone is calling it directly. It takes an old style syntactic
10796 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
10797 ;; new list form.
10798 ;;
10799 ;; This function might do hidden buffer changes.
10800 (if (c-langelem-pos langelem)
10801 (c-calc-offset (list (c-langelem-sym langelem)
10802 (c-langelem-pos langelem)))
10803 (c-calc-offset langelem)))
10804
10805 (defun c-get-syntactic-indentation (langelems)
10806 ;; Calculate the syntactic indentation from a syntactic description
10807 ;; as returned by `c-guess-syntax'.
10808 ;;
10809 ;; Note that topmost-intro always has an anchor position at bol, for
10810 ;; historical reasons. It's often used together with other symbols
10811 ;; that has more sane positions. Since we always use the first
10812 ;; found anchor position, we rely on that these other symbols always
10813 ;; precede topmost-intro in the LANGELEMS list.
10814 ;;
10815 ;; This function might do hidden buffer changes.
10816 (let ((indent 0) anchor)
10817
10818 (while langelems
10819 (let* ((c-syntactic-element (car langelems))
10820 (res (c-calc-offset c-syntactic-element)))
10821
10822 (if (vectorp res)
10823 ;; Got an absolute column that overrides any indentation
10824 ;; we've collected so far, but not the relative
10825 ;; indentation we might get for the nested structures
10826 ;; further down the langelems list.
10827 (setq indent (elt res 0)
10828 anchor (point-min)) ; A position at column 0.
10829
10830 ;; Got a relative change of the current calculated
10831 ;; indentation.
10832 (setq indent (+ indent res))
10833
10834 ;; Use the anchor position from the first syntactic
10835 ;; element with one.
10836 (unless anchor
10837 (setq anchor (c-langelem-pos (car langelems)))))
10838
10839 (setq langelems (cdr langelems))))
10840
10841 (if anchor
10842 (+ indent (save-excursion
10843 (goto-char anchor)
10844 (current-column)))
10845 indent)))
10846
10847 \f
10848 (cc-provide 'cc-engine)
10849
10850 ;;; cc-engine.el ends here