]> code.delx.au - gnu-emacs/blob - lisp/progmodes/cc-engine.el
Merge from origin/emacs-24
[gnu-emacs] / lisp / progmodes / cc-engine.el
1 ;;; cc-engine.el --- core syntax guessing engine for CC mode -*- coding: utf-8 -*-
2
3 ;; Copyright (C) 1985, 1987, 1992-2015 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 (eval-when-compile (require 'cl))
151
152 \f
153 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
154
155 (defmacro c-declare-lang-variables ()
156 `(progn
157 ,@(mapcan (lambda (init)
158 `(,(if (elt init 2)
159 `(defvar ,(car init) nil ,(elt init 2))
160 `(defvar ,(car init) nil))
161 (make-variable-buffer-local ',(car init))))
162 (cdr c-lang-variable-inits))))
163 (c-declare-lang-variables)
164
165 \f
166 ;;; Internal state variables.
167
168 ;; Internal state of hungry delete key feature
169 (defvar c-hungry-delete-key nil)
170 (make-variable-buffer-local 'c-hungry-delete-key)
171
172 ;; The electric flag (toggled by `c-toggle-electric-state').
173 ;; If t, electric actions (like automatic reindentation, and (if
174 ;; c-auto-newline is also set) auto newlining) will happen when an electric
175 ;; key like `{' is pressed (or an electric keyword like `else').
176 (defvar c-electric-flag t)
177 (make-variable-buffer-local 'c-electric-flag)
178
179 ;; Internal state of auto newline feature.
180 (defvar c-auto-newline nil)
181 (make-variable-buffer-local 'c-auto-newline)
182
183 ;; Included in the mode line to indicate the active submodes.
184 ;; (defvar c-submode-indicators nil)
185 ;; (make-variable-buffer-local 'c-submode-indicators)
186
187 (defun c-calculate-state (arg prevstate)
188 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
189 ;; arg is nil or zero, toggle the state. If arg is negative, turn
190 ;; the state off, and if arg is positive, turn the state on
191 (if (or (not arg)
192 (zerop (setq arg (prefix-numeric-value arg))))
193 (not prevstate)
194 (> arg 0)))
195
196 \f
197 ;; Basic handling of preprocessor directives.
198
199 ;; This is a dynamically bound cache used together with
200 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
201 ;; works as long as point doesn't cross a macro boundary.
202 (defvar c-macro-start 'unknown)
203
204 (defsubst c-query-and-set-macro-start ()
205 (if (symbolp c-macro-start)
206 (setq c-macro-start (save-excursion
207 (c-save-buffer-state ()
208 (and (c-beginning-of-macro)
209 (point)))))
210 c-macro-start))
211
212 (defsubst c-query-macro-start ()
213 (if (symbolp c-macro-start)
214 (save-excursion
215 (c-save-buffer-state ()
216 (and (c-beginning-of-macro)
217 (point))))
218 c-macro-start))
219
220 ;; One element macro cache to cope with continual movement within very large
221 ;; CPP macros.
222 (defvar c-macro-cache nil)
223 (make-variable-buffer-local 'c-macro-cache)
224 ;; Nil or cons of the bounds of the most recent CPP form probed by
225 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
226 ;; The cdr will be nil if we know only the start of the CPP form.
227 (defvar c-macro-cache-start-pos nil)
228 (make-variable-buffer-local 'c-macro-cache-start-pos)
229 ;; The starting position from where we determined `c-macro-cache'.
230 (defvar c-macro-cache-syntactic nil)
231 (make-variable-buffer-local 'c-macro-cache-syntactic)
232 ;; non-nil iff `c-macro-cache' has both elements set AND the cdr is at a
233 ;; syntactic end of macro, not merely an apparent one.
234
235 (defun c-invalidate-macro-cache (beg end)
236 ;; Called from a before-change function. If the change region is before or
237 ;; in the macro characterized by `c-macro-cache' etc., nullify it
238 ;; appropriately. BEG and END are the standard before-change-functions
239 ;; parameters. END isn't used.
240 (cond
241 ((null c-macro-cache))
242 ((< beg (car c-macro-cache))
243 (setq c-macro-cache nil
244 c-macro-cache-start-pos nil
245 c-macro-cache-syntactic nil))
246 ((and (cdr c-macro-cache)
247 (< beg (cdr c-macro-cache)))
248 (setcdr c-macro-cache nil)
249 (setq c-macro-cache-start-pos beg
250 c-macro-cache-syntactic nil))))
251
252 (defun c-macro-is-genuine-p ()
253 ;; Check that the ostensible CPP construct at point is a real one. In
254 ;; particular, if point is on the first line of a narrowed buffer, make sure
255 ;; that the "#" isn't, say, the second character of a "##" operator. Return
256 ;; t when the macro is real, nil otherwise.
257 (let ((here (point)))
258 (beginning-of-line)
259 (prog1
260 (if (and (eq (point) (point-min))
261 (/= (point) 1))
262 (save-restriction
263 (widen)
264 (beginning-of-line)
265 (and (looking-at c-anchored-cpp-prefix)
266 (eq (match-beginning 1) here)))
267 t)
268 (goto-char here))))
269
270 (defun c-beginning-of-macro (&optional lim)
271 "Go to the beginning of a preprocessor directive.
272 Leave point at the beginning of the directive and return t if in one,
273 otherwise return nil and leave point unchanged.
274
275 Note that this function might do hidden buffer changes. See the
276 comment at the start of cc-engine.el for more info."
277 (let ((here (point)))
278 (when c-opt-cpp-prefix
279 (if (and (car c-macro-cache)
280 (>= (point) (car c-macro-cache))
281 (or (and (cdr c-macro-cache)
282 (<= (point) (cdr c-macro-cache)))
283 (<= (point) c-macro-cache-start-pos)))
284 (unless (< (car c-macro-cache) (or lim (point-min)))
285 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
286 (setq c-macro-cache-start-pos
287 (max c-macro-cache-start-pos here))
288 t))
289 (setq c-macro-cache nil
290 c-macro-cache-start-pos nil
291 c-macro-cache-syntactic nil)
292
293 (save-restriction
294 (if lim (narrow-to-region lim (point-max)))
295 (beginning-of-line)
296 (while (eq (char-before (1- (point))) ?\\)
297 (forward-line -1))
298 (back-to-indentation)
299 (if (and (<= (point) here)
300 (looking-at c-opt-cpp-start)
301 (c-macro-is-genuine-p))
302 (progn
303 (setq c-macro-cache (cons (point) nil)
304 c-macro-cache-start-pos here)
305 t)
306 (goto-char here)
307 nil))))))
308
309 (defun c-end-of-macro ()
310 "Go to the end of a preprocessor directive.
311 More accurately, move the point to the end of the closest following
312 line that doesn't end with a line continuation backslash - no check is
313 done that the point is inside a cpp directive to begin with.
314
315 Note that this function might do hidden buffer changes. See the
316 comment at the start of cc-engine.el for more info."
317 (if (and (cdr c-macro-cache)
318 (<= (point) (cdr c-macro-cache))
319 (>= (point) (car c-macro-cache)))
320 (goto-char (cdr c-macro-cache))
321 (unless (and (car c-macro-cache)
322 (<= (point) c-macro-cache-start-pos)
323 (>= (point) (car c-macro-cache)))
324 (setq c-macro-cache nil
325 c-macro-cache-start-pos nil
326 c-macro-cache-syntactic nil))
327 (while (progn
328 (end-of-line)
329 (when (and (eq (char-before) ?\\)
330 (not (eobp)))
331 (forward-char)
332 t)))
333 (when (car c-macro-cache)
334 (setcdr c-macro-cache (point)))))
335
336 (defun c-syntactic-end-of-macro ()
337 ;; Go to the end of a CPP directive, or a "safe" pos just before.
338 ;;
339 ;; This is normally the end of the next non-escaped line. A "safe"
340 ;; position is one not within a string or comment. (The EOL on a line
341 ;; comment is NOT "safe").
342 ;;
343 ;; This function must only be called from the beginning of a CPP construct.
344 ;;
345 ;; Note that this function might do hidden buffer changes. See the comment
346 ;; at the start of cc-engine.el for more info.
347 (let* ((here (point))
348 (there (progn (c-end-of-macro) (point)))
349 s)
350 (unless c-macro-cache-syntactic
351 (setq s (parse-partial-sexp here there))
352 (while (and (or (nth 3 s) ; in a string
353 (nth 4 s)) ; in a comment (maybe at end of line comment)
354 (> there here)) ; No infinite loops, please.
355 (setq there (1- (nth 8 s)))
356 (setq s (parse-partial-sexp here there)))
357 (setq c-macro-cache-syntactic (car c-macro-cache)))
358 (point)))
359
360 (defun c-forward-over-cpp-define-id ()
361 ;; Assuming point is at the "#" that introduces a preprocessor
362 ;; directive, it's moved forward to the end of the identifier which is
363 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
364 ;; is returned in this case, in all other cases nil is returned and
365 ;; point isn't moved.
366 ;;
367 ;; This function might do hidden buffer changes.
368 (when (and c-opt-cpp-macro-define-id
369 (looking-at c-opt-cpp-macro-define-id))
370 (goto-char (match-end 0))))
371
372 (defun c-forward-to-cpp-define-body ()
373 ;; Assuming point is at the "#" that introduces a preprocessor
374 ;; directive, it's moved forward to the start of the definition body
375 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
376 ;; specifies). Non-nil is returned in this case, in all other cases
377 ;; nil is returned and point isn't moved.
378 ;;
379 ;; This function might do hidden buffer changes.
380 (when (and c-opt-cpp-macro-define-start
381 (looking-at c-opt-cpp-macro-define-start)
382 (not (= (match-end 0) (c-point 'eol))))
383 (goto-char (match-end 0))))
384
385 \f
386 ;;; Basic utility functions.
387
388 (defun c-syntactic-content (from to paren-level)
389 ;; Return the given region as a string where all syntactic
390 ;; whitespace is removed or, where necessary, replaced with a single
391 ;; space. If PAREN-LEVEL is given then all parens in the region are
392 ;; collapsed to "()", "[]" etc.
393 ;;
394 ;; This function might do hidden buffer changes.
395
396 (save-excursion
397 (save-restriction
398 (narrow-to-region from to)
399 (goto-char from)
400 (let* ((parts (list nil)) (tail parts) pos in-paren)
401
402 (while (re-search-forward c-syntactic-ws-start to t)
403 (goto-char (setq pos (match-beginning 0)))
404 (c-forward-syntactic-ws)
405 (if (= (point) pos)
406 (forward-char)
407
408 (when paren-level
409 (save-excursion
410 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
411 pos (point))))
412
413 (if (and (> pos from)
414 (< (point) to)
415 (looking-at "\\w\\|\\s_")
416 (save-excursion
417 (goto-char (1- pos))
418 (looking-at "\\w\\|\\s_")))
419 (progn
420 (setcdr tail (list (buffer-substring-no-properties from pos)
421 " "))
422 (setq tail (cddr tail)))
423 (setcdr tail (list (buffer-substring-no-properties from pos)))
424 (setq tail (cdr tail)))
425
426 (when in-paren
427 (when (= (car (parse-partial-sexp pos to -1)) -1)
428 (setcdr tail (list (buffer-substring-no-properties
429 (1- (point)) (point))))
430 (setq tail (cdr tail))))
431
432 (setq from (point))))
433
434 (setcdr tail (list (buffer-substring-no-properties from to)))
435 (apply 'concat (cdr parts))))))
436
437 (defun c-shift-line-indentation (shift-amt)
438 ;; Shift the indentation of the current line with the specified
439 ;; amount (positive inwards). The buffer is modified only if
440 ;; SHIFT-AMT isn't equal to zero.
441 (let ((pos (- (point-max) (point)))
442 (c-macro-start c-macro-start)
443 tmp-char-inserted)
444 (if (zerop shift-amt)
445 nil
446 ;; If we're on an empty line inside a macro, we take the point
447 ;; to be at the current indentation and shift it to the
448 ;; appropriate column. This way we don't treat the extra
449 ;; whitespace out to the line continuation as indentation.
450 (when (and (c-query-and-set-macro-start)
451 (looking-at "[ \t]*\\\\$")
452 (save-excursion
453 (skip-chars-backward " \t")
454 (bolp)))
455 (insert ?x)
456 (backward-char)
457 (setq tmp-char-inserted t))
458 (unwind-protect
459 (let ((col (current-indentation)))
460 (delete-region (c-point 'bol) (c-point 'boi))
461 (beginning-of-line)
462 (indent-to (+ col shift-amt)))
463 (when tmp-char-inserted
464 (delete-char 1))))
465 ;; If initial point was within line's indentation and we're not on
466 ;; a line with a line continuation in a macro, position after the
467 ;; indentation. Else stay at same point in text.
468 (if (and (< (point) (c-point 'boi))
469 (not tmp-char-inserted))
470 (back-to-indentation)
471 (if (> (- (point-max) pos) (point))
472 (goto-char (- (point-max) pos))))))
473
474 (defsubst c-keyword-sym (keyword)
475 ;; Return non-nil if the string KEYWORD is a known keyword. More
476 ;; precisely, the value is the symbol for the keyword in
477 ;; `c-keywords-obarray'.
478 (intern-soft keyword c-keywords-obarray))
479
480 (defsubst c-keyword-member (keyword-sym lang-constant)
481 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
482 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
483 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
484 ;; nil then the result is nil.
485 (get keyword-sym lang-constant))
486
487 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
488 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
489 "\"|"
490 "\""))
491
492 ;; Regexp matching string limit syntax.
493 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
494 "\\s\"\\|\\s|"
495 "\\s\""))
496
497 ;; Regexp matching WS followed by string limit syntax.
498 (defconst c-ws*-string-limit-regexp
499 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
500
501 ;; Holds formatted error strings for the few cases where parse errors
502 ;; are reported.
503 (defvar c-parsing-error nil)
504 (make-variable-buffer-local 'c-parsing-error)
505
506 (defun c-echo-parsing-error (&optional quiet)
507 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
508 (c-benign-error "%s" c-parsing-error))
509 c-parsing-error)
510
511 ;; Faces given to comments and string literals. This is used in some
512 ;; situations to speed up recognition; it isn't mandatory that font
513 ;; locking is in use. This variable is extended with the face in
514 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
515 (defvar c-literal-faces
516 (append '(font-lock-comment-face font-lock-string-face)
517 (when (facep 'font-lock-comment-delimiter-face)
518 ;; New in Emacs 22.
519 '(font-lock-comment-delimiter-face))))
520
521 (defsubst c-put-c-type-property (pos value)
522 ;; Put a c-type property with the given value at POS.
523 (c-put-char-property pos 'c-type value))
524
525 (defun c-clear-c-type-property (from to value)
526 ;; Remove all occurrences of the c-type property that has the given
527 ;; value in the region between FROM and TO. VALUE is assumed to not
528 ;; be nil.
529 ;;
530 ;; Note: This assumes that c-type is put on single chars only; it's
531 ;; very inefficient if matching properties cover large regions.
532 (save-excursion
533 (goto-char from)
534 (while (progn
535 (when (eq (get-text-property (point) 'c-type) value)
536 (c-clear-char-property (point) 'c-type))
537 (goto-char (c-next-single-property-change (point) 'c-type nil to))
538 (< (point) to)))))
539
540 \f
541 ;; Some debug tools to visualize various special positions. This
542 ;; debug code isn't as portable as the rest of CC Mode.
543
544 (cc-bytecomp-defun overlays-in)
545 (cc-bytecomp-defun overlay-get)
546 (cc-bytecomp-defun overlay-start)
547 (cc-bytecomp-defun overlay-end)
548 (cc-bytecomp-defun delete-overlay)
549 (cc-bytecomp-defun overlay-put)
550 (cc-bytecomp-defun make-overlay)
551
552 (defun c-debug-add-face (beg end face)
553 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
554 (while overlays
555 (setq overlay (car overlays)
556 overlays (cdr overlays))
557 (when (eq (overlay-get overlay 'face) face)
558 (setq beg (min beg (overlay-start overlay))
559 end (max end (overlay-end overlay)))
560 (delete-overlay overlay)))
561 (overlay-put (make-overlay beg end) 'face face)))
562
563 (defun c-debug-remove-face (beg end face)
564 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
565 (ol-beg beg) (ol-end end))
566 (while overlays
567 (setq overlay (car overlays)
568 overlays (cdr overlays))
569 (when (eq (overlay-get overlay 'face) face)
570 (setq ol-beg (min ol-beg (overlay-start overlay))
571 ol-end (max ol-end (overlay-end overlay)))
572 (delete-overlay overlay)))
573 (when (< ol-beg beg)
574 (overlay-put (make-overlay ol-beg beg) 'face face))
575 (when (> ol-end end)
576 (overlay-put (make-overlay end ol-end) 'face face))))
577
578 \f
579 ;; `c-beginning-of-statement-1' and accompanying stuff.
580
581 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
582 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
583 ;; better way should be implemented, but this will at least shut up
584 ;; the byte compiler.
585 (defvar c-maybe-labelp)
586
587 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
588
589 ;; Macros used internally in c-beginning-of-statement-1 for the
590 ;; automaton actions.
591 (defmacro c-bos-push-state ()
592 '(setq stack (cons (cons state saved-pos)
593 stack)))
594 (defmacro c-bos-pop-state (&optional do-if-done)
595 `(if (setq state (car (car stack))
596 saved-pos (cdr (car stack))
597 stack (cdr stack))
598 t
599 ,do-if-done
600 (throw 'loop nil)))
601 (defmacro c-bos-pop-state-and-retry ()
602 '(throw 'loop (setq state (car (car stack))
603 saved-pos (cdr (car stack))
604 ;; Throw nil if stack is empty, else throw non-nil.
605 stack (cdr stack))))
606 (defmacro c-bos-save-pos ()
607 '(setq saved-pos (vector pos tok ptok pptok)))
608 (defmacro c-bos-restore-pos ()
609 '(unless (eq (elt saved-pos 0) start)
610 (setq pos (elt saved-pos 0)
611 tok (elt saved-pos 1)
612 ptok (elt saved-pos 2)
613 pptok (elt saved-pos 3))
614 (goto-char pos)
615 (setq sym nil)))
616 (defmacro c-bos-save-error-info (missing got)
617 `(setq saved-pos (vector pos ,missing ,got)))
618 (defmacro c-bos-report-error ()
619 '(unless noerror
620 (setq c-parsing-error
621 (format "No matching `%s' found for `%s' on line %d"
622 (elt saved-pos 1)
623 (elt saved-pos 2)
624 (1+ (count-lines (point-min)
625 (c-point 'bol (elt saved-pos 0))))))))
626
627 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
628 noerror comma-delim)
629 "Move to the start of the current statement or declaration, or to
630 the previous one if already at the beginning of one. Only
631 statements/declarations on the same level are considered, i.e. don't
632 move into or out of sexps (not even normal expression parentheses).
633
634 If point is already at the earliest statement within braces or parens,
635 this function doesn't move back into any whitespace preceding it; it
636 returns 'same in this case.
637
638 Stop at statement continuation tokens like \"else\", \"catch\",
639 \"finally\" and the \"while\" in \"do ... while\" if the start point
640 is within the continuation. If starting at such a token, move to the
641 corresponding statement start. If at the beginning of a statement,
642 move to the closest containing statement if there is any. This might
643 also stop at a continuation clause.
644
645 Labels are treated as part of the following statements if
646 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
647 statement start keyword.) Otherwise, each label is treated as a
648 separate statement.
649
650 Macros are ignored \(i.e. skipped over) unless point is within one, in
651 which case the content of the macro is treated as normal code. Aside
652 from any normal statement starts found in it, stop at the first token
653 of the content in the macro, i.e. the expression of an \"#if\" or the
654 start of the definition in a \"#define\". Also stop at start of
655 macros before leaving them.
656
657 Return:
658 'label if stopped at a label or \"case...:\" or \"default:\";
659 'same if stopped at the beginning of the current statement;
660 'up if stepped to a containing statement;
661 'previous if stepped to a preceding statement;
662 'beginning if stepped from a statement continuation clause to
663 its start clause; or
664 'macro if stepped to a macro start.
665 Note that 'same and not 'label is returned if stopped at the same
666 label without crossing the colon character.
667
668 LIM may be given to limit the search. If the search hits the limit,
669 point will be left at the closest following token, or at the start
670 position if that is less ('same is returned in this case).
671
672 NOERROR turns off error logging to `c-parsing-error'.
673
674 Normally only ';' and virtual semicolons are considered to delimit
675 statements, but if COMMA-DELIM is non-nil then ',' is treated
676 as a delimiter too.
677
678 Note that this function might do hidden buffer changes. See the
679 comment at the start of cc-engine.el for more info."
680
681 ;; The bulk of this function is a pushdown automaton that looks at statement
682 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
683 ;; purpose is to keep track of nested statements, ensuring that such
684 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
685 ;; does with nested braces/brackets/parentheses).
686 ;;
687 ;; Note: The position of a boundary is the following token.
688 ;;
689 ;; Beginning with the current token (the one following point), move back one
690 ;; sexp at a time (where a sexp is, more or less, either a token or the
691 ;; entire contents of a brace/bracket/paren pair). Each time a statement
692 ;; boundary is crossed or a "while"-like token is found, update the state of
693 ;; the PDA. Stop at the beginning of a statement when the stack (holding
694 ;; nested statement info) is empty and the position has been moved.
695 ;;
696 ;; The following variables constitute the PDA:
697 ;;
698 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
699 ;; scanned back over, 'boundary if we've just gone back over a
700 ;; statement boundary, or nil otherwise.
701 ;; state: takes one of the values (nil else else-boundary while
702 ;; while-boundary catch catch-boundary).
703 ;; nil means "no "while"-like token yet scanned".
704 ;; 'else, for example, means "just gone back over an else".
705 ;; 'else-boundary means "just gone back over a statement boundary
706 ;; immediately after having gone back over an else".
707 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
708 ;; of error reporting information.
709 ;; stack: The stack onto which the PDA pushes its state. Each entry
710 ;; consists of a saved value of state and saved-pos. An entry is
711 ;; pushed when we move back over a "continuation" token (e.g. else)
712 ;; and popped when we encounter the corresponding opening token
713 ;; (e.g. if).
714 ;;
715 ;;
716 ;; The following diagram briefly outlines the PDA.
717 ;;
718 ;; Common state:
719 ;; "else": Push state, goto state `else'.
720 ;; "while": Push state, goto state `while'.
721 ;; "catch" or "finally": Push state, goto state `catch'.
722 ;; boundary: Pop state.
723 ;; other: Do nothing special.
724 ;;
725 ;; State `else':
726 ;; boundary: Goto state `else-boundary'.
727 ;; other: Error, pop state, retry token.
728 ;;
729 ;; State `else-boundary':
730 ;; "if": Pop state.
731 ;; boundary: Error, pop state.
732 ;; other: See common state.
733 ;;
734 ;; State `while':
735 ;; boundary: Save position, goto state `while-boundary'.
736 ;; other: Pop state, retry token.
737 ;;
738 ;; State `while-boundary':
739 ;; "do": Pop state.
740 ;; boundary: Restore position if it's not at start, pop state. [*see below]
741 ;; other: See common state.
742 ;;
743 ;; State `catch':
744 ;; boundary: Goto state `catch-boundary'.
745 ;; other: Error, pop state, retry token.
746 ;;
747 ;; State `catch-boundary':
748 ;; "try": Pop state.
749 ;; "catch": Goto state `catch'.
750 ;; boundary: Error, pop state.
751 ;; other: See common state.
752 ;;
753 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
754 ;; searching for a "do" which would have opened a do-while. If we didn't
755 ;; find it, we discard the analysis done since the "while", go back to this
756 ;; token in the buffer and restart the scanning there, this time WITHOUT
757 ;; pushing the 'while state onto the stack.
758 ;;
759 ;; In addition to the above there is some special handling of labels
760 ;; and macros.
761
762 (let ((case-fold-search nil)
763 (start (point))
764 macro-start
765 (delims (if comma-delim '(?\; ?,) '(?\;)))
766 (c-stmt-delim-chars (if comma-delim
767 c-stmt-delim-chars-with-comma
768 c-stmt-delim-chars))
769 c-in-literal-cache c-maybe-labelp after-case:-pos saved
770 ;; Current position.
771 pos
772 ;; Position of last stmt boundary character (e.g. ;).
773 boundary-pos
774 ;; The position of the last sexp or bound that follows the
775 ;; first found colon, i.e. the start of the nonlabel part of
776 ;; the statement. It's `start' if a colon is found just after
777 ;; the start.
778 after-labels-pos
779 ;; Like `after-labels-pos', but the first such position inside
780 ;; a label, i.e. the start of the last label before the start
781 ;; of the nonlabel part of the statement.
782 last-label-pos
783 ;; The last position where a label is possible provided the
784 ;; statement started there. It's nil as long as no invalid
785 ;; label content has been found (according to
786 ;; `c-nonlabel-token-key'). It's `start' if no valid label
787 ;; content was found in the label. Note that we might still
788 ;; regard it a label if it starts with `c-label-kwds'.
789 label-good-pos
790 ;; Putative positions of the components of a bitfield declaration,
791 ;; e.g. "int foo : NUM_FOO_BITS ;"
792 bitfield-type-pos bitfield-id-pos bitfield-size-pos
793 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
794 ;; See above.
795 sym
796 ;; Current state in the automaton. See above.
797 state
798 ;; Current saved positions. See above.
799 saved-pos
800 ;; Stack of conses (state . saved-pos).
801 stack
802 ;; Regexp which matches "for", "if", etc.
803 (cond-key (or c-opt-block-stmt-key
804 "\\<\\>")) ; Matches nothing.
805 ;; Return value.
806 (ret 'same)
807 ;; Positions of the last three sexps or bounds we've stopped at.
808 tok ptok pptok)
809
810 (save-restriction
811 (if lim (narrow-to-region lim (point-max)))
812
813 (if (save-excursion
814 (and (c-beginning-of-macro)
815 (/= (point) start)))
816 (setq macro-start (point)))
817
818 ;; Try to skip back over unary operator characters, to register
819 ;; that we've moved.
820 (while (progn
821 (setq pos (point))
822 (c-backward-syntactic-ws)
823 ;; Protect post-++/-- operators just before a virtual semicolon.
824 (and (not (c-at-vsemi-p))
825 (/= (skip-chars-backward "-+!*&~@`#") 0))))
826
827 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
828 ;; done. Later on we ignore the boundaries for statements that don't
829 ;; contain any sexp. The only thing that is affected is that the error
830 ;; checking is a little less strict, and we really don't bother.
831 (if (and (memq (char-before) delims)
832 (progn (forward-char -1)
833 (setq saved (point))
834 (c-backward-syntactic-ws)
835 (or (memq (char-before) delims)
836 (memq (char-before) '(?: nil))
837 (eq (char-syntax (char-before)) ?\()
838 (c-at-vsemi-p))))
839 (setq ret 'previous
840 pos saved)
841
842 ;; Begin at start and not pos to detect macros if we stand
843 ;; directly after the #.
844 (goto-char start)
845 (if (looking-at "\\<\\|\\W")
846 ;; Record this as the first token if not starting inside it.
847 (setq tok start))
848
849 ;; The following while loop goes back one sexp (balanced parens,
850 ;; etc. with contents, or symbol or suchlike) each iteration. This
851 ;; movement is accomplished with a call to c-backward-sexp approx 170
852 ;; lines below.
853 ;;
854 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
855 ;; 1. On reaching the start of a macro;
856 ;; 2. On having passed a stmt boundary with the PDA stack empty;
857 ;; 3. On reaching the start of an Objective C method def;
858 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
859 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
860 (while
861 (catch 'loop ;; Throw nil to break, non-nil to continue.
862 (cond
863 ;; Are we in a macro, just after the opening #?
864 ((save-excursion
865 (and macro-start ; Always NIL for AWK.
866 (progn (skip-chars-backward " \t")
867 (eq (char-before) ?#))
868 (progn (setq saved (1- (point)))
869 (beginning-of-line)
870 (not (eq (char-before (1- (point))) ?\\)))
871 (looking-at c-opt-cpp-start)
872 (progn (skip-chars-forward " \t")
873 (eq (point) saved))))
874 (goto-char saved)
875 (if (and (c-forward-to-cpp-define-body)
876 (progn (c-forward-syntactic-ws start)
877 (< (point) start)))
878 ;; Stop at the first token in the content of the macro.
879 (setq pos (point)
880 ignore-labels t) ; Avoid the label check on exit.
881 (setq pos saved
882 ret 'macro
883 ignore-labels t))
884 (throw 'loop nil)) ; 1. Start of macro.
885
886 ;; Do a round through the automaton if we've just passed a
887 ;; statement boundary or passed a "while"-like token.
888 ((or sym
889 (and (looking-at cond-key)
890 (setq sym (intern (match-string 1)))))
891
892 (when (and (< pos start) (null stack))
893 (throw 'loop nil)) ; 2. Statement boundary.
894
895 ;; The PDA state handling.
896 ;;
897 ;; Refer to the description of the PDA in the opening
898 ;; comments. In the following OR form, the first leaf
899 ;; attempts to handles one of the specific actions detailed
900 ;; (e.g., finding token "if" whilst in state `else-boundary').
901 ;; We drop through to the second leaf (which handles common
902 ;; state) if no specific handler is found in the first cond.
903 ;; If a parsing error is detected (e.g. an "else" with no
904 ;; preceding "if"), we throw to the enclosing catch.
905 ;;
906 ;; Note that the (eq state 'else) means
907 ;; "we've just passed an else", NOT "we're looking for an
908 ;; else".
909 (or (cond
910 ((eq state 'else)
911 (if (eq sym 'boundary)
912 (setq state 'else-boundary)
913 (c-bos-report-error)
914 (c-bos-pop-state-and-retry)))
915
916 ((eq state 'else-boundary)
917 (cond ((eq sym 'if)
918 (c-bos-pop-state (setq ret 'beginning)))
919 ((eq sym 'boundary)
920 (c-bos-report-error)
921 (c-bos-pop-state))))
922
923 ((eq state 'while)
924 (if (and (eq sym 'boundary)
925 ;; Since this can cause backtracking we do a
926 ;; little more careful analysis to avoid it:
927 ;; If there's a label in front of the while
928 ;; it can't be part of a do-while.
929 (not after-labels-pos))
930 (progn (c-bos-save-pos)
931 (setq state 'while-boundary))
932 (c-bos-pop-state-and-retry))) ; Can't be a do-while
933
934 ((eq state 'while-boundary)
935 (cond ((eq sym 'do)
936 (c-bos-pop-state (setq ret 'beginning)))
937 ((eq sym 'boundary) ; isn't a do-while
938 (c-bos-restore-pos) ; the position of the while
939 (c-bos-pop-state)))) ; no longer searching for do.
940
941 ((eq state 'catch)
942 (if (eq sym 'boundary)
943 (setq state 'catch-boundary)
944 (c-bos-report-error)
945 (c-bos-pop-state-and-retry)))
946
947 ((eq state 'catch-boundary)
948 (cond
949 ((eq sym 'try)
950 (c-bos-pop-state (setq ret 'beginning)))
951 ((eq sym 'catch)
952 (setq state 'catch))
953 ((eq sym 'boundary)
954 (c-bos-report-error)
955 (c-bos-pop-state)))))
956
957 ;; This is state common. We get here when the previous
958 ;; cond statement found no particular state handler.
959 (cond ((eq sym 'boundary)
960 ;; If we have a boundary at the start
961 ;; position we push a frame to go to the
962 ;; previous statement.
963 (if (>= pos start)
964 (c-bos-push-state)
965 (c-bos-pop-state)))
966 ((eq sym 'else)
967 (c-bos-push-state)
968 (c-bos-save-error-info 'if 'else)
969 (setq state 'else))
970 ((eq sym 'while)
971 ;; Is this a real while, or a do-while?
972 ;; The next `when' triggers unless we are SURE that
973 ;; the `while' is not the tail end of a `do-while'.
974 (when (or (not pptok)
975 (memq (char-after pptok) delims)
976 ;; The following kludge is to prevent
977 ;; infinite recursion when called from
978 ;; c-awk-after-if-for-while-condition-p,
979 ;; or the like.
980 (and (eq (point) start)
981 (c-vsemi-status-unknown-p))
982 (c-at-vsemi-p pptok))
983 ;; Since this can cause backtracking we do a
984 ;; little more careful analysis to avoid it: If
985 ;; the while isn't followed by a (possibly
986 ;; virtual) semicolon it can't be a do-while.
987 (c-bos-push-state)
988 (setq state 'while)))
989 ((memq sym '(catch finally))
990 (c-bos-push-state)
991 (c-bos-save-error-info 'try sym)
992 (setq state 'catch))))
993
994 (when c-maybe-labelp
995 ;; We're either past a statement boundary or at the
996 ;; start of a statement, so throw away any label data
997 ;; for the previous one.
998 (setq after-labels-pos nil
999 last-label-pos nil
1000 c-maybe-labelp nil))))
1001
1002 ;; Step to the previous sexp, but not if we crossed a
1003 ;; boundary, since that doesn't consume an sexp.
1004 (if (eq sym 'boundary)
1005 (setq ret 'previous)
1006
1007 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
1008 ;; BACKWARDS THROUGH THE SOURCE.
1009
1010 (c-backward-syntactic-ws)
1011 (let ((before-sws-pos (point))
1012 ;; The end position of the area to search for statement
1013 ;; barriers in this round.
1014 (maybe-after-boundary-pos pos))
1015
1016 ;; Go back over exactly one logical sexp, taking proper
1017 ;; account of macros and escaped EOLs.
1018 (while
1019 (progn
1020 (unless (c-safe (c-backward-sexp) t)
1021 ;; Give up if we hit an unbalanced block. Since the
1022 ;; stack won't be empty the code below will report a
1023 ;; suitable error.
1024 (throw 'loop nil))
1025 (cond
1026 ;; Have we moved into a macro?
1027 ((and (not macro-start)
1028 (c-beginning-of-macro))
1029 ;; Have we crossed a statement boundary? If not,
1030 ;; keep going back until we find one or a "real" sexp.
1031 (and
1032 (save-excursion
1033 (c-end-of-macro)
1034 (not (c-crosses-statement-barrier-p
1035 (point) maybe-after-boundary-pos)))
1036 (setq maybe-after-boundary-pos (point))))
1037 ;; Have we just gone back over an escaped NL? This
1038 ;; doesn't count as a sexp.
1039 ((looking-at "\\\\$")))))
1040
1041 ;; Have we crossed a statement boundary?
1042 (setq boundary-pos
1043 (cond
1044 ;; Are we at a macro beginning?
1045 ((and (not macro-start)
1046 c-opt-cpp-prefix
1047 (looking-at c-opt-cpp-prefix))
1048 (save-excursion
1049 (c-end-of-macro)
1050 (c-crosses-statement-barrier-p
1051 (point) maybe-after-boundary-pos)))
1052 ;; Just gone back over a brace block?
1053 ((and
1054 (eq (char-after) ?{)
1055 (not (c-looking-at-inexpr-block lim nil t))
1056 (save-excursion
1057 (c-backward-token-2 1 t nil)
1058 (not (looking-at "=\\([^=]\\|$\\)"))))
1059 (save-excursion
1060 (c-forward-sexp) (point)))
1061 ;; Just gone back over some paren block?
1062 ((looking-at "\\s\(")
1063 (save-excursion
1064 (goto-char (1+ (c-down-list-backward
1065 before-sws-pos)))
1066 (c-crosses-statement-barrier-p
1067 (point) maybe-after-boundary-pos)))
1068 ;; Just gone back over an ordinary symbol of some sort?
1069 (t (c-crosses-statement-barrier-p
1070 (point) maybe-after-boundary-pos))))
1071
1072 (when boundary-pos
1073 (setq pptok ptok
1074 ptok tok
1075 tok boundary-pos
1076 sym 'boundary)
1077 ;; Like a C "continue". Analyze the next sexp.
1078 (throw 'loop t))))
1079
1080 ;; ObjC method def?
1081 (when (and c-opt-method-key
1082 (setq saved (c-in-method-def-p)))
1083 (setq pos saved
1084 ignore-labels t) ; Avoid the label check on exit.
1085 (throw 'loop nil)) ; 3. ObjC method def.
1086
1087 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1088 (if c-has-bitfields
1089 (cond
1090 ;; The : <size> and <id> fields?
1091 ((and (numberp c-maybe-labelp)
1092 (not bitfield-size-pos)
1093 (save-excursion
1094 (goto-char (or tok start))
1095 (not (looking-at c-keywords-regexp)))
1096 (not (looking-at c-keywords-regexp))
1097 (not (c-punctuation-in (point) c-maybe-labelp)))
1098 (setq bitfield-size-pos (or tok start)
1099 bitfield-id-pos (point)))
1100 ;; The <type> field?
1101 ((and bitfield-id-pos
1102 (not bitfield-type-pos))
1103 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1104 (not (looking-at c-not-primitive-type-keywords-regexp))
1105 (not (c-punctuation-in (point) tok)))
1106 (setq bitfield-type-pos (point))
1107 (setq bitfield-size-pos nil
1108 bitfield-id-pos nil)))))
1109
1110 ;; Handle labels.
1111 (unless (eq ignore-labels t)
1112 (when (numberp c-maybe-labelp)
1113 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1114 ;; might be in a label now. Have we got a real label
1115 ;; (including a case label) or something like C++'s "public:"?
1116 ;; A case label might use an expression rather than a token.
1117 (setq after-case:-pos (or tok start))
1118 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1119 ;; Catch C++'s inheritance construct "class foo : bar".
1120 (save-excursion
1121 (and
1122 (c-safe (c-backward-sexp) t)
1123 (looking-at c-nonlabel-token-2-key))))
1124 (setq c-maybe-labelp nil)
1125 (if after-labels-pos ; Have we already encountered a label?
1126 (if (not last-label-pos)
1127 (setq last-label-pos (or tok start)))
1128 (setq after-labels-pos (or tok start)))
1129 (setq c-maybe-labelp t
1130 label-good-pos nil))) ; bogus "label"
1131
1132 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1133 ; been found.
1134 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1135 ;; We're in a potential label and it's the first
1136 ;; time we've found something that isn't allowed in
1137 ;; one.
1138 (setq label-good-pos (or tok start))))
1139
1140 ;; We've moved back by a sexp, so update the token positions.
1141 (setq sym nil
1142 pptok ptok
1143 ptok tok
1144 tok (point)
1145 pos tok) ; always non-nil
1146 ) ; end of (catch loop ....)
1147 ) ; end of sexp-at-a-time (while ....)
1148
1149 ;; If the stack isn't empty there might be errors to report.
1150 (while stack
1151 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1152 (c-bos-report-error))
1153 (setq saved-pos (cdr (car stack))
1154 stack (cdr stack)))
1155
1156 (when (and (eq ret 'same)
1157 (not (memq sym '(boundary ignore nil))))
1158 ;; Need to investigate closer whether we've crossed
1159 ;; between a substatement and its containing statement.
1160 (if (setq saved
1161 (cond ((and (looking-at c-block-stmt-1-2-key)
1162 (eq (char-after ptok) ?\())
1163 pptok)
1164 ((looking-at c-block-stmt-1-key)
1165 ptok)
1166 (t pptok)))
1167 (cond ((> start saved) (setq pos saved))
1168 ((= start saved) (setq ret 'up)))))
1169
1170 (when (and (not ignore-labels)
1171 (eq c-maybe-labelp t)
1172 (not (eq ret 'beginning))
1173 after-labels-pos
1174 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1175 (or (not label-good-pos)
1176 (<= label-good-pos pos)
1177 (progn
1178 (goto-char (if (and last-label-pos
1179 (< last-label-pos start))
1180 last-label-pos
1181 pos))
1182 (looking-at c-label-kwds-regexp))))
1183 ;; We're in a label. Maybe we should step to the statement
1184 ;; after it.
1185 (if (< after-labels-pos start)
1186 (setq pos after-labels-pos)
1187 (setq ret 'label)
1188 (if (and last-label-pos (< last-label-pos start))
1189 ;; Might have jumped over several labels. Go to the last one.
1190 (setq pos last-label-pos)))))
1191
1192 ;; Have we got "case <expression>:"?
1193 (goto-char pos)
1194 (when (and after-case:-pos
1195 (not (eq ret 'beginning))
1196 (looking-at c-case-kwds-regexp))
1197 (if (< after-case:-pos start)
1198 (setq pos after-case:-pos))
1199 (if (eq ret 'same)
1200 (setq ret 'label)))
1201
1202 ;; Skip over the unary operators that can start the statement.
1203 (while (progn
1204 (c-backward-syntactic-ws)
1205 ;; protect AWK post-inc/decrement operators, etc.
1206 (and (not (c-at-vsemi-p (point)))
1207 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1208 (setq pos (point)))
1209 (goto-char pos)
1210 ret)))
1211
1212 (defun c-punctuation-in (from to)
1213 "Return non-nil if there is a non-comment non-macro punctuation character
1214 between FROM and TO. FROM must not be in a string or comment. The returned
1215 value is the position of the first such character."
1216 (save-excursion
1217 (goto-char from)
1218 (let ((pos (point)))
1219 (while (progn (skip-chars-forward c-symbol-chars to)
1220 (c-forward-syntactic-ws to)
1221 (> (point) pos))
1222 (setq pos (point))))
1223 (and (< (point) to) (point))))
1224
1225 (defun c-crosses-statement-barrier-p (from to)
1226 "Return non-nil if buffer positions FROM to TO cross one or more
1227 statement or declaration boundaries. The returned value is actually
1228 the position of the earliest boundary char. FROM must not be within
1229 a string or comment.
1230
1231 The variable `c-maybe-labelp' is set to the position of the first `:' that
1232 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1233 single `?' is found, then `c-maybe-labelp' is cleared.
1234
1235 For AWK, a statement which is terminated by an EOL (not a \; or a }) is
1236 regarded as having a \"virtual semicolon\" immediately after the last token on
1237 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1238
1239 Note that this function might do hidden buffer changes. See the
1240 comment at the start of cc-engine.el for more info."
1241 (let* ((skip-chars
1242 ;; If the current language has CPP macros, insert # into skip-chars.
1243 (if c-opt-cpp-symbol
1244 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1245 c-opt-cpp-symbol ; usually "#"
1246 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1247 c-stmt-delim-chars))
1248 (non-skip-list
1249 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1250 lit-range vsemi-pos)
1251 (save-restriction
1252 (widen)
1253 (save-excursion
1254 (catch 'done
1255 (goto-char from)
1256 (while (progn (skip-chars-forward
1257 skip-chars
1258 (min to (c-point 'bonl)))
1259 (< (point) to))
1260 (cond
1261 ;; Virtual semicolon?
1262 ((and (bolp)
1263 (save-excursion
1264 (progn
1265 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1266 (goto-char (car lit-range)))
1267 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1268 (setq vsemi-pos (point))
1269 (c-at-vsemi-p))))
1270 (throw 'done vsemi-pos))
1271 ;; In a string/comment?
1272 ((setq lit-range (c-literal-limits from))
1273 (goto-char (cdr lit-range)))
1274 ((eq (char-after) ?:)
1275 (forward-char)
1276 (if (and (eq (char-after) ?:)
1277 (< (point) to))
1278 ;; Ignore scope operators.
1279 (forward-char)
1280 (setq c-maybe-labelp (1- (point)))))
1281 ((eq (char-after) ??)
1282 ;; A question mark. Can't be a label, so stop
1283 ;; looking for more : and ?.
1284 (setq c-maybe-labelp nil
1285 skip-chars (substring c-stmt-delim-chars 0 -2)))
1286 ;; At a CPP construct or a "#" or "##" operator?
1287 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol))
1288 (if (save-excursion
1289 (skip-chars-backward " \t")
1290 (and (bolp)
1291 (or (bobp)
1292 (not (eq (char-before (1- (point))) ?\\)))))
1293 (c-end-of-macro)
1294 (skip-chars-forward c-opt-cpp-symbol)))
1295 ((memq (char-after) non-skip-list)
1296 (throw 'done (point)))))
1297 ;; In trailing space after an as yet undetected virtual semicolon?
1298 (c-backward-syntactic-ws from)
1299 (when (and (bolp) (not (bobp))) ; Can happen in AWK Mode with an
1300 ; unterminated string/regexp.
1301 (backward-char))
1302 (if (and (< (point) to)
1303 (c-at-vsemi-p))
1304 (point)
1305 nil))))))
1306
1307 (defun c-at-statement-start-p ()
1308 "Return non-nil if the point is at the first token in a statement
1309 or somewhere in the syntactic whitespace before it.
1310
1311 A \"statement\" here is not restricted to those inside code blocks.
1312 Any kind of declaration-like construct that occur outside function
1313 bodies is also considered a \"statement\".
1314
1315 Note that this function might do hidden buffer changes. See the
1316 comment at the start of cc-engine.el for more info."
1317
1318 (save-excursion
1319 (let ((end (point))
1320 c-maybe-labelp)
1321 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1322 (or (bobp)
1323 (eq (char-before) ?})
1324 (and (eq (char-before) ?{)
1325 (not (and c-special-brace-lists
1326 (progn (backward-char)
1327 (c-looking-at-special-brace-list)))))
1328 (c-crosses-statement-barrier-p (point) end)))))
1329
1330 (defun c-at-expression-start-p ()
1331 "Return non-nil if the point is at the first token in an expression or
1332 statement, or somewhere in the syntactic whitespace before it.
1333
1334 An \"expression\" here is a bit different from the normal language
1335 grammar sense: It's any sequence of expression tokens except commas,
1336 unless they are enclosed inside parentheses of some kind. Also, an
1337 expression never continues past an enclosing parenthesis, but it might
1338 contain parenthesis pairs of any sort except braces.
1339
1340 Since expressions never cross statement boundaries, this function also
1341 recognizes statement beginnings, just like `c-at-statement-start-p'.
1342
1343 Note that this function might do hidden buffer changes. See the
1344 comment at the start of cc-engine.el for more info."
1345
1346 (save-excursion
1347 (let ((end (point))
1348 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1349 c-maybe-labelp)
1350 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1351 (or (bobp)
1352 (memq (char-before) '(?{ ?}))
1353 (save-excursion (backward-char)
1354 (looking-at "\\s("))
1355 (c-crosses-statement-barrier-p (point) end)))))
1356
1357 \f
1358 ;; A set of functions that covers various idiosyncrasies in
1359 ;; implementations of `forward-comment'.
1360
1361 ;; Note: Some emacsen considers incorrectly that any line comment
1362 ;; ending with a backslash continues to the next line. I can't think
1363 ;; of any way to work around that in a reliable way without changing
1364 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1365 ;; changing the syntax for backslash doesn't work since we must treat
1366 ;; escapes in string literals correctly.)
1367
1368 (defun c-forward-single-comment ()
1369 "Move forward past whitespace and the closest following comment, if any.
1370 Return t if a comment was found, nil otherwise. In either case, the
1371 point is moved past the following whitespace. Line continuations,
1372 i.e. a backslashes followed by line breaks, are treated as whitespace.
1373 The line breaks that end line comments are considered to be the
1374 comment enders, so the point will be put on the beginning of the next
1375 line if it moved past a line comment.
1376
1377 This function does not do any hidden buffer changes."
1378
1379 (let ((start (point)))
1380 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1381 (goto-char (match-end 0)))
1382
1383 (when (forward-comment 1)
1384 (if (eobp)
1385 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1386 ;; forwards at eob.
1387 nil
1388
1389 ;; Emacs includes the ending newline in a b-style (c++)
1390 ;; comment, but XEmacs doesn't. We depend on the Emacs
1391 ;; behavior (which also is symmetric).
1392 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1393 (condition-case nil (forward-char 1)))
1394
1395 t))))
1396
1397 (defsubst c-forward-comments ()
1398 "Move forward past all following whitespace and comments.
1399 Line continuations, i.e. a backslashes followed by line breaks, are
1400 treated as whitespace.
1401
1402 Note that this function might do hidden buffer changes. See the
1403 comment at the start of cc-engine.el for more info."
1404
1405 (while (or
1406 ;; If forward-comment in at least XEmacs 21 is given a large
1407 ;; positive value, it'll loop all the way through if it hits
1408 ;; eob.
1409 (and (forward-comment 5)
1410 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1411 ;; forwards at eob.
1412 (not (eobp)))
1413
1414 (when (looking-at "\\\\[\n\r]")
1415 (forward-char 2)
1416 t))))
1417
1418 (defun c-backward-single-comment ()
1419 "Move backward past whitespace and the closest preceding comment, if any.
1420 Return t if a comment was found, nil otherwise. In either case, the
1421 point is moved past the preceding whitespace. Line continuations,
1422 i.e. a backslashes followed by line breaks, are treated as whitespace.
1423 The line breaks that end line comments are considered to be the
1424 comment enders, so the point cannot be at the end of the same line to
1425 move over a line comment.
1426
1427 This function does not do any hidden buffer changes."
1428
1429 (let ((start (point)))
1430 ;; When we got newline terminated comments, forward-comment in all
1431 ;; supported emacsen so far will stop at eol of each line not
1432 ;; ending with a comment when moving backwards. This corrects for
1433 ;; that, and at the same time handles line continuations.
1434 (while (progn
1435 (skip-chars-backward " \t\n\r\f\v")
1436 (and (looking-at "[\n\r]")
1437 (eq (char-before) ?\\)))
1438 (backward-char))
1439
1440 (if (bobp)
1441 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1442 ;; backwards at bob.
1443 nil
1444
1445 ;; Leave point after the closest following newline if we've
1446 ;; backed up over any above, since forward-comment won't move
1447 ;; backward over a line comment if point is at the end of the
1448 ;; same line.
1449 (re-search-forward "\\=\\s *[\n\r]" start t)
1450
1451 (if (if (let (open-paren-in-column-0-is-defun-start) (forward-comment -1))
1452 (if (eolp)
1453 ;; If forward-comment above succeeded and we're at eol
1454 ;; then the newline we moved over above didn't end a
1455 ;; line comment, so we give it another go.
1456 (let (open-paren-in-column-0-is-defun-start)
1457 (forward-comment -1))
1458 t))
1459
1460 ;; Emacs <= 20 and XEmacs move back over the closer of a
1461 ;; block comment that lacks an opener.
1462 (if (looking-at "\\*/")
1463 (progn (forward-char 2) nil)
1464 t)))))
1465
1466 (defsubst c-backward-comments ()
1467 "Move backward past all preceding whitespace and comments.
1468 Line continuations, i.e. a backslashes followed by line breaks, are
1469 treated as whitespace. The line breaks that end line comments are
1470 considered to be the comment enders, so the point cannot be at the end
1471 of the same line to move over a line comment. Unlike
1472 c-backward-syntactic-ws, this function doesn't move back over
1473 preprocessor directives.
1474
1475 Note that this function might do hidden buffer changes. See the
1476 comment at the start of cc-engine.el for more info."
1477
1478 (let ((start (point)))
1479 (while (and
1480 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1481 ;; return t when moving backwards at bob.
1482 (not (bobp))
1483
1484 (if (let (open-paren-in-column-0-is-defun-start moved-comment)
1485 (while
1486 (and (not (setq moved-comment (forward-comment -1)))
1487 ;; Cope specifically with ^M^J here -
1488 ;; forward-comment sometimes gets stuck after ^Ms,
1489 ;; sometimes after ^M^J.
1490 (or
1491 (when (eq (char-before) ?\r)
1492 (backward-char)
1493 t)
1494 (when (and (eq (char-before) ?\n)
1495 (eq (char-before (1- (point))) ?\r))
1496 (backward-char 2)
1497 t))))
1498 moved-comment)
1499 (if (looking-at "\\*/")
1500 ;; Emacs <= 20 and XEmacs move back over the
1501 ;; closer of a block comment that lacks an opener.
1502 (progn (forward-char 2) nil)
1503 t)
1504
1505 ;; XEmacs treats line continuations as whitespace but
1506 ;; only in the backward direction, which seems a bit
1507 ;; odd. Anyway, this is necessary for Emacs.
1508 (when (and (looking-at "[\n\r]")
1509 (eq (char-before) ?\\)
1510 (< (point) start))
1511 (backward-char)
1512 t))))))
1513
1514 \f
1515 ;; Tools for skipping over syntactic whitespace.
1516
1517 ;; The following functions use text properties to cache searches over
1518 ;; large regions of syntactic whitespace. It works as follows:
1519 ;;
1520 ;; o If a syntactic whitespace region contains anything but simple
1521 ;; whitespace (i.e. space, tab and line breaks), the text property
1522 ;; `c-in-sws' is put over it. At places where we have stopped
1523 ;; within that region there's also a `c-is-sws' text property.
1524 ;; That since there typically are nested whitespace inside that
1525 ;; must be handled separately, e.g. whitespace inside a comment or
1526 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1527 ;; to jump to another point with that property within the same
1528 ;; `c-in-sws' region. It can be likened to a ladder where
1529 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1530 ;;
1531 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1532 ;; a "rung position" and also maybe on the first following char.
1533 ;; As many characters as can be conveniently found in this range
1534 ;; are marked, but no assumption can be made that the whole range
1535 ;; is marked (it could be clobbered by later changes, for
1536 ;; instance).
1537 ;;
1538 ;; Note that some part of the beginning of a sequence of simple
1539 ;; whitespace might be part of the end of a preceding line comment
1540 ;; or cpp directive and must not be considered part of the "rung".
1541 ;; Such whitespace is some amount of horizontal whitespace followed
1542 ;; by a newline. In the case of cpp directives it could also be
1543 ;; two newlines with horizontal whitespace between them.
1544 ;;
1545 ;; The reason to include the first following char is to cope with
1546 ;; "rung positions" that doesn't have any ordinary whitespace. If
1547 ;; `c-is-sws' is put on a token character it does not have
1548 ;; `c-in-sws' set simultaneously. That's the only case when that
1549 ;; can occur, and the reason for not extending the `c-in-sws'
1550 ;; region to cover it is that the `c-in-sws' region could then be
1551 ;; accidentally merged with a following one if the token is only
1552 ;; one character long.
1553 ;;
1554 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1555 ;; removed in the changed region. If the change was inside
1556 ;; syntactic whitespace that means that the "ladder" is broken, but
1557 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1558 ;; parts on either side and use an ordinary search only to "repair"
1559 ;; the gap.
1560 ;;
1561 ;; Special care needs to be taken if a region is removed: If there
1562 ;; are `c-in-sws' on both sides of it which do not connect inside
1563 ;; the region then they can't be joined. If e.g. a marked macro is
1564 ;; broken, syntactic whitespace inside the new text might be
1565 ;; marked. If those marks would become connected with the old
1566 ;; `c-in-sws' range around the macro then we could get a ladder
1567 ;; with one end outside the macro and the other at some whitespace
1568 ;; within it.
1569 ;;
1570 ;; The main motivation for this system is to increase the speed in
1571 ;; skipping over the large whitespace regions that can occur at the
1572 ;; top level in e.g. header files that contain a lot of comments and
1573 ;; cpp directives. For small comments inside code it's probably
1574 ;; slower than using `forward-comment' straightforwardly, but speed is
1575 ;; not a significant factor there anyway.
1576
1577 ; (defface c-debug-is-sws-face
1578 ; '((t (:background "GreenYellow")))
1579 ; "Debug face to mark the `c-is-sws' property.")
1580 ; (defface c-debug-in-sws-face
1581 ; '((t (:underline t)))
1582 ; "Debug face to mark the `c-in-sws' property.")
1583
1584 ; (defun c-debug-put-sws-faces ()
1585 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1586 ; ;; properties in the buffer.
1587 ; (interactive)
1588 ; (save-excursion
1589 ; (c-save-buffer-state (in-face)
1590 ; (goto-char (point-min))
1591 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1592 ; (point)))
1593 ; (while (progn
1594 ; (goto-char (next-single-property-change
1595 ; (point) 'c-is-sws nil (point-max)))
1596 ; (if in-face
1597 ; (progn
1598 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1599 ; (setq in-face nil))
1600 ; (setq in-face (point)))
1601 ; (not (eobp))))
1602 ; (goto-char (point-min))
1603 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1604 ; (point)))
1605 ; (while (progn
1606 ; (goto-char (next-single-property-change
1607 ; (point) 'c-in-sws nil (point-max)))
1608 ; (if in-face
1609 ; (progn
1610 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1611 ; (setq in-face nil))
1612 ; (setq in-face (point)))
1613 ; (not (eobp)))))))
1614
1615 (defmacro c-debug-sws-msg (&rest args)
1616 ;;`(message ,@args)
1617 )
1618
1619 (defmacro c-put-is-sws (beg end)
1620 ;; This macro does a hidden buffer change.
1621 `(let ((beg ,beg) (end ,end))
1622 (put-text-property beg end 'c-is-sws t)
1623 ,@(when (facep 'c-debug-is-sws-face)
1624 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1625
1626 (defmacro c-put-in-sws (beg end)
1627 ;; This macro does a hidden buffer change.
1628 `(let ((beg ,beg) (end ,end))
1629 (put-text-property beg end 'c-in-sws t)
1630 ,@(when (facep 'c-debug-is-sws-face)
1631 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1632
1633 (defmacro c-remove-is-sws (beg end)
1634 ;; This macro does a hidden buffer change.
1635 `(let ((beg ,beg) (end ,end))
1636 (remove-text-properties beg end '(c-is-sws nil))
1637 ,@(when (facep 'c-debug-is-sws-face)
1638 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1639
1640 (defmacro c-remove-in-sws (beg end)
1641 ;; This macro does a hidden buffer change.
1642 `(let ((beg ,beg) (end ,end))
1643 (remove-text-properties beg end '(c-in-sws nil))
1644 ,@(when (facep 'c-debug-is-sws-face)
1645 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1646
1647 (defmacro c-remove-is-and-in-sws (beg end)
1648 ;; This macro does a hidden buffer change.
1649 `(let ((beg ,beg) (end ,end))
1650 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1651 ,@(when (facep 'c-debug-is-sws-face)
1652 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1653 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1654
1655 (defsubst c-invalidate-sws-region-after (beg end)
1656 ;; Called from `after-change-functions'. Note that if
1657 ;; `c-forward-sws' or `c-backward-sws' are used outside
1658 ;; `c-save-buffer-state' or similar then this will remove the cache
1659 ;; properties right after they're added.
1660 ;;
1661 ;; This function does hidden buffer changes.
1662
1663 (save-excursion
1664 ;; Adjust the end to remove the properties in any following simple
1665 ;; ws up to and including the next line break, if there is any
1666 ;; after the changed region. This is necessary e.g. when a rung
1667 ;; marked empty line is converted to a line comment by inserting
1668 ;; "//" before the line break. In that case the line break would
1669 ;; keep the rung mark which could make a later `c-backward-sws'
1670 ;; move into the line comment instead of over it.
1671 (goto-char end)
1672 (skip-chars-forward " \t\f\v")
1673 (when (and (eolp) (not (eobp)))
1674 (setq end (1+ (point)))))
1675
1676 (when (and (= beg end)
1677 (get-text-property beg 'c-in-sws)
1678 (> beg (point-min))
1679 (get-text-property (1- beg) 'c-in-sws))
1680 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1681 ;; safe to keep a range that was continuous before the change. E.g:
1682 ;;
1683 ;; #define foo
1684 ;; \
1685 ;; bar
1686 ;;
1687 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1688 ;; after "foo" is removed then "bar" will become part of the cpp
1689 ;; directive instead of a syntactically relevant token. In that
1690 ;; case there's no longer syntactic ws from "#" to "b".
1691 (setq beg (1- beg)))
1692
1693 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1694 (c-remove-is-and-in-sws beg end))
1695
1696 (defun c-forward-sws ()
1697 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1698 ;;
1699 ;; This function might do hidden buffer changes.
1700
1701 (let (;; `rung-pos' is set to a position as early as possible in the
1702 ;; unmarked part of the simple ws region.
1703 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1704 rung-is-marked next-rung-is-marked simple-ws-end
1705 ;; `safe-start' is set when it's safe to cache the start position.
1706 ;; It's not set if we've initially skipped over comments and line
1707 ;; continuations since we might have gone out through the end of a
1708 ;; macro then. This provision makes `c-forward-sws' not populate the
1709 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1710 ;; more common.
1711 safe-start)
1712
1713 ;; Skip simple ws and do a quick check on the following character to see
1714 ;; if it's anything that can't start syntactic ws, so we can bail out
1715 ;; early in the majority of cases when there just are a few ws chars.
1716 (skip-chars-forward " \t\n\r\f\v")
1717 (when (looking-at c-syntactic-ws-start)
1718
1719 (setq rung-end-pos (min (1+ (point)) (point-max)))
1720 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1721 'c-is-sws t))
1722 ;; Find the last rung position to avoid setting properties in all
1723 ;; the cases when the marked rung is complete.
1724 ;; (`next-single-property-change' is certain to move at least one
1725 ;; step forward.)
1726 (setq rung-pos (1- (c-next-single-property-change
1727 rung-is-marked 'c-is-sws nil rung-end-pos)))
1728 ;; Got no marked rung here. Since the simple ws might have started
1729 ;; inside a line comment or cpp directive we must set `rung-pos' as
1730 ;; high as possible.
1731 (setq rung-pos (point)))
1732
1733 (with-silent-modifications
1734 (while
1735 (progn
1736 (while
1737 (when (and rung-is-marked
1738 (get-text-property (point) 'c-in-sws))
1739
1740 ;; The following search is the main reason that `c-in-sws'
1741 ;; and `c-is-sws' aren't combined to one property.
1742 (goto-char (c-next-single-property-change
1743 (point) 'c-in-sws nil (point-max)))
1744 (unless (get-text-property (point) 'c-is-sws)
1745 ;; If the `c-in-sws' region extended past the last
1746 ;; `c-is-sws' char we have to go back a bit.
1747 (or (get-text-property (1- (point)) 'c-is-sws)
1748 (goto-char (previous-single-property-change
1749 (point) 'c-is-sws)))
1750 (backward-char))
1751
1752 (c-debug-sws-msg
1753 "c-forward-sws cached move %s -> %s (max %s)"
1754 rung-pos (point) (point-max))
1755
1756 (setq rung-pos (point))
1757 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1758 (not (eobp))))
1759
1760 ;; We'll loop here if there is simple ws after the last rung.
1761 ;; That means that there's been some change in it and it's
1762 ;; possible that we've stepped into another ladder, so extend
1763 ;; the previous one to join with it if there is one, and try to
1764 ;; use the cache again.
1765 (c-debug-sws-msg
1766 "c-forward-sws extending rung with [%s..%s] (max %s)"
1767 (1+ rung-pos) (1+ (point)) (point-max))
1768 (unless (get-text-property (point) 'c-is-sws)
1769 ;; Remove any `c-in-sws' property from the last char of
1770 ;; the rung before we mark it with `c-is-sws', so that we
1771 ;; won't connect with the remains of a broken "ladder".
1772 (c-remove-in-sws (point) (1+ (point))))
1773 (c-put-is-sws (1+ rung-pos)
1774 (1+ (point)))
1775 (c-put-in-sws rung-pos
1776 (setq rung-pos (point)
1777 last-put-in-sws-pos rung-pos)))
1778
1779 (setq simple-ws-end (point))
1780 (c-forward-comments)
1781
1782 (cond
1783 ((/= (point) simple-ws-end)
1784 ;; Skipped over comments. Don't cache at eob in case the buffer
1785 ;; is narrowed.
1786 (not (eobp)))
1787
1788 ((save-excursion
1789 (and c-opt-cpp-prefix
1790 (looking-at c-opt-cpp-start)
1791 (progn (skip-chars-backward " \t")
1792 (bolp))
1793 (or (bobp)
1794 (progn (backward-char)
1795 (not (eq (char-before) ?\\))))))
1796 ;; Skip a preprocessor directive.
1797 (end-of-line)
1798 (while (and (eq (char-before) ?\\)
1799 (= (forward-line 1) 0))
1800 (end-of-line))
1801 (forward-line 1)
1802 (setq safe-start t)
1803 ;; Don't cache at eob in case the buffer is narrowed.
1804 (not (eobp)))))
1805
1806 ;; We've searched over a piece of non-white syntactic ws. See if this
1807 ;; can be cached.
1808 (setq next-rung-pos (point))
1809 (skip-chars-forward " \t\n\r\f\v")
1810 (setq rung-end-pos (min (1+ (point)) (point-max)))
1811
1812 (if (or
1813 ;; Cache if we haven't skipped comments only, and if we started
1814 ;; either from a marked rung or from a completely uncached
1815 ;; position.
1816 (and safe-start
1817 (or rung-is-marked
1818 (not (get-text-property simple-ws-end 'c-in-sws))))
1819
1820 ;; See if there's a marked rung in the encountered simple ws. If
1821 ;; so then we can cache, unless `safe-start' is nil. Even then
1822 ;; we need to do this to check if the cache can be used for the
1823 ;; next step.
1824 (and (setq next-rung-is-marked
1825 (text-property-any next-rung-pos rung-end-pos
1826 'c-is-sws t))
1827 safe-start))
1828
1829 (progn
1830 (c-debug-sws-msg
1831 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1832 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1833 (point-max))
1834
1835 ;; Remove the properties for any nested ws that might be cached.
1836 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1837 ;; anyway.
1838 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1839 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1840 (c-put-is-sws rung-pos
1841 (1+ simple-ws-end))
1842 (setq rung-is-marked t))
1843 (c-put-in-sws rung-pos
1844 (setq rung-pos (point)
1845 last-put-in-sws-pos rung-pos))
1846 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1847 ;; Remove any `c-in-sws' property from the last char of
1848 ;; the rung before we mark it with `c-is-sws', so that we
1849 ;; won't connect with the remains of a broken "ladder".
1850 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1851 (c-put-is-sws next-rung-pos
1852 rung-end-pos))
1853
1854 (c-debug-sws-msg
1855 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1856 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1857 (point-max))
1858
1859 ;; Set `rung-pos' for the next rung. It's the same thing here as
1860 ;; initially, except that the rung position is set as early as
1861 ;; possible since we can't be in the ending ws of a line comment or
1862 ;; cpp directive now.
1863 (if (setq rung-is-marked next-rung-is-marked)
1864 (setq rung-pos (1- (c-next-single-property-change
1865 rung-is-marked 'c-is-sws nil rung-end-pos)))
1866 (setq rung-pos next-rung-pos))
1867 (setq safe-start t)))
1868
1869 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1870 ;; another one after the point (which might occur when editing inside a
1871 ;; comment or macro).
1872 (when (eq last-put-in-sws-pos (point))
1873 (cond ((< last-put-in-sws-pos (point-max))
1874 (c-debug-sws-msg
1875 "c-forward-sws clearing at %s for cache separation"
1876 last-put-in-sws-pos)
1877 (c-remove-in-sws last-put-in-sws-pos
1878 (1+ last-put-in-sws-pos)))
1879 (t
1880 ;; If at eob we have to clear the last character before the end
1881 ;; instead since the buffer might be narrowed and there might
1882 ;; be a `c-in-sws' after (point-max). In this case it's
1883 ;; necessary to clear both properties.
1884 (c-debug-sws-msg
1885 "c-forward-sws clearing thoroughly at %s for cache separation"
1886 (1- last-put-in-sws-pos))
1887 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1888 last-put-in-sws-pos))))
1889 ))))
1890
1891 (defun c-backward-sws ()
1892 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1893 ;;
1894 ;; This function might do hidden buffer changes.
1895
1896 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1897 ;; part of the simple ws region.
1898 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1899 rung-is-marked simple-ws-beg cmt-skip-pos)
1900
1901 ;; Skip simple horizontal ws and do a quick check on the preceding
1902 ;; character to see if it's anything that can't end syntactic ws, so we can
1903 ;; bail out early in the majority of cases when there just are a few ws
1904 ;; chars. Newlines are complicated in the backward direction, so we can't
1905 ;; skip over them.
1906 (skip-chars-backward " \t\f")
1907 (when (and (not (bobp))
1908 (save-excursion
1909 (backward-char)
1910 (looking-at c-syntactic-ws-end)))
1911
1912 ;; Try to find a rung position in the simple ws preceding point, so that
1913 ;; we can get a cache hit even if the last bit of the simple ws has
1914 ;; changed recently.
1915 (setq simple-ws-beg (point))
1916 (skip-chars-backward " \t\n\r\f\v")
1917 (if (setq rung-is-marked (text-property-any
1918 (point) (min (1+ rung-pos) (point-max))
1919 'c-is-sws t))
1920 ;; `rung-pos' will be the earliest marked position, which means that
1921 ;; there might be later unmarked parts in the simple ws region.
1922 ;; It's not worth the effort to fix that; the last part of the
1923 ;; simple ws is also typically edited often, so it could be wasted.
1924 (goto-char (setq rung-pos rung-is-marked))
1925 (goto-char simple-ws-beg))
1926
1927 (with-silent-modifications
1928 (while
1929 (progn
1930 (while
1931 (when (and rung-is-marked
1932 (not (bobp))
1933 (get-text-property (1- (point)) 'c-in-sws))
1934
1935 ;; The following search is the main reason that `c-in-sws'
1936 ;; and `c-is-sws' aren't combined to one property.
1937 (goto-char (previous-single-property-change
1938 (point) 'c-in-sws nil (point-min)))
1939 (unless (get-text-property (point) 'c-is-sws)
1940 ;; If the `c-in-sws' region extended past the first
1941 ;; `c-is-sws' char we have to go forward a bit.
1942 (goto-char (c-next-single-property-change
1943 (point) 'c-is-sws)))
1944
1945 (c-debug-sws-msg
1946 "c-backward-sws cached move %s <- %s (min %s)"
1947 (point) rung-pos (point-min))
1948
1949 (setq rung-pos (point))
1950 (if (and (< (min (skip-chars-backward " \t\f\v")
1951 (progn
1952 (setq simple-ws-beg (point))
1953 (skip-chars-backward " \t\n\r\f\v")))
1954 0)
1955 (setq rung-is-marked
1956 (text-property-any (point) rung-pos
1957 'c-is-sws t)))
1958 t
1959 (goto-char simple-ws-beg)
1960 nil))
1961
1962 ;; We'll loop here if there is simple ws before the first rung.
1963 ;; That means that there's been some change in it and it's
1964 ;; possible that we've stepped into another ladder, so extend
1965 ;; the previous one to join with it if there is one, and try to
1966 ;; use the cache again.
1967 (c-debug-sws-msg
1968 "c-backward-sws extending rung with [%s..%s] (min %s)"
1969 rung-is-marked rung-pos (point-min))
1970 (unless (get-text-property (1- rung-pos) 'c-is-sws)
1971 ;; Remove any `c-in-sws' property from the last char of
1972 ;; the rung before we mark it with `c-is-sws', so that we
1973 ;; won't connect with the remains of a broken "ladder".
1974 (c-remove-in-sws (1- rung-pos) rung-pos))
1975 (c-put-is-sws rung-is-marked
1976 rung-pos)
1977 (c-put-in-sws rung-is-marked
1978 (1- rung-pos))
1979 (setq rung-pos rung-is-marked
1980 last-put-in-sws-pos rung-pos))
1981
1982 (c-backward-comments)
1983 (setq cmt-skip-pos (point))
1984
1985 (cond
1986 ((and c-opt-cpp-prefix
1987 (/= cmt-skip-pos simple-ws-beg)
1988 (c-beginning-of-macro))
1989 ;; Inside a cpp directive. See if it should be skipped over.
1990 (let ((cpp-beg (point)))
1991
1992 ;; Move back over all line continuations in the region skipped
1993 ;; over by `c-backward-comments'. If we go past it then we
1994 ;; started inside the cpp directive.
1995 (goto-char simple-ws-beg)
1996 (beginning-of-line)
1997 (while (and (> (point) cmt-skip-pos)
1998 (progn (backward-char)
1999 (eq (char-before) ?\\)))
2000 (beginning-of-line))
2001
2002 (if (< (point) cmt-skip-pos)
2003 ;; Don't move past the cpp directive if we began inside
2004 ;; it. Note that the position at the end of the last line
2005 ;; of the macro is also considered to be within it.
2006 (progn (goto-char cmt-skip-pos)
2007 nil)
2008
2009 ;; It's worthwhile to spend a little bit of effort on finding
2010 ;; the end of the macro, to get a good `simple-ws-beg'
2011 ;; position for the cache. Note that `c-backward-comments'
2012 ;; could have stepped over some comments before going into
2013 ;; the macro, and then `simple-ws-beg' must be kept on the
2014 ;; same side of those comments.
2015 (goto-char simple-ws-beg)
2016 (skip-chars-backward " \t\n\r\f\v")
2017 (if (eq (char-before) ?\\)
2018 (forward-char))
2019 (forward-line 1)
2020 (if (< (point) simple-ws-beg)
2021 ;; Might happen if comments after the macro were skipped
2022 ;; over.
2023 (setq simple-ws-beg (point)))
2024
2025 (goto-char cpp-beg)
2026 t)))
2027
2028 ((/= (save-excursion
2029 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
2030 (setq next-rung-pos (point)))
2031 simple-ws-beg)
2032 ;; Skipped over comments. Must put point at the end of
2033 ;; the simple ws at point since we might be after a line
2034 ;; comment or cpp directive that's been partially
2035 ;; narrowed out, and we can't risk marking the simple ws
2036 ;; at the end of it.
2037 (goto-char next-rung-pos)
2038 t)))
2039
2040 ;; We've searched over a piece of non-white syntactic ws. See if this
2041 ;; can be cached.
2042 (setq next-rung-pos (point))
2043 (skip-chars-backward " \t\f\v")
2044
2045 (if (or
2046 ;; Cache if we started either from a marked rung or from a
2047 ;; completely uncached position.
2048 rung-is-marked
2049 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2050
2051 ;; Cache if there's a marked rung in the encountered simple ws.
2052 (save-excursion
2053 (skip-chars-backward " \t\n\r\f\v")
2054 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2055 'c-is-sws t)))
2056
2057 (progn
2058 (c-debug-sws-msg
2059 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2060 (point) (1+ next-rung-pos)
2061 simple-ws-beg (min (1+ rung-pos) (point-max))
2062 (point-min))
2063
2064 ;; Remove the properties for any nested ws that might be cached.
2065 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2066 ;; anyway.
2067 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2068 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2069 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2070 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2071 ;; Remove any `c-in-sws' property from the last char of
2072 ;; the rung before we mark it with `c-is-sws', so that we
2073 ;; won't connect with the remains of a broken "ladder".
2074 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2075 (c-put-is-sws simple-ws-beg
2076 rung-end-pos)
2077 (setq rung-is-marked t)))
2078 (c-put-in-sws (setq simple-ws-beg (point)
2079 last-put-in-sws-pos simple-ws-beg)
2080 rung-pos)
2081 (c-put-is-sws (setq rung-pos simple-ws-beg)
2082 (1+ next-rung-pos)))
2083
2084 (c-debug-sws-msg
2085 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2086 (point) (1+ next-rung-pos)
2087 simple-ws-beg (min (1+ rung-pos) (point-max))
2088 (point-min))
2089 (setq rung-pos next-rung-pos
2090 simple-ws-beg (point))
2091 ))
2092
2093 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2094 ;; another one before the point (which might occur when editing inside a
2095 ;; comment or macro).
2096 (when (eq last-put-in-sws-pos (point))
2097 (cond ((< (point-min) last-put-in-sws-pos)
2098 (c-debug-sws-msg
2099 "c-backward-sws clearing at %s for cache separation"
2100 (1- last-put-in-sws-pos))
2101 (c-remove-in-sws (1- last-put-in-sws-pos)
2102 last-put-in-sws-pos))
2103 ((> (point-min) 1)
2104 ;; If at bob and the buffer is narrowed, we have to clear the
2105 ;; character we're standing on instead since there might be a
2106 ;; `c-in-sws' before (point-min). In this case it's necessary
2107 ;; to clear both properties.
2108 (c-debug-sws-msg
2109 "c-backward-sws clearing thoroughly at %s for cache separation"
2110 last-put-in-sws-pos)
2111 (c-remove-is-and-in-sws last-put-in-sws-pos
2112 (1+ last-put-in-sws-pos)))))
2113 ))))
2114
2115 \f
2116 ;; Other whitespace tools
2117 (defun c-partial-ws-p (beg end)
2118 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2119 ;; region? This is a "heuristic" function. .....
2120 ;;
2121 ;; The motivation for the second bit is to check whether removing this
2122 ;; region would coalesce two symbols.
2123 ;;
2124 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2125 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2126 (save-excursion
2127 (let ((end+1 (min (1+ end) (point-max))))
2128 (or (progn (goto-char (max (point-min) (1- beg)))
2129 (c-skip-ws-forward end)
2130 (eq (point) end))
2131 (progn (goto-char beg)
2132 (c-skip-ws-forward end+1)
2133 (eq (point) end+1))))))
2134 \f
2135 ;; A system for finding noteworthy parens before the point.
2136
2137 (defconst c-state-cache-too-far 5000)
2138 ;; A maximum comfortable scanning distance, e.g. between
2139 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2140 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2141 ;; the cache and starting again from point-min or a beginning of defun. This
2142 ;; value can be tuned for efficiency or set to a lower value for testing.
2143
2144 (defvar c-state-cache nil)
2145 (make-variable-buffer-local 'c-state-cache)
2146 ;; The state cache used by `c-parse-state' to cut down the amount of
2147 ;; searching. It's the result from some earlier `c-parse-state' call. See
2148 ;; `c-parse-state''s doc string for details of its structure.
2149 ;;
2150 ;; The use of the cached info is more effective if the next
2151 ;; `c-parse-state' call is on a line close by the one the cached state
2152 ;; was made at; the cache can actually slow down a little if the
2153 ;; cached state was made very far back in the buffer. The cache is
2154 ;; most effective if `c-parse-state' is used on each line while moving
2155 ;; forward.
2156
2157 (defvar c-state-cache-good-pos 1)
2158 (make-variable-buffer-local 'c-state-cache-good-pos)
2159 ;; This is a position where `c-state-cache' is known to be correct, or
2160 ;; nil (see below). It's a position inside one of the recorded unclosed
2161 ;; parens or the top level, but not further nested inside any literal or
2162 ;; subparen that is closed before the last recorded position.
2163 ;;
2164 ;; The exact position is chosen to try to be close to yet earlier than
2165 ;; the position where `c-state-cache' will be called next. Right now
2166 ;; the heuristic is to set it to the position after the last found
2167 ;; closing paren (of any type) before the line on which
2168 ;; `c-parse-state' was called. That is chosen primarily to work well
2169 ;; with refontification of the current line.
2170 ;;
2171 ;; 2009-07-28: When `c-state-point-min' and the last position where
2172 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2173 ;; both in the same literal, there is no such "good position", and
2174 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2175 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2176 ;;
2177 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2178 ;; the middle of the desert, as long as it is not within a brace pair
2179 ;; recorded in `c-state-cache' or a paren/bracket pair.
2180
2181 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2182 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2183 ;; speed up testing for non-literality.
2184 (defconst c-state-nonlit-pos-interval 3000)
2185 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2186
2187 (defvar c-state-nonlit-pos-cache nil)
2188 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2189 ;; A list of buffer positions which are known not to be in a literal or a cpp
2190 ;; construct. This is ordered with higher positions at the front of the list.
2191 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2192
2193 (defvar c-state-nonlit-pos-cache-limit 1)
2194 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2195 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2196 ;; reduced by buffer changes, and increased by invocations of
2197 ;; `c-state-literal-at'.
2198
2199 (defvar c-state-semi-nonlit-pos-cache nil)
2200 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2201 ;; A list of buffer positions which are known not to be in a literal. This is
2202 ;; ordered with higher positions at the front of the list. Only those which
2203 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2204
2205 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2206 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2207 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2208 ;; reduced by buffer changes, and increased by invocations of
2209 ;; `c-state-literal-at'. FIXME!!!
2210
2211 (defsubst c-state-pp-to-literal (from to &optional not-in-delimiter)
2212 ;; Do a parse-partial-sexp from FROM to TO, returning either
2213 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2214 ;; (STATE) otherwise,
2215 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2216 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal.
2217 ;;
2218 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2219 ;; comment opener, this is recognized as being in a comment literal.
2220 ;;
2221 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2222 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2223 ;; STATE are valid.
2224 (save-excursion
2225 (let ((s (parse-partial-sexp from to))
2226 ty co-st)
2227 (cond
2228 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2229 (setq ty (cond
2230 ((nth 3 s) 'string)
2231 ((nth 7 s) 'c++)
2232 (t 'c)))
2233 (parse-partial-sexp (point) (point-max)
2234 nil ; TARGETDEPTH
2235 nil ; STOPBEFORE
2236 s ; OLDSTATE
2237 'syntax-table) ; stop at end of literal
2238 `(,s ,ty (,(nth 8 s) . ,(point))))
2239
2240 ((and (not not-in-delimiter) ; inside a comment starter
2241 (not (bobp))
2242 (progn (backward-char)
2243 (and (not (looking-at "\\s!"))
2244 (looking-at c-comment-start-regexp))))
2245 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2246 co-st (point))
2247 (forward-comment 1)
2248 `(,s ,ty (,co-st . ,(point))))
2249
2250 (t `(,s))))))
2251
2252 (defun c-state-safe-place (here)
2253 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2254 ;; string, comment, or macro.
2255 ;;
2256 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2257 ;; MAY NOT contain any positions within macros, since macros are frequently
2258 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2259 ;; We cannot rely on this mechanism whilst determining a cache pos since
2260 ;; this function is also called from outwith `c-parse-state'.
2261 (save-restriction
2262 (widen)
2263 (save-excursion
2264 (let ((c c-state-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-nonlit-pos-cache-limit))
2268 (setq c (cdr c)))
2269 (setq c-state-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-nonlit-pos-cache' each iteration.
2279 (and
2280 (setq npos
2281 (when (<= (+ pos c-state-nonlit-pos-interval) here)
2282 (+ pos c-state-nonlit-pos-interval)))
2283
2284 ;; Test for being in a literal. If so, go to after it.
2285 (progn
2286 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2287 (or (null lit)
2288 (prog1 (<= (cdr lit) here)
2289 (setq npos (cdr lit)))))
2290
2291 ;; Test for being in a macro. If so, go to after it.
2292 (progn
2293 (goto-char npos)
2294 (setq macro-beg
2295 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2296 (when macro-beg
2297 (c-syntactic-end-of-macro)
2298 (or (eobp) (forward-char))
2299 (setq macro-end (point)))
2300 (or (null macro-beg)
2301 (prog1 (<= macro-end here)
2302 (setq npos macro-end)))))
2303
2304 (setq pos npos)
2305 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2306 ;; Add one extra element above HERE so as to to avoid the previous
2307 ;; expensive calculation when the next call is close to the current
2308 ;; one. This is especially useful when inside a large macro.
2309 (when npos
2310 (setq c-state-nonlit-pos-cache
2311 (cons npos c-state-nonlit-pos-cache))))
2312
2313 (if (> pos c-state-nonlit-pos-cache-limit)
2314 (setq c-state-nonlit-pos-cache-limit pos))
2315 pos))))
2316
2317 (defun c-state-semi-safe-place (here)
2318 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2319 ;; string or comment. It may be in a macro.
2320 (save-restriction
2321 (widen)
2322 (save-excursion
2323 (let ((c c-state-semi-nonlit-pos-cache)
2324 pos npos high-pos lit macro-beg macro-end)
2325 ;; Trim the cache to take account of buffer changes.
2326 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2327 (setq c (cdr c)))
2328 (setq c-state-semi-nonlit-pos-cache c)
2329
2330 (while (and c (> (car c) here))
2331 (setq high-pos (car c))
2332 (setq c (cdr c)))
2333 (setq pos (or (car c) (point-min)))
2334
2335 (unless high-pos
2336 (while
2337 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2338 (and
2339 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2340
2341 ;; Test for being in a literal. If so, go to after it.
2342 (progn
2343 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2344 (or (null lit)
2345 (prog1 (<= (cdr lit) here)
2346 (setq npos (cdr lit))))))
2347
2348 (setq pos npos)
2349 (setq c-state-semi-nonlit-pos-cache
2350 (cons pos c-state-semi-nonlit-pos-cache))))
2351
2352 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2353 (setq c-state-semi-nonlit-pos-cache-limit pos))
2354 pos))))
2355
2356 (defun c-state-literal-at (here)
2357 ;; If position HERE is inside a literal, return (START . END), the
2358 ;; boundaries of the literal (which may be outside the accessible bit of the
2359 ;; buffer). Otherwise, return nil.
2360 ;;
2361 ;; This function is almost the same as `c-literal-limits'. Previously, it
2362 ;; differed in that it was a lower level function, and that it rigorously
2363 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2364 ;; virtually identical to this function.
2365 (save-restriction
2366 (widen)
2367 (save-excursion
2368 (let ((pos (c-state-safe-place here)))
2369 (car (cddr (c-state-pp-to-literal pos here)))))))
2370
2371 (defsubst c-state-lit-beg (pos)
2372 ;; Return the start of the literal containing POS, or POS itself.
2373 (or (car (c-state-literal-at pos))
2374 pos))
2375
2376 (defsubst c-state-cache-non-literal-place (pos state)
2377 ;; Return a position outside of a string/comment/macro at or before POS.
2378 ;; STATE is the parse-partial-sexp state at POS.
2379 (let ((res (if (or (nth 3 state) ; in a string?
2380 (nth 4 state)) ; in a comment?
2381 (nth 8 state)
2382 pos)))
2383 (save-excursion
2384 (goto-char res)
2385 (if (c-beginning-of-macro)
2386 (point)
2387 res))))
2388
2389 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2390 ;; Stuff to do with point-min, and coping with any literal there.
2391 (defvar c-state-point-min 1)
2392 (make-variable-buffer-local 'c-state-point-min)
2393 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2394 ;; narrowing is likely to affect the parens that are visible before the point.
2395
2396 (defvar c-state-point-min-lit-type nil)
2397 (make-variable-buffer-local 'c-state-point-min-lit-type)
2398 (defvar c-state-point-min-lit-start nil)
2399 (make-variable-buffer-local 'c-state-point-min-lit-start)
2400 ;; These two variables define the literal, if any, containing point-min.
2401 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2402 ;; literal. If there's no literal there, they're both nil.
2403
2404 (defvar c-state-min-scan-pos 1)
2405 (make-variable-buffer-local 'c-state-min-scan-pos)
2406 ;; This is the earliest buffer-pos from which scanning can be done. It is
2407 ;; either the end of the literal containing point-min, or point-min itself.
2408 ;; It becomes nil if the buffer is changed earlier than this point.
2409 (defun c-state-get-min-scan-pos ()
2410 ;; Return the lowest valid scanning pos. This will be the end of the
2411 ;; literal enclosing point-min, or point-min itself.
2412 (or c-state-min-scan-pos
2413 (save-restriction
2414 (save-excursion
2415 (widen)
2416 (goto-char c-state-point-min-lit-start)
2417 (if (eq c-state-point-min-lit-type 'string)
2418 (forward-sexp)
2419 (forward-comment 1))
2420 (setq c-state-min-scan-pos (point))))))
2421
2422 (defun c-state-mark-point-min-literal ()
2423 ;; Determine the properties of any literal containing POINT-MIN, setting the
2424 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2425 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2426 (let ((p-min (point-min))
2427 lit)
2428 (save-restriction
2429 (widen)
2430 (setq lit (c-state-literal-at p-min))
2431 (if lit
2432 (setq c-state-point-min-lit-type
2433 (save-excursion
2434 (goto-char (car lit))
2435 (cond
2436 ((looking-at c-block-comment-start-regexp) 'c)
2437 ((looking-at c-line-comment-starter) 'c++)
2438 (t 'string)))
2439 c-state-point-min-lit-start (car lit)
2440 c-state-min-scan-pos (cdr lit))
2441 (setq c-state-point-min-lit-type nil
2442 c-state-point-min-lit-start nil
2443 c-state-min-scan-pos p-min)))))
2444
2445
2446 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2447 ;; A variable which signals a brace dessert - helpful for reducing the number
2448 ;; of fruitless backward scans.
2449 (defvar c-state-brace-pair-desert nil)
2450 (make-variable-buffer-local 'c-state-brace-pair-desert)
2451 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2452 ;; that defun has searched backwards for a brace pair and not found one. Its
2453 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2454 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2455 ;; nil when at top level) and FROM is where the backward search started. It
2456 ;; is reset to nil in `c-invalidate-state-cache'.
2457
2458
2459 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2460 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2461 ;; list of like structure.
2462 (defmacro c-state-cache-top-lparen (&optional cache)
2463 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2464 ;; (default `c-state-cache') (or nil).
2465 (let ((cash (or cache 'c-state-cache)))
2466 `(if (consp (car ,cash))
2467 (caar ,cash)
2468 (car ,cash))))
2469
2470 (defmacro c-state-cache-top-paren (&optional cache)
2471 ;; Return the address of the latest brace/bracket/paren (whether left or
2472 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2473 (let ((cash (or cache 'c-state-cache)))
2474 `(if (consp (car ,cash))
2475 (cdar ,cash)
2476 (car ,cash))))
2477
2478 (defmacro c-state-cache-after-top-paren (&optional cache)
2479 ;; Return the position just after the latest brace/bracket/paren (whether
2480 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2481 (let ((cash (or cache 'c-state-cache)))
2482 `(if (consp (car ,cash))
2483 (cdar ,cash)
2484 (and (car ,cash)
2485 (1+ (car ,cash))))))
2486
2487 (defun c-get-cache-scan-pos (here)
2488 ;; From the state-cache, determine the buffer position from which we might
2489 ;; scan forward to HERE to update this cache. This position will be just
2490 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2491 ;; return the earliest position in the accessible region which isn't within
2492 ;; a literal. If the visible portion of the buffer is entirely within a
2493 ;; literal, return NIL.
2494 (let ((c c-state-cache) elt)
2495 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2496 (while (and c
2497 (>= (c-state-cache-top-lparen c) here))
2498 (setq c (cdr c)))
2499
2500 (setq elt (car c))
2501 (cond
2502 ((consp elt)
2503 (if (> (cdr elt) here)
2504 (1+ (car elt))
2505 (cdr elt)))
2506 (elt (1+ elt))
2507 ((<= (c-state-get-min-scan-pos) here)
2508 (c-state-get-min-scan-pos))
2509 (t nil))))
2510
2511 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2512 ;; Variables which keep track of preprocessor constructs.
2513 (defvar c-state-old-cpp-beg-marker nil)
2514 (make-variable-buffer-local 'c-state-old-cpp-beg-marker)
2515 (defvar c-state-old-cpp-beg nil)
2516 (make-variable-buffer-local 'c-state-old-cpp-beg)
2517 (defvar c-state-old-cpp-end-marker nil)
2518 (make-variable-buffer-local 'c-state-old-cpp-end-marker)
2519 (defvar c-state-old-cpp-end nil)
2520 (make-variable-buffer-local 'c-state-old-cpp-end)
2521 ;; These are the limits of the macro containing point at the previous call of
2522 ;; `c-parse-state', or nil.
2523
2524 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2525 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2526 (defun c-state-balance-parens-backwards (here- here+ top)
2527 ;; Return the position of the opening paren/brace/bracket before HERE- which
2528 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2529 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2530 ;;
2531 ;; ............................................
2532 ;; | |
2533 ;; ( [ ( .........#macro.. ) ( ) ] )
2534 ;; ^ ^ ^ ^
2535 ;; | | | |
2536 ;; return HERE- HERE+ TOP
2537 ;;
2538 ;; If there aren't enough opening paren/brace/brackets, return the position
2539 ;; of the outermost one found, or HERE- if there are none. If there are no
2540 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2541 ;; must not be inside literals. Only the accessible portion of the buffer
2542 ;; will be scanned.
2543
2544 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2545 ;; `here'. Go round the next loop each time we pass over such a ")". These
2546 ;; probably match "("s before `here-'.
2547 (let (pos pa ren+1 lonely-rens)
2548 (save-excursion
2549 (save-restriction
2550 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2551 (setq pos here+)
2552 (c-safe
2553 (while
2554 (setq ren+1 (c-sc-scan-lists pos 1 1)) ; might signal
2555 (setq lonely-rens (cons ren+1 lonely-rens)
2556 pos ren+1)))))
2557
2558 ;; PART 2: Scan back before `here-' searching for the "("s
2559 ;; matching/mismatching the ")"s found above. We only need to direct the
2560 ;; caller to scan when we've encountered unmatched right parens.
2561 (setq pos here-)
2562 (when lonely-rens
2563 (c-safe
2564 (while
2565 (and lonely-rens ; actual values aren't used.
2566 (setq pa (c-sc-scan-lists pos -1 1)))
2567 (setq pos pa)
2568 (setq lonely-rens (cdr lonely-rens)))))
2569 pos))
2570
2571 (defun c-parse-state-get-strategy (here good-pos)
2572 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2573 ;; to minimize the amount of scanning. HERE is the pertinent position in
2574 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2575 ;; its head trimmed) is known to be good, or nil if there is no such
2576 ;; position.
2577 ;;
2578 ;; The return value is a list, one of the following:
2579 ;;
2580 ;; o - ('forward START-POINT) - scan forward from START-POINT,
2581 ;; which is not less than the highest position in `c-state-cache' below HERE,
2582 ;; which is after GOOD-POS.
2583 ;; o - ('backward nil) - scan backwards (from HERE).
2584 ;; o - ('back-and-forward START-POINT) - like 'forward, but when HERE is earlier
2585 ;; than GOOD-POS.
2586 ;; o - ('IN-LIT nil) - point is inside the literal containing point-min.
2587 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2588 strategy ; 'forward, 'backward, or 'IN-LIT.
2589 start-point)
2590 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2591 (cond
2592 ((< here (c-state-get-min-scan-pos))
2593 (setq strategy 'IN-LIT))
2594 ((<= good-pos here)
2595 (setq strategy 'forward
2596 start-point (max good-pos cache-pos)))
2597 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2598 (setq strategy 'backward))
2599 (t
2600 (setq strategy 'back-and-forward
2601 start-point cache-pos)))
2602 (list strategy start-point)))
2603
2604
2605 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2606 ;; Routines which change `c-state-cache' and associated values.
2607 (defun c-renarrow-state-cache ()
2608 ;; The region (more precisely, point-min) has changed since we
2609 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2610 (if (< (point-min) c-state-point-min)
2611 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2612 ;; It would be possible to do a better job here and recalculate the top
2613 ;; only.
2614 (progn
2615 (c-state-mark-point-min-literal)
2616 (setq c-state-cache nil
2617 c-state-cache-good-pos c-state-min-scan-pos
2618 c-state-brace-pair-desert nil))
2619
2620 ;; point-min has MOVED FORWARD.
2621
2622 ;; Is the new point-min inside a (different) literal?
2623 (unless (and c-state-point-min-lit-start ; at prev. point-min
2624 (< (point-min) (c-state-get-min-scan-pos)))
2625 (c-state-mark-point-min-literal))
2626
2627 ;; Cut off a bit of the tail from `c-state-cache'.
2628 (let ((ptr (cons nil c-state-cache))
2629 pa)
2630 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2631 (>= pa (point-min)))
2632 (setq ptr (cdr ptr)))
2633
2634 (when (consp ptr)
2635 (if (eq (cdr ptr) c-state-cache)
2636 (setq c-state-cache nil
2637 c-state-cache-good-pos c-state-min-scan-pos)
2638 (setcdr ptr nil)
2639 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2640 )))
2641
2642 (setq c-state-point-min (point-min)))
2643
2644 (defun c-append-lower-brace-pair-to-state-cache (from here &optional upper-lim)
2645 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2646 ;; of nesting (not necessarily immediately preceding), push a cons onto
2647 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2648 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2649 ;; UPPER-LIM.
2650 ;;
2651 ;; Return non-nil when this has been done.
2652 ;;
2653 ;; The situation it copes with is this transformation:
2654 ;;
2655 ;; OLD: { (.) {...........}
2656 ;; ^ ^
2657 ;; FROM HERE
2658 ;;
2659 ;; NEW: { {....} (.) {.........
2660 ;; ^ ^ ^
2661 ;; LOWER BRACE PAIR HERE or HERE
2662 ;;
2663 ;; This routine should be fast. Since it can get called a LOT, we maintain
2664 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2665 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2666 (save-excursion
2667 (save-restriction
2668 (let* (new-cons
2669 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2670 (macro-start-or-from
2671 (progn (goto-char from)
2672 (c-beginning-of-macro)
2673 (point)))
2674 (bra ; Position of "{".
2675 ;; Don't start scanning in the middle of a CPP construct unless
2676 ;; it contains HERE - these constructs, in Emacs, are "commented
2677 ;; out" with category properties.
2678 (if (eq (c-get-char-property macro-start-or-from 'category)
2679 'c-cpp-delimiter)
2680 macro-start-or-from
2681 from))
2682 ce) ; Position of "}"
2683 (or upper-lim (setq upper-lim from))
2684
2685 ;; If we're essentially repeating a fruitless search, just give up.
2686 (unless (and c-state-brace-pair-desert
2687 (eq cache-pos (car c-state-brace-pair-desert))
2688 (or (null (car c-state-brace-pair-desert))
2689 (> from (car c-state-brace-pair-desert)))
2690 (<= from (cdr c-state-brace-pair-desert)))
2691 ;; DESERT-LIM. Avoid repeated searching through the cached desert.
2692 (let ((desert-lim
2693 (and c-state-brace-pair-desert
2694 (eq cache-pos (car c-state-brace-pair-desert))
2695 (>= from (cdr c-state-brace-pair-desert))
2696 (cdr c-state-brace-pair-desert)))
2697 ;; CACHE-LIM. This limit will be necessary when an opening
2698 ;; paren at `cache-pos' has just had its matching close paren
2699 ;; inserted into the buffer. `cache-pos' continues to be a
2700 ;; search bound, even though the algorithm below would skip
2701 ;; over the new paren pair.
2702 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2703 (narrow-to-region
2704 (cond
2705 ((and desert-lim cache-lim)
2706 (max desert-lim cache-lim))
2707 (desert-lim)
2708 (cache-lim)
2709 ((point-min)))
2710 ;; The top limit is EOB to ensure that `bra' is inside the
2711 ;; accessible part of the buffer at the next scan operation.
2712 (1+ (buffer-size))))
2713
2714 ;; In the next pair of nested loops, the inner one moves back past a
2715 ;; pair of (mis-)matching parens or brackets; the outer one moves
2716 ;; back over a sequence of unmatched close brace/paren/bracket each
2717 ;; time round.
2718 (while
2719 (progn
2720 (c-safe
2721 (while
2722 (and (setq ce (c-sc-scan-lists bra -1 -1)) ; back past )/]/}; might signal
2723 (setq bra (c-sc-scan-lists ce -1 1)) ; back past (/[/{; might signal
2724 (or (> bra here) ;(> ce here)
2725 (and
2726 (< ce here)
2727 (or (not (eq (char-after bra) ?\{))
2728 (and (goto-char bra)
2729 (c-beginning-of-macro)
2730 (< (point) macro-start-or-from))))))))
2731 (and ce (< ce bra)))
2732 (setq bra ce)) ; If we just backed over an unbalanced closing
2733 ; brace, ignore it.
2734
2735 (if (and ce (< ce here) (< bra ce) (eq (char-after bra) ?\{))
2736 ;; We've found the desired brace-pair.
2737 (progn
2738 (setq new-cons (cons bra (1+ ce)))
2739 (cond
2740 ((consp (car c-state-cache))
2741 (setcar c-state-cache new-cons))
2742 ((and (numberp (car c-state-cache)) ; probably never happens
2743 (< ce (car c-state-cache)))
2744 (setcdr c-state-cache
2745 (cons new-cons (cdr c-state-cache))))
2746 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2747
2748 ;; We haven't found a brace pair. Record this in the cache.
2749 (setq c-state-brace-pair-desert
2750 (cons (if (and ce (< bra ce) (> ce here)) ; {..} straddling HERE?
2751 bra
2752 (point-min))
2753 (min here from)))))))))
2754
2755 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2756 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2757 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2758 ;; "push" "a" brace pair onto `c-state-cache'.
2759 ;;
2760 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2761 ;; otherwise push it normally.
2762 ;;
2763 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2764 ;; latter is inside a macro, not being a macro containing
2765 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2766 ;; base pair. This latter case is assumed to be rare.
2767 ;;
2768 ;; Note: POINT is not preserved in this routine.
2769 (if bra+1
2770 (if (or (> bra+1 macro-start-or-here)
2771 (progn (goto-char bra+1)
2772 (not (c-beginning-of-macro))))
2773 (setq c-state-cache
2774 (cons (cons (1- bra+1)
2775 (c-sc-scan-lists bra+1 1 1))
2776 (if (consp (car c-state-cache))
2777 (cdr c-state-cache)
2778 c-state-cache)))
2779 ;; N.B. This defsubst codes one method for the simple, normal case,
2780 ;; and a more sophisticated, slower way for the general case. Don't
2781 ;; eliminate this defsubst - it's a speed optimization.
2782 (c-append-lower-brace-pair-to-state-cache (1- bra+1) (point-max)))))
2783
2784 (defun c-append-to-state-cache (from here)
2785 ;; Scan the buffer from FROM to HERE, adding elements into `c-state-cache'
2786 ;; for braces etc. Return a candidate for `c-state-cache-good-pos'.
2787 ;;
2788 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2789 ;; any. Typically, it is immediately after it. It must not be inside a
2790 ;; literal.
2791 (let ((here-bol (c-point 'bol here))
2792 (macro-start-or-here
2793 (save-excursion (goto-char here)
2794 (if (c-beginning-of-macro)
2795 (point)
2796 here)))
2797 pa+1 ; pos just after an opening PAren (or brace).
2798 (ren+1 from) ; usually a pos just after an closing paREN etc.
2799 ; Is actually the pos. to scan for a (/{/[ from,
2800 ; which sometimes is after a silly )/}/].
2801 paren+1 ; Pos after some opening or closing paren.
2802 paren+1s ; A list of `paren+1's; used to determine a
2803 ; good-pos.
2804 bra+1 ; just after L bra-ce.
2805 bra+1s ; list of OLD values of bra+1.
2806 mstart) ; start of a macro.
2807
2808 (save-excursion
2809 (save-restriction
2810 (narrow-to-region (point-min) here)
2811 ;; Each time round the following loop, we enter a successively deeper
2812 ;; level of brace/paren nesting. (Except sometimes we "continue at
2813 ;; the existing level".) `pa+1' is a pos inside an opening
2814 ;; brace/paren/bracket, usually just after it.
2815 (while
2816 (progn
2817 ;; Each time round the next loop moves forward over an opening then
2818 ;; a closing brace/bracket/paren. This loop is white hot, so it
2819 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2820 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2821 ;; call of `scan-lists' signals an error, which happens when there
2822 ;; are no more b/b/p's to scan.
2823 (c-safe
2824 (while t
2825 (setq pa+1 (c-sc-scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2826 paren+1s (cons pa+1 paren+1s))
2827 (setq ren+1 (c-sc-scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2828 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2829 (setq bra+1 pa+1))
2830 (setcar paren+1s ren+1)))
2831
2832 (if (and pa+1 (> pa+1 ren+1))
2833 ;; We've just entered a deeper nesting level.
2834 (progn
2835 ;; Insert the brace pair (if present) and the single open
2836 ;; paren/brace/bracket into `c-state-cache' It cannot be
2837 ;; inside a macro, except one around point, because of what
2838 ;; `c-neutralize-syntax-in-CPP' has done.
2839 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2840 ;; Insert the opening brace/bracket/paren position.
2841 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2842 ;; Clear admin stuff for the next more nested part of the scan.
2843 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2844 t) ; Carry on the loop
2845
2846 ;; All open p/b/b's at this nesting level, if any, have probably
2847 ;; been closed by matching/mismatching ones. We're probably
2848 ;; finished - we just need to check for having found an
2849 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2850 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2851 (c-safe (setq ren+1 (c-sc-scan-lists ren+1 1 1)))))) ; acts as loop control.
2852
2853 ;; Record the final, innermost, brace-pair if there is one.
2854 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2855
2856 ;; Determine a good pos
2857 (while (and (setq paren+1 (car paren+1s))
2858 (> (if (> paren+1 macro-start-or-here)
2859 paren+1
2860 (goto-char paren+1)
2861 (setq mstart (and (c-beginning-of-macro)
2862 (point)))
2863 (or mstart paren+1))
2864 here-bol))
2865 (setq paren+1s (cdr paren+1s)))
2866 (cond
2867 ((and paren+1 mstart)
2868 (min paren+1 mstart))
2869 (paren+1)
2870 (t from))))))
2871
2872 (defun c-remove-stale-state-cache (start-point here pps-point)
2873 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2874 ;; not be in it when it is amended for position HERE. This may involve
2875 ;; replacing a CONS element for a brace pair containing HERE with its car.
2876 ;; Additionally, the "outermost" open-brace entry before HERE will be
2877 ;; converted to a cons if the matching close-brace is below HERE.
2878 ;;
2879 ;; START-POINT is a "maximal" "safe position" - there must be no open
2880 ;; parens/braces/brackets between START-POINT and HERE.
2881 ;;
2882 ;; As a second thing, calculate the result of parse-partial-sexp at
2883 ;; PPS-POINT, w.r.t. START-POINT. The motivation here is that
2884 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
2885 ;; adjust it to get outside a string/comment. (Sorry about this! The code
2886 ;; needs to be FAST).
2887 ;;
2888 ;; Return a list (GOOD-POS SCAN-BACK-POS CONS-SEPARATED PPS-STATE), where
2889 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
2890 ;; to be good (we aim for this to be as high as possible);
2891 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
2892 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
2893 ;; position to scan backwards from. It is the position of the "{" of the
2894 ;; last element to be removed from `c-state-cache', when that elt is a
2895 ;; cons, otherwise nil.
2896 ;; o - CONS-SEPARATED is t when a cons element in `c-state-cache' has been
2897 ;; replaced by its car because HERE lies inside the brace pair represented
2898 ;; by the cons.
2899 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
2900 (save-excursion
2901 (save-restriction
2902 (narrow-to-region 1 (point-max))
2903 (let* ((in-macro-start ; start of macro containing HERE or nil.
2904 (save-excursion
2905 (goto-char here)
2906 (and (c-beginning-of-macro)
2907 (point))))
2908 (start-point-actual-macro-start ; Start of macro containing
2909 ; start-point or nil
2910 (and (< start-point here)
2911 (save-excursion
2912 (goto-char start-point)
2913 (and (c-beginning-of-macro)
2914 (point)))))
2915 (start-point-actual-macro-end ; End of this macro, (maybe
2916 ; HERE), or nil.
2917 (and start-point-actual-macro-start
2918 (save-excursion
2919 (goto-char start-point-actual-macro-start)
2920 (c-end-of-macro)
2921 (point))))
2922 pps-state ; Will be 9 or 10 elements long.
2923 pos
2924 upper-lim ; ,beyond which `c-state-cache' entries are removed
2925 scan-back-pos
2926 cons-separated
2927 pair-beg pps-point-state target-depth)
2928
2929 ;; Remove entries beyond HERE. Also remove any entries inside
2930 ;; a macro, unless HERE is in the same macro.
2931 (setq upper-lim
2932 (if (or (null c-state-old-cpp-beg)
2933 (and (> here c-state-old-cpp-beg)
2934 (< here c-state-old-cpp-end)))
2935 here
2936 (min here c-state-old-cpp-beg)))
2937 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
2938 (setq scan-back-pos (car-safe (car c-state-cache)))
2939 (setq c-state-cache (cdr c-state-cache)))
2940
2941 ;; If `upper-lim' is inside the last recorded brace pair, remove its
2942 ;; RBrace and indicate we'll need to search backwards for a previous
2943 ;; brace pair.
2944 (when (and c-state-cache
2945 (consp (car c-state-cache))
2946 (> (cdar c-state-cache) upper-lim))
2947 (setcar c-state-cache (caar c-state-cache))
2948 (setq scan-back-pos (car c-state-cache)
2949 cons-separated t))
2950
2951 ;; The next loop jumps forward out of a nested level of parens each
2952 ;; time round; the corresponding elements in `c-state-cache' are
2953 ;; removed. `pos' is just after the brace-pair or the open paren at
2954 ;; (car c-state-cache). There can be no open parens/braces/brackets
2955 ;; between `start-point'/`start-point-actual-macro-start' and HERE,
2956 ;; due to the interface spec to this function.
2957 (setq pos (if (and start-point-actual-macro-end
2958 (not (eq start-point-actual-macro-start
2959 in-macro-start)))
2960 (1+ start-point-actual-macro-end) ; get outside the macro as
2961 ; marked by a `category' text property.
2962 start-point))
2963 (goto-char pos)
2964 (while (and c-state-cache
2965 (or (numberp (car c-state-cache)) ; Have we a { at all?
2966 (cdr c-state-cache))
2967 (< (point) here))
2968 (cond
2969 ((null pps-state) ; first time through
2970 (setq target-depth -1))
2971 ((eq (car pps-state) target-depth) ; found closing ),},]
2972 (setq target-depth (1- (car pps-state))))
2973 ;; Do nothing when we've merely reached pps-point.
2974 )
2975
2976 ;; Scan!
2977 (setq pps-state
2978 (c-sc-parse-partial-sexp
2979 (point) (if (< (point) pps-point) pps-point here)
2980 target-depth
2981 nil pps-state))
2982
2983 (if (= (point) pps-point)
2984 (setq pps-point-state pps-state))
2985
2986 (when (eq (car pps-state) target-depth)
2987 (setq pos (point)) ; POS is now just after an R-paren/brace.
2988 (cond
2989 ((and (consp (car c-state-cache))
2990 (eq (point) (cdar c-state-cache)))
2991 ;; We've just moved out of the paren pair containing the brace-pair
2992 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
2993 ;; and is potentially where the open brace of a cons in
2994 ;; c-state-cache will be.
2995 (setq pair-beg (car-safe (cdr c-state-cache))
2996 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
2997 ((numberp (car c-state-cache))
2998 (setq pair-beg (car c-state-cache)
2999 c-state-cache (cdr c-state-cache))) ; remove this
3000 ; containing Lparen
3001 ((numberp (cadr c-state-cache))
3002 (setq pair-beg (cadr c-state-cache)
3003 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
3004 ; together with enclosed brace pair.
3005 ;; (t nil) ; Ignore an unmated Rparen.
3006 )))
3007
3008 (if (< (point) pps-point)
3009 (setq pps-state (c-sc-parse-partial-sexp
3010 (point) pps-point
3011 nil nil ; TARGETDEPTH, STOPBEFORE
3012 pps-state)))
3013
3014 ;; If the last paren pair we moved out of was actually a brace pair,
3015 ;; insert it into `c-state-cache'.
3016 (when (and pair-beg (eq (char-after pair-beg) ?{))
3017 (if (consp (car-safe c-state-cache))
3018 (setq c-state-cache (cdr c-state-cache)))
3019 (setq c-state-cache (cons (cons pair-beg pos)
3020 c-state-cache)))
3021
3022 (list pos scan-back-pos cons-separated pps-state)))))
3023
3024 (defun c-remove-stale-state-cache-backwards (here)
3025 ;; Strip stale elements of `c-state-cache' by moving backwards through the
3026 ;; buffer, and inform the caller of the scenario detected.
3027 ;;
3028 ;; HERE is the position we're setting `c-state-cache' for.
3029 ;; CACHE-POS (a locally bound variable) is just after the latest recorded
3030 ;; position in `c-state-cache' before HERE, or a position at or near
3031 ;; point-min which isn't in a literal.
3032 ;;
3033 ;; This function must only be called only when (> `c-state-cache-good-pos'
3034 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
3035 ;; optimized to eliminate (or minimize) scanning between these two
3036 ;; positions.
3037 ;;
3038 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
3039 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
3040 ;; could become so after missing elements are inserted into
3041 ;; `c-state-cache'. This is JUST AFTER an opening or closing
3042 ;; brace/paren/bracket which is already in `c-state-cache' or just before
3043 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
3044 ;; before `here''s line, or the start of the literal containing it.
3045 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
3046 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
3047 ;; to scan backwards from.
3048 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
3049 ;; POS and HERE which aren't recorded in `c-state-cache'.
3050 ;;
3051 ;; The comments in this defun use "paren" to mean parenthesis or square
3052 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
3053 ;;
3054 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
3055 ;; | | | | | |
3056 ;; CP E here D C good
3057 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
3058 (pos c-state-cache-good-pos)
3059 pa ren ; positions of "(" and ")"
3060 dropped-cons ; whether the last element dropped from `c-state-cache'
3061 ; was a cons (representing a brace-pair)
3062 good-pos ; see above.
3063 lit ; (START . END) of a literal containing some point.
3064 here-lit-start here-lit-end ; bounds of literal containing `here'
3065 ; or `here' itself.
3066 here- here+ ; start/end of macro around HERE, or HERE
3067 (here-bol (c-point 'bol here))
3068 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3069
3070 ;; Remove completely irrelevant entries from `c-state-cache'.
3071 (while (and c-state-cache
3072 (>= (setq pa (c-state-cache-top-lparen)) here))
3073 (setq dropped-cons (consp (car c-state-cache)))
3074 (setq c-state-cache (cdr c-state-cache))
3075 (setq pos pa))
3076 ;; At this stage, (>= pos here);
3077 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3078
3079 (cond
3080 ((and (consp (car c-state-cache))
3081 (> (cdar c-state-cache) here))
3082 ;; CASE 1: The top of the cache is a brace pair which now encloses
3083 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3084 ;; knowledge of what's inside these braces, we have no alternative but
3085 ;; to direct the caller to scan the buffer from the opening brace.
3086 (setq pos (caar c-state-cache))
3087 (setcar c-state-cache pos)
3088 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3089 ; entry into a { entry, so the caller needs to
3090 ; search for a brace pair before the {.
3091
3092 ;; `here' might be inside a literal. Check for this.
3093 ((progn
3094 (setq lit (c-state-literal-at here)
3095 here-lit-start (or (car lit) here)
3096 here-lit-end (or (cdr lit) here))
3097 ;; Has `here' just "newly entered" a macro?
3098 (save-excursion
3099 (goto-char here-lit-start)
3100 (if (and (c-beginning-of-macro)
3101 (or (null c-state-old-cpp-beg)
3102 (not (= (point) c-state-old-cpp-beg))))
3103 (progn
3104 (setq here- (point))
3105 (c-end-of-macro)
3106 (setq here+ (point)))
3107 (setq here- here-lit-start
3108 here+ here-lit-end)))
3109
3110 ;; `here' might be nested inside any depth of parens (or brackets but
3111 ;; not braces). Scan backwards to find the outermost such opening
3112 ;; paren, if there is one. This will be the scan position to return.
3113 (save-restriction
3114 (narrow-to-region cache-pos (point-max))
3115 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3116 nil)) ; for the cond
3117
3118 ((< pos here-lit-start)
3119 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3120 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3121 ;; a brace pair preceding this, it will already be in `c-state-cache',
3122 ;; unless there was a brace pair after it, i.e. there'll only be one to
3123 ;; scan for if we've just deleted one.
3124 (list pos (and dropped-cons pos) t)) ; Return value.
3125
3126 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3127 ;; Further forward scanning isn't needed, but we still need to find a
3128 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3129 ((progn
3130 (save-restriction
3131 (narrow-to-region here-bol (point-max))
3132 (setq pos here-lit-start)
3133 (c-safe (while (setq pa (c-sc-scan-lists pos -1 1))
3134 (setq pos pa)))) ; might signal
3135 nil)) ; for the cond
3136
3137 ((save-restriction
3138 (narrow-to-region too-far-back (point-max))
3139 (setq ren (c-safe (c-sc-scan-lists pos -1 -1))))
3140
3141 ;; CASE 3: After a }/)/] before `here''s BOL.
3142 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3143
3144 (t
3145 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3146 ;; literal containing it.
3147 (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3148 (list good-pos (and dropped-cons good-pos) nil)))))
3149
3150
3151 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3152 ;; Externally visible routines.
3153
3154 (defun c-state-cache-init ()
3155 (setq c-state-cache nil
3156 c-state-cache-good-pos 1
3157 c-state-nonlit-pos-cache nil
3158 c-state-nonlit-pos-cache-limit 1
3159 c-state-semi-nonlit-pos-cache nil
3160 c-state-semi-nonlit-pos-cache-limit 1
3161 c-state-brace-pair-desert nil
3162 c-state-point-min 1
3163 c-state-point-min-lit-type nil
3164 c-state-point-min-lit-start nil
3165 c-state-min-scan-pos 1
3166 c-state-old-cpp-beg nil
3167 c-state-old-cpp-end nil)
3168 (c-state-mark-point-min-literal))
3169
3170 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3171 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3172 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3173 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3174 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3175 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3176 ;; (defun c-state-dump ()
3177 ;; ;; For debugging.
3178 ;; ;(message
3179 ;; (concat
3180 ;; (c-sc-qde c-state-cache)
3181 ;; (c-sc-de c-state-cache-good-pos)
3182 ;; (c-sc-qde c-state-nonlit-pos-cache)
3183 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3184 ;; (c-sc-qde c-state-brace-pair-desert)
3185 ;; (c-sc-de c-state-point-min)
3186 ;; (c-sc-de c-state-point-min-lit-type)
3187 ;; (c-sc-de c-state-point-min-lit-start)
3188 ;; (c-sc-de c-state-min-scan-pos)
3189 ;; (c-sc-de c-state-old-cpp-beg)
3190 ;; (c-sc-de c-state-old-cpp-end)))
3191 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3192
3193 (defun c-invalidate-state-cache-1 (here)
3194 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3195 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3196 ;; left in a consistent state.
3197 ;;
3198 ;; This is much like `c-whack-state-after', but it never changes a paren
3199 ;; pair element into an open paren element. Doing that would mean that the
3200 ;; new open paren wouldn't have the required preceding paren pair element.
3201 ;;
3202 ;; This function is called from c-after-change.
3203
3204 ;; The caches of non-literals:
3205 ;; Note that we use "<=" for the possibility of the second char of a two-char
3206 ;; comment opener being typed; this would invalidate any cache position at
3207 ;; HERE.
3208 (if (<= here c-state-nonlit-pos-cache-limit)
3209 (setq c-state-nonlit-pos-cache-limit (1- here)))
3210 (if (<= here c-state-semi-nonlit-pos-cache-limit)
3211 (setq c-state-semi-nonlit-pos-cache-limit (1- here)))
3212
3213 ;; `c-state-cache':
3214 ;; Case 1: if `here' is in a literal containing point-min, everything
3215 ;; becomes (or is already) nil.
3216 (if (or (null c-state-cache-good-pos)
3217 (< here (c-state-get-min-scan-pos)))
3218 (setq c-state-cache nil
3219 c-state-cache-good-pos nil
3220 c-state-min-scan-pos nil)
3221
3222 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3223 ;; below `here'. To maintain its consistency, we may need to insert a new
3224 ;; brace pair.
3225 (let (open-paren-in-column-0-is-defun-start
3226 (here-bol (c-point 'bol here))
3227 too-high-pa ; recorded {/(/[ next above here, or nil.
3228 dropped-cons ; was the last removed element a brace pair?
3229 pa)
3230 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3231 (while (and c-state-cache
3232 (>= (setq pa (c-state-cache-top-paren)) here))
3233 (setq dropped-cons (consp (car c-state-cache))
3234 too-high-pa (c-state-cache-top-lparen)
3235 c-state-cache (cdr c-state-cache)))
3236
3237 ;; Do we need to add in an earlier brace pair, having lopped one off?
3238 (if (and dropped-cons
3239 (< too-high-pa (+ here c-state-cache-too-far)))
3240 (c-append-lower-brace-pair-to-state-cache too-high-pa here here-bol))
3241 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3242 (c-state-get-min-scan-pos)))))
3243
3244 ;; The brace-pair desert marker:
3245 (when (car c-state-brace-pair-desert)
3246 (if (< here (car c-state-brace-pair-desert))
3247 (setq c-state-brace-pair-desert nil)
3248 (if (< here (cdr c-state-brace-pair-desert))
3249 (setcdr c-state-brace-pair-desert here)))))
3250
3251 (defun c-parse-state-1 ()
3252 ;; Find and record all noteworthy parens between some good point earlier in
3253 ;; the file and point. That good point is at least the beginning of the
3254 ;; top-level construct we are in, or the beginning of the preceding
3255 ;; top-level construct if we aren't in one.
3256 ;;
3257 ;; The returned value is a list of the noteworthy parens with the last one
3258 ;; first. If an element in the list is an integer, it's the position of an
3259 ;; open paren (of any type) which has not been closed before the point. If
3260 ;; an element is a cons, it gives the position of a closed BRACE paren
3261 ;; pair[*]; the car is the start brace position and the cdr is the position
3262 ;; following the closing brace. Only the last closed brace paren pair
3263 ;; before each open paren and before the point is recorded, and thus the
3264 ;; state never contains two cons elements in succession. When a close brace
3265 ;; has no matching open brace (e.g., the matching brace is outside the
3266 ;; visible region), it is not represented in the returned value.
3267 ;;
3268 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3269 ;; This defun explicitly treats mismatching parens/braces/brackets as
3270 ;; matching. It is the open brace which makes it a "brace" pair.
3271 ;;
3272 ;; If POINT is within a macro, open parens and brace pairs within
3273 ;; THIS macro MIGHT be recorded. This depends on whether their
3274 ;; syntactic properties have been suppressed by
3275 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3276 ;;
3277 ;; Currently no characters which are given paren syntax with the
3278 ;; syntax-table property are recorded, i.e. angle bracket arglist
3279 ;; parens are never present here. Note that this might change.
3280 ;;
3281 ;; BUG: This function doesn't cope entirely well with unbalanced
3282 ;; parens in macros. (2008-12-11: this has probably been resolved
3283 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3284 ;; following case the brace before the macro isn't balanced with the
3285 ;; one after it:
3286 ;;
3287 ;; {
3288 ;; #define X {
3289 ;; }
3290 ;;
3291 ;; Note to maintainers: this function DOES get called with point
3292 ;; within comments and strings, so don't assume it doesn't!
3293 ;;
3294 ;; This function might do hidden buffer changes.
3295 (let* ((here (point))
3296 (here-bopl (c-point 'bopl))
3297 open-paren-in-column-0-is-defun-start
3298 strategy ; 'forward, 'backward etc..
3299 ;; Candidate positions to start scanning from:
3300 cache-pos ; highest position below HERE already existing in
3301 ; cache (or 1).
3302 good-pos
3303 start-point ; (when scanning forward) a place below HERE where there
3304 ; are no open parens/braces between it and HERE.
3305 bopl-state
3306 res
3307 cons-separated
3308 scan-backward-pos scan-forward-p) ; used for 'backward.
3309 ;; If POINT-MIN has changed, adjust the cache
3310 (unless (= (point-min) c-state-point-min)
3311 (c-renarrow-state-cache))
3312
3313 ;; Strategy?
3314 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3315 strategy (car res)
3316 start-point (cadr res))
3317
3318 ;; SCAN!
3319 (cond
3320 ((memq strategy '(forward back-and-forward))
3321 (setq res (c-remove-stale-state-cache start-point here here-bopl))
3322 (setq cache-pos (car res)
3323 scan-backward-pos (cadr res)
3324 cons-separated (car (cddr res))
3325 bopl-state (cadr (cddr res))) ; will be nil if (< here-bopl
3326 ; start-point)
3327 (if (and scan-backward-pos
3328 (or cons-separated (eq strategy 'forward))) ;scan-backward-pos
3329 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3330 (setq good-pos
3331 (c-append-to-state-cache cache-pos here))
3332 (setq c-state-cache-good-pos
3333 (if (and bopl-state
3334 (< good-pos (- here c-state-cache-too-far)))
3335 (c-state-cache-non-literal-place here-bopl bopl-state)
3336 good-pos)))
3337
3338 ((eq strategy 'backward)
3339 (setq res (c-remove-stale-state-cache-backwards here)
3340 good-pos (car res)
3341 scan-backward-pos (cadr res)
3342 scan-forward-p (car (cddr res)))
3343 (if scan-backward-pos
3344 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3345 (setq c-state-cache-good-pos
3346 (if scan-forward-p
3347 (c-append-to-state-cache good-pos here)
3348 good-pos)))
3349
3350 (t ; (eq strategy 'IN-LIT)
3351 (setq c-state-cache nil
3352 c-state-cache-good-pos nil))))
3353
3354 c-state-cache)
3355
3356 (defun c-invalidate-state-cache (here)
3357 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3358 ;;
3359 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3360 ;; of all parens in preprocessor constructs, except for any such construct
3361 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3362 ;; worrying further about macros and template delimiters.
3363 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3364 ;; Emacs
3365 (c-with-<->-as-parens-suppressed
3366 (if (and c-state-old-cpp-beg
3367 (< c-state-old-cpp-beg here))
3368 (c-with-all-but-one-cpps-commented-out
3369 c-state-old-cpp-beg
3370 (min c-state-old-cpp-end here)
3371 (c-invalidate-state-cache-1 here))
3372 (c-with-cpps-commented-out
3373 (c-invalidate-state-cache-1 here))))
3374 ;; XEmacs
3375 (c-invalidate-state-cache-1 here)))
3376
3377 (defmacro c-state-maybe-marker (place marker)
3378 ;; If PLACE is non-nil, return a marker marking it, otherwise nil.
3379 ;; We (re)use MARKER.
3380 `(and ,place
3381 (or ,marker (setq ,marker (make-marker)))
3382 (set-marker ,marker ,place)))
3383
3384 (defun c-parse-state ()
3385 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3386 ;; description of the functionality and return value.
3387 ;;
3388 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3389 ;; of all parens in preprocessor constructs, except for any such construct
3390 ;; containing point. We can then call `c-parse-state-1' without worrying
3391 ;; further about macros and template delimiters.
3392 (let (here-cpp-beg here-cpp-end)
3393 (save-excursion
3394 (when (c-beginning-of-macro)
3395 (setq here-cpp-beg (point))
3396 (unless
3397 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3398 here-cpp-beg)
3399 (setq here-cpp-beg nil here-cpp-end nil))))
3400 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3401 ;; subsystem.
3402 (prog1
3403 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3404 ;; Emacs
3405 (c-with-<->-as-parens-suppressed
3406 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3407 (c-with-all-but-one-cpps-commented-out
3408 here-cpp-beg here-cpp-end
3409 (c-parse-state-1))
3410 (c-with-cpps-commented-out
3411 (c-parse-state-1))))
3412 ;; XEmacs
3413 (c-parse-state-1))
3414 (setq c-state-old-cpp-beg
3415 (c-state-maybe-marker here-cpp-beg c-state-old-cpp-beg-marker)
3416 c-state-old-cpp-end
3417 (c-state-maybe-marker here-cpp-end c-state-old-cpp-end-marker)))))
3418
3419 ;; Debug tool to catch cache inconsistencies. This is called from
3420 ;; 000tests.el.
3421 (defvar c-debug-parse-state nil)
3422 (unless (fboundp 'c-real-parse-state)
3423 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3424 (cc-bytecomp-defun c-real-parse-state)
3425
3426 (defvar c-parse-state-point nil)
3427 (defvar c-parse-state-state nil)
3428 (make-variable-buffer-local 'c-parse-state-state)
3429 (defun c-record-parse-state-state ()
3430 (setq c-parse-state-point (point))
3431 (setq c-parse-state-state
3432 (mapcar
3433 (lambda (arg)
3434 (let ((val (symbol-value arg)))
3435 (cons arg
3436 (cond ((consp val) (copy-tree val))
3437 ((markerp val) (copy-marker val))
3438 (t val)))))
3439 '(c-state-cache
3440 c-state-cache-good-pos
3441 c-state-nonlit-pos-cache
3442 c-state-nonlit-pos-cache-limit
3443 c-state-semi-nonlit-pos-cache
3444 c-state-semi-nonlit-pos-cache-limit
3445 c-state-brace-pair-desert
3446 c-state-point-min
3447 c-state-point-min-lit-type
3448 c-state-point-min-lit-start
3449 c-state-min-scan-pos
3450 c-state-old-cpp-beg
3451 c-state-old-cpp-end
3452 c-parse-state-point))))
3453 (defun c-replay-parse-state-state ()
3454 (message
3455 (concat "(setq "
3456 (mapconcat
3457 (lambda (arg)
3458 (format "%s %s%s" (car arg)
3459 (if (atom (cdr arg)) "" "'")
3460 (if (markerp (cdr arg))
3461 (format "(copy-marker %s)" (marker-position (cdr arg)))
3462 (cdr arg))))
3463 c-parse-state-state " ")
3464 ")")))
3465
3466 (defun c-debug-parse-state-double-cons (state)
3467 (let (state-car conses-not-ok)
3468 (while state
3469 (setq state-car (car state)
3470 state (cdr state))
3471 (if (and (consp state-car)
3472 (consp (car state)))
3473 (setq conses-not-ok t)))
3474 conses-not-ok))
3475
3476 (defun c-debug-parse-state ()
3477 (let ((here (point)) (res1 (c-real-parse-state)) res2)
3478 (let ((c-state-cache nil)
3479 (c-state-cache-good-pos 1)
3480 (c-state-nonlit-pos-cache nil)
3481 (c-state-nonlit-pos-cache-limit 1)
3482 (c-state-brace-pair-desert nil)
3483 (c-state-point-min 1)
3484 (c-state-point-min-lit-type nil)
3485 (c-state-point-min-lit-start nil)
3486 (c-state-min-scan-pos 1)
3487 (c-state-old-cpp-beg nil)
3488 (c-state-old-cpp-end nil))
3489 (setq res2 (c-real-parse-state)))
3490 (unless (equal res1 res2)
3491 ;; The cache can actually go further back due to the ad-hoc way
3492 ;; the first paren is found, so try to whack off a bit of its
3493 ;; start before complaining.
3494 ;; (save-excursion
3495 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3496 ;; (c-beginning-of-defun-1)
3497 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3498 ;; (c-beginning-of-defun-1))
3499 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3500 ;; (message (concat "c-parse-state inconsistency at %s: "
3501 ;; "using cache: %s, from scratch: %s")
3502 ;; here res1 res2)))
3503 (message (concat "c-parse-state inconsistency at %s: "
3504 "using cache: %s, from scratch: %s")
3505 here res1 res2)
3506 (message "Old state:")
3507 (c-replay-parse-state-state))
3508
3509 (when (c-debug-parse-state-double-cons res1)
3510 (message "c-parse-state INVALIDITY at %s: %s"
3511 here res1)
3512 (message "Old state:")
3513 (c-replay-parse-state-state))
3514
3515 (c-record-parse-state-state)
3516 res2 ; res1 correct a cascading series of errors ASAP
3517 ))
3518
3519 (defun c-toggle-parse-state-debug (&optional arg)
3520 (interactive "P")
3521 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3522 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3523 'c-debug-parse-state
3524 'c-real-parse-state)))
3525 (c-keep-region-active)
3526 (message "c-debug-parse-state %sabled"
3527 (if c-debug-parse-state "en" "dis")))
3528 (when c-debug-parse-state
3529 (c-toggle-parse-state-debug 1))
3530
3531 \f
3532 (defun c-whack-state-before (bufpos paren-state)
3533 ;; Whack off any state information from PAREN-STATE which lies
3534 ;; before BUFPOS. Not destructive on PAREN-STATE.
3535 (let* ((newstate (list nil))
3536 (ptr newstate)
3537 car)
3538 (while paren-state
3539 (setq car (car paren-state)
3540 paren-state (cdr paren-state))
3541 (if (< (if (consp car) (car car) car) bufpos)
3542 (setq paren-state nil)
3543 (setcdr ptr (list car))
3544 (setq ptr (cdr ptr))))
3545 (cdr newstate)))
3546
3547 (defun c-whack-state-after (bufpos paren-state)
3548 ;; Whack off any state information from PAREN-STATE which lies at or
3549 ;; after BUFPOS. Not destructive on PAREN-STATE.
3550 (catch 'done
3551 (while paren-state
3552 (let ((car (car paren-state)))
3553 (if (consp car)
3554 ;; just check the car, because in a balanced brace
3555 ;; expression, it must be impossible for the corresponding
3556 ;; close brace to be before point, but the open brace to
3557 ;; be after.
3558 (if (<= bufpos (car car))
3559 nil ; whack it off
3560 (if (< bufpos (cdr car))
3561 ;; its possible that the open brace is before
3562 ;; bufpos, but the close brace is after. In that
3563 ;; case, convert this to a non-cons element. The
3564 ;; rest of the state is before bufpos, so we're
3565 ;; done.
3566 (throw 'done (cons (car car) (cdr paren-state)))
3567 ;; we know that both the open and close braces are
3568 ;; before bufpos, so we also know that everything else
3569 ;; on state is before bufpos.
3570 (throw 'done paren-state)))
3571 (if (<= bufpos car)
3572 nil ; whack it off
3573 ;; it's before bufpos, so everything else should too.
3574 (throw 'done paren-state)))
3575 (setq paren-state (cdr paren-state)))
3576 nil)))
3577
3578 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3579 ;; Return the bufpos of the innermost enclosing open paren before
3580 ;; bufpos, or nil if none was found.
3581 (let (enclosingp)
3582 (or bufpos (setq bufpos 134217727))
3583 (while paren-state
3584 (setq enclosingp (car paren-state)
3585 paren-state (cdr paren-state))
3586 (if (or (consp enclosingp)
3587 (>= enclosingp bufpos))
3588 (setq enclosingp nil)
3589 (setq paren-state nil)))
3590 enclosingp))
3591
3592 (defun c-least-enclosing-brace (paren-state)
3593 ;; Return the bufpos of the outermost enclosing open paren, or nil
3594 ;; if none was found.
3595 (let (pos elem)
3596 (while paren-state
3597 (setq elem (car paren-state)
3598 paren-state (cdr paren-state))
3599 (if (integerp elem)
3600 (setq pos elem)))
3601 pos))
3602
3603 (defun c-safe-position (bufpos paren-state)
3604 ;; Return the closest "safe" position recorded on PAREN-STATE that
3605 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3606 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3607 ;; find the closest limit before a given limit that might be nil.
3608 ;;
3609 ;; A "safe" position is a position at or after a recorded open
3610 ;; paren, or after a recorded close paren. The returned position is
3611 ;; thus either the first position after a close brace, or the first
3612 ;; position after an enclosing paren, or at the enclosing paren in
3613 ;; case BUFPOS is immediately after it.
3614 (when bufpos
3615 (let (elem)
3616 (catch 'done
3617 (while paren-state
3618 (setq elem (car paren-state))
3619 (if (consp elem)
3620 (cond ((< (cdr elem) bufpos)
3621 (throw 'done (cdr elem)))
3622 ((< (car elem) bufpos)
3623 ;; See below.
3624 (throw 'done (min (1+ (car elem)) bufpos))))
3625 (if (< elem bufpos)
3626 ;; elem is the position at and not after the opening paren, so
3627 ;; we can go forward one more step unless it's equal to
3628 ;; bufpos. This is useful in some cases avoid an extra paren
3629 ;; level between the safe position and bufpos.
3630 (throw 'done (min (1+ elem) bufpos))))
3631 (setq paren-state (cdr paren-state)))))))
3632
3633 (defun c-beginning-of-syntax ()
3634 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3635 ;; goes to the closest previous point that is known to be outside
3636 ;; any string literal or comment. `c-state-cache' is used if it has
3637 ;; a position in the vicinity.
3638 (let* ((paren-state c-state-cache)
3639 elem
3640
3641 (pos (catch 'done
3642 ;; Note: Similar code in `c-safe-position'. The
3643 ;; difference is that we accept a safe position at
3644 ;; the point and don't bother to go forward past open
3645 ;; parens.
3646 (while paren-state
3647 (setq elem (car paren-state))
3648 (if (consp elem)
3649 (cond ((<= (cdr elem) (point))
3650 (throw 'done (cdr elem)))
3651 ((<= (car elem) (point))
3652 (throw 'done (car elem))))
3653 (if (<= elem (point))
3654 (throw 'done elem)))
3655 (setq paren-state (cdr paren-state)))
3656 (point-min))))
3657
3658 (if (> pos (- (point) 4000))
3659 (goto-char pos)
3660 ;; The position is far back. Try `c-beginning-of-defun-1'
3661 ;; (although we can't be entirely sure it will go to a position
3662 ;; outside a comment or string in current emacsen). FIXME:
3663 ;; Consult `syntax-ppss' here.
3664 (c-beginning-of-defun-1)
3665 (if (< (point) pos)
3666 (goto-char pos)))))
3667
3668 \f
3669 ;; Tools for scanning identifiers and other tokens.
3670
3671 (defun c-on-identifier ()
3672 "Return non-nil if the point is on or directly after an identifier.
3673 Keywords are recognized and not considered identifiers. If an
3674 identifier is detected, the returned value is its starting position.
3675 If an identifier ends at the point and another begins at it \(can only
3676 happen in Pike) then the point for the preceding one is returned.
3677
3678 Note that this function might do hidden buffer changes. See the
3679 comment at the start of cc-engine.el for more info."
3680
3681 ;; FIXME: Shouldn't this function handle "operator" in C++?
3682
3683 (save-excursion
3684 (skip-syntax-backward "w_")
3685
3686 (or
3687
3688 ;; Check for a normal (non-keyword) identifier.
3689 (and (looking-at c-symbol-start)
3690 (not (looking-at c-keywords-regexp))
3691 (point))
3692
3693 (when (c-major-mode-is 'pike-mode)
3694 ;; Handle the `<operator> syntax in Pike.
3695 (let ((pos (point)))
3696 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3697 (and (if (< (skip-chars-backward "`") 0)
3698 t
3699 (goto-char pos)
3700 (eq (char-after) ?\`))
3701 (looking-at c-symbol-key)
3702 (>= (match-end 0) pos)
3703 (point))))
3704
3705 ;; Handle the "operator +" syntax in C++.
3706 (when (and c-overloadable-operators-regexp
3707 (= (c-backward-token-2 0) 0))
3708
3709 (cond ((and (looking-at c-overloadable-operators-regexp)
3710 (or (not c-opt-op-identifier-prefix)
3711 (and (= (c-backward-token-2 1) 0)
3712 (looking-at c-opt-op-identifier-prefix))))
3713 (point))
3714
3715 ((save-excursion
3716 (and c-opt-op-identifier-prefix
3717 (looking-at c-opt-op-identifier-prefix)
3718 (= (c-forward-token-2 1) 0)
3719 (looking-at c-overloadable-operators-regexp)))
3720 (point))))
3721
3722 )))
3723
3724 (defsubst c-simple-skip-symbol-backward ()
3725 ;; If the point is at the end of a symbol then skip backward to the
3726 ;; beginning of it. Don't move otherwise. Return non-nil if point
3727 ;; moved.
3728 ;;
3729 ;; This function might do hidden buffer changes.
3730 (or (< (skip-syntax-backward "w_") 0)
3731 (and (c-major-mode-is 'pike-mode)
3732 ;; Handle the `<operator> syntax in Pike.
3733 (let ((pos (point)))
3734 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3735 (< (skip-chars-backward "`") 0)
3736 (looking-at c-symbol-key)
3737 (>= (match-end 0) pos))
3738 t
3739 (goto-char pos)
3740 nil)))))
3741
3742 (defun c-beginning-of-current-token (&optional back-limit)
3743 ;; Move to the beginning of the current token. Do not move if not
3744 ;; in the middle of one. BACK-LIMIT may be used to bound the
3745 ;; backward search; if given it's assumed to be at the boundary
3746 ;; between two tokens. Return non-nil if the point is moved, nil
3747 ;; otherwise.
3748 ;;
3749 ;; This function might do hidden buffer changes.
3750 (let ((start (point)))
3751 (if (looking-at "\\w\\|\\s_")
3752 (skip-syntax-backward "w_" back-limit)
3753 (when (< (skip-syntax-backward ".()" back-limit) 0)
3754 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3755 (match-end 0))
3756 ;; `c-nonsymbol-token-regexp' should always match
3757 ;; since we've skipped backward over punctuation
3758 ;; or paren syntax, but consume one char in case
3759 ;; it doesn't so that we don't leave point before
3760 ;; some earlier incorrect token.
3761 (1+ (point)))))
3762 (if (<= pos start)
3763 (goto-char pos))))))
3764 (< (point) start)))
3765
3766 (defun c-end-of-current-token (&optional back-limit)
3767 ;; Move to the end of the current token. Do not move if not in the
3768 ;; middle of one. BACK-LIMIT may be used to bound the backward
3769 ;; search; if given it's assumed to be at the boundary between two
3770 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3771 ;;
3772 ;; This function might do hidden buffer changes.
3773 (let ((start (point)))
3774 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3775 (skip-syntax-forward "w_"))
3776 ((< (skip-syntax-backward ".()" back-limit) 0)
3777 (while (progn
3778 (if (looking-at c-nonsymbol-token-regexp)
3779 (goto-char (match-end 0))
3780 ;; `c-nonsymbol-token-regexp' should always match since
3781 ;; we've skipped backward over punctuation or paren
3782 ;; syntax, but move forward in case it doesn't so that
3783 ;; we don't leave point earlier than we started with.
3784 (forward-char))
3785 (< (point) start)))))
3786 (> (point) start)))
3787
3788 (defconst c-jump-syntax-balanced
3789 (if (memq 'gen-string-delim c-emacs-features)
3790 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\"\\|\\s|"
3791 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\""))
3792
3793 (defconst c-jump-syntax-unbalanced
3794 (if (memq 'gen-string-delim c-emacs-features)
3795 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3796 "\\w\\|\\s_\\|\\s\""))
3797
3798 (defun c-forward-token-2 (&optional count balanced limit)
3799 "Move forward by tokens.
3800 A token is defined as all symbols and identifiers which aren't
3801 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3802 treated properly). Point is always either left at the beginning of a
3803 token or not moved at all. COUNT specifies the number of tokens to
3804 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3805 moves to the next token beginning only if not already at one. If
3806 BALANCED is true, move over balanced parens, otherwise move into them.
3807 Also, if BALANCED is true, never move out of an enclosing paren.
3808
3809 LIMIT sets the limit for the movement and defaults to the point limit.
3810 The case when LIMIT is set in the middle of a token, comment or macro
3811 is handled correctly, i.e. the point won't be left there.
3812
3813 Return the number of tokens left to move \(positive or negative). If
3814 BALANCED is true, a move over a balanced paren counts as one. Note
3815 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3816 be returned. Thus, a return value of 0 guarantees that point is at
3817 the requested position and a return value less \(without signs) than
3818 COUNT guarantees that point is at the beginning of some token.
3819
3820 Note that this function might do hidden buffer changes. See the
3821 comment at the start of cc-engine.el for more info."
3822
3823 (or count (setq count 1))
3824 (if (< count 0)
3825 (- (c-backward-token-2 (- count) balanced limit))
3826
3827 (let ((jump-syntax (if balanced
3828 c-jump-syntax-balanced
3829 c-jump-syntax-unbalanced))
3830 (last (point))
3831 (prev (point)))
3832
3833 (if (zerop count)
3834 ;; If count is zero we should jump if in the middle of a token.
3835 (c-end-of-current-token))
3836
3837 (save-restriction
3838 (if limit (narrow-to-region (point-min) limit))
3839 (if (/= (point)
3840 (progn (c-forward-syntactic-ws) (point)))
3841 ;; Skip whitespace. Count this as a move if we did in
3842 ;; fact move.
3843 (setq count (max (1- count) 0)))
3844
3845 (if (eobp)
3846 ;; Moved out of bounds. Make sure the returned count isn't zero.
3847 (progn
3848 (if (zerop count) (setq count 1))
3849 (goto-char last))
3850
3851 ;; Use `condition-case' to avoid having the limit tests
3852 ;; inside the loop.
3853 (condition-case nil
3854 (while (and
3855 (> count 0)
3856 (progn
3857 (setq last (point))
3858 (cond ((looking-at jump-syntax)
3859 (goto-char (scan-sexps (point) 1))
3860 t)
3861 ((looking-at c-nonsymbol-token-regexp)
3862 (goto-char (match-end 0))
3863 t)
3864 ;; `c-nonsymbol-token-regexp' above should always
3865 ;; match if there are correct tokens. Try to
3866 ;; widen to see if the limit was set in the
3867 ;; middle of one, else fall back to treating
3868 ;; the offending thing as a one character token.
3869 ((and limit
3870 (save-restriction
3871 (widen)
3872 (looking-at c-nonsymbol-token-regexp)))
3873 nil)
3874 (t
3875 (forward-char)
3876 t))))
3877 (c-forward-syntactic-ws)
3878 (setq prev last
3879 count (1- count)))
3880 (error (goto-char last)))
3881
3882 (when (eobp)
3883 (goto-char prev)
3884 (setq count (1+ count)))))
3885
3886 count)))
3887
3888 (defun c-backward-token-2 (&optional count balanced limit)
3889 "Move backward by tokens.
3890 See `c-forward-token-2' for details."
3891
3892 (or count (setq count 1))
3893 (if (< count 0)
3894 (- (c-forward-token-2 (- count) balanced limit))
3895
3896 (or limit (setq limit (point-min)))
3897 (let ((jump-syntax (if balanced
3898 c-jump-syntax-balanced
3899 c-jump-syntax-unbalanced))
3900 (last (point)))
3901
3902 (if (zerop count)
3903 ;; The count is zero so try to skip to the beginning of the
3904 ;; current token.
3905 (if (> (point)
3906 (progn (c-beginning-of-current-token) (point)))
3907 (if (< (point) limit)
3908 ;; The limit is inside the same token, so return 1.
3909 (setq count 1))
3910
3911 ;; We're not in the middle of a token. If there's
3912 ;; whitespace after the point then we must move backward,
3913 ;; so set count to 1 in that case.
3914 (and (looking-at c-syntactic-ws-start)
3915 ;; If we're looking at a '#' that might start a cpp
3916 ;; directive then we have to do a more elaborate check.
3917 (or (/= (char-after) ?#)
3918 (not c-opt-cpp-prefix)
3919 (save-excursion
3920 (and (= (point)
3921 (progn (beginning-of-line)
3922 (looking-at "[ \t]*")
3923 (match-end 0)))
3924 (or (bobp)
3925 (progn (backward-char)
3926 (not (eq (char-before) ?\\)))))))
3927 (setq count 1))))
3928
3929 ;; Use `condition-case' to avoid having to check for buffer
3930 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
3931 (condition-case nil
3932 (while (and
3933 (> count 0)
3934 (progn
3935 (c-backward-syntactic-ws)
3936 (backward-char)
3937 (if (looking-at jump-syntax)
3938 (goto-char (scan-sexps (1+ (point)) -1))
3939 ;; This can be very inefficient if there's a long
3940 ;; sequence of operator tokens without any separation.
3941 ;; That doesn't happen in practice, anyway.
3942 (c-beginning-of-current-token))
3943 (>= (point) limit)))
3944 (setq last (point)
3945 count (1- count)))
3946 (error (goto-char last)))
3947
3948 (if (< (point) limit)
3949 (goto-char last))
3950
3951 count)))
3952
3953 (defun c-forward-token-1 (&optional count balanced limit)
3954 "Like `c-forward-token-2' but doesn't treat multicharacter operator
3955 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3956 characters are jumped over character by character. This function is
3957 for compatibility only; it's only a wrapper over `c-forward-token-2'."
3958 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3959 (c-forward-token-2 count balanced limit)))
3960
3961 (defun c-backward-token-1 (&optional count balanced limit)
3962 "Like `c-backward-token-2' but doesn't treat multicharacter operator
3963 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3964 characters are jumped over character by character. This function is
3965 for compatibility only; it's only a wrapper over `c-backward-token-2'."
3966 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3967 (c-backward-token-2 count balanced limit)))
3968
3969 \f
3970 ;; Tools for doing searches restricted to syntactically relevant text.
3971
3972 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
3973 paren-level not-inside-token
3974 lookbehind-submatch)
3975 "Like `re-search-forward', but only report matches that are found
3976 in syntactically significant text. I.e. matches in comments, macros
3977 or string literals are ignored. The start point is assumed to be
3978 outside any comment, macro or string literal, or else the content of
3979 that region is taken as syntactically significant text.
3980
3981 If PAREN-LEVEL is non-nil, an additional restriction is added to
3982 ignore matches in nested paren sexps. The search will also not go
3983 outside the current list sexp, which has the effect that if the point
3984 should be moved to BOUND when no match is found \(i.e. NOERROR is
3985 neither nil nor t), then it will be at the closing paren if the end of
3986 the current list sexp is encountered first.
3987
3988 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
3989 ignored. Things like multicharacter operators and special symbols
3990 \(e.g. \"`()\" in Pike) are handled but currently not floating point
3991 constants.
3992
3993 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
3994 subexpression in REGEXP. The end of that submatch is used as the
3995 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
3996 isn't used or if that subexpression didn't match then the start
3997 position of the whole match is used instead. The \"look behind\"
3998 subexpression is never tested before the starting position, so it
3999 might be a good idea to include \\=\\= as a match alternative in it.
4000
4001 Optimization note: Matches might be missed if the \"look behind\"
4002 subexpression can match the end of nonwhite syntactic whitespace,
4003 i.e. the end of comments or cpp directives. This since the function
4004 skips over such things before resuming the search. It's on the other
4005 hand not safe to assume that the \"look behind\" subexpression never
4006 matches syntactic whitespace.
4007
4008 Bug: Unbalanced parens inside cpp directives are currently not handled
4009 correctly \(i.e. they don't get ignored as they should) when
4010 PAREN-LEVEL is set.
4011
4012 Note that this function might do hidden buffer changes. See the
4013 comment at the start of cc-engine.el for more info."
4014
4015 (or bound (setq bound (point-max)))
4016 (if paren-level (setq paren-level -1))
4017
4018 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
4019
4020 (let ((start (point))
4021 tmp
4022 ;; Start position for the last search.
4023 search-pos
4024 ;; The `parse-partial-sexp' state between the start position
4025 ;; and the point.
4026 state
4027 ;; The current position after the last state update. The next
4028 ;; `parse-partial-sexp' continues from here.
4029 (state-pos (point))
4030 ;; The position at which to check the state and the state
4031 ;; there. This is separate from `state-pos' since we might
4032 ;; need to back up before doing the next search round.
4033 check-pos check-state
4034 ;; Last position known to end a token.
4035 (last-token-end-pos (point-min))
4036 ;; Set when a valid match is found.
4037 found)
4038
4039 (condition-case err
4040 (while
4041 (and
4042 (progn
4043 (setq search-pos (point))
4044 (re-search-forward regexp bound noerror))
4045
4046 (progn
4047 (setq state (parse-partial-sexp
4048 state-pos (match-beginning 0) paren-level nil state)
4049 state-pos (point))
4050 (if (setq check-pos (and lookbehind-submatch
4051 (or (not paren-level)
4052 (>= (car state) 0))
4053 (match-end lookbehind-submatch)))
4054 (setq check-state (parse-partial-sexp
4055 state-pos check-pos paren-level nil state))
4056 (setq check-pos state-pos
4057 check-state state))
4058
4059 ;; NOTE: If we got a look behind subexpression and get
4060 ;; an insignificant match in something that isn't
4061 ;; syntactic whitespace (i.e. strings or in nested
4062 ;; parentheses), then we can never skip more than a
4063 ;; single character from the match start position
4064 ;; (i.e. `state-pos' here) before continuing the
4065 ;; search. That since the look behind subexpression
4066 ;; might match the end of the insignificant region in
4067 ;; the next search.
4068
4069 (cond
4070 ((elt check-state 7)
4071 ;; Match inside a line comment. Skip to eol. Use
4072 ;; `re-search-forward' instead of `skip-chars-forward' to get
4073 ;; the right bound behavior.
4074 (re-search-forward "[\n\r]" bound noerror))
4075
4076 ((elt check-state 4)
4077 ;; Match inside a block comment. Skip to the '*/'.
4078 (search-forward "*/" bound noerror))
4079
4080 ((and (not (elt check-state 5))
4081 (eq (char-before check-pos) ?/)
4082 (not (c-get-char-property (1- check-pos) 'syntax-table))
4083 (memq (char-after check-pos) '(?/ ?*)))
4084 ;; Match in the middle of the opener of a block or line
4085 ;; comment.
4086 (if (= (char-after check-pos) ?/)
4087 (re-search-forward "[\n\r]" bound noerror)
4088 (search-forward "*/" bound noerror)))
4089
4090 ;; The last `parse-partial-sexp' above might have
4091 ;; stopped short of the real check position if the end
4092 ;; of the current sexp was encountered in paren-level
4093 ;; mode. The checks above are always false in that
4094 ;; case, and since they can do better skipping in
4095 ;; lookbehind-submatch mode, we do them before
4096 ;; checking the paren level.
4097
4098 ((and paren-level
4099 (/= (setq tmp (car check-state)) 0))
4100 ;; Check the paren level first since we're short of the
4101 ;; syntactic checking position if the end of the
4102 ;; current sexp was encountered by `parse-partial-sexp'.
4103 (if (> tmp 0)
4104
4105 ;; Inside a nested paren sexp.
4106 (if lookbehind-submatch
4107 ;; See the NOTE above.
4108 (progn (goto-char state-pos) t)
4109 ;; Skip out of the paren quickly.
4110 (setq state (parse-partial-sexp state-pos bound 0 nil state)
4111 state-pos (point)))
4112
4113 ;; Have exited the current paren sexp.
4114 (if noerror
4115 (progn
4116 ;; The last `parse-partial-sexp' call above
4117 ;; has left us just after the closing paren
4118 ;; in this case, so we can modify the bound
4119 ;; to leave the point at the right position
4120 ;; upon return.
4121 (setq bound (1- (point)))
4122 nil)
4123 (signal 'search-failed (list regexp)))))
4124
4125 ((setq tmp (elt check-state 3))
4126 ;; Match inside a string.
4127 (if (or lookbehind-submatch
4128 (not (integerp tmp)))
4129 ;; See the NOTE above.
4130 (progn (goto-char state-pos) t)
4131 ;; Skip to the end of the string before continuing.
4132 (let ((ender (make-string 1 tmp)) (continue t))
4133 (while (if (search-forward ender bound noerror)
4134 (progn
4135 (setq state (parse-partial-sexp
4136 state-pos (point) nil nil state)
4137 state-pos (point))
4138 (elt state 3))
4139 (setq continue nil)))
4140 continue)))
4141
4142 ((save-excursion
4143 (save-match-data
4144 (c-beginning-of-macro start)))
4145 ;; Match inside a macro. Skip to the end of it.
4146 (c-end-of-macro)
4147 (cond ((<= (point) bound) t)
4148 (noerror nil)
4149 (t (signal 'search-failed (list regexp)))))
4150
4151 ((and not-inside-token
4152 (or (< check-pos last-token-end-pos)
4153 (< check-pos
4154 (save-excursion
4155 (goto-char check-pos)
4156 (save-match-data
4157 (c-end-of-current-token last-token-end-pos))
4158 (setq last-token-end-pos (point))))))
4159 ;; Inside a token.
4160 (if lookbehind-submatch
4161 ;; See the NOTE above.
4162 (goto-char state-pos)
4163 (goto-char (min last-token-end-pos bound))))
4164
4165 (t
4166 ;; A real match.
4167 (setq found t)
4168 nil)))
4169
4170 ;; Should loop to search again, but take care to avoid
4171 ;; looping on the same spot.
4172 (or (/= search-pos (point))
4173 (if (= (point) bound)
4174 (if noerror
4175 nil
4176 (signal 'search-failed (list regexp)))
4177 (forward-char)
4178 t))))
4179
4180 (error
4181 (goto-char start)
4182 (signal (car err) (cdr err))))
4183
4184 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4185
4186 (if found
4187 (progn
4188 (goto-char (match-end 0))
4189 (match-end 0))
4190
4191 ;; Search failed. Set point as appropriate.
4192 (if (eq noerror t)
4193 (goto-char start)
4194 (goto-char bound))
4195 nil)))
4196
4197 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4198
4199 (defsubst c-ssb-lit-begin ()
4200 ;; Return the start of the literal point is in, or nil.
4201 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4202 ;; bound in the caller.
4203
4204 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4205 ;; if it's outside comments and strings.
4206 (save-excursion
4207 (let ((pos (point)) safe-pos state)
4208 ;; Pick a safe position as close to the point as possible.
4209 ;;
4210 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4211 ;; position.
4212
4213 (while (and safe-pos-list
4214 (> (car safe-pos-list) (point)))
4215 (setq safe-pos-list (cdr safe-pos-list)))
4216 (unless (setq safe-pos (car-safe safe-pos-list))
4217 (setq safe-pos (max (or (c-safe-position
4218 (point) (or c-state-cache
4219 (c-parse-state)))
4220 0)
4221 (point-min))
4222 safe-pos-list (list safe-pos)))
4223
4224 ;; Cache positions along the way to use if we have to back up more. We
4225 ;; cache every closing paren on the same level. If the paren cache is
4226 ;; relevant in this region then we're typically already on the same
4227 ;; level as the target position. Note that we might cache positions
4228 ;; after opening parens in case safe-pos is in a nested list. That's
4229 ;; both uncommon and harmless.
4230 (while (progn
4231 (setq state (parse-partial-sexp
4232 safe-pos pos 0))
4233 (< (point) pos))
4234 (setq safe-pos (point)
4235 safe-pos-list (cons safe-pos safe-pos-list)))
4236
4237 ;; If the state contains the start of the containing sexp we cache that
4238 ;; position too, so that parse-partial-sexp in the next run has a bigger
4239 ;; chance of starting at the same level as the target position and thus
4240 ;; will get more good safe positions into the list.
4241 (if (elt state 1)
4242 (setq safe-pos (1+ (elt state 1))
4243 safe-pos-list (cons safe-pos safe-pos-list)))
4244
4245 (if (or (elt state 3) (elt state 4))
4246 ;; Inside string or comment. Continue search at the
4247 ;; beginning of it.
4248 (elt state 8)))))
4249
4250 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4251 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4252 i.e. don't stop at positions inside syntactic whitespace or string
4253 literals. Preprocessor directives are also ignored, with the exception
4254 of the one that the point starts within, if any. If LIMIT is given,
4255 it's assumed to be at a syntactically relevant position.
4256
4257 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4258 sexps, and the search will also not go outside the current paren sexp.
4259 However, if LIMIT or the buffer limit is reached inside a nested paren
4260 then the point will be left at the limit.
4261
4262 Non-nil is returned if the point moved, nil otherwise.
4263
4264 Note that this function might do hidden buffer changes. See the
4265 comment at the start of cc-engine.el for more info."
4266
4267 (let ((start (point))
4268 state-2
4269 ;; A list of syntactically relevant positions in descending
4270 ;; order. It's used to avoid scanning repeatedly over
4271 ;; potentially large regions with `parse-partial-sexp' to verify
4272 ;; each position. Used in `c-ssb-lit-begin'
4273 safe-pos-list
4274 ;; The result from `c-beginning-of-macro' at the start position or the
4275 ;; start position itself if it isn't within a macro. Evaluated on
4276 ;; demand.
4277 start-macro-beg
4278 ;; The earliest position after the current one with the same paren
4279 ;; level. Used only when `paren-level' is set.
4280 lit-beg
4281 (paren-level-pos (point)))
4282
4283 (while
4284 (progn
4285 ;; The next loop "tries" to find the end point each time round,
4286 ;; loops when it hasn't succeeded.
4287 (while
4288 (and
4289 (let ((pos (point)))
4290 (while (and
4291 (< (skip-chars-backward skip-chars limit) 0)
4292 ;; Don't stop inside a literal.
4293 (when (setq lit-beg (c-ssb-lit-begin))
4294 (goto-char lit-beg)
4295 t)))
4296 (< (point) pos))
4297
4298 (let ((pos (point)) state-2 pps-end-pos)
4299
4300 (cond
4301 ((and paren-level
4302 (save-excursion
4303 (setq state-2 (parse-partial-sexp
4304 pos paren-level-pos -1)
4305 pps-end-pos (point))
4306 (/= (car state-2) 0)))
4307 ;; Not at the right level.
4308
4309 (if (and (< (car state-2) 0)
4310 ;; We stop above if we go out of a paren.
4311 ;; Now check whether it precedes or is
4312 ;; nested in the starting sexp.
4313 (save-excursion
4314 (setq state-2
4315 (parse-partial-sexp
4316 pps-end-pos paren-level-pos
4317 nil nil state-2))
4318 (< (car state-2) 0)))
4319
4320 ;; We've stopped short of the starting position
4321 ;; so the hit was inside a nested list. Go up
4322 ;; until we are at the right level.
4323 (condition-case nil
4324 (progn
4325 (goto-char (scan-lists pos -1
4326 (- (car state-2))))
4327 (setq paren-level-pos (point))
4328 (if (and limit (>= limit paren-level-pos))
4329 (progn
4330 (goto-char limit)
4331 nil)
4332 t))
4333 (error
4334 (goto-char (or limit (point-min)))
4335 nil))
4336
4337 ;; The hit was outside the list at the start
4338 ;; position. Go to the start of the list and exit.
4339 (goto-char (1+ (elt state-2 1)))
4340 nil))
4341
4342 ((c-beginning-of-macro limit)
4343 ;; Inside a macro.
4344 (if (< (point)
4345 (or start-macro-beg
4346 (setq start-macro-beg
4347 (save-excursion
4348 (goto-char start)
4349 (c-beginning-of-macro limit)
4350 (point)))))
4351 t
4352
4353 ;; It's inside the same macro we started in so it's
4354 ;; a relevant match.
4355 (goto-char pos)
4356 nil))))))
4357
4358 (> (point)
4359 (progn
4360 ;; Skip syntactic ws afterwards so that we don't stop at the
4361 ;; end of a comment if `skip-chars' is something like "^/".
4362 (c-backward-syntactic-ws)
4363 (point)))))
4364
4365 ;; We might want to extend this with more useful return values in
4366 ;; the future.
4367 (/= (point) start)))
4368
4369 ;; The following is an alternative implementation of
4370 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4371 ;; track of the syntactic context. It turned out to be generally
4372 ;; slower than the one above which uses forward checks from earlier
4373 ;; safe positions.
4374 ;;
4375 ;;(defconst c-ssb-stop-re
4376 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4377 ;; ;; stop at to avoid going into comments and literals.
4378 ;; (concat
4379 ;; ;; Match comment end syntax and string literal syntax. Also match
4380 ;; ;; '/' for block comment endings (not covered by comment end
4381 ;; ;; syntax).
4382 ;; "\\s>\\|/\\|\\s\""
4383 ;; (if (memq 'gen-string-delim c-emacs-features)
4384 ;; "\\|\\s|"
4385 ;; "")
4386 ;; (if (memq 'gen-comment-delim c-emacs-features)
4387 ;; "\\|\\s!"
4388 ;; "")))
4389 ;;
4390 ;;(defconst c-ssb-stop-paren-re
4391 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4392 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4393 ;;
4394 ;;(defconst c-ssb-sexp-end-re
4395 ;; ;; Regexp matching the ending syntax of a complex sexp.
4396 ;; (concat c-string-limit-regexp "\\|\\s)"))
4397 ;;
4398 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4399 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4400 ;;i.e. don't stop at positions inside syntactic whitespace or string
4401 ;;literals. Preprocessor directives are also ignored. However, if the
4402 ;;point is within a comment, string literal or preprocessor directory to
4403 ;;begin with, its contents is treated as syntactically relevant chars.
4404 ;;If LIMIT is given, it limits the backward search and the point will be
4405 ;;left there if no earlier position is found.
4406 ;;
4407 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4408 ;;sexps, and the search will also not go outside the current paren sexp.
4409 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4410 ;;then the point will be left at the limit.
4411 ;;
4412 ;;Non-nil is returned if the point moved, nil otherwise.
4413 ;;
4414 ;;Note that this function might do hidden buffer changes. See the
4415 ;;comment at the start of cc-engine.el for more info."
4416 ;;
4417 ;; (save-restriction
4418 ;; (when limit
4419 ;; (narrow-to-region limit (point-max)))
4420 ;;
4421 ;; (let ((start (point)))
4422 ;; (catch 'done
4423 ;; (while (let ((last-pos (point))
4424 ;; (stop-pos (progn
4425 ;; (skip-chars-backward skip-chars)
4426 ;; (point))))
4427 ;;
4428 ;; ;; Skip back over the same region as
4429 ;; ;; `skip-chars-backward' above, but keep to
4430 ;; ;; syntactically relevant positions.
4431 ;; (goto-char last-pos)
4432 ;; (while (and
4433 ;; ;; `re-search-backward' with a single char regexp
4434 ;; ;; should be fast.
4435 ;; (re-search-backward
4436 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4437 ;; stop-pos 'move)
4438 ;;
4439 ;; (progn
4440 ;; (cond
4441 ;; ((looking-at "\\s(")
4442 ;; ;; `paren-level' is set and we've found the
4443 ;; ;; start of the containing paren.
4444 ;; (forward-char)
4445 ;; (throw 'done t))
4446 ;;
4447 ;; ((looking-at c-ssb-sexp-end-re)
4448 ;; ;; We're at the end of a string literal or paren
4449 ;; ;; sexp (if `paren-level' is set).
4450 ;; (forward-char)
4451 ;; (condition-case nil
4452 ;; (c-backward-sexp)
4453 ;; (error
4454 ;; (goto-char limit)
4455 ;; (throw 'done t))))
4456 ;;
4457 ;; (t
4458 ;; (forward-char)
4459 ;; ;; At the end of some syntactic ws or possibly
4460 ;; ;; after a plain '/' operator.
4461 ;; (let ((pos (point)))
4462 ;; (c-backward-syntactic-ws)
4463 ;; (if (= pos (point))
4464 ;; ;; Was a plain '/' operator. Go past it.
4465 ;; (backward-char)))))
4466 ;;
4467 ;; (> (point) stop-pos))))
4468 ;;
4469 ;; ;; Now the point is either at `stop-pos' or at some
4470 ;; ;; position further back if `stop-pos' was at a
4471 ;; ;; syntactically irrelevant place.
4472 ;;
4473 ;; ;; Skip additional syntactic ws so that we don't stop
4474 ;; ;; at the end of a comment if `skip-chars' is
4475 ;; ;; something like "^/".
4476 ;; (c-backward-syntactic-ws)
4477 ;;
4478 ;; (< (point) stop-pos))))
4479 ;;
4480 ;; ;; We might want to extend this with more useful return values
4481 ;; ;; in the future.
4482 ;; (/= (point) start))))
4483
4484 \f
4485 ;; Tools for handling comments and string literals.
4486
4487 (defun c-in-literal (&optional lim detect-cpp)
4488 "Return the type of literal point is in, if any.
4489 The return value is `c' if in a C-style comment, `c++' if in a C++
4490 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4491 is non-nil and in a preprocessor line, or nil if somewhere else.
4492 Optional LIM is used as the backward limit of the search. If omitted,
4493 or nil, `c-beginning-of-defun' is used.
4494
4495 The last point calculated is cached if the cache is enabled, i.e. if
4496 `c-in-literal-cache' is bound to a two element vector.
4497
4498 Note that this function might do hidden buffer changes. See the
4499 comment at the start of cc-engine.el for more info."
4500 (save-restriction
4501 (widen)
4502 (let* ((safe-place (c-state-semi-safe-place (point)))
4503 (lit (c-state-pp-to-literal safe-place (point))))
4504 (or (cadr lit)
4505 (and detect-cpp
4506 (save-excursion (c-beginning-of-macro))
4507 'pound)))))
4508
4509 (defun c-literal-limits (&optional lim near not-in-delimiter)
4510 "Return a cons of the beginning and end positions of the comment or
4511 string surrounding point (including both delimiters), or nil if point
4512 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4513 to start parsing from. If NEAR is non-nil, then the limits of any
4514 literal next to point is returned. \"Next to\" means there's only
4515 spaces and tabs between point and the literal. The search for such a
4516 literal is done first in forward direction. If NOT-IN-DELIMITER is
4517 non-nil, the case when point is inside a starting delimiter won't be
4518 recognized. This only has effect for comments which have starting
4519 delimiters with more than one character.
4520
4521 Note that this function might do hidden buffer changes. See the
4522 comment at the start of cc-engine.el for more info."
4523
4524 (save-excursion
4525 (let* ((pos (point))
4526 (lim (or lim (c-state-semi-safe-place pos)))
4527 (pp-to-lit (save-restriction
4528 (widen)
4529 (c-state-pp-to-literal lim pos not-in-delimiter)))
4530 (state (car pp-to-lit))
4531 (lit-limits (car (cddr pp-to-lit))))
4532
4533 (cond
4534 (lit-limits)
4535
4536 (near
4537 (goto-char pos)
4538 ;; Search forward for a literal.
4539 (skip-chars-forward " \t")
4540 (cond
4541 ((looking-at c-string-limit-regexp) ; String.
4542 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4543 (point-max))))
4544
4545 ((looking-at c-comment-start-regexp) ; Line or block comment.
4546 (cons (point) (progn (c-forward-single-comment) (point))))
4547
4548 (t
4549 ;; Search backward.
4550 (skip-chars-backward " \t")
4551
4552 (let ((end (point)) beg)
4553 (cond
4554 ((save-excursion
4555 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4556 (setq beg (c-safe (c-backward-sexp 1) (point))))
4557
4558 ((and (c-safe (forward-char -2) t)
4559 (looking-at "*/"))
4560 ;; Block comment. Due to the nature of line
4561 ;; comments, they will always be covered by the
4562 ;; normal case above.
4563 (goto-char end)
4564 (c-backward-single-comment)
4565 ;; If LIM is bogus, beg will be bogus.
4566 (setq beg (point))))
4567
4568 (if beg (cons beg end))))))
4569 ))))
4570
4571 ;; In case external callers use this; it did have a docstring.
4572 (defalias 'c-literal-limits-fast 'c-literal-limits)
4573
4574 (defun c-collect-line-comments (range)
4575 "If the argument is a cons of two buffer positions (such as returned by
4576 `c-literal-limits'), and that range contains a C++ style line comment,
4577 then an extended range is returned that contains all adjacent line
4578 comments (i.e. all comments that starts in the same column with no
4579 empty lines or non-whitespace characters between them). Otherwise the
4580 argument is returned.
4581
4582 Note that this function might do hidden buffer changes. See the
4583 comment at the start of cc-engine.el for more info."
4584
4585 (save-excursion
4586 (condition-case nil
4587 (if (and (consp range) (progn
4588 (goto-char (car range))
4589 (looking-at c-line-comment-starter)))
4590 (let ((col (current-column))
4591 (beg (point))
4592 (bopl (c-point 'bopl))
4593 (end (cdr range)))
4594 ;; Got to take care in the backward direction to handle
4595 ;; comments which are preceded by code.
4596 (while (and (c-backward-single-comment)
4597 (>= (point) bopl)
4598 (looking-at c-line-comment-starter)
4599 (= col (current-column)))
4600 (setq beg (point)
4601 bopl (c-point 'bopl)))
4602 (goto-char end)
4603 (while (and (progn (skip-chars-forward " \t")
4604 (looking-at c-line-comment-starter))
4605 (= col (current-column))
4606 (prog1 (zerop (forward-line 1))
4607 (setq end (point)))))
4608 (cons beg end))
4609 range)
4610 (error range))))
4611
4612 (defun c-literal-type (range)
4613 "Convenience function that given the result of `c-literal-limits',
4614 returns nil or the type of literal that the range surrounds, one
4615 of the symbols 'c, 'c++ or 'string. It's much faster than using
4616 `c-in-literal' and is intended to be used when you need both the
4617 type of a literal and its limits.
4618
4619 Note that this function might do hidden buffer changes. See the
4620 comment at the start of cc-engine.el for more info."
4621
4622 (if (consp range)
4623 (save-excursion
4624 (goto-char (car range))
4625 (cond ((looking-at c-string-limit-regexp) 'string)
4626 ((or (looking-at "//") ; c++ line comment
4627 (and (looking-at "\\s<") ; comment starter
4628 (looking-at "#"))) ; awk comment.
4629 'c++)
4630 (t 'c))) ; Assuming the range is valid.
4631 range))
4632
4633 (defsubst c-determine-limit-get-base (start try-size)
4634 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4635 ;; This doesn't preserve point.
4636 (let* ((pos (max (- start try-size) (point-min)))
4637 (base (c-state-semi-safe-place pos))
4638 (s (parse-partial-sexp base pos)))
4639 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4640 (nth 8 s)
4641 (point))))
4642
4643 (defun c-determine-limit (how-far-back &optional start try-size)
4644 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4645 ;; (default point). This is done by going back further in the buffer then
4646 ;; searching forward for literals. The position found won't be in a
4647 ;; literal. We start searching for the sought position TRY-SIZE (default
4648 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4649 ;; :-)
4650 (save-excursion
4651 (let* ((start (or start (point)))
4652 (try-size (or try-size (* 2 how-far-back)))
4653 (base (c-determine-limit-get-base start try-size))
4654 (pos base)
4655
4656 (s (parse-partial-sexp pos pos)) ; null state.
4657 stack elt size
4658 (count 0))
4659 (while (< pos start)
4660 ;; Move forward one literal each time round this loop.
4661 ;; Move forward to the start of a comment or string.
4662 (setq s (parse-partial-sexp
4663 pos
4664 start
4665 nil ; target-depth
4666 nil ; stop-before
4667 s ; state
4668 'syntax-table)) ; stop-comment
4669
4670 ;; Gather details of the non-literal-bit - starting pos and size.
4671 (setq size (- (if (or (nth 4 s) (nth 3 s))
4672 (nth 8 s)
4673 (point))
4674 pos))
4675 (if (> size 0)
4676 (setq stack (cons (cons pos size) stack)))
4677
4678 ;; Move forward to the end of the comment/string.
4679 (if (or (nth 4 s) (nth 3 s))
4680 (setq s (parse-partial-sexp
4681 (point)
4682 start
4683 nil ; target-depth
4684 nil ; stop-before
4685 s ; state
4686 'syntax-table))) ; stop-comment
4687 (setq pos (point)))
4688
4689 ;; Now try and find enough non-literal characters recorded on the stack.
4690 ;; Go back one recorded literal each time round this loop.
4691 (while (and (< count how-far-back)
4692 stack)
4693 (setq elt (car stack)
4694 stack (cdr stack))
4695 (setq count (+ count (cdr elt))))
4696
4697 ;; Have we found enough yet?
4698 (cond
4699 ((>= count how-far-back)
4700 (+ (car elt) (- count how-far-back)))
4701 ((eq base (point-min))
4702 (point-min))
4703 (t
4704 (c-determine-limit (- how-far-back count) base try-size))))))
4705
4706 (defun c-determine-+ve-limit (how-far &optional start-pos)
4707 ;; Return a buffer position about HOW-FAR non-literal characters forward
4708 ;; from START-POS (default point), which must not be inside a literal.
4709 (save-excursion
4710 (let ((pos (or start-pos (point)))
4711 (count how-far)
4712 (s (parse-partial-sexp (point) (point)))) ; null state
4713 (while (and (not (eobp))
4714 (> count 0))
4715 ;; Scan over counted characters.
4716 (setq s (parse-partial-sexp
4717 pos
4718 (min (+ pos count) (point-max))
4719 nil ; target-depth
4720 nil ; stop-before
4721 s ; state
4722 'syntax-table)) ; stop-comment
4723 (setq count (- count (- (point) pos) 1)
4724 pos (point))
4725 ;; Scan over literal characters.
4726 (if (nth 8 s)
4727 (setq s (parse-partial-sexp
4728 pos
4729 (point-max)
4730 nil ; target-depth
4731 nil ; stop-before
4732 s ; state
4733 'syntax-table) ; stop-comment
4734 pos (point))))
4735 (point))))
4736
4737 \f
4738 ;; `c-find-decl-spots' and accompanying stuff.
4739
4740 ;; Variables used in `c-find-decl-spots' to cache the search done for
4741 ;; the first declaration in the last call. When that function starts,
4742 ;; it needs to back up over syntactic whitespace to look at the last
4743 ;; token before the region being searched. That can sometimes cause
4744 ;; moves back and forth over a quite large region of comments and
4745 ;; macros, which would be repeated for each changed character when
4746 ;; we're called during fontification, since font-lock refontifies the
4747 ;; current line for each change. Thus it's worthwhile to cache the
4748 ;; first match.
4749 ;;
4750 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4751 ;; the syntactic whitespace less or equal to some start position.
4752 ;; There's no cached value if it's nil.
4753 ;;
4754 ;; `c-find-decl-match-pos' is the match position if
4755 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4756 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4757 (defvar c-find-decl-syntactic-pos nil)
4758 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4759 (defvar c-find-decl-match-pos nil)
4760 (make-variable-buffer-local 'c-find-decl-match-pos)
4761
4762 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4763 (and c-find-decl-syntactic-pos
4764 (< change-min-pos c-find-decl-syntactic-pos)
4765 (setq c-find-decl-syntactic-pos nil)))
4766
4767 ; (defface c-debug-decl-spot-face
4768 ; '((t (:background "Turquoise")))
4769 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4770 ; (defface c-debug-decl-sws-face
4771 ; '((t (:background "Khaki")))
4772 ; "Debug face to mark the syntactic whitespace between the declaration
4773 ; spots and the preceding token end.")
4774
4775 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4776 (when (facep 'c-debug-decl-spot-face)
4777 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4778 (c-debug-add-face (max match-pos (point-min)) decl-pos
4779 'c-debug-decl-sws-face)
4780 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4781 'c-debug-decl-spot-face))))
4782 (defmacro c-debug-remove-decl-spot-faces (beg end)
4783 (when (facep 'c-debug-decl-spot-face)
4784 `(c-save-buffer-state ()
4785 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4786 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4787
4788 (defmacro c-find-decl-prefix-search ()
4789 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4790 ;; but it contains lots of free variables that refer to things
4791 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4792 ;; if there is a match, otherwise at `cfd-limit'.
4793 ;;
4794 ;; The macro moves point forward to the next putative start of a declaration
4795 ;; or cfd-limit. This decl start is the next token after a "declaration
4796 ;; prefix". The declaration prefix is the earlier of `cfd-prop-match' and
4797 ;; `cfd-re-match'. `cfd-match-pos' is set to the decl prefix.
4798 ;;
4799 ;; This macro might do hidden buffer changes.
4800
4801 '(progn
4802 ;; Find the next property match position if we haven't got one already.
4803 (unless cfd-prop-match
4804 (save-excursion
4805 (while (progn
4806 (goto-char (c-next-single-property-change
4807 (point) 'c-type nil cfd-limit))
4808 (and (< (point) cfd-limit)
4809 (not (eq (c-get-char-property (1- (point)) 'c-type)
4810 'c-decl-end)))))
4811 (setq cfd-prop-match (point))))
4812
4813 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4814 ;; got one already.
4815 (unless cfd-re-match
4816
4817 (if (> cfd-re-match-end (point))
4818 (goto-char cfd-re-match-end))
4819
4820 ;; Each time round, the next `while' moves forward over a pseudo match
4821 ;; of `c-decl-prefix-or-start-re' which is either inside a literal, or
4822 ;; is a ":" not preceded by "public", etc.. `cfd-re-match' and
4823 ;; `cfd-re-match-end' get set.
4824 (while
4825 (progn
4826 (setq cfd-re-match-end (re-search-forward c-decl-prefix-or-start-re
4827 cfd-limit 'move))
4828 (cond
4829 ((null cfd-re-match-end)
4830 ;; No match. Finish up and exit the loop.
4831 (setq cfd-re-match cfd-limit)
4832 nil)
4833 ((c-got-face-at
4834 (if (setq cfd-re-match (match-end 1))
4835 ;; Matched the end of a token preceding a decl spot.
4836 (progn
4837 (goto-char cfd-re-match)
4838 (1- cfd-re-match))
4839 ;; Matched a token that start a decl spot.
4840 (goto-char (match-beginning 0))
4841 (point))
4842 c-literal-faces)
4843 ;; Pseudo match inside a comment or string literal. Skip out
4844 ;; of comments and string literals.
4845 (while (progn
4846 (goto-char (c-next-single-property-change
4847 (point) 'face nil cfd-limit))
4848 (and (< (point) cfd-limit)
4849 (c-got-face-at (point) c-literal-faces))))
4850 t) ; Continue the loop over pseudo matches.
4851 ((and (match-string 1)
4852 (string= (match-string 1) ":")
4853 (save-excursion
4854 (or (/= (c-backward-token-2 2) 0) ; no search limit. :-(
4855 (not (looking-at c-decl-start-colon-kwd-re)))))
4856 ;; Found a ":" which isn't part of "public:", etc.
4857 t)
4858 (t nil)))) ;; Found a real match. Exit the pseudo-match loop.
4859
4860 ;; If our match was at the decl start, we have to back up over the
4861 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4862 ;; any decl spots in the syntactic ws.
4863 (unless cfd-re-match
4864 (c-backward-syntactic-ws)
4865 (setq cfd-re-match (point))))
4866
4867 ;; Choose whichever match is closer to the start.
4868 (if (< cfd-re-match cfd-prop-match)
4869 (setq cfd-match-pos cfd-re-match
4870 cfd-re-match nil)
4871 (setq cfd-match-pos cfd-prop-match
4872 cfd-prop-match nil))
4873
4874 (goto-char cfd-match-pos)
4875
4876 (when (< cfd-match-pos cfd-limit)
4877 ;; Skip forward past comments only so we don't skip macros.
4878 (c-forward-comments)
4879 ;; Set the position to continue at. We can avoid going over
4880 ;; the comments skipped above a second time, but it's possible
4881 ;; that the comment skipping has taken us past `cfd-prop-match'
4882 ;; since the property might be used inside comments.
4883 (setq cfd-continue-pos (if cfd-prop-match
4884 (min cfd-prop-match (point))
4885 (point))))))
4886
4887 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
4888 ;; Call CFD-FUN for each possible spot for a declaration, cast or
4889 ;; label from the point to CFD-LIMIT.
4890 ;;
4891 ;; CFD-FUN is called with point at the start of the spot. It's passed two
4892 ;; arguments: The first is the end position of the token preceding the spot,
4893 ;; or 0 for the implicit match at bob. The second is a flag that is t when
4894 ;; the match is inside a macro. Point should be moved forward by at least
4895 ;; one token.
4896 ;;
4897 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
4898 ;; it should return non-nil to ensure that the next search will find them.
4899 ;;
4900 ;; Such a spot is:
4901 ;; o The first token after bob.
4902 ;; o The first token after the end of submatch 1 in
4903 ;; `c-decl-prefix-or-start-re' when that submatch matches. This
4904 ;; submatch is typically a (L or R) brace or paren, a ;, or a ,.
4905 ;; o The start of each `c-decl-prefix-or-start-re' match when
4906 ;; submatch 1 doesn't match. This is, for example, the keyword
4907 ;; "class" in Pike.
4908 ;; o The start of a previously recognized declaration; "recognized"
4909 ;; means that the last char of the previous token has a `c-type'
4910 ;; text property with the value `c-decl-end'; this only holds
4911 ;; when `c-type-decl-end-used' is set.
4912 ;;
4913 ;; Only a spot that match CFD-DECL-RE and whose face is in the
4914 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
4915 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
4916 ;;
4917 ;; If the match is inside a macro then the buffer is narrowed to the
4918 ;; end of it, so that CFD-FUN can investigate the following tokens
4919 ;; without matching something that begins inside a macro and ends
4920 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
4921 ;; CFD-FACE-CHECKLIST checks exist.
4922 ;;
4923 ;; The spots are visited approximately in order from top to bottom.
4924 ;; It's however the positions where `c-decl-prefix-or-start-re'
4925 ;; matches and where `c-decl-end' properties are found that are in
4926 ;; order. Since the spots often are at the following token, they
4927 ;; might be visited out of order insofar as more spots are reported
4928 ;; later on within the syntactic whitespace between the match
4929 ;; positions and their spots.
4930 ;;
4931 ;; It's assumed that comments and strings are fontified in the
4932 ;; searched range.
4933 ;;
4934 ;; This is mainly used in fontification, and so has an elaborate
4935 ;; cache to handle repeated calls from the same start position; see
4936 ;; the variables above.
4937 ;;
4938 ;; All variables in this function begin with `cfd-' to avoid name
4939 ;; collision with the (dynamically bound) variables used in CFD-FUN.
4940 ;;
4941 ;; This function might do hidden buffer changes.
4942
4943 (let ((cfd-start-pos (point)) ; never changed
4944 (cfd-buffer-end (point-max))
4945 ;; The end of the token preceding the decl spot last found
4946 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
4947 ;; no match.
4948 cfd-re-match
4949 ;; The end position of the last `c-decl-prefix-or-start-re'
4950 ;; match. If this is greater than `cfd-continue-pos', the
4951 ;; next regexp search is started here instead.
4952 (cfd-re-match-end (point-min))
4953 ;; The end of the last `c-decl-end' found by
4954 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
4955 ;; match. If searching for the property isn't needed then we
4956 ;; disable it by setting it to `cfd-limit' directly.
4957 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
4958 ;; The end of the token preceding the decl spot last found by
4959 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
4960 ;; bob. `cfd-limit' if there's no match. In other words,
4961 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
4962 (cfd-match-pos cfd-limit)
4963 ;; The position to continue searching at.
4964 cfd-continue-pos
4965 ;; The position of the last "real" token we've stopped at.
4966 ;; This can be greater than `cfd-continue-pos' when we get
4967 ;; hits inside macros or at `c-decl-end' positions inside
4968 ;; comments.
4969 (cfd-token-pos 0)
4970 ;; The end position of the last entered macro.
4971 (cfd-macro-end 0))
4972
4973 ;; Initialize by finding a syntactically relevant start position
4974 ;; before the point, and do the first `c-decl-prefix-or-start-re'
4975 ;; search unless we're at bob.
4976
4977 (let (start-in-literal start-in-macro syntactic-pos)
4978 ;; Must back up a bit since we look for the end of the previous
4979 ;; statement or declaration, which is earlier than the first
4980 ;; returned match.
4981
4982 ;; This `cond' moves back over any literals or macros. It has special
4983 ;; handling for when the region being searched is entirely within a
4984 ;; macro. It sets `cfd-continue-pos' (unless we've reached
4985 ;; `cfd-limit').
4986 (cond
4987 ;; First we need to move to a syntactically relevant position.
4988 ;; Begin by backing out of comment or string literals.
4989 ;;
4990 ;; This arm of the cond actually triggers if we're in a literal,
4991 ;; and cfd-limit is at most at BONL.
4992 ((and
4993 ;; This arm of the `and' moves backwards out of a literal when
4994 ;; the face at point is a literal face. In this case, its value
4995 ;; is always non-nil.
4996 (when (c-got-face-at (point) c-literal-faces)
4997 ;; Try to use the faces to back up to the start of the
4998 ;; literal. FIXME: What if the point is on a declaration
4999 ;; inside a comment?
5000 (while (and (not (bobp))
5001 (c-got-face-at (1- (point)) c-literal-faces))
5002 (goto-char (previous-single-property-change
5003 (point) 'face nil (point-min))))
5004
5005 ;; XEmacs doesn't fontify the quotes surrounding string
5006 ;; literals.
5007 (and (featurep 'xemacs)
5008 (eq (get-text-property (point) 'face)
5009 'font-lock-string-face)
5010 (not (bobp))
5011 (progn (backward-char)
5012 (not (looking-at c-string-limit-regexp)))
5013 (forward-char))
5014
5015 ;; Don't trust the literal to contain only literal faces
5016 ;; (the font lock package might not have fontified the
5017 ;; start of it at all, for instance) so check that we have
5018 ;; arrived at something that looks like a start or else
5019 ;; resort to `c-literal-limits'.
5020 (unless (looking-at c-literal-start-regexp)
5021 (let ((range (c-literal-limits)))
5022 (if range (goto-char (car range)))))
5023
5024 (setq start-in-literal (point))) ; end of `and' arm.
5025
5026 ;; The start is in a literal. If the limit is in the same
5027 ;; one we don't have to find a syntactic position etc. We
5028 ;; only check that if the limit is at or before bonl to save
5029 ;; time; it covers the by far most common case when font-lock
5030 ;; refontifies the current line only.
5031 (<= cfd-limit (c-point 'bonl cfd-start-pos))
5032 (save-excursion
5033 (goto-char cfd-start-pos)
5034 (while (progn
5035 (goto-char (c-next-single-property-change
5036 (point) 'face nil cfd-limit))
5037 (and (< (point) cfd-limit)
5038 (c-got-face-at (point) c-literal-faces))))
5039 (= (point) cfd-limit))) ; end of `cond' arm condition
5040
5041 ;; Completely inside a literal. Set up variables to trig the
5042 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
5043 ;; find a suitable start position.
5044 (setq cfd-continue-pos start-in-literal)) ; end of `cond' arm
5045
5046 ;; Check if the region might be completely inside a macro, to
5047 ;; optimize that like the completely-inside-literal above.
5048 ((save-excursion
5049 (and (= (forward-line 1) 0)
5050 (bolp) ; forward-line has funny behavior at eob.
5051 (>= (point) cfd-limit)
5052 (progn (backward-char)
5053 (eq (char-before) ?\\))))
5054 ;; (Maybe) completely inside a macro. Only need to trig the
5055 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
5056 ;; set things up.
5057 (setq cfd-continue-pos (1- cfd-start-pos)
5058 start-in-macro t))
5059
5060 ;; The default arm of the `cond' moves back over any macro we're in
5061 ;; and over any syntactic WS. It sets `c-find-decl-syntactic-pos'.
5062 (t
5063 ;; Back out of any macro so we don't miss any declaration
5064 ;; that could follow after it.
5065 (when (c-beginning-of-macro)
5066 (setq start-in-macro t))
5067
5068 ;; Now we're at a proper syntactically relevant position so we
5069 ;; can use the cache. But first clear it if it applied
5070 ;; further down.
5071 (c-invalidate-find-decl-cache cfd-start-pos)
5072
5073 (setq syntactic-pos (point))
5074 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
5075 ;; Don't have to do this if the cache is relevant here,
5076 ;; typically if the same line is refontified again. If
5077 ;; we're just some syntactic whitespace further down we can
5078 ;; still use the cache to limit the skipping.
5079 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
5080
5081 ;; If we hit `c-find-decl-syntactic-pos' and
5082 ;; `c-find-decl-match-pos' is set then we install the cached
5083 ;; values. If we hit `c-find-decl-syntactic-pos' and
5084 ;; `c-find-decl-match-pos' is nil then we know there's no decl
5085 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
5086 ;; and so we can continue the search from this point. If we
5087 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
5088 ;; the right spot to begin searching anyway.
5089 (if (and (eq (point) c-find-decl-syntactic-pos)
5090 c-find-decl-match-pos)
5091 (setq cfd-match-pos c-find-decl-match-pos
5092 cfd-continue-pos syntactic-pos)
5093
5094 (setq c-find-decl-syntactic-pos syntactic-pos)
5095
5096 (when (if (bobp)
5097 ;; Always consider bob a match to get the first
5098 ;; declaration in the file. Do this separately instead of
5099 ;; letting `c-decl-prefix-or-start-re' match bob, so that
5100 ;; regexp always can consume at least one character to
5101 ;; ensure that we won't get stuck in an infinite loop.
5102 (setq cfd-re-match 0)
5103 (backward-char)
5104 (c-beginning-of-current-token)
5105 (< (point) cfd-limit))
5106 ;; Do an initial search now. In the bob case above it's
5107 ;; only done to search for a `c-decl-end' spot.
5108 (c-find-decl-prefix-search)) ; sets cfd-continue-pos
5109
5110 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
5111 cfd-match-pos))))) ; end of `cond'
5112
5113 ;; Advance `cfd-continue-pos' if it's before the start position.
5114 ;; The closest continue position that might have effect at or
5115 ;; after the start depends on what we started in. This also
5116 ;; finds a suitable start position in the special cases when the
5117 ;; region is completely within a literal or macro.
5118 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
5119
5120 (cond
5121 (start-in-macro
5122 ;; If we're in a macro then it's the closest preceding token
5123 ;; in the macro. Check this before `start-in-literal',
5124 ;; since if we're inside a literal in a macro, the preceding
5125 ;; token is earlier than any `c-decl-end' spot inside the
5126 ;; literal (comment).
5127 (goto-char (or start-in-literal cfd-start-pos))
5128 ;; The only syntactic ws in macros are comments.
5129 (c-backward-comments)
5130 (backward-char)
5131 (c-beginning-of-current-token))
5132
5133 (start-in-literal
5134 ;; If we're in a comment it can only be the closest
5135 ;; preceding `c-decl-end' position within that comment, if
5136 ;; any. Go back to the beginning of such a property so that
5137 ;; `c-find-decl-prefix-search' will find the end of it.
5138 ;; (Can't stop at the end and install it directly on
5139 ;; `cfd-prop-match' since that variable might be cleared
5140 ;; after `cfd-fun' below.)
5141 ;;
5142 ;; Note that if the literal is a string then the property
5143 ;; search will simply skip to the beginning of it right
5144 ;; away.
5145 (if (not c-type-decl-end-used)
5146 (goto-char start-in-literal)
5147 (goto-char cfd-start-pos)
5148 (while (progn
5149 (goto-char (previous-single-property-change
5150 (point) 'c-type nil start-in-literal))
5151 (and (> (point) start-in-literal)
5152 (not (eq (c-get-char-property (point) 'c-type)
5153 'c-decl-end))))))
5154
5155 (when (= (point) start-in-literal)
5156 ;; Didn't find any property inside the comment, so we can
5157 ;; skip it entirely. (This won't skip past a string, but
5158 ;; that'll be handled quickly by the next
5159 ;; `c-find-decl-prefix-search' anyway.)
5160 (c-forward-single-comment)
5161 (if (> (point) cfd-limit)
5162 (goto-char cfd-limit))))
5163
5164 (t
5165 ;; If we started in normal code, the only match that might
5166 ;; apply before the start is what we already got in
5167 ;; `cfd-match-pos' so we can continue at the start position.
5168 ;; (Note that we don't get here if the first match is below
5169 ;; it.)
5170 (goto-char cfd-start-pos))) ; end of `cond'
5171
5172 ;; Delete found matches if they are before our new continue
5173 ;; position, so that `c-find-decl-prefix-search' won't back up
5174 ;; to them later on.
5175 (setq cfd-continue-pos (point))
5176 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5177 (setq cfd-re-match nil))
5178 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5179 (setq cfd-prop-match nil))) ; end of `when'
5180
5181 (if syntactic-pos
5182 ;; This is the normal case and we got a proper syntactic
5183 ;; position. If there's a match then it's always outside
5184 ;; macros and comments, so advance to the next token and set
5185 ;; `cfd-token-pos'. The loop below will later go back using
5186 ;; `cfd-continue-pos' to fix declarations inside the
5187 ;; syntactic ws.
5188 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5189 (goto-char syntactic-pos)
5190 (c-forward-syntactic-ws)
5191 (and cfd-continue-pos
5192 (< cfd-continue-pos (point))
5193 (setq cfd-token-pos (point))))
5194
5195 ;; Have one of the special cases when the region is completely
5196 ;; within a literal or macro. `cfd-continue-pos' is set to a
5197 ;; good start position for the search, so do it.
5198 (c-find-decl-prefix-search)))
5199
5200 ;; Now loop, one decl spot per iteration. We already have the first
5201 ;; match in `cfd-match-pos'.
5202 (while (progn
5203 ;; Go forward over "false matches", one per iteration.
5204 (while (and
5205 (< cfd-match-pos cfd-limit)
5206
5207 (or
5208 ;; Kludge to filter out matches on the "<" that
5209 ;; aren't open parens, for the sake of languages
5210 ;; that got `c-recognize-<>-arglists' set.
5211 (and (eq (char-before cfd-match-pos) ?<)
5212 (not (c-get-char-property (1- cfd-match-pos)
5213 'syntax-table)))
5214
5215 ;; If `cfd-continue-pos' is less or equal to
5216 ;; `cfd-token-pos', we've got a hit inside a macro
5217 ;; that's in the syntactic whitespace before the last
5218 ;; "real" declaration we've checked. If they're equal
5219 ;; we've arrived at the declaration a second time, so
5220 ;; there's nothing to do.
5221 (= cfd-continue-pos cfd-token-pos)
5222
5223 (progn
5224 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5225 ;; we're still searching for declarations embedded in
5226 ;; the syntactic whitespace. In that case we need
5227 ;; only to skip comments and not macros, since they
5228 ;; can't be nested, and that's already been done in
5229 ;; `c-find-decl-prefix-search'.
5230 (when (> cfd-continue-pos cfd-token-pos)
5231 (c-forward-syntactic-ws)
5232 (setq cfd-token-pos (point)))
5233
5234 ;; Continue if the following token fails the
5235 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5236 (when (or (>= (point) cfd-limit)
5237 (not (looking-at cfd-decl-re))
5238 (and cfd-face-checklist
5239 (not (c-got-face-at
5240 (point) cfd-face-checklist))))
5241 (goto-char cfd-continue-pos)
5242 t)))
5243
5244 (< (point) cfd-limit)) ; end of "false matches" condition
5245 (c-find-decl-prefix-search)) ; end of "false matches" loop
5246
5247 (< (point) cfd-limit)) ; end of condition for "decl-spot" while
5248
5249 (when (and
5250 (>= (point) cfd-start-pos)
5251
5252 (progn
5253 ;; Narrow to the end of the macro if we got a hit inside
5254 ;; one, to avoid recognizing things that start inside the
5255 ;; macro and end outside it.
5256 (when (> cfd-match-pos cfd-macro-end)
5257 ;; Not in the same macro as in the previous round.
5258 (save-excursion
5259 (goto-char cfd-match-pos)
5260 (setq cfd-macro-end
5261 (if (save-excursion (and (c-beginning-of-macro)
5262 (< (point) cfd-match-pos)))
5263 (progn (c-end-of-macro)
5264 (point))
5265 0))))
5266
5267 (if (zerop cfd-macro-end)
5268 t
5269 (if (> cfd-macro-end (point))
5270 (progn (narrow-to-region (point-min) cfd-macro-end)
5271 t)
5272 ;; The matched token was the last thing in the macro,
5273 ;; so the whole match is bogus.
5274 (setq cfd-macro-end 0)
5275 nil)))) ; end of when condition
5276
5277 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5278 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5279 (setq cfd-prop-match nil))
5280
5281 (when (/= cfd-macro-end 0)
5282 ;; Restore limits if we did macro narrowing above.
5283 (narrow-to-region (point-min) cfd-buffer-end)))
5284
5285 (goto-char cfd-continue-pos)
5286 (if (= cfd-continue-pos cfd-limit)
5287 (setq cfd-match-pos cfd-limit)
5288 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5289 ; cfd-match-pos, etc.
5290
5291 \f
5292 ;; A cache for found types.
5293
5294 ;; Buffer local variable that contains an obarray with the types we've
5295 ;; found. If a declaration is recognized somewhere we record the
5296 ;; fully qualified identifier in it to recognize it as a type
5297 ;; elsewhere in the file too. This is not accurate since we do not
5298 ;; bother with the scoping rules of the languages, but in practice the
5299 ;; same name is seldom used as both a type and something else in a
5300 ;; file, and we only use this as a last resort in ambiguous cases (see
5301 ;; `c-forward-decl-or-cast-1').
5302 ;;
5303 ;; Not every type need be in this cache. However, things which have
5304 ;; ceased to be types must be removed from it.
5305 ;;
5306 ;; Template types in C++ are added here too but with the template
5307 ;; arglist replaced with "<>" in references or "<" for the one in the
5308 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5309 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5310 ;; template specs can be fairly sized programs in themselves) and
5311 ;; improves the hit ratio (it's a type regardless of the template
5312 ;; args; it's just not the same type, but we're only interested in
5313 ;; recognizing types, not telling distinct types apart). Note that
5314 ;; template types in references are added here too; from the example
5315 ;; above there will also be an entry "Foo<".
5316 (defvar c-found-types nil)
5317 (make-variable-buffer-local 'c-found-types)
5318
5319 (defsubst c-clear-found-types ()
5320 ;; Clears `c-found-types'.
5321 (setq c-found-types (make-vector 53 0)))
5322
5323 (defun c-add-type (from to)
5324 ;; Add the given region as a type in `c-found-types'. If the region
5325 ;; doesn't match an existing type but there is a type which is equal
5326 ;; to the given one except that the last character is missing, then
5327 ;; the shorter type is removed. That's done to avoid adding all
5328 ;; prefixes of a type as it's being entered and font locked. This
5329 ;; doesn't cover cases like when characters are removed from a type
5330 ;; or added in the middle. We'd need the position of point when the
5331 ;; font locking is invoked to solve this well.
5332 ;;
5333 ;; This function might do hidden buffer changes.
5334 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5335 (unless (intern-soft type c-found-types)
5336 (unintern (substring type 0 -1) c-found-types)
5337 (intern type c-found-types))))
5338
5339 (defun c-unfind-type (name)
5340 ;; Remove the "NAME" from c-found-types, if present.
5341 (unintern name c-found-types))
5342
5343 (defsubst c-check-type (from to)
5344 ;; Return non-nil if the given region contains a type in
5345 ;; `c-found-types'.
5346 ;;
5347 ;; This function might do hidden buffer changes.
5348 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5349 c-found-types))
5350
5351 (defun c-list-found-types ()
5352 ;; Return all the types in `c-found-types' as a sorted list of
5353 ;; strings.
5354 (let (type-list)
5355 (mapatoms (lambda (type)
5356 (setq type-list (cons (symbol-name type)
5357 type-list)))
5358 c-found-types)
5359 (sort type-list 'string-lessp)))
5360
5361 ;; Shut up the byte compiler.
5362 (defvar c-maybe-stale-found-type)
5363
5364 (defun c-trim-found-types (beg end old-len)
5365 ;; An after change function which, in conjunction with the info in
5366 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5367 ;; from `c-found-types', should this type have become stale. For
5368 ;; example, this happens to "foo" when "foo \n bar();" becomes
5369 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5370 ;; the fontification.
5371 ;;
5372 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5373 ;; type?
5374 (when (> end beg)
5375 (save-excursion
5376 (when (< end (point-max))
5377 (goto-char end)
5378 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5379 (progn (goto-char end)
5380 (c-end-of-current-token)))
5381 (c-unfind-type (buffer-substring-no-properties
5382 end (point)))))
5383 (when (> beg (point-min))
5384 (goto-char beg)
5385 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5386 (progn (goto-char beg)
5387 (c-beginning-of-current-token)))
5388 (c-unfind-type (buffer-substring-no-properties
5389 (point) beg))))))
5390
5391 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5392 (cond
5393 ;; Changing the amount of (already existing) whitespace - don't do anything.
5394 ((and (c-partial-ws-p beg end)
5395 (or (= beg end) ; removal of WS
5396 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5397
5398 ;; The syntactic relationship which defined a "found type" has been
5399 ;; destroyed.
5400 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5401 (c-unfind-type (cadr c-maybe-stale-found-type)))
5402 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5403 )))
5404
5405 \f
5406 ;; Setting and removing syntax properties on < and > in languages (C++
5407 ;; and Java) where they can be template/generic delimiters as well as
5408 ;; their normal meaning of "less/greater than".
5409
5410 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5411 ;; be delimiters, they are marked as such with the category properties
5412 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5413
5414 ;; STRATEGY:
5415 ;;
5416 ;; It is impossible to determine with certainty whether a <..> pair in
5417 ;; C++ is two comparison operators or is template delimiters, unless
5418 ;; one duplicates a lot of a C++ compiler. For example, the following
5419 ;; code fragment:
5420 ;;
5421 ;; foo (a < b, c > d) ;
5422 ;;
5423 ;; could be a function call with two integer parameters (each a
5424 ;; relational expression), or it could be a constructor for class foo
5425 ;; taking one parameter d of templated type "a < b, c >". They are
5426 ;; somewhat easier to distinguish in Java.
5427 ;;
5428 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5429 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5430 ;; individually when their context so indicated. This gave rise to
5431 ;; intractable problems when one of a matching pair was deleted, or
5432 ;; pulled into a literal.]
5433 ;;
5434 ;; At each buffer change, the syntax-table properties are removed in a
5435 ;; before-change function and reapplied, when needed, in an
5436 ;; after-change function. It is far more important that the
5437 ;; properties get removed when they they are spurious than that they
5438 ;; be present when wanted.
5439 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5440 (defun c-clear-<-pair-props (&optional pos)
5441 ;; POS (default point) is at a < character. If it is marked with
5442 ;; open paren syntax-table text property, remove the property,
5443 ;; together with the close paren property on the matching > (if
5444 ;; any).
5445 (save-excursion
5446 (if pos
5447 (goto-char pos)
5448 (setq pos (point)))
5449 (when (equal (c-get-char-property (point) 'syntax-table)
5450 c-<-as-paren-syntax)
5451 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5452 (c-go-list-forward))
5453 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5454 c->-as-paren-syntax) ; should always be true.
5455 (c-unmark-<->-as-paren (1- (point))))
5456 (c-unmark-<->-as-paren pos))))
5457
5458 (defun c-clear->-pair-props (&optional pos)
5459 ;; POS (default point) is at a > character. If it is marked with
5460 ;; close paren syntax-table property, remove the property, together
5461 ;; with the open paren property on the matching < (if any).
5462 (save-excursion
5463 (if pos
5464 (goto-char pos)
5465 (setq pos (point)))
5466 (when (equal (c-get-char-property (point) 'syntax-table)
5467 c->-as-paren-syntax)
5468 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5469 (c-go-up-list-backward))
5470 (when (equal (c-get-char-property (point) 'syntax-table)
5471 c-<-as-paren-syntax) ; should always be true.
5472 (c-unmark-<->-as-paren (point)))
5473 (c-unmark-<->-as-paren pos))))
5474
5475 (defun c-clear-<>-pair-props (&optional pos)
5476 ;; POS (default point) is at a < or > character. If it has an
5477 ;; open/close paren syntax-table property, remove this property both
5478 ;; from the current character and its partner (which will also be
5479 ;; thusly marked).
5480 (cond
5481 ((eq (char-after) ?\<)
5482 (c-clear-<-pair-props pos))
5483 ((eq (char-after) ?\>)
5484 (c-clear->-pair-props pos))
5485 (t (c-benign-error
5486 "c-clear-<>-pair-props called from wrong position"))))
5487
5488 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5489 ;; POS (default point) is at a < character. If it is both marked
5490 ;; with open/close paren syntax-table property, and has a matching >
5491 ;; (also marked) which is after LIM, remove the property both from
5492 ;; the current > and its partner. Return t when this happens, nil
5493 ;; when it doesn't.
5494 (save-excursion
5495 (if pos
5496 (goto-char pos)
5497 (setq pos (point)))
5498 (when (equal (c-get-char-property (point) 'syntax-table)
5499 c-<-as-paren-syntax)
5500 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5501 (c-go-list-forward))
5502 (when (and (>= (point) lim)
5503 (equal (c-get-char-property (1- (point)) 'syntax-table)
5504 c->-as-paren-syntax)) ; should always be true.
5505 (c-unmark-<->-as-paren (1- (point)))
5506 (c-unmark-<->-as-paren pos))
5507 t)))
5508
5509 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5510 ;; POS (default point) is at a > character. If it is both marked
5511 ;; with open/close paren syntax-table property, and has a matching <
5512 ;; (also marked) which is before LIM, remove the property both from
5513 ;; the current < and its partner. Return t when this happens, nil
5514 ;; when it doesn't.
5515 (save-excursion
5516 (if pos
5517 (goto-char pos)
5518 (setq pos (point)))
5519 (when (equal (c-get-char-property (point) 'syntax-table)
5520 c->-as-paren-syntax)
5521 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5522 (c-go-up-list-backward))
5523 (when (and (<= (point) lim)
5524 (equal (c-get-char-property (point) 'syntax-table)
5525 c-<-as-paren-syntax)) ; should always be true.
5526 (c-unmark-<->-as-paren (point))
5527 (c-unmark-<->-as-paren pos))
5528 t)))
5529
5530 ;; Set by c-common-init in cc-mode.el.
5531 (defvar c-new-BEG)
5532 (defvar c-new-END)
5533
5534 (defun c-before-change-check-<>-operators (beg end)
5535 ;; Unmark certain pairs of "< .... >" which are currently marked as
5536 ;; template/generic delimiters. (This marking is via syntax-table
5537 ;; text properties).
5538 ;;
5539 ;; These pairs are those which are in the current "statement" (i.e.,
5540 ;; the region between the {, }, or ; before BEG and the one after
5541 ;; END), and which enclose any part of the interval (BEG END).
5542 ;;
5543 ;; Note that in C++ (?and Java), template/generic parens cannot
5544 ;; enclose a brace or semicolon, so we use these as bounds on the
5545 ;; region we must work on.
5546 ;;
5547 ;; This function is called from before-change-functions (via
5548 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5549 ;; and point is undefined, both at entry and exit.
5550 ;;
5551 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5552 ;; 2010-01-29.
5553 (save-excursion
5554 (let ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5555 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5556 new-beg new-end need-new-beg need-new-end)
5557 ;; Locate the barrier before the changed region
5558 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5559 (c-syntactic-skip-backward "^;{}" (c-determine-limit 512))
5560 (setq new-beg (point))
5561
5562 ;; Remove the syntax-table/category properties from each pertinent <...>
5563 ;; pair. Firsly, the ones with the < before beg and > after beg.
5564 (while
5565 (c-search-forward-char-property 'syntax-table c-<-as-paren-syntax beg)
5566 (if (c-clear-<-pair-props-if-match-after beg (1- (point)))
5567 (setq need-new-beg t)))
5568
5569 ;; Locate the barrier after END.
5570 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5571 (c-syntactic-re-search-forward "[;{}]" (c-determine-+ve-limit 512) 'end)
5572 (setq new-end (point))
5573
5574 ;; Remove syntax-table properties from the remaining pertinent <...>
5575 ;; pairs, those with a > after end and < before end.
5576 (while (c-search-backward-char-property 'syntax-table c->-as-paren-syntax end)
5577 (if (c-clear->-pair-props-if-match-before end)
5578 (setq need-new-end t)))
5579
5580 ;; Extend the fontification region, if needed.
5581 (when need-new-beg
5582 (goto-char new-beg)
5583 (c-forward-syntactic-ws)
5584 (and (< (point) c-new-BEG) (setq c-new-BEG (point))))
5585
5586 (when need-new-end
5587 (and (> new-end c-new-END) (setq c-new-END new-end))))))
5588
5589 (defun c-after-change-check-<>-operators (beg end)
5590 ;; This is called from `after-change-functions' when
5591 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5592 ;; chars with paren syntax become part of another operator like "<<"
5593 ;; or ">=".
5594 ;;
5595 ;; This function might do hidden buffer changes.
5596
5597 (save-excursion
5598 (goto-char beg)
5599 (when (or (looking-at "[<>]")
5600 (< (skip-chars-backward "<>") 0))
5601
5602 (goto-char beg)
5603 (c-beginning-of-current-token)
5604 (when (and (< (point) beg)
5605 (looking-at c-<>-multichar-token-regexp)
5606 (< beg (setq beg (match-end 0))))
5607 (while (progn (skip-chars-forward "^<>" beg)
5608 (< (point) beg))
5609 (c-clear-<>-pair-props)
5610 (forward-char))))
5611
5612 (when (< beg end)
5613 (goto-char end)
5614 (when (or (looking-at "[<>]")
5615 (< (skip-chars-backward "<>") 0))
5616
5617 (goto-char end)
5618 (c-beginning-of-current-token)
5619 (when (and (< (point) end)
5620 (looking-at c-<>-multichar-token-regexp)
5621 (< end (setq end (match-end 0))))
5622 (while (progn (skip-chars-forward "^<>" end)
5623 (< (point) end))
5624 (c-clear-<>-pair-props)
5625 (forward-char)))))))
5626
5627
5628 \f
5629 ;; Handling of small scale constructs like types and names.
5630
5631 ;; Dynamically bound variable that instructs `c-forward-type' to also
5632 ;; treat possible types (i.e. those that it normally returns 'maybe or
5633 ;; 'found for) as actual types (and always return 'found for them).
5634 ;; This means that it records them in `c-record-type-identifiers' if
5635 ;; that is set, and that it adds them to `c-found-types'.
5636 (defvar c-promote-possible-types nil)
5637
5638 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5639 ;; mark up successfully parsed arglists with paren syntax properties on
5640 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5641 ;; `c-type' property of each argument separating comma.
5642 ;;
5643 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5644 ;; all arglists for side effects (i.e. recording types), otherwise it
5645 ;; exploits any existing paren syntax properties to quickly jump to the
5646 ;; end of already parsed arglists.
5647 ;;
5648 ;; Marking up the arglists is not the default since doing that correctly
5649 ;; depends on a proper value for `c-restricted-<>-arglists'.
5650 (defvar c-parse-and-markup-<>-arglists nil)
5651
5652 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5653 ;; not accept arglists that contain binary operators.
5654 ;;
5655 ;; This is primarily used to handle C++ template arglists. C++
5656 ;; disambiguates them by checking whether the preceding name is a
5657 ;; template or not. We can't do that, so we assume it is a template
5658 ;; if it can be parsed as one. That usually works well since
5659 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5660 ;; in almost all cases would be pointless.
5661 ;;
5662 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5663 ;; should let the comma separate the function arguments instead. And
5664 ;; in a context where the value of the expression is taken, e.g. in
5665 ;; "if (a < b || c > d)", it's probably not a template.
5666 (defvar c-restricted-<>-arglists nil)
5667
5668 ;; Dynamically bound variables that instructs
5669 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5670 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5671 ;; `c-forward-label' to record the ranges of all the type and
5672 ;; reference identifiers they encounter. They will build lists on
5673 ;; these variables where each element is a cons of the buffer
5674 ;; positions surrounding each identifier. This recording is only
5675 ;; activated when `c-record-type-identifiers' is non-nil.
5676 ;;
5677 ;; All known types that can't be identifiers are recorded, and also
5678 ;; other possible types if `c-promote-possible-types' is set.
5679 ;; Recording is however disabled inside angle bracket arglists that
5680 ;; are encountered inside names and other angle bracket arglists.
5681 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
5682 ;; instead.
5683 ;;
5684 ;; Only the names in C++ template style references (e.g. "tmpl" in
5685 ;; "tmpl<a,b>::foo") are recorded as references, other references
5686 ;; aren't handled here.
5687 ;;
5688 ;; `c-forward-label' records the label identifier(s) on
5689 ;; `c-record-ref-identifiers'.
5690 (defvar c-record-type-identifiers nil)
5691 (defvar c-record-ref-identifiers nil)
5692
5693 ;; This variable will receive a cons cell of the range of the last
5694 ;; single identifier symbol stepped over by `c-forward-name' if it's
5695 ;; successful. This is the range that should be put on one of the
5696 ;; record lists above by the caller. It's assigned nil if there's no
5697 ;; such symbol in the name.
5698 (defvar c-last-identifier-range nil)
5699
5700 (defmacro c-record-type-id (range)
5701 (if (eq (car-safe range) 'cons)
5702 ;; Always true.
5703 `(setq c-record-type-identifiers
5704 (cons ,range c-record-type-identifiers))
5705 `(let ((range ,range))
5706 (if range
5707 (setq c-record-type-identifiers
5708 (cons range c-record-type-identifiers))))))
5709
5710 (defmacro c-record-ref-id (range)
5711 (if (eq (car-safe range) 'cons)
5712 ;; Always true.
5713 `(setq c-record-ref-identifiers
5714 (cons ,range c-record-ref-identifiers))
5715 `(let ((range ,range))
5716 (if range
5717 (setq c-record-ref-identifiers
5718 (cons range c-record-ref-identifiers))))))
5719
5720 ;; Dynamically bound variable that instructs `c-forward-type' to
5721 ;; record the ranges of types that only are found. Behaves otherwise
5722 ;; like `c-record-type-identifiers'.
5723 (defvar c-record-found-types nil)
5724
5725 (defmacro c-forward-keyword-prefixed-id (type)
5726 ;; Used internally in `c-forward-keyword-clause' to move forward
5727 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5728 ;; possibly is prefixed by keywords and their associated clauses.
5729 ;; Try with a type/name first to not trip up on those that begin
5730 ;; with a keyword. Return t if a known or found type is moved
5731 ;; over. The point is clobbered if nil is returned. If range
5732 ;; recording is enabled, the identifier is recorded on as a type
5733 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
5734 ;;
5735 ;; This macro might do hidden buffer changes.
5736 `(let (res)
5737 (while (if (setq res ,(if (eq type 'type)
5738 `(c-forward-type)
5739 `(c-forward-name)))
5740 nil
5741 (and (looking-at c-keywords-regexp)
5742 (c-forward-keyword-clause 1))))
5743 (when (memq res '(t known found prefix))
5744 ,(when (eq type 'ref)
5745 `(when c-record-type-identifiers
5746 (c-record-ref-id c-last-identifier-range)))
5747 t)))
5748
5749 (defmacro c-forward-id-comma-list (type update-safe-pos)
5750 ;; Used internally in `c-forward-keyword-clause' to move forward
5751 ;; over a comma separated list of types or names using
5752 ;; `c-forward-keyword-prefixed-id'.
5753 ;;
5754 ;; This macro might do hidden buffer changes.
5755 `(while (and (progn
5756 ,(when update-safe-pos
5757 `(setq safe-pos (point)))
5758 (eq (char-after) ?,))
5759 (progn
5760 (forward-char)
5761 (c-forward-syntactic-ws)
5762 (c-forward-keyword-prefixed-id ,type)))))
5763
5764 (defun c-forward-keyword-clause (match)
5765 ;; Submatch MATCH in the current match data is assumed to surround a
5766 ;; token. If it's a keyword, move over it and any immediately
5767 ;; following clauses associated with it, stopping at the start of
5768 ;; the next token. t is returned in that case, otherwise the point
5769 ;; stays and nil is returned. The kind of clauses that are
5770 ;; recognized are those specified by `c-type-list-kwds',
5771 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5772 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5773 ;; and `c-<>-arglist-kwds'.
5774 ;;
5775 ;; This function records identifier ranges on
5776 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5777 ;; `c-record-type-identifiers' is non-nil.
5778 ;;
5779 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5780 ;; apply directly after the keyword, the type list is moved over
5781 ;; only when there is no unaccounted token before it (i.e. a token
5782 ;; that isn't moved over due to some other keyword list). The
5783 ;; identifier ranges in the list are still recorded if that should
5784 ;; be done, though.
5785 ;;
5786 ;; This function might do hidden buffer changes.
5787
5788 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
5789 ;; The call to `c-forward-<>-arglist' below is made after
5790 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5791 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5792 ;; should therefore be nil.
5793 (c-parse-and-markup-<>-arglists t)
5794 c-restricted-<>-arglists)
5795
5796 (when kwd-sym
5797 (goto-char (match-end match))
5798 (c-forward-syntactic-ws)
5799 (setq safe-pos (point))
5800
5801 (cond
5802 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
5803 (c-forward-keyword-prefixed-id type))
5804 ;; There's a type directly after a keyword in `c-type-list-kwds'.
5805 (c-forward-id-comma-list type t))
5806
5807 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
5808 (c-forward-keyword-prefixed-id ref))
5809 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
5810 (c-forward-id-comma-list ref t))
5811
5812 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
5813 (eq (char-after) ?\())
5814 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5815
5816 (forward-char)
5817 (when (and (setq pos (c-up-list-forward))
5818 (eq (char-before pos) ?\)))
5819 (when (and c-record-type-identifiers
5820 (c-keyword-member kwd-sym 'c-paren-type-kwds))
5821 ;; Use `c-forward-type' on every identifier we can find
5822 ;; inside the paren, to record the types.
5823 (while (c-syntactic-re-search-forward c-symbol-start pos t)
5824 (goto-char (match-beginning 0))
5825 (unless (c-forward-type)
5826 (looking-at c-symbol-key) ; Always matches.
5827 (goto-char (match-end 0)))))
5828
5829 (goto-char pos)
5830 (c-forward-syntactic-ws)
5831 (setq safe-pos (point))))
5832
5833 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
5834 (eq (char-after) ?<)
5835 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
5836 (c-forward-syntactic-ws)
5837 (setq safe-pos (point)))
5838
5839 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
5840 (not (looking-at c-symbol-start))
5841 (c-safe (c-forward-sexp) t))
5842 (c-forward-syntactic-ws)
5843 (setq safe-pos (point))))
5844
5845 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
5846 (if (eq (char-after) ?:)
5847 ;; If we are at the colon already, we move over the type
5848 ;; list after it.
5849 (progn
5850 (forward-char)
5851 (c-forward-syntactic-ws)
5852 (when (c-forward-keyword-prefixed-id type)
5853 (c-forward-id-comma-list type t)))
5854 ;; Not at the colon, so stop here. But the identifier
5855 ;; ranges in the type list later on should still be
5856 ;; recorded.
5857 (and c-record-type-identifiers
5858 (progn
5859 ;; If a keyword matched both one of the types above and
5860 ;; this one, we match `c-colon-type-list-re' after the
5861 ;; clause matched above.
5862 (goto-char safe-pos)
5863 (looking-at c-colon-type-list-re))
5864 (progn
5865 (goto-char (match-end 0))
5866 (c-forward-syntactic-ws)
5867 (c-forward-keyword-prefixed-id type))
5868 ;; There's a type after the `c-colon-type-list-re' match
5869 ;; after a keyword in `c-colon-type-list-kwds'.
5870 (c-forward-id-comma-list type nil))))
5871
5872 (goto-char safe-pos)
5873 t)))
5874
5875 ;; cc-mode requires cc-fonts.
5876 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
5877
5878 (defun c-forward-<>-arglist (all-types)
5879 ;; The point is assumed to be at a "<". Try to treat it as the open
5880 ;; paren of an angle bracket arglist and move forward to the
5881 ;; corresponding ">". If successful, the point is left after the
5882 ;; ">" and t is returned, otherwise the point isn't moved and nil is
5883 ;; returned. If ALL-TYPES is t then all encountered arguments in
5884 ;; the arglist that might be types are treated as found types.
5885 ;;
5886 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
5887 ;; function handles text properties on the angle brackets and argument
5888 ;; separating commas.
5889 ;;
5890 ;; `c-restricted-<>-arglists' controls how lenient the template
5891 ;; arglist recognition should be.
5892 ;;
5893 ;; This function records identifier ranges on
5894 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5895 ;; `c-record-type-identifiers' is non-nil.
5896 ;;
5897 ;; This function might do hidden buffer changes.
5898
5899 (let ((start (point))
5900 ;; If `c-record-type-identifiers' is set then activate
5901 ;; recording of any found types that constitute an argument in
5902 ;; the arglist.
5903 (c-record-found-types (if c-record-type-identifiers t)))
5904 (if (catch 'angle-bracket-arglist-escape
5905 (setq c-record-found-types
5906 (c-forward-<>-arglist-recur all-types)))
5907 (progn
5908 (when (consp c-record-found-types)
5909 (setq c-record-type-identifiers
5910 ;; `nconc' doesn't mind that the tail of
5911 ;; `c-record-found-types' is t.
5912 (nconc c-record-found-types c-record-type-identifiers)))
5913 (if (c-major-mode-is 'java-mode) (c-fontify-recorded-types-and-refs))
5914 t)
5915
5916 (goto-char start)
5917 nil)))
5918
5919 (defun c-forward-<>-arglist-recur (all-types)
5920 ;; Recursive part of `c-forward-<>-arglist'.
5921 ;;
5922 ;; This function might do hidden buffer changes.
5923 (let ((start (point)) res pos tmp
5924 ;; Cover this so that any recorded found type ranges are
5925 ;; automatically lost if it turns out to not be an angle
5926 ;; bracket arglist. It's propagated through the return value
5927 ;; on successful completion.
5928 (c-record-found-types c-record-found-types)
5929 ;; List that collects the positions after the argument
5930 ;; separating ',' in the arglist.
5931 arg-start-pos)
5932 ;; If the '<' has paren open syntax then we've marked it as an angle
5933 ;; bracket arglist before, so skip to the end.
5934 (if (and (not c-parse-and-markup-<>-arglists)
5935 (c-get-char-property (point) 'syntax-table))
5936
5937 (progn
5938 (forward-char)
5939 (if (and (c-go-up-list-forward)
5940 (eq (char-before) ?>))
5941 t
5942 ;; Got unmatched paren angle brackets. We don't clear the paren
5943 ;; syntax properties and retry, on the basis that it's very
5944 ;; unlikely that paren angle brackets become operators by code
5945 ;; manipulation. It's far more likely that it doesn't match due
5946 ;; to narrowing or some temporary change.
5947 (goto-char start)
5948 nil))
5949
5950 (forward-char) ; Forward over the opening '<'.
5951
5952 (unless (looking-at c-<-op-cont-regexp)
5953 ;; go forward one non-alphanumeric character (group) per iteration of
5954 ;; this loop.
5955 (while (and
5956 (progn
5957 (c-forward-syntactic-ws)
5958 (when (or (and c-record-type-identifiers all-types)
5959 (c-major-mode-is 'java-mode))
5960 ;; All encountered identifiers are types, so set the
5961 ;; promote flag and parse the type.
5962 (progn
5963 (c-forward-syntactic-ws)
5964 (if (looking-at "\\?")
5965 (forward-char)
5966 (when (looking-at c-identifier-start)
5967 (let ((c-promote-possible-types t)
5968 (c-record-found-types t))
5969 (c-forward-type))))
5970
5971 (c-forward-syntactic-ws)
5972
5973 (when (or (looking-at "extends")
5974 (looking-at "super"))
5975 (forward-word)
5976 (c-forward-syntactic-ws)
5977 (let ((c-promote-possible-types t)
5978 (c-record-found-types t))
5979 (c-forward-type)
5980 (c-forward-syntactic-ws)))))
5981
5982 (setq pos (point)) ; e.g. first token inside the '<'
5983
5984 ;; Note: These regexps exploit the match order in \| so
5985 ;; that "<>" is matched by "<" rather than "[^>:-]>".
5986 (c-syntactic-re-search-forward
5987 ;; Stop on ',', '|', '&', '+' and '-' to catch
5988 ;; common binary operators that could be between
5989 ;; two comparison expressions "a<b" and "c>d".
5990 "[<;{},|+&-]\\|[>)]"
5991 nil t t))
5992
5993 (cond
5994 ((eq (char-before) ?>)
5995 ;; Either an operator starting with '>' or the end of
5996 ;; the angle bracket arglist.
5997
5998 (if (looking-at c->-op-without->-cont-regexp)
5999 (progn
6000 (goto-char (match-end 0))
6001 t) ; Continue the loop.
6002
6003 ;; The angle bracket arglist is finished.
6004 (when c-parse-and-markup-<>-arglists
6005 (while arg-start-pos
6006 (c-put-c-type-property (1- (car arg-start-pos))
6007 'c-<>-arg-sep)
6008 (setq arg-start-pos (cdr arg-start-pos)))
6009 (c-mark-<-as-paren start)
6010 (c-mark->-as-paren (1- (point))))
6011 (setq res t)
6012 nil)) ; Exit the loop.
6013
6014 ((eq (char-before) ?<)
6015 ;; Either an operator starting with '<' or a nested arglist.
6016 (setq pos (point))
6017 (let (id-start id-end subres keyword-match)
6018 (cond
6019 ;; The '<' begins a multi-char operator.
6020 ((looking-at c-<-op-cont-regexp)
6021 (setq tmp (match-end 0))
6022 (goto-char (match-end 0)))
6023 ;; We're at a nested <.....>
6024 ((progn
6025 (setq tmp pos)
6026 (backward-char) ; to the '<'
6027 (and
6028 (save-excursion
6029 ;; There's always an identifier before an angle
6030 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
6031 ;; or `c-<>-arglist-kwds'.
6032 (c-backward-syntactic-ws)
6033 (setq id-end (point))
6034 (c-simple-skip-symbol-backward)
6035 (when (or (setq keyword-match
6036 (looking-at c-opt-<>-sexp-key))
6037 (not (looking-at c-keywords-regexp)))
6038 (setq id-start (point))))
6039 (setq subres
6040 (let ((c-promote-possible-types t)
6041 (c-record-found-types t))
6042 (c-forward-<>-arglist-recur
6043 (and keyword-match
6044 (c-keyword-member
6045 (c-keyword-sym (match-string 1))
6046 'c-<>-type-kwds)))))))
6047 ;; It was an angle bracket arglist.
6048 (setq c-record-found-types subres)
6049
6050 ;; Record the identifier before the template as a type
6051 ;; or reference depending on whether the arglist is last
6052 ;; in a qualified identifier.
6053 (when (and c-record-type-identifiers
6054 (not keyword-match))
6055 (if (and c-opt-identifier-concat-key
6056 (progn
6057 (c-forward-syntactic-ws)
6058 (looking-at c-opt-identifier-concat-key)))
6059 (c-record-ref-id (cons id-start id-end))
6060 (c-record-type-id (cons id-start id-end)))))
6061
6062 ;; At a "less than" operator.
6063 (t
6064 (forward-char)
6065 )))
6066 t) ; carry on looping.
6067
6068 ((and (not c-restricted-<>-arglists)
6069 (or (and (eq (char-before) ?&)
6070 (not (eq (char-after) ?&)))
6071 (eq (char-before) ?,)))
6072 ;; Just another argument. Record the position. The
6073 ;; type check stuff that made us stop at it is at
6074 ;; the top of the loop.
6075 (setq arg-start-pos (cons (point) arg-start-pos)))
6076
6077 (t
6078 ;; Got a character that can't be in an angle bracket
6079 ;; arglist argument. Abort using `throw', since
6080 ;; it's useless to try to find a surrounding arglist
6081 ;; if we're nested.
6082 (throw 'angle-bracket-arglist-escape nil))))))
6083 (if res
6084 (or c-record-found-types t)))))
6085
6086 (defun c-backward-<>-arglist (all-types &optional limit)
6087 ;; The point is assumed to be directly after a ">". Try to treat it
6088 ;; as the close paren of an angle bracket arglist and move back to
6089 ;; the corresponding "<". If successful, the point is left at
6090 ;; the "<" and t is returned, otherwise the point isn't moved and
6091 ;; nil is returned. ALL-TYPES is passed on to
6092 ;; `c-forward-<>-arglist'.
6093 ;;
6094 ;; If the optional LIMIT is given, it bounds the backward search.
6095 ;; It's then assumed to be at a syntactically relevant position.
6096 ;;
6097 ;; This is a wrapper around `c-forward-<>-arglist'. See that
6098 ;; function for more details.
6099
6100 (let ((start (point)))
6101 (backward-char)
6102 (if (and (not c-parse-and-markup-<>-arglists)
6103 (c-get-char-property (point) 'syntax-table))
6104
6105 (if (and (c-go-up-list-backward)
6106 (eq (char-after) ?<))
6107 t
6108 ;; See corresponding note in `c-forward-<>-arglist'.
6109 (goto-char start)
6110 nil)
6111
6112 (while (progn
6113 (c-syntactic-skip-backward "^<;{}" limit t)
6114
6115 (and
6116 (if (eq (char-before) ?<)
6117 t
6118 ;; Stopped at bob or a char that isn't allowed in an
6119 ;; arglist, so we've failed.
6120 (goto-char start)
6121 nil)
6122
6123 (if (> (point)
6124 (progn (c-beginning-of-current-token)
6125 (point)))
6126 ;; If we moved then the "<" was part of some
6127 ;; multicharacter token.
6128 t
6129
6130 (backward-char)
6131 (let ((beg-pos (point)))
6132 (if (c-forward-<>-arglist all-types)
6133 (cond ((= (point) start)
6134 ;; Matched the arglist. Break the while.
6135 (goto-char beg-pos)
6136 nil)
6137 ((> (point) start)
6138 ;; We started from a non-paren ">" inside an
6139 ;; arglist.
6140 (goto-char start)
6141 nil)
6142 (t
6143 ;; Matched a shorter arglist. Can be a nested
6144 ;; one so continue looking.
6145 (goto-char beg-pos)
6146 t))
6147 t))))))
6148
6149 (/= (point) start))))
6150
6151 (defun c-forward-name ()
6152 ;; Move forward over a complete name if at the beginning of one,
6153 ;; stopping at the next following token. A keyword, as such,
6154 ;; doesn't count as a name. If the point is not at something that
6155 ;; is recognized as a name then it stays put.
6156 ;;
6157 ;; A name could be something as simple as "foo" in C or something as
6158 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6159 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6160 ;; int>::*volatile const" in C++ (this function is actually little
6161 ;; more than a `looking-at' call in all modes except those that,
6162 ;; like C++, have `c-recognize-<>-arglists' set).
6163 ;;
6164 ;; Return
6165 ;; o - nil if no name is found;
6166 ;; o - 'template if it's an identifier ending with an angle bracket
6167 ;; arglist;
6168 ;; o - 'operator of it's an operator identifier;
6169 ;; o - t if it's some other kind of name.
6170 ;;
6171 ;; This function records identifier ranges on
6172 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6173 ;; `c-record-type-identifiers' is non-nil.
6174 ;;
6175 ;; This function might do hidden buffer changes.
6176
6177 (let ((pos (point)) (start (point)) res id-start id-end
6178 ;; Turn off `c-promote-possible-types' here since we might
6179 ;; call `c-forward-<>-arglist' and we don't want it to promote
6180 ;; every suspect thing in the arglist to a type. We're
6181 ;; typically called from `c-forward-type' in this case, and
6182 ;; the caller only wants the top level type that it finds to
6183 ;; be promoted.
6184 c-promote-possible-types)
6185 (while
6186 (and
6187 (looking-at c-identifier-key)
6188
6189 (progn
6190 ;; Check for keyword. We go to the last symbol in
6191 ;; `c-identifier-key' first.
6192 (goto-char (setq id-end (match-end 0)))
6193 (c-simple-skip-symbol-backward)
6194 (setq id-start (point))
6195
6196 (if (looking-at c-keywords-regexp)
6197 (when (and (c-major-mode-is 'c++-mode)
6198 (looking-at
6199 (cc-eval-when-compile
6200 (concat "\\(operator\\|\\(template\\)\\)"
6201 "\\(" (c-lang-const c-nonsymbol-key c++)
6202 "\\|$\\)")))
6203 (if (match-beginning 2)
6204 ;; "template" is only valid inside an
6205 ;; identifier if preceded by "::".
6206 (save-excursion
6207 (c-backward-syntactic-ws)
6208 (and (c-safe (backward-char 2) t)
6209 (looking-at "::")))
6210 t))
6211
6212 ;; Handle a C++ operator or template identifier.
6213 (goto-char id-end)
6214 (c-forward-syntactic-ws)
6215 (cond ((eq (char-before id-end) ?e)
6216 ;; Got "... ::template".
6217 (let ((subres (c-forward-name)))
6218 (when subres
6219 (setq pos (point)
6220 res subres))))
6221
6222 ((looking-at c-identifier-start)
6223 ;; Got a cast operator.
6224 (when (c-forward-type)
6225 (setq pos (point)
6226 res 'operator)
6227 ;; Now we should match a sequence of either
6228 ;; '*', '&' or a name followed by ":: *",
6229 ;; where each can be followed by a sequence
6230 ;; of `c-opt-type-modifier-key'.
6231 (while (cond ((looking-at "[*&]")
6232 (goto-char (match-end 0))
6233 t)
6234 ((looking-at c-identifier-start)
6235 (and (c-forward-name)
6236 (looking-at "::")
6237 (progn
6238 (goto-char (match-end 0))
6239 (c-forward-syntactic-ws)
6240 (eq (char-after) ?*))
6241 (progn
6242 (forward-char)
6243 t))))
6244 (while (progn
6245 (c-forward-syntactic-ws)
6246 (setq pos (point))
6247 (looking-at c-opt-type-modifier-key))
6248 (goto-char (match-end 1))))))
6249
6250 ((looking-at c-overloadable-operators-regexp)
6251 ;; Got some other operator.
6252 (setq c-last-identifier-range
6253 (cons (point) (match-end 0)))
6254 (goto-char (match-end 0))
6255 (c-forward-syntactic-ws)
6256 (setq pos (point)
6257 res 'operator)))
6258
6259 nil)
6260
6261 ;; `id-start' is equal to `id-end' if we've jumped over
6262 ;; an identifier that doesn't end with a symbol token.
6263 ;; That can occur e.g. for Java import directives on the
6264 ;; form "foo.bar.*".
6265 (when (and id-start (/= id-start id-end))
6266 (setq c-last-identifier-range
6267 (cons id-start id-end)))
6268 (goto-char id-end)
6269 (c-forward-syntactic-ws)
6270 (setq pos (point)
6271 res t)))
6272
6273 (progn
6274 (goto-char pos)
6275 (when (or c-opt-identifier-concat-key
6276 c-recognize-<>-arglists)
6277
6278 (cond
6279 ((and c-opt-identifier-concat-key
6280 (looking-at c-opt-identifier-concat-key))
6281 ;; Got a concatenated identifier. This handles the
6282 ;; cases with tricky syntactic whitespace that aren't
6283 ;; covered in `c-identifier-key'.
6284 (goto-char (match-end 0))
6285 (c-forward-syntactic-ws)
6286 t)
6287
6288 ((and c-recognize-<>-arglists
6289 (eq (char-after) ?<))
6290 ;; Maybe an angle bracket arglist.
6291 (when (let ((c-record-type-identifiers t)
6292 (c-record-found-types t))
6293 (c-forward-<>-arglist nil))
6294
6295 (c-add-type start (1+ pos))
6296 (c-forward-syntactic-ws)
6297 (setq pos (point)
6298 c-last-identifier-range nil)
6299
6300 (if (and c-opt-identifier-concat-key
6301 (looking-at c-opt-identifier-concat-key))
6302
6303 ;; Continue if there's an identifier concatenation
6304 ;; operator after the template argument.
6305 (progn
6306 (when (and c-record-type-identifiers id-start)
6307 (c-record-ref-id (cons id-start id-end)))
6308 (forward-char 2)
6309 (c-forward-syntactic-ws)
6310 t)
6311
6312 (when (and c-record-type-identifiers id-start)
6313 (c-record-type-id (cons id-start id-end)))
6314 (setq res 'template)
6315 nil)))
6316 )))))
6317
6318 (goto-char pos)
6319 res))
6320
6321 (defun c-forward-type (&optional brace-block-too)
6322 ;; Move forward over a type spec if at the beginning of one,
6323 ;; stopping at the next following token. The keyword "typedef"
6324 ;; isn't part of a type spec here.
6325 ;;
6326 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6327 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6328 ;; The current (2009-03-10) intention is to convert all uses of
6329 ;; `c-forward-type' to call with this parameter set, then to
6330 ;; eliminate it.
6331 ;;
6332 ;; Return
6333 ;; o - t if it's a known type that can't be a name or other
6334 ;; expression;
6335 ;; o - 'known if it's an otherwise known type (according to
6336 ;; `*-font-lock-extra-types');
6337 ;; o - 'prefix if it's a known prefix of a type;
6338 ;; o - 'found if it's a type that matches one in `c-found-types';
6339 ;; o - 'maybe if it's an identifier that might be a type;
6340 ;; o - 'decltype if it's a decltype(variable) declaration; - or
6341 ;; o - nil if it can't be a type (the point isn't moved then).
6342 ;;
6343 ;; The point is assumed to be at the beginning of a token.
6344 ;;
6345 ;; Note that this function doesn't skip past the brace definition
6346 ;; that might be considered part of the type, e.g.
6347 ;; "enum {a, b, c} foo".
6348 ;;
6349 ;; This function records identifier ranges on
6350 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6351 ;; `c-record-type-identifiers' is non-nil.
6352 ;;
6353 ;; This function might do hidden buffer changes.
6354 (when (and c-recognize-<>-arglists
6355 (looking-at "<"))
6356 (c-forward-<>-arglist t)
6357 (c-forward-syntactic-ws))
6358
6359 (let ((start (point)) pos res name-res id-start id-end id-range)
6360
6361 ;; Skip leading type modifiers. If any are found we know it's a
6362 ;; prefix of a type.
6363 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6364 (while (looking-at c-opt-type-modifier-key)
6365 (goto-char (match-end 1))
6366 (c-forward-syntactic-ws)
6367 (setq res 'prefix)))
6368
6369 (cond
6370 ((looking-at c-typeof-key) ; e.g. C++'s "decltype".
6371 (goto-char (match-end 1))
6372 (c-forward-syntactic-ws)
6373 (setq res (and (eq (char-after) ?\()
6374 (c-safe (c-forward-sexp))
6375 'decltype))
6376 (if res
6377 (c-forward-syntactic-ws)
6378 (goto-char start)))
6379
6380 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6381 ; "typedef".
6382 (goto-char (match-end 1))
6383 (c-forward-syntactic-ws)
6384 (setq pos (point))
6385
6386 (setq name-res (c-forward-name))
6387 (setq res (not (null name-res)))
6388 (when (eq name-res t)
6389 ;; In many languages the name can be used without the
6390 ;; prefix, so we add it to `c-found-types'.
6391 (c-add-type pos (point))
6392 (when (and c-record-type-identifiers
6393 c-last-identifier-range)
6394 (c-record-type-id c-last-identifier-range)))
6395 (when (and brace-block-too
6396 (memq res '(t nil))
6397 (eq (char-after) ?\{)
6398 (save-excursion
6399 (c-safe
6400 (progn (c-forward-sexp)
6401 (c-forward-syntactic-ws)
6402 (setq pos (point))))))
6403 (goto-char pos)
6404 (setq res t))
6405 (unless res (goto-char start))) ; invalid syntax
6406
6407 ((progn
6408 (setq pos nil)
6409 (if (looking-at c-identifier-start)
6410 (save-excursion
6411 (setq id-start (point)
6412 name-res (c-forward-name))
6413 (when name-res
6414 (setq id-end (point)
6415 id-range c-last-identifier-range))))
6416 (and (cond ((looking-at c-primitive-type-key)
6417 (setq res t))
6418 ((c-with-syntax-table c-identifier-syntax-table
6419 (looking-at c-known-type-key))
6420 (setq res 'known)))
6421 (or (not id-end)
6422 (>= (save-excursion
6423 (save-match-data
6424 (goto-char (match-end 1))
6425 (c-forward-syntactic-ws)
6426 (setq pos (point))))
6427 id-end)
6428 (setq res nil))))
6429 ;; Looking at a primitive or known type identifier. We've
6430 ;; checked for a name first so that we don't go here if the
6431 ;; known type match only is a prefix of another name.
6432
6433 (setq id-end (match-end 1))
6434
6435 (when (and c-record-type-identifiers
6436 (or c-promote-possible-types (eq res t)))
6437 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6438
6439 (if (and c-opt-type-component-key
6440 (save-match-data
6441 (looking-at c-opt-type-component-key)))
6442 ;; There might be more keywords for the type.
6443 (let (safe-pos)
6444 (c-forward-keyword-clause 1)
6445 (while (progn
6446 (setq safe-pos (point))
6447 (looking-at c-opt-type-component-key))
6448 (when (and c-record-type-identifiers
6449 (looking-at c-primitive-type-key))
6450 (c-record-type-id (cons (match-beginning 1)
6451 (match-end 1))))
6452 (c-forward-keyword-clause 1))
6453 (if (looking-at c-primitive-type-key)
6454 (progn
6455 (when c-record-type-identifiers
6456 (c-record-type-id (cons (match-beginning 1)
6457 (match-end 1))))
6458 (c-forward-keyword-clause 1)
6459 (setq res t))
6460 (goto-char safe-pos)
6461 (setq res 'prefix)))
6462 (unless (save-match-data (c-forward-keyword-clause 1))
6463 (if pos
6464 (goto-char pos)
6465 (goto-char (match-end 1))
6466 (c-forward-syntactic-ws)))))
6467
6468 (name-res
6469 (cond ((eq name-res t)
6470 ;; A normal identifier.
6471 (goto-char id-end)
6472 (if (or res c-promote-possible-types)
6473 (progn
6474 (c-add-type id-start id-end)
6475 (when (and c-record-type-identifiers id-range)
6476 (c-record-type-id id-range))
6477 (unless res
6478 (setq res 'found)))
6479 (setq res (if (c-check-type id-start id-end)
6480 ;; It's an identifier that has been used as
6481 ;; a type somewhere else.
6482 'found
6483 ;; It's an identifier that might be a type.
6484 'maybe))))
6485 ((eq name-res 'template)
6486 ;; A template is a type.
6487 (goto-char id-end)
6488 (setq res t))
6489 (t
6490 ;; Otherwise it's an operator identifier, which is not a type.
6491 (goto-char start)
6492 (setq res nil)))))
6493
6494 (when res
6495 ;; Skip trailing type modifiers. If any are found we know it's
6496 ;; a type.
6497 (when c-opt-type-modifier-key
6498 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
6499 (goto-char (match-end 1))
6500 (c-forward-syntactic-ws)
6501 (setq res t)))
6502
6503 ;; Step over any type suffix operator. Do not let the existence
6504 ;; of these alter the classification of the found type, since
6505 ;; these operators typically are allowed in normal expressions
6506 ;; too.
6507 (when c-opt-type-suffix-key ; e.g. "..."
6508 (while (looking-at c-opt-type-suffix-key)
6509 (goto-char (match-end 1))
6510 (c-forward-syntactic-ws)))
6511
6512 (when c-opt-type-concat-key ; Only/mainly for pike.
6513 ;; Look for a trailing operator that concatenates the type
6514 ;; with a following one, and if so step past that one through
6515 ;; a recursive call. Note that we don't record concatenated
6516 ;; types in `c-found-types' - it's the component types that
6517 ;; are recorded when appropriate.
6518 (setq pos (point))
6519 (let* ((c-promote-possible-types (or (memq res '(t known))
6520 c-promote-possible-types))
6521 ;; If we can't promote then set `c-record-found-types' so that
6522 ;; we can merge in the types from the second part afterwards if
6523 ;; it turns out to be a known type there.
6524 (c-record-found-types (and c-record-type-identifiers
6525 (not c-promote-possible-types)))
6526 subres)
6527 (if (and (looking-at c-opt-type-concat-key)
6528
6529 (progn
6530 (goto-char (match-end 1))
6531 (c-forward-syntactic-ws)
6532 (setq subres (c-forward-type))))
6533
6534 (progn
6535 ;; If either operand certainly is a type then both are, but we
6536 ;; don't let the existence of the operator itself promote two
6537 ;; uncertain types to a certain one.
6538 (cond ((eq res t))
6539 ((eq subres t)
6540 (unless (eq name-res 'template)
6541 (c-add-type id-start id-end))
6542 (when (and c-record-type-identifiers id-range)
6543 (c-record-type-id id-range))
6544 (setq res t))
6545 ((eq res 'known))
6546 ((eq subres 'known)
6547 (setq res 'known))
6548 ((eq res 'found))
6549 ((eq subres 'found)
6550 (setq res 'found))
6551 (t
6552 (setq res 'maybe)))
6553
6554 (when (and (eq res t)
6555 (consp c-record-found-types))
6556 ;; Merge in the ranges of any types found by the second
6557 ;; `c-forward-type'.
6558 (setq c-record-type-identifiers
6559 ;; `nconc' doesn't mind that the tail of
6560 ;; `c-record-found-types' is t.
6561 (nconc c-record-found-types
6562 c-record-type-identifiers))))
6563
6564 (goto-char pos))))
6565
6566 (when (and c-record-found-types (memq res '(known found)) id-range)
6567 (setq c-record-found-types
6568 (cons id-range c-record-found-types))))
6569
6570 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6571
6572 res))
6573
6574 (defun c-forward-annotation ()
6575 ;; Used for Java code only at the moment. Assumes point is on the
6576 ;; @, moves forward an annotation. returns nil if there is no
6577 ;; annotation at point.
6578 (and (looking-at "@")
6579 (progn (forward-char) t)
6580 (c-forward-type)
6581 (progn (c-forward-syntactic-ws) t)
6582 (if (looking-at "(")
6583 (c-go-list-forward)
6584 t)))
6585
6586 (defmacro c-pull-open-brace (ps)
6587 ;; Pull the next open brace from PS (which has the form of paren-state),
6588 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
6589 `(progn
6590 (while (consp (car ,ps))
6591 (setq ,ps (cdr ,ps)))
6592 (prog1 (car ,ps)
6593 (setq ,ps (cdr ,ps)))))
6594
6595 (defun c-back-over-member-initializer-braces ()
6596 ;; Point is just after a closing brace/parenthesis. Try to parse this as a
6597 ;; C++ member initializer list, going back to just after the introducing ":"
6598 ;; and returning t. Otherwise return nil, leaving point unchanged.
6599 (let ((here (point)) res)
6600 (setq res
6601 (catch 'done
6602 (when (not (c-go-list-backward))
6603 (throw 'done nil))
6604 (c-backward-syntactic-ws)
6605 (when (not (c-simple-skip-symbol-backward))
6606 (throw 'done nil))
6607 (c-backward-syntactic-ws)
6608
6609 (while (eq (char-before) ?,)
6610 (backward-char)
6611 (c-backward-syntactic-ws)
6612 (when (not (memq (char-before) '(?\) ?})))
6613 (throw 'done nil))
6614 (when (not (c-go-list-backward))
6615 (throw 'done nil))
6616 (c-backward-syntactic-ws)
6617 (when (not (c-simple-skip-symbol-backward))
6618 (throw 'done nil))
6619 (c-backward-syntactic-ws))
6620
6621 (eq (char-before) ?:)))
6622 (or res (goto-char here))
6623 res))
6624
6625 (defun c-back-over-member-initializers ()
6626 ;; Test whether we are in a C++ member initializer list, and if so, go back
6627 ;; to the introducing ":", returning the position of the opening paren of
6628 ;; the function's arglist. Otherwise return nil, leaving point unchanged.
6629 (let ((here (point))
6630 (paren-state (c-parse-state))
6631 res)
6632
6633 (setq res
6634 (catch 'done
6635 (if (not (c-at-toplevel-p))
6636 (progn
6637 (while (not (c-at-toplevel-p))
6638 (goto-char (c-pull-open-brace paren-state)))
6639 (c-backward-syntactic-ws)
6640 (when (not (c-simple-skip-symbol-backward))
6641 (throw 'done nil))
6642 (c-backward-syntactic-ws))
6643 (c-backward-syntactic-ws)
6644 (when (memq (char-before) '(?\) ?}))
6645 (when (not (c-go-list-backward))
6646 (throw 'done nil))
6647 (c-backward-syntactic-ws))
6648 (when (c-simple-skip-symbol-backward)
6649 (c-backward-syntactic-ws)))
6650
6651 (while (eq (char-before) ?,)
6652 (backward-char)
6653 (c-backward-syntactic-ws)
6654
6655 (when (not (memq (char-before) '(?\) ?})))
6656 (throw 'done nil))
6657 (when (not (c-go-list-backward))
6658 (throw 'done nil))
6659 (c-backward-syntactic-ws)
6660 (when (not (c-simple-skip-symbol-backward))
6661 (throw 'done nil))
6662 (c-backward-syntactic-ws))
6663
6664 (and
6665 (eq (char-before) ?:)
6666 (c-just-after-func-arglist-p))))
6667
6668 (or res (goto-char here))
6669 res))
6670
6671 \f
6672 ;; Handling of large scale constructs like statements and declarations.
6673
6674 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6675 ;; defsubst or perhaps even a defun, but it contains lots of free
6676 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6677 (defmacro c-fdoc-shift-type-backward (&optional short)
6678 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6679 ;; of types when parsing a declaration, which means that it
6680 ;; sometimes consumes the identifier in the declaration as a type.
6681 ;; This is used to "backtrack" and make the last type be treated as
6682 ;; an identifier instead.
6683 `(progn
6684 ,(unless short
6685 ;; These identifiers are bound only in the inner let.
6686 '(setq identifier-type at-type
6687 identifier-start type-start
6688 got-parens nil
6689 got-identifier t
6690 got-suffix t
6691 got-suffix-after-parens id-start
6692 paren-depth 0))
6693
6694 (if (setq at-type (if (eq backup-at-type 'prefix)
6695 t
6696 backup-at-type))
6697 (setq type-start backup-type-start
6698 id-start backup-id-start)
6699 (setq type-start start-pos
6700 id-start start-pos))
6701
6702 ;; When these flags already are set we've found specifiers that
6703 ;; unconditionally signal these attributes - backtracking doesn't
6704 ;; change that. So keep them set in that case.
6705 (or at-type-decl
6706 (setq at-type-decl backup-at-type-decl))
6707 (or maybe-typeless
6708 (setq maybe-typeless backup-maybe-typeless))
6709
6710 ,(unless short
6711 ;; This identifier is bound only in the inner let.
6712 '(setq start id-start))))
6713
6714 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
6715 ;; Move forward over a declaration or a cast if at the start of one.
6716 ;; The point is assumed to be at the start of some token. Nil is
6717 ;; returned if no declaration or cast is recognized, and the point
6718 ;; is clobbered in that case.
6719 ;;
6720 ;; If a declaration is parsed:
6721 ;;
6722 ;; The point is left at the first token after the first complete
6723 ;; declarator, if there is one. The return value is a cons where
6724 ;; the car is the position of the first token in the declarator. (See
6725 ;; below for the cdr.)
6726 ;; Some examples:
6727 ;;
6728 ;; void foo (int a, char *b) stuff ...
6729 ;; car ^ ^ point
6730 ;; float (*a)[], b;
6731 ;; car ^ ^ point
6732 ;; unsigned int a = c_style_initializer, b;
6733 ;; car ^ ^ point
6734 ;; unsigned int a (cplusplus_style_initializer), b;
6735 ;; car ^ ^ point (might change)
6736 ;; class Foo : public Bar {}
6737 ;; car ^ ^ point
6738 ;; class PikeClass (int a, string b) stuff ...
6739 ;; car ^ ^ point
6740 ;; enum bool;
6741 ;; car ^ ^ point
6742 ;; enum bool flag;
6743 ;; car ^ ^ point
6744 ;; void cplusplus_function (int x) throw (Bad);
6745 ;; car ^ ^ point
6746 ;; Foo::Foo (int b) : Base (b) {}
6747 ;; car ^ ^ point
6748 ;;
6749 ;; auto foo = 5;
6750 ;; car ^ ^ point
6751 ;; auto cplusplus_11 (int a, char *b) -> decltype (bar):
6752 ;; car ^ ^ point
6753 ;;
6754 ;;
6755 ;;
6756 ;; The cdr of the return value is non-nil when a
6757 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
6758 ;; Specifically it is a dotted pair (A . B) where B is t when a
6759 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
6760 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
6761 ;; specifier is present. I.e., (some of) the declared
6762 ;; identifier(s) are types.
6763 ;;
6764 ;; If a cast is parsed:
6765 ;;
6766 ;; The point is left at the first token after the closing paren of
6767 ;; the cast. The return value is `cast'. Note that the start
6768 ;; position must be at the first token inside the cast parenthesis
6769 ;; to recognize it.
6770 ;;
6771 ;; PRECEDING-TOKEN-END is the first position after the preceding
6772 ;; token, i.e. on the other side of the syntactic ws from the point.
6773 ;; Use a value less than or equal to (point-min) if the point is at
6774 ;; the first token in (the visible part of) the buffer.
6775 ;;
6776 ;; CONTEXT is a symbol that describes the context at the point:
6777 ;; 'decl In a comma-separated declaration context (typically
6778 ;; inside a function declaration arglist).
6779 ;; '<> In an angle bracket arglist.
6780 ;; 'arglist Some other type of arglist.
6781 ;; nil Some other context or unknown context. Includes
6782 ;; within the parens of an if, for, ... construct.
6783 ;;
6784 ;; LAST-CAST-END is the first token after the closing paren of a
6785 ;; preceding cast, or nil if none is known. If
6786 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
6787 ;; the position after the closest preceding call where a cast was
6788 ;; matched. In that case it's used to discover chains of casts like
6789 ;; "(a) (b) c".
6790 ;;
6791 ;; This function records identifier ranges on
6792 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6793 ;; `c-record-type-identifiers' is non-nil.
6794 ;;
6795 ;; This function might do hidden buffer changes.
6796
6797 (let (;; `start-pos' is used below to point to the start of the
6798 ;; first type, i.e. after any leading specifiers. It might
6799 ;; also point at the beginning of the preceding syntactic
6800 ;; whitespace.
6801 (start-pos (point))
6802 ;; Set to the result of `c-forward-type'.
6803 at-type
6804 ;; The position of the first token in what we currently
6805 ;; believe is the type in the declaration or cast, after any
6806 ;; specifiers and their associated clauses.
6807 type-start
6808 ;; The position of the first token in what we currently
6809 ;; believe is the declarator for the first identifier. Set
6810 ;; when the type is found, and moved forward over any
6811 ;; `c-decl-hangon-kwds' and their associated clauses that
6812 ;; occurs after the type.
6813 id-start
6814 ;; These store `at-type', `type-start' and `id-start' of the
6815 ;; identifier before the one in those variables. The previous
6816 ;; identifier might turn out to be the real type in a
6817 ;; declaration if the last one has to be the declarator in it.
6818 ;; If `backup-at-type' is nil then the other variables have
6819 ;; undefined values.
6820 backup-at-type backup-type-start backup-id-start
6821 ;; This stores `kwd-sym' of the symbol before the current one.
6822 ;; This is needed to distinguish the C++11 version of "auto" from
6823 ;; the pre C++11 meaning.
6824 backup-kwd-sym
6825 ;; Set if we've found a specifier (apart from "typedef") that makes
6826 ;; the defined identifier(s) types.
6827 at-type-decl
6828 ;; Set if we've a "typedef" keyword.
6829 at-typedef
6830 ;; Set if we've found a specifier that can start a declaration
6831 ;; where there's no type.
6832 maybe-typeless
6833 ;; Save the value of kwd-sym between loops of the "Check for a
6834 ;; type" loop. Needed to distinguish a C++11 "auto" from a pre
6835 ;; C++11 one.
6836 prev-kwd-sym
6837 ;; If a specifier is found that also can be a type prefix,
6838 ;; these flags are set instead of those above. If we need to
6839 ;; back up an identifier, they are copied to the real flag
6840 ;; variables. Thus they only take effect if we fail to
6841 ;; interpret it as a type.
6842 backup-at-type-decl backup-maybe-typeless
6843 ;; Whether we've found a declaration or a cast. We might know
6844 ;; this before we've found the type in it. It's 'ids if we've
6845 ;; found two consecutive identifiers (usually a sure sign, but
6846 ;; we should allow that in labels too), and t if we've found a
6847 ;; specifier keyword (a 100% sure sign).
6848 at-decl-or-cast
6849 ;; Set when we need to back up to parse this as a declaration
6850 ;; but not as a cast.
6851 backup-if-not-cast
6852 ;; For casts, the return position.
6853 cast-end
6854 ;; Have we got a new-style C++11 "auto"?
6855 new-style-auto
6856 ;; Save `c-record-type-identifiers' and
6857 ;; `c-record-ref-identifiers' since ranges are recorded
6858 ;; speculatively and should be thrown away if it turns out
6859 ;; that it isn't a declaration or cast.
6860 (save-rec-type-ids c-record-type-identifiers)
6861 (save-rec-ref-ids c-record-ref-identifiers))
6862
6863 (while (c-forward-annotation)
6864 (c-forward-syntactic-ws))
6865
6866 ;; Check for a type. Unknown symbols are treated as possible
6867 ;; types, but they could also be specifiers disguised through
6868 ;; macros like __INLINE__, so we recognize both types and known
6869 ;; specifiers after them too.
6870 (while
6871 (let* ((start (point)) kwd-sym kwd-clause-end found-type)
6872
6873 ;; Look for a specifier keyword clause.
6874 (when (or (looking-at c-prefix-spec-kwds-re) ;FIXME!!! includes auto
6875 (and (c-major-mode-is 'java-mode)
6876 (looking-at "@[A-Za-z0-9]+")))
6877 (save-match-data
6878 (if (looking-at c-typedef-key)
6879 (setq at-typedef t)))
6880 (setq kwd-sym (c-keyword-sym (match-string 1)))
6881 (save-excursion
6882 (c-forward-keyword-clause 1)
6883 (setq kwd-clause-end (point))))
6884
6885 (when (setq found-type (c-forward-type t)) ; brace-block-too
6886 ;; Found a known or possible type or a prefix of a known type.
6887 (when (and (c-major-mode-is 'c++-mode) ; C++11 style "auto"?
6888 (eq prev-kwd-sym (c-keyword-sym "auto"))
6889 (looking-at "[=(]")) ; FIXME!!! proper regexp.
6890 (setq new-style-auto t)
6891 (setq found-type nil)
6892 (goto-char start)) ; position of foo in "auto foo"
6893
6894 (when at-type
6895 ;; Got two identifiers with nothing but whitespace
6896 ;; between them. That can only happen in declarations.
6897 (setq at-decl-or-cast 'ids)
6898
6899 (when (eq at-type 'found)
6900 ;; If the previous identifier is a found type we
6901 ;; record it as a real one; it might be some sort of
6902 ;; alias for a prefix like "unsigned".
6903 (save-excursion
6904 (goto-char type-start)
6905 (let ((c-promote-possible-types t))
6906 (c-forward-type)))))
6907
6908 (setq backup-at-type at-type
6909 backup-type-start type-start
6910 backup-id-start id-start
6911 backup-kwd-sym kwd-sym
6912 at-type found-type
6913 type-start start
6914 id-start (point)
6915 ;; The previous ambiguous specifier/type turned out
6916 ;; to be a type since we've parsed another one after
6917 ;; it, so clear these backup flags.
6918 backup-at-type-decl nil
6919 backup-maybe-typeless nil))
6920
6921 (if kwd-sym
6922 (progn
6923 ;; Handle known specifier keywords and
6924 ;; `c-decl-hangon-kwds' which can occur after known
6925 ;; types.
6926
6927 (if (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
6928 ;; It's a hang-on keyword that can occur anywhere.
6929 (progn
6930 (setq at-decl-or-cast t)
6931 (if at-type
6932 ;; Move the identifier start position if
6933 ;; we've passed a type.
6934 (setq id-start kwd-clause-end)
6935 ;; Otherwise treat this as a specifier and
6936 ;; move the fallback position.
6937 (setq start-pos kwd-clause-end))
6938 (goto-char kwd-clause-end))
6939
6940 ;; It's an ordinary specifier so we know that
6941 ;; anything before this can't be the type.
6942 (setq backup-at-type nil
6943 start-pos kwd-clause-end)
6944
6945 (if found-type
6946 ;; It's ambiguous whether this keyword is a
6947 ;; specifier or a type prefix, so set the backup
6948 ;; flags. (It's assumed that `c-forward-type'
6949 ;; moved further than `c-forward-keyword-clause'.)
6950 (progn
6951 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6952 (setq backup-at-type-decl t))
6953 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6954 (setq backup-maybe-typeless t)))
6955
6956 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6957 ;; This test only happens after we've scanned a type.
6958 ;; So, with valid syntax, kwd-sym can't be 'typedef.
6959 (setq at-type-decl t))
6960 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6961 (setq maybe-typeless t))
6962
6963 ;; Haven't matched a type so it's an unambiguous
6964 ;; specifier keyword and we know we're in a
6965 ;; declaration.
6966 (setq at-decl-or-cast t)
6967 (setq prev-kwd-sym kwd-sym)
6968
6969 (goto-char kwd-clause-end))))
6970
6971 ;; If the type isn't known we continue so that we'll jump
6972 ;; over all specifiers and type identifiers. The reason
6973 ;; to do this for a known type prefix is to make things
6974 ;; like "unsigned INT16" work.
6975 (and found-type (not (eq found-type t))))))
6976
6977 (cond
6978 ((eq at-type t)
6979 ;; If a known type was found, we still need to skip over any
6980 ;; hangon keyword clauses after it. Otherwise it has already
6981 ;; been done in the loop above.
6982 (while (looking-at c-decl-hangon-key)
6983 (c-forward-keyword-clause 1))
6984 (setq id-start (point)))
6985
6986 ((eq at-type 'prefix)
6987 ;; A prefix type is itself a primitive type when it's not
6988 ;; followed by another type.
6989 (setq at-type t))
6990
6991 ((not at-type)
6992 ;; Got no type but set things up to continue anyway to handle
6993 ;; the various cases when a declaration doesn't start with a
6994 ;; type.
6995 (setq id-start start-pos))
6996
6997 ((and (eq at-type 'maybe)
6998 (c-major-mode-is 'c++-mode))
6999 ;; If it's C++ then check if the last "type" ends on the form
7000 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
7001 ;; (con|de)structor.
7002 (save-excursion
7003 (let (name end-2 end-1)
7004 (goto-char id-start)
7005 (c-backward-syntactic-ws)
7006 (setq end-2 (point))
7007 (when (and
7008 (c-simple-skip-symbol-backward)
7009 (progn
7010 (setq name
7011 (buffer-substring-no-properties (point) end-2))
7012 ;; Cheating in the handling of syntactic ws below.
7013 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
7014 (progn
7015 (setq end-1 (point))
7016 (c-simple-skip-symbol-backward))
7017 (>= (point) type-start)
7018 (equal (buffer-substring-no-properties (point) end-1)
7019 name))
7020 ;; It is a (con|de)structor name. In that case the
7021 ;; declaration is typeless so zap out any preceding
7022 ;; identifier(s) that we might have taken as types.
7023 (goto-char type-start)
7024 (setq at-type nil
7025 backup-at-type nil
7026 id-start type-start))))))
7027
7028 ;; Check for and step over a type decl expression after the thing
7029 ;; that is or might be a type. This can't be skipped since we
7030 ;; need the correct end position of the declarator for
7031 ;; `max-type-decl-end-*'.
7032 (let ((start (point)) (paren-depth 0) pos
7033 ;; True if there's a non-open-paren match of
7034 ;; `c-type-decl-prefix-key'.
7035 got-prefix
7036 ;; True if the declarator is surrounded by a parenthesis pair.
7037 got-parens
7038 ;; True if there is an identifier in the declarator.
7039 got-identifier
7040 ;; True if there's a non-close-paren match of
7041 ;; `c-type-decl-suffix-key'.
7042 got-suffix
7043 ;; True if there's a prefix match outside the outermost
7044 ;; paren pair that surrounds the declarator.
7045 got-prefix-before-parens
7046 ;; True if there's a suffix match outside the outermost
7047 ;; paren pair that surrounds the declarator. The value is
7048 ;; the position of the first suffix match.
7049 got-suffix-after-parens
7050 ;; True if we've parsed the type decl to a token that is
7051 ;; known to end declarations in this context.
7052 at-decl-end
7053 ;; The earlier values of `at-type' and `type-start' if we've
7054 ;; shifted the type backwards.
7055 identifier-type identifier-start
7056 ;; If `c-parse-and-markup-<>-arglists' is set we need to
7057 ;; turn it off during the name skipping below to avoid
7058 ;; getting `c-type' properties that might be bogus. That
7059 ;; can happen since we don't know if
7060 ;; `c-restricted-<>-arglists' will be correct inside the
7061 ;; arglist paren that gets entered.
7062 c-parse-and-markup-<>-arglists
7063 ;; Start of the identifier for which `got-identifier' was set.
7064 name-start)
7065
7066 (goto-char id-start)
7067
7068 ;; Skip over type decl prefix operators. (Note similar code in
7069 ;; `c-font-lock-declarators'.)
7070 (if (and c-recognize-typeless-decls
7071 (equal c-type-decl-prefix-key "\\<\\>"))
7072 (when (eq (char-after) ?\()
7073 (progn
7074 (setq paren-depth (1+ paren-depth))
7075 (forward-char)))
7076 (while (and (looking-at c-type-decl-prefix-key)
7077 (if (and (c-major-mode-is 'c++-mode)
7078 (match-beginning 3))
7079 ;; If the third submatch matches in C++ then
7080 ;; we're looking at an identifier that's a
7081 ;; prefix only if it specifies a member pointer.
7082 (when (progn (setq pos (point))
7083 (setq got-identifier (c-forward-name)))
7084 (setq name-start pos)
7085 (if (looking-at "\\(::\\)")
7086 ;; We only check for a trailing "::" and
7087 ;; let the "*" that should follow be
7088 ;; matched in the next round.
7089 (progn (setq got-identifier nil) t)
7090 ;; It turned out to be the real identifier,
7091 ;; so stop.
7092 nil))
7093 t))
7094
7095 (if (eq (char-after) ?\()
7096 (progn
7097 (setq paren-depth (1+ paren-depth))
7098 (forward-char))
7099 (unless got-prefix-before-parens
7100 (setq got-prefix-before-parens (= paren-depth 0)))
7101 (setq got-prefix t)
7102 (goto-char (match-end 1)))
7103 (c-forward-syntactic-ws)))
7104
7105 (setq got-parens (> paren-depth 0))
7106
7107 ;; Skip over an identifier.
7108 (or got-identifier
7109 (and (looking-at c-identifier-start)
7110 (setq pos (point))
7111 (setq got-identifier (c-forward-name))
7112 (setq name-start pos)))
7113
7114 ;; Skip over type decl suffix operators.
7115 (while (if (looking-at c-type-decl-suffix-key)
7116
7117 (if (eq (char-after) ?\))
7118 (when (> paren-depth 0)
7119 (setq paren-depth (1- paren-depth))
7120 (forward-char)
7121 t)
7122 (when (if (save-match-data (looking-at "\\s\("))
7123 (c-safe (c-forward-sexp 1) t)
7124 (goto-char (match-end 1))
7125 t)
7126 (when (and (not got-suffix-after-parens)
7127 (= paren-depth 0))
7128 (setq got-suffix-after-parens (match-beginning 0)))
7129 (setq got-suffix t)))
7130
7131 ;; No suffix matched. We might have matched the
7132 ;; identifier as a type and the open paren of a
7133 ;; function arglist as a type decl prefix. In that
7134 ;; case we should "backtrack": Reinterpret the last
7135 ;; type as the identifier, move out of the arglist and
7136 ;; continue searching for suffix operators.
7137 ;;
7138 ;; Do this even if there's no preceding type, to cope
7139 ;; with old style function declarations in K&R C,
7140 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
7141 ;; style declarations. That isn't applicable in an
7142 ;; arglist context, though.
7143 (when (and (= paren-depth 1)
7144 (not got-prefix-before-parens)
7145 (not (eq at-type t))
7146 (or backup-at-type
7147 maybe-typeless
7148 backup-maybe-typeless
7149 (when c-recognize-typeless-decls
7150 (not context)))
7151 (setq pos (c-up-list-forward (point)))
7152 (eq (char-before pos) ?\)))
7153 (c-fdoc-shift-type-backward)
7154 (goto-char pos)
7155 t))
7156
7157 (c-forward-syntactic-ws))
7158
7159 (when (or (and new-style-auto
7160 (looking-at c-auto-ops-re))
7161 (and (or maybe-typeless backup-maybe-typeless)
7162 (not got-identifier)
7163 (not got-prefix)
7164 at-type))
7165 ;; Have found no identifier but `c-typeless-decl-kwds' has
7166 ;; matched so we know we're inside a declaration. The
7167 ;; preceding type must be the identifier instead.
7168 (c-fdoc-shift-type-backward))
7169
7170 ;; Prepare the "-> type;" for fontification later on.
7171 (when (and new-style-auto
7172 (looking-at c-haskell-op-re))
7173 (save-excursion
7174 (goto-char (match-end 0))
7175 (c-forward-syntactic-ws)
7176 (setq type-start (point))
7177 (setq at-type (c-forward-type))))
7178
7179 (setq
7180 at-decl-or-cast
7181 (catch 'at-decl-or-cast
7182
7183 ;; CASE 1
7184 (when (> paren-depth 0)
7185 ;; Encountered something inside parens that isn't matched by
7186 ;; the `c-type-decl-*' regexps, so it's not a type decl
7187 ;; expression. Try to skip out to the same paren depth to
7188 ;; not confuse the cast check below.
7189 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
7190 ;; If we've found a specifier keyword then it's a
7191 ;; declaration regardless.
7192 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
7193
7194 (setq at-decl-end
7195 (looking-at (cond ((eq context '<>) "[,>]")
7196 (context "[,\)]")
7197 (t "[,;]"))))
7198
7199 ;; Now we've collected info about various characteristics of
7200 ;; the construct we're looking at. Below follows a decision
7201 ;; tree based on that. It's ordered to check more certain
7202 ;; signs before less certain ones.
7203
7204 (if got-identifier
7205 (progn
7206
7207 ;; CASE 2
7208 (when (and (or at-type maybe-typeless)
7209 (not (or got-prefix got-parens)))
7210 ;; Got another identifier directly after the type, so it's a
7211 ;; declaration.
7212 (throw 'at-decl-or-cast t))
7213
7214 (when (and got-parens
7215 (not got-prefix)
7216 ;; (not got-suffix-after-parens)
7217 (or backup-at-type
7218 maybe-typeless
7219 backup-maybe-typeless
7220 (eq at-decl-or-cast t)
7221 (save-excursion
7222 (goto-char name-start)
7223 (not (memq (c-forward-type) '(nil maybe))))))
7224 ;; Got a declaration of the form "foo bar (gnu);" or "bar
7225 ;; (gnu);" where we've recognized "bar" as the type and "gnu"
7226 ;; as the declarator. In this case it's however more likely
7227 ;; that "bar" is the declarator and "gnu" a function argument
7228 ;; or initializer (if `c-recognize-paren-inits' is set),
7229 ;; since the parens around "gnu" would be superfluous if it's
7230 ;; a declarator. Shift the type one step backward.
7231 (c-fdoc-shift-type-backward)))
7232
7233 ;; Found no identifier.
7234
7235 (if backup-at-type
7236 (progn
7237
7238 ;; CASE 3
7239 (when (= (point) start)
7240 ;; Got a plain list of identifiers. If a colon follows it's
7241 ;; a valid label, or maybe a bitfield. Otherwise the last
7242 ;; one probably is the declared identifier and we should
7243 ;; back up to the previous type, providing it isn't a cast.
7244 (if (and (eq (char-after) ?:)
7245 (not (c-major-mode-is 'java-mode)))
7246 (cond
7247 ;; If we've found a specifier keyword then it's a
7248 ;; declaration regardless.
7249 ((eq at-decl-or-cast t)
7250 (throw 'at-decl-or-cast t))
7251 ((and c-has-bitfields
7252 (eq at-decl-or-cast 'ids)) ; bitfield.
7253 (setq backup-if-not-cast t)
7254 (throw 'at-decl-or-cast t)))
7255
7256 (setq backup-if-not-cast t)
7257 (throw 'at-decl-or-cast t)))
7258
7259 ;; CASE 4
7260 (when (and got-suffix
7261 (not got-prefix)
7262 (not got-parens))
7263 ;; Got a plain list of identifiers followed by some suffix.
7264 ;; If this isn't a cast then the last identifier probably is
7265 ;; the declared one and we should back up to the previous
7266 ;; type.
7267 (setq backup-if-not-cast t)
7268 (throw 'at-decl-or-cast t)))
7269
7270 ;; CASE 5
7271 (when (eq at-type t)
7272 ;; If the type is known we know that there can't be any
7273 ;; identifier somewhere else, and it's only in declarations in
7274 ;; e.g. function prototypes and in casts that the identifier may
7275 ;; be left out.
7276 (throw 'at-decl-or-cast t))
7277
7278 (when (= (point) start)
7279 ;; Only got a single identifier (parsed as a type so far).
7280 ;; CASE 6
7281 (if (and
7282 ;; Check that the identifier isn't at the start of an
7283 ;; expression.
7284 at-decl-end
7285 (cond
7286 ((eq context 'decl)
7287 ;; Inside an arglist that contains declarations. If K&R
7288 ;; style declarations and parenthesis style initializers
7289 ;; aren't allowed then the single identifier must be a
7290 ;; type, else we require that it's known or found
7291 ;; (primitive types are handled above).
7292 (or (and (not c-recognize-knr-p)
7293 (not c-recognize-paren-inits))
7294 (memq at-type '(known found))))
7295 ((eq context '<>)
7296 ;; Inside a template arglist. Accept known and found
7297 ;; types; other identifiers could just as well be
7298 ;; constants in C++.
7299 (memq at-type '(known found)))))
7300 (throw 'at-decl-or-cast t)
7301 ;; CASE 7
7302 ;; Can't be a valid declaration or cast, but if we've found a
7303 ;; specifier it can't be anything else either, so treat it as
7304 ;; an invalid/unfinished declaration or cast.
7305 (throw 'at-decl-or-cast at-decl-or-cast))))
7306
7307 (if (and got-parens
7308 (not got-prefix)
7309 (not context)
7310 (not (eq at-type t))
7311 (or backup-at-type
7312 maybe-typeless
7313 backup-maybe-typeless
7314 (when c-recognize-typeless-decls
7315 (or (not got-suffix)
7316 (not (looking-at
7317 c-after-suffixed-type-maybe-decl-key))))))
7318 ;; Got an empty paren pair and a preceding type that probably
7319 ;; really is the identifier. Shift the type backwards to make
7320 ;; the last one the identifier. This is analogous to the
7321 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
7322 ;; above.
7323 ;;
7324 ;; Exception: In addition to the conditions in that
7325 ;; "backtracking" code, do not shift backward if we're not
7326 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
7327 ;; Since there's no preceding type, the shift would mean that
7328 ;; the declaration is typeless. But if the regexp doesn't match
7329 ;; then we will simply fall through in the tests below and not
7330 ;; recognize it at all, so it's better to try it as an abstract
7331 ;; declarator instead.
7332 (c-fdoc-shift-type-backward)
7333
7334 ;; Still no identifier.
7335 ;; CASE 8
7336 (when (and got-prefix (or got-parens got-suffix))
7337 ;; Require `got-prefix' together with either `got-parens' or
7338 ;; `got-suffix' to recognize it as an abstract declarator:
7339 ;; `got-parens' only is probably an empty function call.
7340 ;; `got-suffix' only can build an ordinary expression together
7341 ;; with the preceding identifier which we've taken as a type.
7342 ;; We could actually accept on `got-prefix' only, but that can
7343 ;; easily occur temporarily while writing an expression so we
7344 ;; avoid that case anyway. We could do a better job if we knew
7345 ;; the point when the fontification was invoked.
7346 (throw 'at-decl-or-cast t))
7347
7348 ;; CASE 9
7349 (when (and at-type
7350 (not got-prefix)
7351 (not got-parens)
7352 got-suffix-after-parens
7353 (eq (char-after got-suffix-after-parens) ?\())
7354 ;; Got a type, no declarator but a paren suffix. I.e. it's a
7355 ;; normal function call after all (or perhaps a C++ style object
7356 ;; instantiation expression).
7357 (throw 'at-decl-or-cast nil))))
7358
7359 ;; CASE 10
7360 (when at-decl-or-cast
7361 ;; By now we've located the type in the declaration that we know
7362 ;; we're in.
7363 (throw 'at-decl-or-cast t))
7364
7365 ;; CASE 11
7366 (when (and got-identifier
7367 (not context)
7368 (looking-at c-after-suffixed-type-decl-key)
7369 (if (and got-parens
7370 (not got-prefix)
7371 (not got-suffix)
7372 (not (eq at-type t)))
7373 ;; Shift the type backward in the case that there's a
7374 ;; single identifier inside parens. That can only
7375 ;; occur in K&R style function declarations so it's
7376 ;; more likely that it really is a function call.
7377 ;; Therefore we only do this after
7378 ;; `c-after-suffixed-type-decl-key' has matched.
7379 (progn (c-fdoc-shift-type-backward) t)
7380 got-suffix-after-parens))
7381 ;; A declaration according to `c-after-suffixed-type-decl-key'.
7382 (throw 'at-decl-or-cast t))
7383
7384 ;; CASE 12
7385 (when (and (or got-prefix (not got-parens))
7386 (memq at-type '(t known)))
7387 ;; It's a declaration if a known type precedes it and it can't be a
7388 ;; function call.
7389 (throw 'at-decl-or-cast t))
7390
7391 ;; If we get here we can't tell if this is a type decl or a normal
7392 ;; expression by looking at it alone. (That's under the assumption
7393 ;; that normal expressions always can look like type decl expressions,
7394 ;; which isn't really true but the cases where it doesn't hold are so
7395 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
7396 ;; the effort to look for them.)
7397
7398 ;;; 2008-04-16: commented out the next form, to allow the function to recognize
7399 ;;; "foo (int bar)" in CC (an implicit type (in class foo) without a semicolon)
7400 ;;; as a(n almost complete) declaration, enabling it to be fontified.
7401 ;; CASE 13
7402 ;; (unless (or at-decl-end (looking-at "=[^=]"))
7403 ;; If this is a declaration it should end here or its initializer(*)
7404 ;; should start here, so check for allowed separation tokens. Note
7405 ;; that this rule doesn't work e.g. with a K&R arglist after a
7406 ;; function header.
7407 ;;
7408 ;; *) Don't check for C++ style initializers using parens
7409 ;; since those already have been matched as suffixes.
7410 ;;
7411 ;; If `at-decl-or-cast' is then we've found some other sign that
7412 ;; it's a declaration or cast, so then it's probably an
7413 ;; invalid/unfinished one.
7414 ;; (throw 'at-decl-or-cast at-decl-or-cast))
7415
7416 ;; Below are tests that only should be applied when we're certain to
7417 ;; not have parsed halfway through an expression.
7418
7419 ;; CASE 14
7420 (when (memq at-type '(t known))
7421 ;; The expression starts with a known type so treat it as a
7422 ;; declaration.
7423 (throw 'at-decl-or-cast t))
7424
7425 ;; CASE 15
7426 (when (and (c-major-mode-is 'c++-mode)
7427 ;; In C++ we check if the identifier is a known type, since
7428 ;; (con|de)structors use the class name as identifier.
7429 ;; We've always shifted over the identifier as a type and
7430 ;; then backed up again in this case.
7431 identifier-type
7432 (or (memq identifier-type '(found known))
7433 (and (eq (char-after identifier-start) ?~)
7434 ;; `at-type' probably won't be 'found for
7435 ;; destructors since the "~" is then part of the
7436 ;; type name being checked against the list of
7437 ;; known types, so do a check without that
7438 ;; operator.
7439 (or (save-excursion
7440 (goto-char (1+ identifier-start))
7441 (c-forward-syntactic-ws)
7442 (c-with-syntax-table
7443 c-identifier-syntax-table
7444 (looking-at c-known-type-key)))
7445 (save-excursion
7446 (goto-char (1+ identifier-start))
7447 ;; We have already parsed the type earlier,
7448 ;; so it'd be possible to cache the end
7449 ;; position instead of redoing it here, but
7450 ;; then we'd need to keep track of another
7451 ;; position everywhere.
7452 (c-check-type (point)
7453 (progn (c-forward-type)
7454 (point))))))))
7455 (throw 'at-decl-or-cast t))
7456
7457 (if got-identifier
7458 (progn
7459 ;; CASE 16
7460 (when (and got-prefix-before-parens
7461 at-type
7462 (or at-decl-end (looking-at "=[^=]"))
7463 (not context)
7464 (not got-suffix))
7465 ;; Got something like "foo * bar;". Since we're not inside an
7466 ;; arglist it would be a meaningless expression because the
7467 ;; result isn't used. We therefore choose to recognize it as
7468 ;; a declaration. Do not allow a suffix since it could then
7469 ;; be a function call.
7470 (throw 'at-decl-or-cast t))
7471
7472 ;; CASE 17
7473 (when (and (or got-suffix-after-parens
7474 (looking-at "=[^=]"))
7475 (eq at-type 'found)
7476 (not (eq context 'arglist)))
7477 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
7478 ;; be an odd expression or it could be a declaration. Treat
7479 ;; it as a declaration if "a" has been used as a type
7480 ;; somewhere else (if it's a known type we won't get here).
7481 (throw 'at-decl-or-cast t)))
7482
7483 ;; CASE 18
7484 (when (and context
7485 (or got-prefix
7486 (and (eq context 'decl)
7487 (not c-recognize-paren-inits)
7488 (or got-parens got-suffix))))
7489 ;; Got a type followed by an abstract declarator. If `got-prefix'
7490 ;; is set it's something like "a *" without anything after it. If
7491 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
7492 ;; or similar, which we accept only if the context rules out
7493 ;; expressions.
7494 (throw 'at-decl-or-cast t)))
7495
7496 ;; If we had a complete symbol table here (which rules out
7497 ;; `c-found-types') we should return t due to the disambiguation rule
7498 ;; (in at least C++) that anything that can be parsed as a declaration
7499 ;; is a declaration. Now we're being more defensive and prefer to
7500 ;; highlight things like "foo (bar);" as a declaration only if we're
7501 ;; inside an arglist that contains declarations.
7502 ;; CASE 19
7503 (eq context 'decl))))
7504
7505 ;; The point is now after the type decl expression.
7506
7507 (cond
7508 ;; Check for a cast.
7509 ((save-excursion
7510 (and
7511 c-cast-parens
7512
7513 ;; Should be the first type/identifier in a cast paren.
7514 (> preceding-token-end (point-min))
7515 (memq (char-before preceding-token-end) c-cast-parens)
7516
7517 ;; The closing paren should follow.
7518 (progn
7519 (c-forward-syntactic-ws)
7520 (looking-at "\\s\)"))
7521
7522 ;; There should be a primary expression after it.
7523 (let (pos)
7524 (forward-char)
7525 (c-forward-syntactic-ws)
7526 (setq cast-end (point))
7527 (and (looking-at c-primary-expr-regexp)
7528 (progn
7529 (setq pos (match-end 0))
7530 (or
7531 ;; Check if the expression begins with a prefix keyword.
7532 (match-beginning 2)
7533 (if (match-beginning 1)
7534 ;; Expression begins with an ambiguous operator. Treat
7535 ;; it as a cast if it's a type decl or if we've
7536 ;; recognized the type somewhere else.
7537 (or at-decl-or-cast
7538 (memq at-type '(t known found)))
7539 ;; Unless it's a keyword, it's the beginning of a primary
7540 ;; expression.
7541 (not (looking-at c-keywords-regexp)))))
7542 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
7543 ;; that it matched a whole one so that we don't e.g. confuse
7544 ;; the operator '-' with '->'. It's ok if it matches further,
7545 ;; though, since it e.g. can match the float '.5' while the
7546 ;; operator regexp only matches '.'.
7547 (or (not (looking-at c-nonsymbol-token-regexp))
7548 (<= (match-end 0) pos))))
7549
7550 ;; There should either be a cast before it or something that isn't an
7551 ;; identifier or close paren.
7552 (> preceding-token-end (point-min))
7553 (progn
7554 (goto-char (1- preceding-token-end))
7555 (or (eq (point) last-cast-end)
7556 (progn
7557 (c-backward-syntactic-ws)
7558 (if (< (skip-syntax-backward "w_") 0)
7559 ;; It's a symbol. Accept it only if it's one of the
7560 ;; keywords that can precede an expression (without
7561 ;; surrounding parens).
7562 (looking-at c-simple-stmt-key)
7563 (and
7564 ;; Check that it isn't a close paren (block close is ok,
7565 ;; though).
7566 (not (memq (char-before) '(?\) ?\])))
7567 ;; Check that it isn't a nonsymbol identifier.
7568 (not (c-on-identifier)))))))))
7569
7570 ;; Handle the cast.
7571 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7572 (let ((c-promote-possible-types t))
7573 (goto-char type-start)
7574 (c-forward-type)))
7575
7576 (goto-char cast-end)
7577 'cast)
7578
7579 (at-decl-or-cast
7580 ;; We're at a declaration. Highlight the type and the following
7581 ;; declarators.
7582
7583 (when backup-if-not-cast
7584 (c-fdoc-shift-type-backward t))
7585
7586 (when (and (eq context 'decl) (looking-at ","))
7587 ;; Make sure to propagate the `c-decl-arg-start' property to
7588 ;; the next argument if it's set in this one, to cope with
7589 ;; interactive refontification.
7590 (c-put-c-type-property (point) 'c-decl-arg-start))
7591
7592 ;; Record the type's coordinates in `c-record-type-identifiers' for
7593 ;; later fontification.
7594 (when (and c-record-type-identifiers at-type ;; (not (eq at-type t))
7595 ;; There seems no reason to exclude a token from
7596 ;; fontification just because it's "a known type that can't
7597 ;; be a name or other expression". 2013-09-18.
7598 )
7599 (let ((c-promote-possible-types t))
7600 (save-excursion
7601 (goto-char type-start)
7602 (c-forward-type))))
7603
7604 (cons id-start
7605 (and (or at-type-decl at-typedef)
7606 (cons at-type-decl at-typedef))))
7607
7608 (t
7609 ;; False alarm. Restore the recorded ranges.
7610 (setq c-record-type-identifiers save-rec-type-ids
7611 c-record-ref-identifiers save-rec-ref-ids)
7612 nil))))
7613
7614 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
7615 ;; Assuming that point is at the beginning of a token, check if it starts a
7616 ;; label and if so move over it and return non-nil (t in default situations,
7617 ;; specific symbols (see below) for interesting situations), otherwise don't
7618 ;; move and return nil. "Label" here means "most things with a colon".
7619 ;;
7620 ;; More precisely, a "label" is regarded as one of:
7621 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
7622 ;; (ii) A case label - either the entire construct "case FOO:", or just the
7623 ;; bare "case", should the colon be missing. We return t;
7624 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
7625 ;; return t;
7626 ;; (iv) One of QT's "extended" C++ variants of
7627 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
7628 ;; Returns the symbol `qt-2kwds-colon'.
7629 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
7630 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
7631 ;; colon). Currently (2006-03), this applies only to Objective C's
7632 ;; keywords "@private", "@protected", and "@public". Returns t.
7633 ;;
7634 ;; One of the things which will NOT be recognized as a label is a bit-field
7635 ;; element of a struct, something like "int foo:5".
7636 ;;
7637 ;; The end of the label is taken to be just after the colon, or the end of
7638 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
7639 ;; after the end on return. The terminating char gets marked with
7640 ;; `c-decl-end' to improve recognition of the following declaration or
7641 ;; statement.
7642 ;;
7643 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
7644 ;; label, if any, has already been marked up like that.
7645 ;;
7646 ;; If PRECEDING-TOKEN-END is given, it should be the first position
7647 ;; after the preceding token, i.e. on the other side of the
7648 ;; syntactic ws from the point. Use a value less than or equal to
7649 ;; (point-min) if the point is at the first token in (the visible
7650 ;; part of) the buffer.
7651 ;;
7652 ;; The optional LIMIT limits the forward scan for the colon.
7653 ;;
7654 ;; This function records the ranges of the label symbols on
7655 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
7656 ;; non-nil.
7657 ;;
7658 ;; This function might do hidden buffer changes.
7659
7660 (let ((start (point))
7661 label-end
7662 qt-symbol-idx
7663 macro-start ; if we're in one.
7664 label-type
7665 kwd)
7666 (cond
7667 ;; "case" or "default" (Doesn't apply to AWK).
7668 ((looking-at c-label-kwds-regexp)
7669 (let ((kwd-end (match-end 1)))
7670 ;; Record only the keyword itself for fontification, since in
7671 ;; case labels the following is a constant expression and not
7672 ;; a label.
7673 (when c-record-type-identifiers
7674 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
7675
7676 ;; Find the label end.
7677 (goto-char kwd-end)
7678 (setq label-type
7679 (if (and (c-syntactic-re-search-forward
7680 ;; Stop on chars that aren't allowed in expressions,
7681 ;; and on operator chars that would be meaningless
7682 ;; there. FIXME: This doesn't cope with ?: operators.
7683 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
7684 limit t t nil 1)
7685 (match-beginning 2))
7686
7687 (progn ; there's a proper :
7688 (goto-char (match-beginning 2)) ; just after the :
7689 (c-put-c-type-property (1- (point)) 'c-decl-end)
7690 t)
7691
7692 ;; It's an unfinished label. We consider the keyword enough
7693 ;; to recognize it as a label, so that it gets fontified.
7694 ;; Leave the point at the end of it, but don't put any
7695 ;; `c-decl-end' marker.
7696 (goto-char kwd-end)
7697 t))))
7698
7699 ;; @private, @protected, @public, in Objective C, or similar.
7700 ((and c-opt-extra-label-key
7701 (looking-at c-opt-extra-label-key))
7702 ;; For a `c-opt-extra-label-key' match, we record the whole
7703 ;; thing for fontification. That's to get the leading '@' in
7704 ;; Objective-C protection labels fontified.
7705 (goto-char (match-end 1))
7706 (when c-record-type-identifiers
7707 (c-record-ref-id (cons (match-beginning 1) (point))))
7708 (c-put-c-type-property (1- (point)) 'c-decl-end)
7709 (setq label-type t))
7710
7711 ;; All other cases of labels.
7712 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
7713
7714 ;; A colon label must have something before the colon.
7715 (not (eq (char-after) ?:))
7716
7717 ;; Check that we're not after a token that can't precede a label.
7718 (or
7719 ;; Trivially succeeds when there's no preceding token.
7720 ;; Succeeds when we're at a virtual semicolon.
7721 (if preceding-token-end
7722 (<= preceding-token-end (point-min))
7723 (save-excursion
7724 (c-backward-syntactic-ws)
7725 (setq preceding-token-end (point))
7726 (or (bobp)
7727 (c-at-vsemi-p))))
7728
7729 ;; Check if we're after a label, if we're after a closing
7730 ;; paren that belong to statement, and with
7731 ;; `c-label-prefix-re'. It's done in different order
7732 ;; depending on `assume-markup' since the checks have
7733 ;; different expensiveness.
7734 (if assume-markup
7735 (or
7736 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
7737 'c-decl-end)
7738
7739 (save-excursion
7740 (goto-char (1- preceding-token-end))
7741 (c-beginning-of-current-token)
7742 (or (looking-at c-label-prefix-re)
7743 (looking-at c-block-stmt-1-key)))
7744
7745 (and (eq (char-before preceding-token-end) ?\))
7746 (c-after-conditional)))
7747
7748 (or
7749 (save-excursion
7750 (goto-char (1- preceding-token-end))
7751 (c-beginning-of-current-token)
7752 (or (looking-at c-label-prefix-re)
7753 (looking-at c-block-stmt-1-key)))
7754
7755 (cond
7756 ((eq (char-before preceding-token-end) ?\))
7757 (c-after-conditional))
7758
7759 ((eq (char-before preceding-token-end) ?:)
7760 ;; Might be after another label, so check it recursively.
7761 (save-restriction
7762 (save-excursion
7763 (goto-char (1- preceding-token-end))
7764 ;; Essentially the same as the
7765 ;; `c-syntactic-re-search-forward' regexp below.
7766 (setq macro-start
7767 (save-excursion (and (c-beginning-of-macro)
7768 (point))))
7769 (if macro-start (narrow-to-region macro-start (point-max)))
7770 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
7771 ;; Note: the following should work instead of the
7772 ;; narrow-to-region above. Investigate why not,
7773 ;; sometime. ACM, 2006-03-31.
7774 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
7775 ;; macro-start t)
7776 (let ((pte (point))
7777 ;; If the caller turned on recording for us,
7778 ;; it shouldn't apply when we check the
7779 ;; preceding label.
7780 c-record-type-identifiers)
7781 ;; A label can't start at a cpp directive. Check for
7782 ;; this, since c-forward-syntactic-ws would foul up on it.
7783 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
7784 (c-forward-syntactic-ws)
7785 (c-forward-label nil pte start))))))))))
7786
7787 ;; Point is still at the beginning of the possible label construct.
7788 ;;
7789 ;; Check that the next nonsymbol token is ":", or that we're in one
7790 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
7791 ;; arguments. FIXME: Should build this regexp from the language
7792 ;; constants.
7793 (cond
7794 ;; public: protected: private:
7795 ((and
7796 (c-major-mode-is 'c++-mode)
7797 (search-forward-regexp
7798 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
7799 (progn (backward-char)
7800 (c-forward-syntactic-ws limit)
7801 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
7802 (forward-char)
7803 (setq label-type t))
7804 ;; QT double keyword like "protected slots:" or goto target.
7805 ((progn (goto-char start) nil))
7806 ((when (c-syntactic-re-search-forward
7807 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
7808 (backward-char)
7809 (setq label-end (point))
7810 (setq qt-symbol-idx
7811 (and (c-major-mode-is 'c++-mode)
7812 (string-match
7813 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
7814 (buffer-substring start (point)))))
7815 (c-forward-syntactic-ws limit)
7816 (cond
7817 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
7818 (forward-char)
7819 (setq label-type
7820 (if (or (string= "signals" ; Special QT macro
7821 (setq kwd (buffer-substring-no-properties start label-end)))
7822 (string= "Q_SIGNALS" kwd))
7823 'qt-1kwd-colon
7824 'goto-target)))
7825 ((and qt-symbol-idx
7826 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
7827 (progn (c-forward-syntactic-ws limit)
7828 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
7829 (forward-char)
7830 (setq label-type 'qt-2kwds-colon)))))))
7831
7832 (save-restriction
7833 (narrow-to-region start (point))
7834
7835 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
7836 (catch 'check-label
7837 (goto-char start)
7838 (while (progn
7839 (when (looking-at c-nonlabel-token-key)
7840 (goto-char start)
7841 (setq label-type nil)
7842 (throw 'check-label nil))
7843 (and (c-safe (c-forward-sexp)
7844 (c-forward-syntactic-ws)
7845 t)
7846 (not (eobp)))))
7847
7848 ;; Record the identifiers in the label for fontification, unless
7849 ;; it begins with `c-label-kwds' in which case the following
7850 ;; identifiers are part of a (constant) expression that
7851 ;; shouldn't be fontified.
7852 (when (and c-record-type-identifiers
7853 (progn (goto-char start)
7854 (not (looking-at c-label-kwds-regexp))))
7855 (while (c-syntactic-re-search-forward c-symbol-key nil t)
7856 (c-record-ref-id (cons (match-beginning 0)
7857 (match-end 0)))))
7858
7859 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
7860 (goto-char (point-max)))))
7861
7862 (t
7863 ;; Not a label.
7864 (goto-char start)))
7865 label-type))
7866
7867 (defun c-forward-objc-directive ()
7868 ;; Assuming the point is at the beginning of a token, try to move
7869 ;; forward to the end of the Objective-C directive that starts
7870 ;; there. Return t if a directive was fully recognized, otherwise
7871 ;; the point is moved as far as one could be successfully parsed and
7872 ;; nil is returned.
7873 ;;
7874 ;; This function records identifier ranges on
7875 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7876 ;; `c-record-type-identifiers' is non-nil.
7877 ;;
7878 ;; This function might do hidden buffer changes.
7879
7880 (let ((start (point))
7881 start-char
7882 (c-promote-possible-types t)
7883 lim
7884 ;; Turn off recognition of angle bracket arglists while parsing
7885 ;; types here since the protocol reference list might then be
7886 ;; considered part of the preceding name or superclass-name.
7887 c-recognize-<>-arglists)
7888
7889 (if (or
7890 (when (looking-at
7891 (eval-when-compile
7892 (c-make-keywords-re t
7893 (append (c-lang-const c-protection-kwds objc)
7894 '("@end"))
7895 'objc-mode)))
7896 (goto-char (match-end 1))
7897 t)
7898
7899 (and
7900 (looking-at
7901 (eval-when-compile
7902 (c-make-keywords-re t
7903 '("@interface" "@implementation" "@protocol")
7904 'objc-mode)))
7905
7906 ;; Handle the name of the class itself.
7907 (progn
7908 ;; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
7909 ;; at EOB.
7910 (goto-char (match-end 0))
7911 (setq lim (point))
7912 (c-skip-ws-forward)
7913 (c-forward-type))
7914
7915 (catch 'break
7916 ;; Look for ": superclass-name" or "( category-name )".
7917 (when (looking-at "[:\(]")
7918 (setq start-char (char-after))
7919 (forward-char)
7920 (c-forward-syntactic-ws)
7921 (unless (c-forward-type) (throw 'break nil))
7922 (when (eq start-char ?\()
7923 (unless (eq (char-after) ?\)) (throw 'break nil))
7924 (forward-char)
7925 (c-forward-syntactic-ws)))
7926
7927 ;; Look for a protocol reference list.
7928 (if (eq (char-after) ?<)
7929 (let ((c-recognize-<>-arglists t)
7930 (c-parse-and-markup-<>-arglists t)
7931 c-restricted-<>-arglists)
7932 (c-forward-<>-arglist t))
7933 t))))
7934
7935 (progn
7936 (c-backward-syntactic-ws lim)
7937 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
7938 (c-put-c-type-property (1- (point)) 'c-decl-end)
7939 t)
7940
7941 (c-clear-c-type-property start (point) 'c-decl-end)
7942 nil)))
7943
7944 (defun c-beginning-of-inheritance-list (&optional lim)
7945 ;; Go to the first non-whitespace after the colon that starts a
7946 ;; multiple inheritance introduction. Optional LIM is the farthest
7947 ;; back we should search.
7948 ;;
7949 ;; This function might do hidden buffer changes.
7950 (c-with-syntax-table c++-template-syntax-table
7951 (c-backward-token-2 0 t lim)
7952 (while (and (or (looking-at c-symbol-start)
7953 (looking-at "[<,]\\|::"))
7954 (zerop (c-backward-token-2 1 t lim))))))
7955
7956 (defun c-in-method-def-p ()
7957 ;; Return nil if we aren't in a method definition, otherwise the
7958 ;; position of the initial [+-].
7959 ;;
7960 ;; This function might do hidden buffer changes.
7961 (save-excursion
7962 (beginning-of-line)
7963 (and c-opt-method-key
7964 (looking-at c-opt-method-key)
7965 (point))
7966 ))
7967
7968 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
7969 (defun c-in-gcc-asm-p ()
7970 ;; Return non-nil if point is within a gcc \"asm\" block.
7971 ;;
7972 ;; This should be called with point inside an argument list.
7973 ;;
7974 ;; Only one level of enclosing parentheses is considered, so for
7975 ;; instance `nil' is returned when in a function call within an asm
7976 ;; operand.
7977 ;;
7978 ;; This function might do hidden buffer changes.
7979
7980 (and c-opt-asm-stmt-key
7981 (save-excursion
7982 (beginning-of-line)
7983 (backward-up-list 1)
7984 (c-beginning-of-statement-1 (point-min) nil t)
7985 (looking-at c-opt-asm-stmt-key))))
7986
7987 (defun c-at-toplevel-p ()
7988 "Return a determination as to whether point is \"at the top level\".
7989 Informally, \"at the top level\" is anywhere where you can write
7990 a function.
7991
7992 More precisely, being at the top-level means that point is either
7993 outside any enclosing block (such as a function definition), or
7994 directly inside a class, namespace or other block that contains
7995 another declaration level.
7996
7997 If point is not at the top-level (e.g. it is inside a method
7998 definition), then nil is returned. Otherwise, if point is at a
7999 top-level not enclosed within a class definition, t is returned.
8000 Otherwise, a 2-vector is returned where the zeroth element is the
8001 buffer position of the start of the class declaration, and the first
8002 element is the buffer position of the enclosing class's opening
8003 brace.
8004
8005 Note that this function might do hidden buffer changes. See the
8006 comment at the start of cc-engine.el for more info."
8007 (let ((paren-state (c-parse-state)))
8008 (or (not (c-most-enclosing-brace paren-state))
8009 (c-search-uplist-for-classkey paren-state))))
8010
8011 (defun c-just-after-func-arglist-p (&optional lim)
8012 ;; Return non-nil if the point is in the region after the argument
8013 ;; list of a function and its opening brace (or semicolon in case it
8014 ;; got no body). If there are K&R style argument declarations in
8015 ;; that region, the point has to be inside the first one for this
8016 ;; function to recognize it.
8017 ;;
8018 ;; If successful, the point is moved to the first token after the
8019 ;; function header (see `c-forward-decl-or-cast-1' for details) and
8020 ;; the position of the opening paren of the function arglist is
8021 ;; returned.
8022 ;;
8023 ;; The point is clobbered if not successful.
8024 ;;
8025 ;; LIM is used as bound for backward buffer searches.
8026 ;;
8027 ;; This function might do hidden buffer changes.
8028
8029 (let ((beg (point)) id-start)
8030 (and
8031 (eq (c-beginning-of-statement-1 lim) 'same)
8032
8033 (not (and (c-major-mode-is 'objc-mode)
8034 (c-forward-objc-directive)))
8035
8036 (setq id-start
8037 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
8038 (< id-start beg)
8039
8040 ;; There should not be a '=' or ',' between beg and the
8041 ;; start of the declaration since that means we were in the
8042 ;; "expression part" of the declaration.
8043 (or (> (point) beg)
8044 (not (looking-at "[=,]")))
8045
8046 (save-excursion
8047 ;; Check that there's an arglist paren in the
8048 ;; declaration.
8049 (goto-char id-start)
8050 (cond ((eq (char-after) ?\()
8051 ;; The declarator is a paren expression, so skip past it
8052 ;; so that we don't get stuck on that instead of the
8053 ;; function arglist.
8054 (c-forward-sexp))
8055 ((and c-opt-op-identifier-prefix
8056 (looking-at c-opt-op-identifier-prefix))
8057 ;; Don't trip up on "operator ()".
8058 (c-forward-token-2 2 t)))
8059 (and (< (point) beg)
8060 (c-syntactic-re-search-forward "(" beg t t)
8061 (1- (point)))))))
8062
8063 (defun c-in-knr-argdecl (&optional lim)
8064 ;; Return the position of the first argument declaration if point is
8065 ;; inside a K&R style argument declaration list, nil otherwise.
8066 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
8067 ;; position that bounds the backward search for the argument list.
8068 ;;
8069 ;; Point must be within a possible K&R region, e.g. just before a top-level
8070 ;; "{". It must be outside of parens and brackets. The test can return
8071 ;; false positives otherwise.
8072 ;;
8073 ;; This function might do hidden buffer changes.
8074
8075 (save-excursion
8076 (save-restriction
8077 ;; If we're in a macro, our search range is restricted to it. Narrow to
8078 ;; the searchable range.
8079 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
8080 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
8081 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
8082 before-lparen after-rparen
8083 (pp-count-out 20)) ; Max number of paren/brace constructs before
8084 ; we give up
8085 (narrow-to-region low-lim (or macro-end (point-max)))
8086
8087 ;; Search backwards for the defun's argument list. We give up if we
8088 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
8089 ;; a knr region) or BOB.
8090 ;;
8091 ;; The criterion for a paren structure being the arg list is:
8092 ;; o - there is non-WS stuff after it but before any "{"; AND
8093 ;; o - the token after it isn't a ";" AND
8094 ;; o - it is preceded by either an identifier (the function name) or
8095 ;; a macro expansion like "DEFUN (...)"; AND
8096 ;; o - its content is a non-empty comma-separated list of identifiers
8097 ;; (an empty arg list won't have a knr region).
8098 ;;
8099 ;; The following snippet illustrates these rules:
8100 ;; int foo (bar, baz, yuk)
8101 ;; int bar [] ;
8102 ;; int (*baz) (my_type) ;
8103 ;; int (*) (void) (*yuk) (void) ;
8104 ;; {
8105
8106 (catch 'knr
8107 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
8108 (setq pp-count-out (1- pp-count-out))
8109 (c-syntactic-skip-backward "^)]}=")
8110 (cond ((eq (char-before) ?\))
8111 (setq after-rparen (point)))
8112 ((eq (char-before) ?\])
8113 (setq after-rparen nil))
8114 (t ; either } (hit previous defun) or = or no more
8115 ; parens/brackets.
8116 (throw 'knr nil)))
8117
8118 (if after-rparen
8119 ;; We're inside a paren. Could it be our argument list....?
8120 (if
8121 (and
8122 (progn
8123 (goto-char after-rparen)
8124 (unless (c-go-list-backward) (throw 'knr nil)) ;
8125 ;; FIXME!!! What about macros between the parens? 2007/01/20
8126 (setq before-lparen (point)))
8127
8128 ;; It can't be the arg list if next token is ; or {
8129 (progn (goto-char after-rparen)
8130 (c-forward-syntactic-ws)
8131 (not (memq (char-after) '(?\; ?\{ ?\=))))
8132
8133 ;; Is the thing preceding the list an identifier (the
8134 ;; function name), or a macro expansion?
8135 (progn
8136 (goto-char before-lparen)
8137 (eq (c-backward-token-2) 0)
8138 (or (eq (c-on-identifier) (point))
8139 (and (eq (char-after) ?\))
8140 (c-go-up-list-backward)
8141 (eq (c-backward-token-2) 0)
8142 (eq (c-on-identifier) (point)))))
8143
8144 ;; Have we got a non-empty list of comma-separated
8145 ;; identifiers?
8146 (progn
8147 (goto-char before-lparen)
8148 (c-forward-token-2) ; to first token inside parens
8149 (and
8150 (c-on-identifier)
8151 (c-forward-token-2)
8152 (catch 'id-list
8153 (while (eq (char-after) ?\,)
8154 (c-forward-token-2)
8155 (unless (c-on-identifier) (throw 'id-list nil))
8156 (c-forward-token-2))
8157 (eq (char-after) ?\))))))
8158
8159 ;; ...Yes. We've identified the function's argument list.
8160 (throw 'knr
8161 (progn (goto-char after-rparen)
8162 (c-forward-syntactic-ws)
8163 (point)))
8164
8165 ;; ...No. The current parens aren't the function's arg list.
8166 (goto-char before-lparen))
8167
8168 (or (c-go-list-backward) ; backwards over [ .... ]
8169 (throw 'knr nil)))))))))
8170
8171 (defun c-skip-conditional ()
8172 ;; skip forward over conditional at point, including any predicate
8173 ;; statements in parentheses. No error checking is performed.
8174 ;;
8175 ;; This function might do hidden buffer changes.
8176 (c-forward-sexp (cond
8177 ;; else if()
8178 ((looking-at (concat "\\<else"
8179 "\\([ \t\n]\\|\\\\\n\\)+"
8180 "if\\>\\([^_]\\|$\\)"))
8181 3)
8182 ;; do, else, try, finally
8183 ((looking-at (concat "\\<\\("
8184 "do\\|else\\|try\\|finally"
8185 "\\)\\>\\([^_]\\|$\\)"))
8186 1)
8187 ;; for, if, while, switch, catch, synchronized, foreach
8188 (t 2))))
8189
8190 (defun c-after-conditional (&optional lim)
8191 ;; If looking at the token after a conditional then return the
8192 ;; position of its start, otherwise return nil.
8193 ;;
8194 ;; This function might do hidden buffer changes.
8195 (save-excursion
8196 (and (zerop (c-backward-token-2 1 t lim))
8197 (or (looking-at c-block-stmt-1-key)
8198 (and (eq (char-after) ?\()
8199 (zerop (c-backward-token-2 1 t lim))
8200 (or (looking-at c-block-stmt-2-key)
8201 (looking-at c-block-stmt-1-2-key))))
8202 (point))))
8203
8204 (defun c-after-special-operator-id (&optional lim)
8205 ;; If the point is after an operator identifier that isn't handled
8206 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
8207 ;; position of the start of that identifier is returned. nil is
8208 ;; returned otherwise. The point may be anywhere in the syntactic
8209 ;; whitespace after the last token of the operator identifier.
8210 ;;
8211 ;; This function might do hidden buffer changes.
8212 (save-excursion
8213 (and c-overloadable-operators-regexp
8214 (zerop (c-backward-token-2 1 nil lim))
8215 (looking-at c-overloadable-operators-regexp)
8216 (or (not c-opt-op-identifier-prefix)
8217 (and
8218 (zerop (c-backward-token-2 1 nil lim))
8219 (looking-at c-opt-op-identifier-prefix)))
8220 (point))))
8221
8222 (defsubst c-backward-to-block-anchor (&optional lim)
8223 ;; Assuming point is at a brace that opens a statement block of some
8224 ;; kind, move to the proper anchor point for that block. It might
8225 ;; need to be adjusted further by c-add-stmt-syntax, but the
8226 ;; position at return is suitable as start position for that
8227 ;; function.
8228 ;;
8229 ;; This function might do hidden buffer changes.
8230 (unless (= (point) (c-point 'boi))
8231 (let ((start (c-after-conditional lim)))
8232 (if start
8233 (goto-char start)))))
8234
8235 (defsubst c-backward-to-decl-anchor (&optional lim)
8236 ;; Assuming point is at a brace that opens the block of a top level
8237 ;; declaration of some kind, move to the proper anchor point for
8238 ;; that block.
8239 ;;
8240 ;; This function might do hidden buffer changes.
8241 (unless (= (point) (c-point 'boi))
8242 (c-beginning-of-statement-1 lim)))
8243
8244 (defun c-search-decl-header-end ()
8245 ;; Search forward for the end of the "header" of the current
8246 ;; declaration. That's the position where the definition body
8247 ;; starts, or the first variable initializer, or the ending
8248 ;; semicolon. I.e. search forward for the closest following
8249 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
8250 ;; _after_ the first found token, or at point-max if none is found.
8251 ;;
8252 ;; This function might do hidden buffer changes.
8253
8254 (let ((base (point)))
8255 (if (c-major-mode-is 'c++-mode)
8256
8257 ;; In C++ we need to take special care to handle operator
8258 ;; tokens and those pesky template brackets.
8259 (while (and
8260 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
8261 (or
8262 (c-end-of-current-token base)
8263 ;; Handle operator identifiers, i.e. ignore any
8264 ;; operator token preceded by "operator".
8265 (save-excursion
8266 (and (c-safe (c-backward-sexp) t)
8267 (looking-at c-opt-op-identifier-prefix)))
8268 (and (eq (char-before) ?<)
8269 (c-with-syntax-table c++-template-syntax-table
8270 (if (c-safe (goto-char (c-up-list-forward (point))))
8271 t
8272 (goto-char (point-max))
8273 nil)))))
8274 (setq base (point)))
8275
8276 (while (and
8277 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
8278 (c-end-of-current-token base))
8279 (setq base (point))))))
8280
8281 (defun c-beginning-of-decl-1 (&optional lim)
8282 ;; Go to the beginning of the current declaration, or the beginning
8283 ;; of the previous one if already at the start of it. Point won't
8284 ;; be moved out of any surrounding paren. Return a cons cell of the
8285 ;; form (MOVE . KNR-POS). MOVE is like the return value from
8286 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
8287 ;; style argument declarations (and they are to be recognized) then
8288 ;; KNR-POS is set to the start of the first such argument
8289 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
8290 ;; position that bounds the backward search.
8291 ;;
8292 ;; NB: Cases where the declaration continues after the block, as in
8293 ;; "struct foo { ... } bar;", are currently recognized as two
8294 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
8295 ;;
8296 ;; This function might do hidden buffer changes.
8297 (catch 'return
8298 (let* ((start (point))
8299 (last-stmt-start (point))
8300 (move (c-beginning-of-statement-1 lim nil t)))
8301
8302 ;; `c-beginning-of-statement-1' stops at a block start, but we
8303 ;; want to continue if the block doesn't begin a top level
8304 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
8305 ;; or an open paren.
8306 (let ((beg (point)) tentative-move)
8307 ;; Go back one "statement" each time round the loop until we're just
8308 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
8309 ;; an ObjC method. This will move over a multiple declaration whose
8310 ;; components are comma separated.
8311 (while (and
8312 ;; Must check with c-opt-method-key in ObjC mode.
8313 (not (and c-opt-method-key
8314 (looking-at c-opt-method-key)))
8315 (/= last-stmt-start (point))
8316 (progn
8317 (c-backward-syntactic-ws lim)
8318 (not (memq (char-before) '(?\; ?} ?: nil))))
8319 (save-excursion
8320 (backward-char)
8321 (not (looking-at "\\s(")))
8322 ;; Check that we don't move from the first thing in a
8323 ;; macro to its header.
8324 (not (eq (setq tentative-move
8325 (c-beginning-of-statement-1 lim nil t))
8326 'macro)))
8327 (setq last-stmt-start beg
8328 beg (point)
8329 move tentative-move))
8330 (goto-char beg))
8331
8332 (when c-recognize-knr-p
8333 (let ((fallback-pos (point)) knr-argdecl-start)
8334 ;; Handle K&R argdecls. Back up after the "statement" jumped
8335 ;; over by `c-beginning-of-statement-1', unless it was the
8336 ;; function body, in which case we're sitting on the opening
8337 ;; brace now. Then test if we're in a K&R argdecl region and
8338 ;; that we started at the other side of the first argdecl in
8339 ;; it.
8340 (unless (eq (char-after) ?{)
8341 (goto-char last-stmt-start))
8342 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
8343 (< knr-argdecl-start start)
8344 (progn
8345 (goto-char knr-argdecl-start)
8346 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
8347 (throw 'return
8348 (cons (if (eq (char-after fallback-pos) ?{)
8349 'previous
8350 'same)
8351 knr-argdecl-start))
8352 (goto-char fallback-pos))))
8353
8354 ;; `c-beginning-of-statement-1' counts each brace block as a separate
8355 ;; statement, so the result will be 'previous if we've moved over any.
8356 ;; So change our result back to 'same if necessary.
8357 ;;
8358 ;; If they were brace list initializers we might not have moved over a
8359 ;; declaration boundary though, so change it to 'same if we've moved
8360 ;; past a '=' before '{', but not ';'. (This ought to be integrated
8361 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
8362 ;; potentially can search over a large amount of text.). Take special
8363 ;; pains not to get mislead by C++'s "operator=", and the like.
8364 (if (and (eq move 'previous)
8365 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
8366 c++-template-syntax-table
8367 (syntax-table))
8368 (save-excursion
8369 (and
8370 (progn
8371 (while ; keep going back to "[;={"s until we either find
8372 ; no more, or get to one which isn't an "operator ="
8373 (and (c-syntactic-re-search-forward "[;={]" start t t t)
8374 (eq (char-before) ?=)
8375 c-overloadable-operators-regexp
8376 c-opt-op-identifier-prefix
8377 (save-excursion
8378 (eq (c-backward-token-2) 0)
8379 (looking-at c-overloadable-operators-regexp)
8380 (eq (c-backward-token-2) 0)
8381 (looking-at c-opt-op-identifier-prefix))))
8382 (eq (char-before) ?=))
8383 (c-syntactic-re-search-forward "[;{]" start t t)
8384 (eq (char-before) ?{)
8385 (c-safe (goto-char (c-up-list-forward (point))) t)
8386 (not (c-syntactic-re-search-forward ";" start t t))))))
8387 (cons 'same nil)
8388 (cons move nil)))))
8389
8390 (defun c-end-of-decl-1 ()
8391 ;; Assuming point is at the start of a declaration (as detected by
8392 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
8393 ;; `c-beginning-of-decl-1', this function handles the case when a
8394 ;; block is followed by identifiers in e.g. struct declarations in C
8395 ;; or C++. If a proper end was found then t is returned, otherwise
8396 ;; point is moved as far as possible within the current sexp and nil
8397 ;; is returned. This function doesn't handle macros; use
8398 ;; `c-end-of-macro' instead in those cases.
8399 ;;
8400 ;; This function might do hidden buffer changes.
8401 (let ((start (point))
8402 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
8403 c++-template-syntax-table
8404 (syntax-table))))
8405 (catch 'return
8406 (c-search-decl-header-end)
8407
8408 (when (and c-recognize-knr-p
8409 (eq (char-before) ?\;)
8410 (c-in-knr-argdecl start))
8411 ;; Stopped at the ';' in a K&R argdecl section which is
8412 ;; detected using the same criteria as in
8413 ;; `c-beginning-of-decl-1'. Move to the following block
8414 ;; start.
8415 (c-syntactic-re-search-forward "{" nil 'move t))
8416
8417 (when (eq (char-before) ?{)
8418 ;; Encountered a block in the declaration. Jump over it.
8419 (condition-case nil
8420 (goto-char (c-up-list-forward (point)))
8421 (error (goto-char (point-max))
8422 (throw 'return nil)))
8423 (if (or (not c-opt-block-decls-with-vars-key)
8424 (save-excursion
8425 (c-with-syntax-table decl-syntax-table
8426 (let ((lim (point)))
8427 (goto-char start)
8428 (not (and
8429 ;; Check for `c-opt-block-decls-with-vars-key'
8430 ;; before the first paren.
8431 (c-syntactic-re-search-forward
8432 (concat "[;=\(\[{]\\|\\("
8433 c-opt-block-decls-with-vars-key
8434 "\\)")
8435 lim t t t)
8436 (match-beginning 1)
8437 (not (eq (char-before) ?_))
8438 ;; Check that the first following paren is
8439 ;; the block.
8440 (c-syntactic-re-search-forward "[;=\(\[{]"
8441 lim t t t)
8442 (eq (char-before) ?{)))))))
8443 ;; The declaration doesn't have any of the
8444 ;; `c-opt-block-decls-with-vars' keywords in the
8445 ;; beginning, so it ends here at the end of the block.
8446 (throw 'return t)))
8447
8448 (c-with-syntax-table decl-syntax-table
8449 (while (progn
8450 (if (eq (char-before) ?\;)
8451 (throw 'return t))
8452 (c-syntactic-re-search-forward ";" nil 'move t))))
8453 nil)))
8454
8455 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
8456 ;; Assuming the point is at an open brace, check if it starts a
8457 ;; block that contains another declaration level, i.e. that isn't a
8458 ;; statement block or a brace list, and if so return non-nil.
8459 ;;
8460 ;; If the check is successful, the return value is the start of the
8461 ;; keyword that tells what kind of construct it is, i.e. typically
8462 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
8463 ;; the point will be at the start of the construct, before any
8464 ;; leading specifiers, otherwise it's at the returned position.
8465 ;;
8466 ;; The point is clobbered if the check is unsuccessful.
8467 ;;
8468 ;; CONTAINING-SEXP is the position of the open of the surrounding
8469 ;; paren, or nil if none.
8470 ;;
8471 ;; The optional LIMIT limits the backward search for the start of
8472 ;; the construct. It's assumed to be at a syntactically relevant
8473 ;; position.
8474 ;;
8475 ;; If any template arglists are found in the searched region before
8476 ;; the open brace, they get marked with paren syntax.
8477 ;;
8478 ;; This function might do hidden buffer changes.
8479
8480 (let ((open-brace (point)) kwd-start first-specifier-pos)
8481 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8482
8483 (when (and c-recognize-<>-arglists
8484 (eq (char-before) ?>))
8485 ;; Could be at the end of a template arglist.
8486 (let ((c-parse-and-markup-<>-arglists t))
8487 (while (and
8488 (c-backward-<>-arglist nil limit)
8489 (progn
8490 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8491 (eq (char-before) ?>))))))
8492
8493 ;; Note: Can't get bogus hits inside template arglists below since they
8494 ;; have gotten paren syntax above.
8495 (when (and
8496 ;; If `goto-start' is set we begin by searching for the
8497 ;; first possible position of a leading specifier list.
8498 ;; The `c-decl-block-key' search continues from there since
8499 ;; we know it can't match earlier.
8500 (if goto-start
8501 (when (c-syntactic-re-search-forward c-symbol-start
8502 open-brace t t)
8503 (goto-char (setq first-specifier-pos (match-beginning 0)))
8504 t)
8505 t)
8506
8507 (cond
8508 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
8509 (goto-char (setq kwd-start (match-beginning 0)))
8510 (and
8511 ;; Exclude cases where we matched what would ordinarily
8512 ;; be a block declaration keyword, except where it's not
8513 ;; legal because it's part of a "compound keyword" like
8514 ;; "enum class". Of course, if c-after-brace-list-key
8515 ;; is nil, we can skip the test.
8516 (or (equal c-after-brace-list-key "\\<\\>")
8517 (save-match-data
8518 (save-excursion
8519 (not
8520 (and
8521 (looking-at c-after-brace-list-key)
8522 (= (c-backward-token-2 1 t) 0)
8523 (looking-at c-brace-list-key))))))
8524 (or
8525 ;; Found a keyword that can't be a type?
8526 (match-beginning 1)
8527
8528 ;; Can be a type too, in which case it's the return type of a
8529 ;; function (under the assumption that no declaration level
8530 ;; block construct starts with a type).
8531 (not (c-forward-type))
8532
8533 ;; Jumped over a type, but it could be a declaration keyword
8534 ;; followed by the declared identifier that we've jumped over
8535 ;; instead (e.g. in "class Foo {"). If it indeed is a type
8536 ;; then we should be at the declarator now, so check for a
8537 ;; valid declarator start.
8538 ;;
8539 ;; Note: This doesn't cope with the case when a declared
8540 ;; identifier is followed by e.g. '(' in a language where '('
8541 ;; also might be part of a declarator expression. Currently
8542 ;; there's no such language.
8543 (not (or (looking-at c-symbol-start)
8544 (looking-at c-type-decl-prefix-key))))))
8545
8546 ;; In Pike a list of modifiers may be followed by a brace
8547 ;; to make them apply to many identifiers. Note that the
8548 ;; match data will be empty on return in this case.
8549 ((and (c-major-mode-is 'pike-mode)
8550 (progn
8551 (goto-char open-brace)
8552 (= (c-backward-token-2) 0))
8553 (looking-at c-specifier-key)
8554 ;; Use this variant to avoid yet another special regexp.
8555 (c-keyword-member (c-keyword-sym (match-string 1))
8556 'c-modifier-kwds))
8557 (setq kwd-start (point))
8558 t)))
8559
8560 ;; Got a match.
8561
8562 (if goto-start
8563 ;; Back up over any preceding specifiers and their clauses
8564 ;; by going forward from `first-specifier-pos', which is the
8565 ;; earliest possible position where the specifier list can
8566 ;; start.
8567 (progn
8568 (goto-char first-specifier-pos)
8569
8570 (while (< (point) kwd-start)
8571 (if (looking-at c-symbol-key)
8572 ;; Accept any plain symbol token on the ground that
8573 ;; it's a specifier masked through a macro (just
8574 ;; like `c-forward-decl-or-cast-1' skip forward over
8575 ;; such tokens).
8576 ;;
8577 ;; Could be more restrictive wrt invalid keywords,
8578 ;; but that'd only occur in invalid code so there's
8579 ;; no use spending effort on it.
8580 (let ((end (match-end 0)))
8581 (unless (c-forward-keyword-clause 0)
8582 (goto-char end)
8583 (c-forward-syntactic-ws)))
8584
8585 ;; Can't parse a declaration preamble and is still
8586 ;; before `kwd-start'. That means `first-specifier-pos'
8587 ;; was in some earlier construct. Search again.
8588 (if (c-syntactic-re-search-forward c-symbol-start
8589 kwd-start 'move t)
8590 (goto-char (setq first-specifier-pos (match-beginning 0)))
8591 ;; Got no preamble before the block declaration keyword.
8592 (setq first-specifier-pos kwd-start))))
8593
8594 (goto-char first-specifier-pos))
8595 (goto-char kwd-start))
8596
8597 kwd-start)))
8598
8599 (defun c-search-uplist-for-classkey (paren-state)
8600 ;; Check if the closest containing paren sexp is a declaration
8601 ;; block, returning a 2 element vector in that case. Aref 0
8602 ;; contains the bufpos at boi of the class key line, and aref 1
8603 ;; contains the bufpos of the open brace. This function is an
8604 ;; obsolete wrapper for `c-looking-at-decl-block'.
8605 ;;
8606 ;; This function might do hidden buffer changes.
8607 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
8608 (when open-paren-pos
8609 (save-excursion
8610 (goto-char open-paren-pos)
8611 (when (and (eq (char-after) ?{)
8612 (c-looking-at-decl-block
8613 (c-safe-position open-paren-pos paren-state)
8614 nil))
8615 (back-to-indentation)
8616 (vector (point) open-paren-pos))))))
8617
8618 (defun c-most-enclosing-decl-block (paren-state)
8619 ;; Return the buffer position of the most enclosing decl-block brace (in the
8620 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
8621 ;; none was found.
8622 (let* ((open-brace (c-pull-open-brace paren-state))
8623 (next-open-brace (c-pull-open-brace paren-state)))
8624 (while (and open-brace
8625 (save-excursion
8626 (goto-char open-brace)
8627 (not (c-looking-at-decl-block next-open-brace nil))))
8628 (setq open-brace next-open-brace
8629 next-open-brace (c-pull-open-brace paren-state)))
8630 open-brace))
8631
8632 (defun c-cheap-inside-bracelist-p (paren-state)
8633 ;; Return the position of the L-brace if point is inside a brace list
8634 ;; initialization of an array, etc. This is an approximate function,
8635 ;; designed for speed over accuracy. It will not find every bracelist, but
8636 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
8637 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
8638 ;; is everywhere else.
8639 (let (b-pos)
8640 (save-excursion
8641 (while
8642 (and (setq b-pos (c-pull-open-brace paren-state))
8643 (progn (goto-char b-pos)
8644 (c-backward-sws)
8645 (c-backward-token-2)
8646 (not (looking-at "=")))))
8647 b-pos)))
8648
8649 (defun c-backward-colon-prefixed-type ()
8650 ;; We're at the token after what might be a type prefixed with a colon. Try
8651 ;; moving backward over this type and the colon. On success, return t and
8652 ;; leave point before colon; on failure, leave point unchanged. Will clobber
8653 ;; match data.
8654 (let ((here (point))
8655 (colon-pos nil))
8656 (save-excursion
8657 (while
8658 (and (eql (c-backward-token-2) 0)
8659 (or (not (looking-at "\\s)"))
8660 (c-go-up-list-backward))
8661 (cond
8662 ((eql (char-after) ?:)
8663 (setq colon-pos (point))
8664 (forward-char)
8665 (c-forward-syntactic-ws)
8666 (or (and (c-forward-type)
8667 (progn (c-forward-syntactic-ws)
8668 (eq (point) here)))
8669 (setq colon-pos nil))
8670 nil)
8671 ((eql (char-after) ?\()
8672 t)
8673 ((looking-at c-symbol-key)
8674 t)
8675 (t nil)))))
8676 (when colon-pos
8677 (goto-char colon-pos)
8678 t)))
8679
8680 (defun c-backward-over-enum-header ()
8681 ;; We're at a "{". Move back to the enum-like keyword that starts this
8682 ;; declaration and return t, otherwise don't move and return nil.
8683 (let ((here (point))
8684 up-sexp-pos before-identifier)
8685 (when c-recognize-post-brace-list-type-p
8686 (c-backward-colon-prefixed-type))
8687 (while
8688 (and
8689 (eq (c-backward-token-2) 0)
8690 (or (not (looking-at "\\s)"))
8691 (c-go-up-list-backward))
8692 (cond
8693 ((and (looking-at c-symbol-key) (c-on-identifier)
8694 (not before-identifier))
8695 (setq before-identifier t))
8696 ((and before-identifier
8697 (or (eql (char-after) ?,)
8698 (looking-at c-postfix-decl-spec-key)))
8699 (setq before-identifier nil)
8700 t)
8701 ((looking-at c-after-brace-list-key) t)
8702 ((looking-at c-brace-list-key) nil)
8703 ((and c-recognize-<>-arglists
8704 (eq (char-after) ?<)
8705 (looking-at "\\s("))
8706 t)
8707 (t nil))))
8708 (or (looking-at c-brace-list-key)
8709 (progn (goto-char here) nil))))
8710
8711 (defun c-inside-bracelist-p (containing-sexp paren-state)
8712 ;; return the buffer position of the beginning of the brace list
8713 ;; statement if we're inside a brace list, otherwise return nil.
8714 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
8715 ;; paren. PAREN-STATE is the remainder of the state of enclosing
8716 ;; braces
8717 ;;
8718 ;; N.B.: This algorithm can potentially get confused by cpp macros
8719 ;; placed in inconvenient locations. It's a trade-off we make for
8720 ;; speed.
8721 ;;
8722 ;; This function might do hidden buffer changes.
8723 (or
8724 ;; This will pick up brace list declarations.
8725 (save-excursion
8726 (goto-char containing-sexp)
8727 (c-backward-over-enum-header))
8728 ;; this will pick up array/aggregate init lists, even if they are nested.
8729 (save-excursion
8730 (let ((class-key
8731 ;; Pike can have class definitions anywhere, so we must
8732 ;; check for the class key here.
8733 (and (c-major-mode-is 'pike-mode)
8734 c-decl-block-key))
8735 bufpos braceassignp lim next-containing macro-start)
8736 (while (and (not bufpos)
8737 containing-sexp)
8738 (when paren-state
8739 (if (consp (car paren-state))
8740 (setq lim (cdr (car paren-state))
8741 paren-state (cdr paren-state))
8742 (setq lim (car paren-state)))
8743 (when paren-state
8744 (setq next-containing (car paren-state)
8745 paren-state (cdr paren-state))))
8746 (goto-char containing-sexp)
8747 (if (c-looking-at-inexpr-block next-containing next-containing)
8748 ;; We're in an in-expression block of some kind. Do not
8749 ;; check nesting. We deliberately set the limit to the
8750 ;; containing sexp, so that c-looking-at-inexpr-block
8751 ;; doesn't check for an identifier before it.
8752 (setq containing-sexp nil)
8753 ;; see if the open brace is preceded by = or [...] in
8754 ;; this statement, but watch out for operator=
8755 (setq braceassignp 'dontknow)
8756 (c-backward-token-2 1 t lim)
8757 ;; Checks to do only on the first sexp before the brace.
8758 (when (and c-opt-inexpr-brace-list-key
8759 (eq (char-after) ?\[))
8760 ;; In Java, an initialization brace list may follow
8761 ;; directly after "new Foo[]", so check for a "new"
8762 ;; earlier.
8763 (while (eq braceassignp 'dontknow)
8764 (setq braceassignp
8765 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
8766 ((looking-at c-opt-inexpr-brace-list-key) t)
8767 ((looking-at "\\sw\\|\\s_\\|[.[]")
8768 ;; Carry on looking if this is an
8769 ;; identifier (may contain "." in Java)
8770 ;; or another "[]" sexp.
8771 'dontknow)
8772 (t nil)))))
8773 ;; Checks to do on all sexps before the brace, up to the
8774 ;; beginning of the statement.
8775 (while (eq braceassignp 'dontknow)
8776 (cond ((eq (char-after) ?\;)
8777 (setq braceassignp nil))
8778 ((and class-key
8779 (looking-at class-key))
8780 (setq braceassignp nil))
8781 ((eq (char-after) ?=)
8782 ;; We've seen a =, but must check earlier tokens so
8783 ;; that it isn't something that should be ignored.
8784 (setq braceassignp 'maybe)
8785 (while (and (eq braceassignp 'maybe)
8786 (zerop (c-backward-token-2 1 t lim)))
8787 (setq braceassignp
8788 (cond
8789 ;; Check for operator =
8790 ((and c-opt-op-identifier-prefix
8791 (looking-at c-opt-op-identifier-prefix))
8792 nil)
8793 ;; Check for `<opchar>= in Pike.
8794 ((and (c-major-mode-is 'pike-mode)
8795 (or (eq (char-after) ?`)
8796 ;; Special case for Pikes
8797 ;; `[]=, since '[' is not in
8798 ;; the punctuation class.
8799 (and (eq (char-after) ?\[)
8800 (eq (char-before) ?`))))
8801 nil)
8802 ((looking-at "\\s.") 'maybe)
8803 ;; make sure we're not in a C++ template
8804 ;; argument assignment
8805 ((and
8806 (c-major-mode-is 'c++-mode)
8807 (save-excursion
8808 (let ((here (point))
8809 (pos< (progn
8810 (skip-chars-backward "^<>")
8811 (point))))
8812 (and (eq (char-before) ?<)
8813 (not (c-crosses-statement-barrier-p
8814 pos< here))
8815 (not (c-in-literal))
8816 ))))
8817 nil)
8818 (t t))))))
8819 (if (and (eq braceassignp 'dontknow)
8820 (/= (c-backward-token-2 1 t lim) 0))
8821 (setq braceassignp nil)))
8822 (cond
8823 (braceassignp
8824 ;; We've hit the beginning of the aggregate list.
8825 (c-beginning-of-statement-1
8826 (c-most-enclosing-brace paren-state))
8827 (setq bufpos (point)))
8828 ((eq (char-after) ?\;)
8829 ;; Brace lists can't contain a semicolon, so we're done.
8830 (setq containing-sexp nil))
8831 ((and (setq macro-start (point))
8832 (c-forward-to-cpp-define-body)
8833 (eq (point) containing-sexp))
8834 ;; We've a macro whose expansion starts with the '{'.
8835 ;; Heuristically, if we have a ';' in it we've not got a
8836 ;; brace list, otherwise we have.
8837 (let ((macro-end (progn (c-end-of-macro) (point))))
8838 (goto-char containing-sexp)
8839 (forward-char)
8840 (if (and (c-syntactic-re-search-forward "[;,]" macro-end t t)
8841 (eq (char-before) ?\;))
8842 (setq bufpos nil
8843 containing-sexp nil)
8844 (setq bufpos macro-start))))
8845 (t
8846 ;; Go up one level
8847 (setq containing-sexp next-containing
8848 lim nil
8849 next-containing nil)))))
8850
8851 bufpos))
8852 ))
8853
8854 (defun c-looking-at-special-brace-list (&optional lim)
8855 ;; If we're looking at the start of a pike-style list, i.e., `({ })',
8856 ;; `([ ])', `(< >)', etc., a cons of a cons of its starting and ending
8857 ;; positions and its entry in c-special-brace-lists is returned, nil
8858 ;; otherwise. The ending position is nil if the list is still open.
8859 ;; LIM is the limit for forward search. The point may either be at
8860 ;; the `(' or at the following paren character. Tries to check the
8861 ;; matching closer, but assumes it's correct if no balanced paren is
8862 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
8863 ;; a special brace list).
8864 ;;
8865 ;; This function might do hidden buffer changes.
8866 (if c-special-brace-lists
8867 (condition-case ()
8868 (save-excursion
8869 (let ((beg (point))
8870 inner-beg end type)
8871 (c-forward-syntactic-ws)
8872 (if (eq (char-after) ?\()
8873 (progn
8874 (forward-char 1)
8875 (c-forward-syntactic-ws)
8876 (setq inner-beg (point))
8877 (setq type (assq (char-after) c-special-brace-lists)))
8878 (if (setq type (assq (char-after) c-special-brace-lists))
8879 (progn
8880 (setq inner-beg (point))
8881 (c-backward-syntactic-ws)
8882 (forward-char -1)
8883 (setq beg (if (eq (char-after) ?\()
8884 (point)
8885 nil)))))
8886 (if (and beg type)
8887 (if (and (c-safe
8888 (goto-char beg)
8889 (c-forward-sexp 1)
8890 (setq end (point))
8891 (= (char-before) ?\)))
8892 (c-safe
8893 (goto-char inner-beg)
8894 (if (looking-at "\\s(")
8895 ;; Check balancing of the inner paren
8896 ;; below.
8897 (progn
8898 (c-forward-sexp 1)
8899 t)
8900 ;; If the inner char isn't a paren then
8901 ;; we can't check balancing, so just
8902 ;; check the char before the outer
8903 ;; closing paren.
8904 (goto-char end)
8905 (backward-char)
8906 (c-backward-syntactic-ws)
8907 (= (char-before) (cdr type)))))
8908 (if (or (/= (char-syntax (char-before)) ?\))
8909 (= (progn
8910 (c-forward-syntactic-ws)
8911 (point))
8912 (1- end)))
8913 (cons (cons beg end) type))
8914 (cons (list beg) type)))))
8915 (error nil))))
8916
8917 (defun c-looking-at-bos (&optional lim)
8918 ;; Return non-nil if between two statements or declarations, assuming
8919 ;; point is not inside a literal or comment.
8920 ;;
8921 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
8922 ;; are recommended instead.
8923 ;;
8924 ;; This function might do hidden buffer changes.
8925 (c-at-statement-start-p))
8926 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
8927
8928 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
8929 ;; Return non-nil if we're looking at the beginning of a block
8930 ;; inside an expression. The value returned is actually a cons of
8931 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
8932 ;; position of the beginning of the construct.
8933 ;;
8934 ;; LIM limits the backward search. CONTAINING-SEXP is the start
8935 ;; position of the closest containing list. If it's nil, the
8936 ;; containing paren isn't used to decide whether we're inside an
8937 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
8938 ;; needs to be farther back.
8939 ;;
8940 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
8941 ;; brace block might be done. It should only be used when the
8942 ;; construct can be assumed to be complete, i.e. when the original
8943 ;; starting position was further down than that.
8944 ;;
8945 ;; This function might do hidden buffer changes.
8946
8947 (save-excursion
8948 (let ((res 'maybe) passed-paren
8949 (closest-lim (or containing-sexp lim (point-min)))
8950 ;; Look at the character after point only as a last resort
8951 ;; when we can't disambiguate.
8952 (block-follows (and (eq (char-after) ?{) (point))))
8953
8954 (while (and (eq res 'maybe)
8955 (progn (c-backward-syntactic-ws)
8956 (> (point) closest-lim))
8957 (not (bobp))
8958 (progn (backward-char)
8959 (looking-at "[\]\).]\\|\\w\\|\\s_"))
8960 (c-safe (forward-char)
8961 (goto-char (scan-sexps (point) -1))))
8962
8963 (setq res
8964 (if (looking-at c-keywords-regexp)
8965 (let ((kw-sym (c-keyword-sym (match-string 1))))
8966 (cond
8967 ((and block-follows
8968 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
8969 (and (not (eq passed-paren ?\[))
8970 (or (not (looking-at c-class-key))
8971 ;; If the class definition is at the start of
8972 ;; a statement, we don't consider it an
8973 ;; in-expression class.
8974 (let ((prev (point)))
8975 (while (and
8976 (= (c-backward-token-2 1 nil closest-lim) 0)
8977 (eq (char-syntax (char-after)) ?w))
8978 (setq prev (point)))
8979 (goto-char prev)
8980 (not (c-at-statement-start-p)))
8981 ;; Also, in Pike we treat it as an
8982 ;; in-expression class if it's used in an
8983 ;; object clone expression.
8984 (save-excursion
8985 (and check-at-end
8986 (c-major-mode-is 'pike-mode)
8987 (progn (goto-char block-follows)
8988 (zerop (c-forward-token-2 1 t)))
8989 (eq (char-after) ?\())))
8990 (cons 'inexpr-class (point))))
8991 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
8992 (when (not passed-paren)
8993 (cons 'inexpr-statement (point))))
8994 ((c-keyword-member kw-sym 'c-lambda-kwds)
8995 (when (or (not passed-paren)
8996 (eq passed-paren ?\())
8997 (cons 'inlambda (point))))
8998 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
8999 nil)
9000 (t
9001 'maybe)))
9002
9003 (if (looking-at "\\s(")
9004 (if passed-paren
9005 (if (and (eq passed-paren ?\[)
9006 (eq (char-after) ?\[))
9007 ;; Accept several square bracket sexps for
9008 ;; Java array initializations.
9009 'maybe)
9010 (setq passed-paren (char-after))
9011 'maybe)
9012 'maybe))))
9013
9014 (if (eq res 'maybe)
9015 (when (and c-recognize-paren-inexpr-blocks
9016 block-follows
9017 containing-sexp
9018 (eq (char-after containing-sexp) ?\())
9019 (goto-char containing-sexp)
9020 (if (or (save-excursion
9021 (c-backward-syntactic-ws lim)
9022 (and (> (point) (or lim (point-min)))
9023 (c-on-identifier)))
9024 (and c-special-brace-lists
9025 (c-looking-at-special-brace-list)))
9026 nil
9027 (cons 'inexpr-statement (point))))
9028
9029 res))))
9030
9031 (defun c-looking-at-inexpr-block-backward (paren-state)
9032 ;; Returns non-nil if we're looking at the end of an in-expression
9033 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
9034 ;; PAREN-STATE is the paren state relevant at the current position.
9035 ;;
9036 ;; This function might do hidden buffer changes.
9037 (save-excursion
9038 ;; We currently only recognize a block.
9039 (let ((here (point))
9040 (elem (car-safe paren-state))
9041 containing-sexp)
9042 (when (and (consp elem)
9043 (progn (goto-char (cdr elem))
9044 (c-forward-syntactic-ws here)
9045 (= (point) here)))
9046 (goto-char (car elem))
9047 (if (setq paren-state (cdr paren-state))
9048 (setq containing-sexp (car-safe paren-state)))
9049 (c-looking-at-inexpr-block (c-safe-position containing-sexp
9050 paren-state)
9051 containing-sexp)))))
9052
9053 (defun c-at-macro-vsemi-p (&optional pos)
9054 ;; Is there a "virtual semicolon" at POS or point?
9055 ;; (See cc-defs.el for full details of "virtual semicolons".)
9056 ;;
9057 ;; This is true when point is at the last non syntactic WS position on the
9058 ;; line, there is a macro call last on the line, and this particular macro's
9059 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
9060 ;; semicolon.
9061 (save-excursion
9062 (save-restriction
9063 (widen)
9064 (if pos
9065 (goto-char pos)
9066 (setq pos (point)))
9067 (and
9068 c-macro-with-semi-re
9069 (eq (skip-chars-backward " \t") 0)
9070
9071 ;; Check we've got nothing after this except comments and empty lines
9072 ;; joined by escaped EOLs.
9073 (skip-chars-forward " \t") ; always returns non-nil.
9074 (progn
9075 (while ; go over 1 block comment per iteration.
9076 (and
9077 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
9078 (goto-char (match-end 0))
9079 (cond
9080 ((looking-at c-block-comment-start-regexp)
9081 (and (forward-comment 1)
9082 (skip-chars-forward " \t"))) ; always returns non-nil
9083 ((looking-at c-line-comment-start-regexp)
9084 (end-of-line)
9085 nil)
9086 (t nil))))
9087 (eolp))
9088
9089 (goto-char pos)
9090 (progn (c-backward-syntactic-ws)
9091 (eq (point) pos))
9092
9093 ;; Check for one of the listed macros being before point.
9094 (or (not (eq (char-before) ?\)))
9095 (when (c-go-list-backward)
9096 (c-backward-syntactic-ws)
9097 t))
9098 (c-simple-skip-symbol-backward)
9099 (looking-at c-macro-with-semi-re)
9100 (goto-char pos)
9101 (not (c-in-literal)))))) ; The most expensive check last.
9102
9103 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
9104
9105 \f
9106 ;; `c-guess-basic-syntax' and the functions that precedes it below
9107 ;; implements the main decision tree for determining the syntactic
9108 ;; analysis of the current line of code.
9109
9110 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
9111 ;; auto newline analysis.
9112 (defvar c-auto-newline-analysis nil)
9113
9114 (defun c-brace-anchor-point (bracepos)
9115 ;; BRACEPOS is the position of a brace in a construct like "namespace
9116 ;; Bar {". Return the anchor point in this construct; this is the
9117 ;; earliest symbol on the brace's line which isn't earlier than
9118 ;; "namespace".
9119 ;;
9120 ;; Currently (2007-08-17), "like namespace" means "matches
9121 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
9122 ;; or anything like that.
9123 (save-excursion
9124 (let ((boi (c-point 'boi bracepos)))
9125 (goto-char bracepos)
9126 (while (and (> (point) boi)
9127 (not (looking-at c-other-decl-block-key)))
9128 (c-backward-token-2))
9129 (if (> (point) boi) (point) boi))))
9130
9131 (defsubst c-add-syntax (symbol &rest args)
9132 ;; A simple function to prepend a new syntax element to
9133 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
9134 ;; should always be dynamically bound but since we read it first
9135 ;; we'll fail properly anyway if this function is misused.
9136 (setq c-syntactic-context (cons (cons symbol args)
9137 c-syntactic-context)))
9138
9139 (defsubst c-append-syntax (symbol &rest args)
9140 ;; Like `c-add-syntax' but appends to the end of the syntax list.
9141 ;; (Normally not necessary.)
9142 (setq c-syntactic-context (nconc c-syntactic-context
9143 (list (cons symbol args)))))
9144
9145 (defun c-add-stmt-syntax (syntax-symbol
9146 syntax-extra-args
9147 stop-at-boi-only
9148 containing-sexp
9149 paren-state)
9150 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
9151 ;; needed with further syntax elements of the types `substatement',
9152 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
9153 ;; `defun-block-intro'.
9154 ;;
9155 ;; Do the generic processing to anchor the given syntax symbol on
9156 ;; the preceding statement: Skip over any labels and containing
9157 ;; statements on the same line, and then search backward until we
9158 ;; find a statement or block start that begins at boi without a
9159 ;; label or comment.
9160 ;;
9161 ;; Point is assumed to be at the prospective anchor point for the
9162 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
9163 ;; skip past open parens and containing statements. Most of the added
9164 ;; syntax elements will get the same anchor point - the exception is
9165 ;; for an anchor in a construct like "namespace"[*] - this is as early
9166 ;; as possible in the construct but on the same line as the {.
9167 ;;
9168 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
9169 ;;
9170 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
9171 ;; syntax symbol. They are appended after the anchor point.
9172 ;;
9173 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
9174 ;; if the current statement starts there.
9175 ;;
9176 ;; Note: It's not a problem if PAREN-STATE "overshoots"
9177 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
9178 ;;
9179 ;; This function might do hidden buffer changes.
9180
9181 (if (= (point) (c-point 'boi))
9182 ;; This is by far the most common case, so let's give it special
9183 ;; treatment.
9184 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
9185
9186 (let ((syntax-last c-syntactic-context)
9187 (boi (c-point 'boi))
9188 ;; Set when we're on a label, so that we don't stop there.
9189 ;; FIXME: To be complete we should check if we're on a label
9190 ;; now at the start.
9191 on-label)
9192
9193 ;; Use point as the anchor point for "namespace", "extern", etc.
9194 (apply 'c-add-syntax syntax-symbol
9195 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
9196 (point) nil)
9197 syntax-extra-args)
9198
9199 ;; Loop while we have to back out of containing blocks.
9200 (while
9201 (and
9202 (catch 'back-up-block
9203
9204 ;; Loop while we have to back up statements.
9205 (while (or (/= (point) boi)
9206 on-label
9207 (looking-at c-comment-start-regexp))
9208
9209 ;; Skip past any comments that stands between the
9210 ;; statement start and boi.
9211 (let ((savepos (point)))
9212 (while (and (/= savepos boi)
9213 (c-backward-single-comment))
9214 (setq savepos (point)
9215 boi (c-point 'boi)))
9216 (goto-char savepos))
9217
9218 ;; Skip to the beginning of this statement or backward
9219 ;; another one.
9220 (let ((old-pos (point))
9221 (old-boi boi)
9222 (step-type (c-beginning-of-statement-1 containing-sexp)))
9223 (setq boi (c-point 'boi)
9224 on-label (eq step-type 'label))
9225
9226 (cond ((= (point) old-pos)
9227 ;; If we didn't move we're at the start of a block and
9228 ;; have to continue outside it.
9229 (throw 'back-up-block t))
9230
9231 ((and (eq step-type 'up)
9232 (>= (point) old-boi)
9233 (looking-at "else\\>[^_]")
9234 (save-excursion
9235 (goto-char old-pos)
9236 (looking-at "if\\>[^_]")))
9237 ;; Special case to avoid deeper and deeper indentation
9238 ;; of "else if" clauses.
9239 )
9240
9241 ((and (not stop-at-boi-only)
9242 (/= old-pos old-boi)
9243 (memq step-type '(up previous)))
9244 ;; If stop-at-boi-only is nil, we shouldn't back up
9245 ;; over previous or containing statements to try to
9246 ;; reach boi, so go back to the last position and
9247 ;; exit.
9248 (goto-char old-pos)
9249 (throw 'back-up-block nil))
9250
9251 (t
9252 (if (and (not stop-at-boi-only)
9253 (memq step-type '(up previous beginning)))
9254 ;; If we've moved into another statement then we
9255 ;; should no longer try to stop in the middle of a
9256 ;; line.
9257 (setq stop-at-boi-only t))
9258
9259 ;; Record this as a substatement if we skipped up one
9260 ;; level.
9261 (when (eq step-type 'up)
9262 (c-add-syntax 'substatement nil))))
9263 )))
9264
9265 containing-sexp)
9266
9267 ;; Now we have to go out of this block.
9268 (goto-char containing-sexp)
9269
9270 ;; Don't stop in the middle of a special brace list opener
9271 ;; like "({".
9272 (when c-special-brace-lists
9273 (let ((special-list (c-looking-at-special-brace-list)))
9274 (when (and special-list
9275 (< (car (car special-list)) (point)))
9276 (setq containing-sexp (car (car special-list)))
9277 (goto-char containing-sexp))))
9278
9279 (setq paren-state (c-whack-state-after containing-sexp paren-state)
9280 containing-sexp (c-most-enclosing-brace paren-state)
9281 boi (c-point 'boi))
9282
9283 ;; Analyze the construct in front of the block we've stepped out
9284 ;; from and add the right syntactic element for it.
9285 (let ((paren-pos (point))
9286 (paren-char (char-after))
9287 step-type)
9288
9289 (if (eq paren-char ?\()
9290 ;; Stepped out of a parenthesis block, so we're in an
9291 ;; expression now.
9292 (progn
9293 (when (/= paren-pos boi)
9294 (if (and c-recognize-paren-inexpr-blocks
9295 (progn
9296 (c-backward-syntactic-ws containing-sexp)
9297 (or (not (looking-at "\\>"))
9298 (not (c-on-identifier))))
9299 (save-excursion
9300 (goto-char (1+ paren-pos))
9301 (c-forward-syntactic-ws)
9302 (eq (char-after) ?{)))
9303 ;; Stepped out of an in-expression statement. This
9304 ;; syntactic element won't get an anchor pos.
9305 (c-add-syntax 'inexpr-statement)
9306
9307 ;; A parenthesis normally belongs to an arglist.
9308 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
9309
9310 (goto-char (max boi
9311 (if containing-sexp
9312 (1+ containing-sexp)
9313 (point-min))))
9314 (setq step-type 'same
9315 on-label nil))
9316
9317 ;; Stepped out of a brace block.
9318 (setq step-type (c-beginning-of-statement-1 containing-sexp)
9319 on-label (eq step-type 'label))
9320
9321 (if (and (eq step-type 'same)
9322 (/= paren-pos (point)))
9323 (let (inexpr)
9324 (cond
9325 ((save-excursion
9326 (goto-char paren-pos)
9327 (setq inexpr (c-looking-at-inexpr-block
9328 (c-safe-position containing-sexp paren-state)
9329 containing-sexp)))
9330 (c-add-syntax (if (eq (car inexpr) 'inlambda)
9331 'defun-block-intro
9332 'statement-block-intro)
9333 nil))
9334 ((looking-at c-other-decl-block-key)
9335 (c-add-syntax
9336 (cdr (assoc (match-string 1)
9337 c-other-decl-block-key-in-symbols-alist))
9338 (max (c-point 'boi paren-pos) (point))))
9339 (t (c-add-syntax 'defun-block-intro nil))))
9340
9341 (c-add-syntax 'statement-block-intro nil)))
9342
9343 (if (= paren-pos boi)
9344 ;; Always done if the open brace was at boi. The
9345 ;; c-beginning-of-statement-1 call above is necessary
9346 ;; anyway, to decide the type of block-intro to add.
9347 (goto-char paren-pos)
9348 (setq boi (c-point 'boi)))
9349 ))
9350
9351 ;; Fill in the current point as the anchor for all the symbols
9352 ;; added above.
9353 (let ((p c-syntactic-context) q)
9354 (while (not (eq p syntax-last))
9355 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
9356 (while q
9357 (unless (car q)
9358 (setcar q (point)))
9359 (setq q (cdr q)))
9360 (setq p (cdr p))))
9361 )))
9362
9363 (defun c-add-class-syntax (symbol
9364 containing-decl-open
9365 containing-decl-start
9366 containing-decl-kwd
9367 paren-state)
9368 ;; The inclass and class-close syntactic symbols are added in
9369 ;; several places and some work is needed to fix everything.
9370 ;; Therefore it's collected here.
9371 ;;
9372 ;; This function might do hidden buffer changes.
9373 (goto-char containing-decl-open)
9374 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
9375 (progn
9376 (c-add-syntax symbol containing-decl-open)
9377 containing-decl-open)
9378 (goto-char containing-decl-start)
9379 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
9380 ;; here, but we have to do like this for compatibility.
9381 (back-to-indentation)
9382 (c-add-syntax symbol (point))
9383 (if (and (c-keyword-member containing-decl-kwd
9384 'c-inexpr-class-kwds)
9385 (/= containing-decl-start (c-point 'boi containing-decl-start)))
9386 (c-add-syntax 'inexpr-class))
9387 (point)))
9388
9389 (defun c-guess-continued-construct (indent-point
9390 char-after-ip
9391 beg-of-same-or-containing-stmt
9392 containing-sexp
9393 paren-state)
9394 ;; This function contains the decision tree reached through both
9395 ;; cases 18 and 10. It's a continued statement or top level
9396 ;; construct of some kind.
9397 ;;
9398 ;; This function might do hidden buffer changes.
9399
9400 (let (special-brace-list placeholder)
9401 (goto-char indent-point)
9402 (skip-chars-forward " \t")
9403
9404 (cond
9405 ;; (CASE A removed.)
9406 ;; CASE B: open braces for class or brace-lists
9407 ((setq special-brace-list
9408 (or (and c-special-brace-lists
9409 (c-looking-at-special-brace-list))
9410 (eq char-after-ip ?{)))
9411
9412 (cond
9413 ;; CASE B.1: class-open
9414 ((save-excursion
9415 (and (eq (char-after) ?{)
9416 (c-looking-at-decl-block containing-sexp t)
9417 (setq beg-of-same-or-containing-stmt (point))))
9418 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
9419
9420 ;; CASE B.2: brace-list-open
9421 ((or (consp special-brace-list)
9422 (save-excursion
9423 (goto-char beg-of-same-or-containing-stmt)
9424 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
9425 indent-point t t t)))
9426 ;; The most semantically accurate symbol here is
9427 ;; brace-list-open, but we normally report it simply as a
9428 ;; statement-cont. The reason is that one normally adjusts
9429 ;; brace-list-open for brace lists as top-level constructs,
9430 ;; and brace lists inside statements is a completely different
9431 ;; context. C.f. case 5A.3.
9432 (c-beginning-of-statement-1 containing-sexp)
9433 (c-add-stmt-syntax (if c-auto-newline-analysis
9434 ;; Turn off the dwim above when we're
9435 ;; analyzing the nature of the brace
9436 ;; for the auto newline feature.
9437 'brace-list-open
9438 'statement-cont)
9439 nil nil
9440 containing-sexp paren-state))
9441
9442 ;; CASE B.3: The body of a function declared inside a normal
9443 ;; block. Can occur e.g. in Pike and when using gcc
9444 ;; extensions, but watch out for macros followed by blocks.
9445 ;; C.f. cases E, 16F and 17G.
9446 ((and (not (c-at-statement-start-p))
9447 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9448 'same)
9449 (save-excursion
9450 (let ((c-recognize-typeless-decls nil))
9451 ;; Turn off recognition of constructs that lacks a
9452 ;; type in this case, since that's more likely to be
9453 ;; a macro followed by a block.
9454 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9455 (c-add-stmt-syntax 'defun-open nil t
9456 containing-sexp paren-state))
9457
9458 ;; CASE B.4: Continued statement with block open. The most
9459 ;; accurate analysis is perhaps `statement-cont' together with
9460 ;; `block-open' but we play DWIM and use `substatement-open'
9461 ;; instead. The rationale is that this typically is a macro
9462 ;; followed by a block which makes it very similar to a
9463 ;; statement with a substatement block.
9464 (t
9465 (c-add-stmt-syntax 'substatement-open nil nil
9466 containing-sexp paren-state))
9467 ))
9468
9469 ;; CASE C: iostream insertion or extraction operator
9470 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
9471 (save-excursion
9472 (goto-char beg-of-same-or-containing-stmt)
9473 ;; If there is no preceding streamop in the statement
9474 ;; then indent this line as a normal statement-cont.
9475 (when (c-syntactic-re-search-forward
9476 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
9477 (c-add-syntax 'stream-op (c-point 'boi))
9478 t))))
9479
9480 ;; CASE E: In the "K&R region" of a function declared inside a
9481 ;; normal block. C.f. case B.3.
9482 ((and (save-excursion
9483 ;; Check that the next token is a '{'. This works as
9484 ;; long as no language that allows nested function
9485 ;; definitions allows stuff like member init lists, K&R
9486 ;; declarations or throws clauses there.
9487 ;;
9488 ;; Note that we do a forward search for something ahead
9489 ;; of the indentation line here. That's not good since
9490 ;; the user might not have typed it yet. Unfortunately
9491 ;; it's exceedingly tricky to recognize a function
9492 ;; prototype in a code block without resorting to this.
9493 (c-forward-syntactic-ws)
9494 (eq (char-after) ?{))
9495 (not (c-at-statement-start-p))
9496 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9497 'same)
9498 (save-excursion
9499 (let ((c-recognize-typeless-decls nil))
9500 ;; Turn off recognition of constructs that lacks a
9501 ;; type in this case, since that's more likely to be
9502 ;; a macro followed by a block.
9503 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9504 (c-add-stmt-syntax 'func-decl-cont nil t
9505 containing-sexp paren-state))
9506
9507 ;;CASE F: continued statement and the only preceding items are
9508 ;;annotations.
9509 ((and (c-major-mode-is 'java-mode)
9510 (setq placeholder (point))
9511 (c-beginning-of-statement-1)
9512 (progn
9513 (while (and (c-forward-annotation)
9514 (< (point) placeholder))
9515 (c-forward-syntactic-ws))
9516 t)
9517 (prog1
9518 (>= (point) placeholder)
9519 (goto-char placeholder)))
9520 (c-beginning-of-statement-1 containing-sexp)
9521 (c-add-syntax 'annotation-var-cont (point)))
9522
9523 ;; CASE G: a template list continuation?
9524 ;; Mostly a duplication of case 5D.3 to fix templates-19:
9525 ((and (c-major-mode-is 'c++-mode)
9526 (save-excursion
9527 (goto-char indent-point)
9528 (c-with-syntax-table c++-template-syntax-table
9529 (setq placeholder (c-up-list-backward)))
9530 (and placeholder
9531 (eq (char-after placeholder) ?<)
9532 (/= (char-before placeholder) ?<)
9533 (progn
9534 (goto-char (1+ placeholder))
9535 (not (looking-at c-<-op-cont-regexp))))))
9536 (c-with-syntax-table c++-template-syntax-table
9537 (goto-char placeholder)
9538 (c-beginning-of-statement-1 containing-sexp t))
9539 (if (save-excursion
9540 (c-backward-syntactic-ws containing-sexp)
9541 (eq (char-before) ?<))
9542 ;; In a nested template arglist.
9543 (progn
9544 (goto-char placeholder)
9545 (c-syntactic-skip-backward "^,;" containing-sexp t)
9546 (c-forward-syntactic-ws))
9547 (back-to-indentation))
9548 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9549 ;; template aware.
9550 (c-add-syntax 'template-args-cont (point) placeholder))
9551
9552 ;; CASE D: continued statement.
9553 (t
9554 (c-beginning-of-statement-1 containing-sexp)
9555 (c-add-stmt-syntax 'statement-cont nil nil
9556 containing-sexp paren-state))
9557 )))
9558
9559 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
9560 ;; 2005/11/29).
9561 ;;;###autoload
9562 (defun c-guess-basic-syntax ()
9563 "Return the syntactic context of the current line."
9564 (save-excursion
9565 (beginning-of-line)
9566 (c-save-buffer-state
9567 ((indent-point (point))
9568 (case-fold-search nil)
9569 open-paren-in-column-0-is-defun-start
9570 ;; A whole ugly bunch of various temporary variables. Have
9571 ;; to declare them here since it's not possible to declare
9572 ;; a variable with only the scope of a cond test and the
9573 ;; following result clauses, and most of this function is a
9574 ;; single gigantic cond. :P
9575 literal char-before-ip before-ws-ip char-after-ip macro-start
9576 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
9577 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
9578 containing-<
9579 ;; The following record some positions for the containing
9580 ;; declaration block if we're directly within one:
9581 ;; `containing-decl-open' is the position of the open
9582 ;; brace. `containing-decl-start' is the start of the
9583 ;; declaration. `containing-decl-kwd' is the keyword
9584 ;; symbol of the keyword that tells what kind of block it
9585 ;; is.
9586 containing-decl-open
9587 containing-decl-start
9588 containing-decl-kwd
9589 ;; The open paren of the closest surrounding sexp or nil if
9590 ;; there is none.
9591 containing-sexp
9592 ;; The position after the closest preceding brace sexp
9593 ;; (nested sexps are ignored), or the position after
9594 ;; `containing-sexp' if there is none, or (point-min) if
9595 ;; `containing-sexp' is nil.
9596 lim
9597 ;; The paren state outside `containing-sexp', or at
9598 ;; `indent-point' if `containing-sexp' is nil.
9599 (paren-state (c-parse-state))
9600 ;; There's always at most one syntactic element which got
9601 ;; an anchor pos. It's stored in syntactic-relpos.
9602 syntactic-relpos
9603 (c-stmt-delim-chars c-stmt-delim-chars))
9604
9605 ;; Check if we're directly inside an enclosing declaration
9606 ;; level block.
9607 (when (and (setq containing-sexp
9608 (c-most-enclosing-brace paren-state))
9609 (progn
9610 (goto-char containing-sexp)
9611 (eq (char-after) ?{))
9612 (setq placeholder
9613 (c-looking-at-decl-block
9614 (c-most-enclosing-brace paren-state
9615 containing-sexp)
9616 t)))
9617 (setq containing-decl-open containing-sexp
9618 containing-decl-start (point)
9619 containing-sexp nil)
9620 (goto-char placeholder)
9621 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
9622 (c-keyword-sym (match-string 1)))))
9623
9624 ;; Init some position variables.
9625 (if paren-state
9626 (progn
9627 (setq containing-sexp (car paren-state)
9628 paren-state (cdr paren-state))
9629 (if (consp containing-sexp)
9630 (save-excursion
9631 (goto-char (cdr containing-sexp))
9632 (if (and (c-major-mode-is 'c++-mode)
9633 (c-back-over-member-initializer-braces))
9634 (c-syntactic-skip-backward "^}" nil t))
9635 (setq lim (point))
9636 (if paren-state
9637 ;; Ignore balanced paren. The next entry
9638 ;; can't be another one.
9639 (setq containing-sexp (car paren-state)
9640 paren-state (cdr paren-state))
9641 ;; If there is no surrounding open paren then
9642 ;; put the last balanced pair back on paren-state.
9643 (setq paren-state (cons containing-sexp paren-state)
9644 containing-sexp nil)))
9645 (setq lim (1+ containing-sexp))))
9646 (setq lim (point-min)))
9647
9648 ;; If we're in a parenthesis list then ',' delimits the
9649 ;; "statements" rather than being an operator (with the
9650 ;; exception of the "for" clause). This difference is
9651 ;; typically only noticeable when statements are used in macro
9652 ;; arglists.
9653 (when (and containing-sexp
9654 (eq (char-after containing-sexp) ?\())
9655 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
9656 ;; cache char before and after indent point, and move point to
9657 ;; the most likely position to perform the majority of tests
9658 (goto-char indent-point)
9659 (c-backward-syntactic-ws lim)
9660 (setq before-ws-ip (point)
9661 char-before-ip (char-before))
9662 (goto-char indent-point)
9663 (skip-chars-forward " \t")
9664 (setq char-after-ip (char-after))
9665
9666 ;; are we in a literal?
9667 (setq literal (c-in-literal lim))
9668
9669 ;; now figure out syntactic qualities of the current line
9670 (cond
9671
9672 ;; CASE 1: in a string.
9673 ((eq literal 'string)
9674 (c-add-syntax 'string (c-point 'bopl)))
9675
9676 ;; CASE 2: in a C or C++ style comment.
9677 ((and (memq literal '(c c++))
9678 ;; This is a kludge for XEmacs where we use
9679 ;; `buffer-syntactic-context', which doesn't correctly
9680 ;; recognize "\*/" to end a block comment.
9681 ;; `parse-partial-sexp' which is used by
9682 ;; `c-literal-limits' will however do that in most
9683 ;; versions, which results in that we get nil from
9684 ;; `c-literal-limits' even when `c-in-literal' claims
9685 ;; we're inside a comment.
9686 (setq placeholder (c-literal-limits lim)))
9687 (c-add-syntax literal (car placeholder)))
9688
9689 ;; CASE 3: in a cpp preprocessor macro continuation.
9690 ((and (save-excursion
9691 (when (c-beginning-of-macro)
9692 (setq macro-start (point))))
9693 (/= macro-start (c-point 'boi))
9694 (progn
9695 (setq tmpsymbol 'cpp-macro-cont)
9696 (or (not c-syntactic-indentation-in-macros)
9697 (save-excursion
9698 (goto-char macro-start)
9699 ;; If at the beginning of the body of a #define
9700 ;; directive then analyze as cpp-define-intro
9701 ;; only. Go on with the syntactic analysis
9702 ;; otherwise. in-macro-expr is set if we're in a
9703 ;; cpp expression, i.e. before the #define body
9704 ;; or anywhere in a non-#define directive.
9705 (if (c-forward-to-cpp-define-body)
9706 (let ((indent-boi (c-point 'boi indent-point)))
9707 (setq in-macro-expr (> (point) indent-boi)
9708 tmpsymbol 'cpp-define-intro)
9709 (= (point) indent-boi))
9710 (setq in-macro-expr t)
9711 nil)))))
9712 (c-add-syntax tmpsymbol macro-start)
9713 (setq macro-start nil))
9714
9715 ;; CASE 11: an else clause?
9716 ((looking-at "else\\>[^_]")
9717 (c-beginning-of-statement-1 containing-sexp)
9718 (c-add-stmt-syntax 'else-clause nil t
9719 containing-sexp paren-state))
9720
9721 ;; CASE 12: while closure of a do/while construct?
9722 ((and (looking-at "while\\>[^_]")
9723 (save-excursion
9724 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
9725 'beginning)
9726 (setq placeholder (point)))))
9727 (goto-char placeholder)
9728 (c-add-stmt-syntax 'do-while-closure nil t
9729 containing-sexp paren-state))
9730
9731 ;; CASE 13: A catch or finally clause? This case is simpler
9732 ;; than if-else and do-while, because a block is required
9733 ;; after every try, catch and finally.
9734 ((save-excursion
9735 (and (cond ((c-major-mode-is 'c++-mode)
9736 (looking-at "catch\\>[^_]"))
9737 ((c-major-mode-is 'java-mode)
9738 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
9739 (and (c-safe (c-backward-syntactic-ws)
9740 (c-backward-sexp)
9741 t)
9742 (eq (char-after) ?{)
9743 (c-safe (c-backward-syntactic-ws)
9744 (c-backward-sexp)
9745 t)
9746 (if (eq (char-after) ?\()
9747 (c-safe (c-backward-sexp) t)
9748 t))
9749 (looking-at "\\(try\\|catch\\)\\>[^_]")
9750 (setq placeholder (point))))
9751 (goto-char placeholder)
9752 (c-add-stmt-syntax 'catch-clause nil t
9753 containing-sexp paren-state))
9754
9755 ;; CASE 18: A substatement we can recognize by keyword.
9756 ((save-excursion
9757 (and c-opt-block-stmt-key
9758 (not (eq char-before-ip ?\;))
9759 (not (c-at-vsemi-p before-ws-ip))
9760 (not (memq char-after-ip '(?\) ?\] ?,)))
9761 (or (not (eq char-before-ip ?}))
9762 (c-looking-at-inexpr-block-backward c-state-cache))
9763 (> (point)
9764 (progn
9765 ;; Ought to cache the result from the
9766 ;; c-beginning-of-statement-1 calls here.
9767 (setq placeholder (point))
9768 (while (eq (setq step-type
9769 (c-beginning-of-statement-1 lim))
9770 'label))
9771 (if (eq step-type 'previous)
9772 (goto-char placeholder)
9773 (setq placeholder (point))
9774 (if (and (eq step-type 'same)
9775 (not (looking-at c-opt-block-stmt-key)))
9776 ;; Step up to the containing statement if we
9777 ;; stayed in the same one.
9778 (let (step)
9779 (while (eq
9780 (setq step
9781 (c-beginning-of-statement-1 lim))
9782 'label))
9783 (if (eq step 'up)
9784 (setq placeholder (point))
9785 ;; There was no containing statement after all.
9786 (goto-char placeholder)))))
9787 placeholder))
9788 (if (looking-at c-block-stmt-2-key)
9789 ;; Require a parenthesis after these keywords.
9790 ;; Necessary to catch e.g. synchronized in Java,
9791 ;; which can be used both as statement and
9792 ;; modifier.
9793 (and (zerop (c-forward-token-2 1 nil))
9794 (eq (char-after) ?\())
9795 (looking-at c-opt-block-stmt-key))))
9796
9797 (if (eq step-type 'up)
9798 ;; CASE 18A: Simple substatement.
9799 (progn
9800 (goto-char placeholder)
9801 (cond
9802 ((eq char-after-ip ?{)
9803 (c-add-stmt-syntax 'substatement-open nil nil
9804 containing-sexp paren-state))
9805 ((save-excursion
9806 (goto-char indent-point)
9807 (back-to-indentation)
9808 (c-forward-label))
9809 (c-add-stmt-syntax 'substatement-label nil nil
9810 containing-sexp paren-state))
9811 (t
9812 (c-add-stmt-syntax 'substatement nil nil
9813 containing-sexp paren-state))))
9814
9815 ;; CASE 18B: Some other substatement. This is shared
9816 ;; with case 10.
9817 (c-guess-continued-construct indent-point
9818 char-after-ip
9819 placeholder
9820 lim
9821 paren-state)))
9822
9823 ;; CASE 14: A case or default label
9824 ((looking-at c-label-kwds-regexp)
9825 (if containing-sexp
9826 (progn
9827 (goto-char containing-sexp)
9828 (setq lim (c-most-enclosing-brace c-state-cache
9829 containing-sexp))
9830 (c-backward-to-block-anchor lim)
9831 (c-add-stmt-syntax 'case-label nil t lim paren-state))
9832 ;; Got a bogus label at the top level. In lack of better
9833 ;; alternatives, anchor it on (point-min).
9834 (c-add-syntax 'case-label (point-min))))
9835
9836 ;; CASE 15: any other label
9837 ((save-excursion
9838 (back-to-indentation)
9839 (and (not (looking-at c-syntactic-ws-start))
9840 (c-forward-label)))
9841 (cond (containing-decl-open
9842 (setq placeholder (c-add-class-syntax 'inclass
9843 containing-decl-open
9844 containing-decl-start
9845 containing-decl-kwd
9846 paren-state))
9847 ;; Append access-label with the same anchor point as
9848 ;; inclass gets.
9849 (c-append-syntax 'access-label placeholder))
9850
9851 (containing-sexp
9852 (goto-char containing-sexp)
9853 (setq lim (c-most-enclosing-brace c-state-cache
9854 containing-sexp))
9855 (save-excursion
9856 (setq tmpsymbol
9857 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
9858 (looking-at "switch\\>[^_]"))
9859 ;; If the surrounding statement is a switch then
9860 ;; let's analyze all labels as switch labels, so
9861 ;; that they get lined up consistently.
9862 'case-label
9863 'label)))
9864 (c-backward-to-block-anchor lim)
9865 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
9866
9867 (t
9868 ;; A label on the top level. Treat it as a class
9869 ;; context. (point-min) is the closest we get to the
9870 ;; class open brace.
9871 (c-add-syntax 'access-label (point-min)))))
9872
9873 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
9874 ;; 17E.
9875 ((setq placeholder (c-looking-at-inexpr-block
9876 (c-safe-position containing-sexp paren-state)
9877 containing-sexp
9878 ;; Have to turn on the heuristics after
9879 ;; the point even though it doesn't work
9880 ;; very well. C.f. test case class-16.pike.
9881 t))
9882 (setq tmpsymbol (assq (car placeholder)
9883 '((inexpr-class . class-open)
9884 (inexpr-statement . block-open))))
9885 (if tmpsymbol
9886 ;; It's a statement block or an anonymous class.
9887 (setq tmpsymbol (cdr tmpsymbol))
9888 ;; It's a Pike lambda. Check whether we are between the
9889 ;; lambda keyword and the argument list or at the defun
9890 ;; opener.
9891 (setq tmpsymbol (if (eq char-after-ip ?{)
9892 'inline-open
9893 'lambda-intro-cont)))
9894 (goto-char (cdr placeholder))
9895 (back-to-indentation)
9896 (c-add-stmt-syntax tmpsymbol nil t
9897 (c-most-enclosing-brace c-state-cache (point))
9898 paren-state)
9899 (unless (eq (point) (cdr placeholder))
9900 (c-add-syntax (car placeholder))))
9901
9902 ;; CASE 5: Line is inside a declaration level block or at top level.
9903 ((or containing-decl-open (null containing-sexp))
9904 (cond
9905
9906 ;; CASE 5A: we are looking at a defun, brace list, class,
9907 ;; or inline-inclass method opening brace
9908 ((setq special-brace-list
9909 (or (and c-special-brace-lists
9910 (c-looking-at-special-brace-list))
9911 (eq char-after-ip ?{)))
9912 (cond
9913
9914 ;; CASE 5A.1: Non-class declaration block open.
9915 ((save-excursion
9916 (let (tmp)
9917 (and (eq char-after-ip ?{)
9918 (setq tmp (c-looking-at-decl-block containing-sexp t))
9919 (progn
9920 (setq placeholder (point))
9921 (goto-char tmp)
9922 (looking-at c-symbol-key))
9923 (c-keyword-member
9924 (c-keyword-sym (setq keyword (match-string 0)))
9925 'c-other-block-decl-kwds))))
9926 (goto-char placeholder)
9927 (c-add-stmt-syntax
9928 (if (string-equal keyword "extern")
9929 ;; Special case for extern-lang-open.
9930 'extern-lang-open
9931 (intern (concat keyword "-open")))
9932 nil t containing-sexp paren-state))
9933
9934 ;; CASE 5A.2: we are looking at a class opening brace
9935 ((save-excursion
9936 (goto-char indent-point)
9937 (skip-chars-forward " \t")
9938 (and (eq (char-after) ?{)
9939 (c-looking-at-decl-block containing-sexp t)
9940 (setq placeholder (point))))
9941 (c-add-syntax 'class-open placeholder))
9942
9943 ;; CASE 5A.3: brace list open
9944 ((save-excursion
9945 (c-beginning-of-decl-1 lim)
9946 (while (looking-at c-specifier-key)
9947 (goto-char (match-end 1))
9948 (c-forward-syntactic-ws indent-point))
9949 (setq placeholder (c-point 'boi))
9950 (or (consp special-brace-list)
9951 (and (or (save-excursion
9952 (goto-char indent-point)
9953 (setq tmpsymbol nil)
9954 (while (and (> (point) placeholder)
9955 (zerop (c-backward-token-2 1 t))
9956 (not (looking-at "=\\([^=]\\|$\\)")))
9957 (and c-opt-inexpr-brace-list-key
9958 (not tmpsymbol)
9959 (looking-at c-opt-inexpr-brace-list-key)
9960 (setq tmpsymbol 'topmost-intro-cont)))
9961 (looking-at "=\\([^=]\\|$\\)"))
9962 (looking-at c-brace-list-key))
9963 (save-excursion
9964 (while (and (< (point) indent-point)
9965 (zerop (c-forward-token-2 1 t))
9966 (not (memq (char-after) '(?\; ?\()))))
9967 (not (memq (char-after) '(?\; ?\()))
9968 ))))
9969 (if (and (not c-auto-newline-analysis)
9970 (c-major-mode-is 'java-mode)
9971 (eq tmpsymbol 'topmost-intro-cont))
9972 ;; We're in Java and have found that the open brace
9973 ;; belongs to a "new Foo[]" initialization list,
9974 ;; which means the brace list is part of an
9975 ;; expression and not a top level definition. We
9976 ;; therefore treat it as any topmost continuation
9977 ;; even though the semantically correct symbol still
9978 ;; is brace-list-open, on the same grounds as in
9979 ;; case B.2.
9980 (progn
9981 (c-beginning-of-statement-1 lim)
9982 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
9983 (c-add-syntax 'brace-list-open placeholder)))
9984
9985 ;; CASE 5A.4: inline defun open
9986 ((and containing-decl-open
9987 (not (c-keyword-member containing-decl-kwd
9988 'c-other-block-decl-kwds)))
9989 (c-add-syntax 'inline-open)
9990 (c-add-class-syntax 'inclass
9991 containing-decl-open
9992 containing-decl-start
9993 containing-decl-kwd
9994 paren-state))
9995
9996 ;; CASE 5A.5: ordinary defun open
9997 (t
9998 (save-excursion
9999 (c-beginning-of-decl-1 lim)
10000 (while (looking-at c-specifier-key)
10001 (goto-char (match-end 1))
10002 (c-forward-syntactic-ws indent-point))
10003 (c-add-syntax 'defun-open (c-point 'boi))
10004 ;; Bogus to use bol here, but it's the legacy. (Resolved,
10005 ;; 2007-11-09)
10006 ))))
10007
10008 ;; CASE 5R: Member init list. (Used to be part of CASE 5B.1)
10009 ;; Note there is no limit on the backward search here, since member
10010 ;; init lists can, in practice, be very large.
10011 ((save-excursion
10012 (when (setq placeholder (c-back-over-member-initializers))
10013 (setq tmp-pos (point))))
10014 (if (= (c-point 'bosws) (1+ tmp-pos))
10015 (progn
10016 ;; There is no preceding member init clause.
10017 ;; Indent relative to the beginning of indentation
10018 ;; for the topmost-intro line that contains the
10019 ;; prototype's open paren.
10020 (goto-char placeholder)
10021 (c-add-syntax 'member-init-intro (c-point 'boi)))
10022 ;; Indent relative to the first member init clause.
10023 (goto-char (1+ tmp-pos))
10024 (c-forward-syntactic-ws)
10025 (c-add-syntax 'member-init-cont (point))))
10026
10027 ;; CASE 5B: After a function header but before the body (or
10028 ;; the ending semicolon if there's no body).
10029 ((save-excursion
10030 (when (setq placeholder (c-just-after-func-arglist-p
10031 (max lim (c-determine-limit 500))))
10032 (setq tmp-pos (point))))
10033 (cond
10034
10035 ;; CASE 5B.1: Member init list.
10036 ((eq (char-after tmp-pos) ?:)
10037 ;; There is no preceding member init clause.
10038 ;; Indent relative to the beginning of indentation
10039 ;; for the topmost-intro line that contains the
10040 ;; prototype's open paren.
10041 (goto-char placeholder)
10042 (c-add-syntax 'member-init-intro (c-point 'boi)))
10043
10044 ;; CASE 5B.2: K&R arg decl intro
10045 ((and c-recognize-knr-p
10046 (c-in-knr-argdecl lim))
10047 (c-beginning-of-statement-1 lim)
10048 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
10049 (if containing-decl-open
10050 (c-add-class-syntax 'inclass
10051 containing-decl-open
10052 containing-decl-start
10053 containing-decl-kwd
10054 paren-state)))
10055
10056 ;; CASE 5B.4: Nether region after a C++ or Java func
10057 ;; decl, which could include a `throws' declaration.
10058 (t
10059 (c-beginning-of-statement-1 lim)
10060 (c-add-syntax 'func-decl-cont (c-point 'boi))
10061 )))
10062
10063 ;; CASE 5C: inheritance line. could be first inheritance
10064 ;; line, or continuation of a multiple inheritance
10065 ((or (and (c-major-mode-is 'c++-mode)
10066 (progn
10067 (when (eq char-after-ip ?,)
10068 (skip-chars-forward " \t")
10069 (forward-char))
10070 (looking-at c-opt-postfix-decl-spec-key)))
10071 (and (or (eq char-before-ip ?:)
10072 ;; watch out for scope operator
10073 (save-excursion
10074 (and (eq char-after-ip ?:)
10075 (c-safe (forward-char 1) t)
10076 (not (eq (char-after) ?:))
10077 )))
10078 (save-excursion
10079 (c-beginning-of-statement-1 lim)
10080 (when (looking-at c-opt-<>-sexp-key)
10081 (goto-char (match-end 1))
10082 (c-forward-syntactic-ws)
10083 (c-forward-<>-arglist nil)
10084 (c-forward-syntactic-ws))
10085 (looking-at c-class-key)))
10086 ;; for Java
10087 (and (c-major-mode-is 'java-mode)
10088 (let ((fence (save-excursion
10089 (c-beginning-of-statement-1 lim)
10090 (point)))
10091 cont done)
10092 (save-excursion
10093 (while (not done)
10094 (cond ((looking-at c-opt-postfix-decl-spec-key)
10095 (setq injava-inher (cons cont (point))
10096 done t))
10097 ((or (not (c-safe (c-forward-sexp -1) t))
10098 (<= (point) fence))
10099 (setq done t))
10100 )
10101 (setq cont t)))
10102 injava-inher)
10103 (not (c-crosses-statement-barrier-p (cdr injava-inher)
10104 (point)))
10105 ))
10106 (cond
10107
10108 ;; CASE 5C.1: non-hanging colon on an inher intro
10109 ((eq char-after-ip ?:)
10110 (c-beginning-of-statement-1 lim)
10111 (c-add-syntax 'inher-intro (c-point 'boi))
10112 ;; don't add inclass symbol since relative point already
10113 ;; contains any class offset
10114 )
10115
10116 ;; CASE 5C.2: hanging colon on an inher intro
10117 ((eq char-before-ip ?:)
10118 (c-beginning-of-statement-1 lim)
10119 (c-add-syntax 'inher-intro (c-point 'boi))
10120 (if containing-decl-open
10121 (c-add-class-syntax 'inclass
10122 containing-decl-open
10123 containing-decl-start
10124 containing-decl-kwd
10125 paren-state)))
10126
10127 ;; CASE 5C.3: in a Java implements/extends
10128 (injava-inher
10129 (let ((where (cdr injava-inher))
10130 (cont (car injava-inher)))
10131 (goto-char where)
10132 (cond ((looking-at "throws\\>[^_]")
10133 (c-add-syntax 'func-decl-cont
10134 (progn (c-beginning-of-statement-1 lim)
10135 (c-point 'boi))))
10136 (cont (c-add-syntax 'inher-cont where))
10137 (t (c-add-syntax 'inher-intro
10138 (progn (goto-char (cdr injava-inher))
10139 (c-beginning-of-statement-1 lim)
10140 (point))))
10141 )))
10142
10143 ;; CASE 5C.4: a continued inheritance line
10144 (t
10145 (c-beginning-of-inheritance-list lim)
10146 (c-add-syntax 'inher-cont (point))
10147 ;; don't add inclass symbol since relative point already
10148 ;; contains any class offset
10149 )))
10150
10151 ;; CASE 5P: AWK pattern or function or continuation
10152 ;; thereof.
10153 ((c-major-mode-is 'awk-mode)
10154 (setq placeholder (point))
10155 (c-add-stmt-syntax
10156 (if (and (eq (c-beginning-of-statement-1) 'same)
10157 (/= (point) placeholder))
10158 'topmost-intro-cont
10159 'topmost-intro)
10160 nil nil
10161 containing-sexp paren-state))
10162
10163 ;; CASE 5D: this could be a top-level initialization, a
10164 ;; member init list continuation, or a template argument
10165 ;; list continuation.
10166 ((save-excursion
10167 ;; Note: We use the fact that lim is always after any
10168 ;; preceding brace sexp.
10169 (if c-recognize-<>-arglists
10170 (while (and
10171 (progn
10172 (c-syntactic-skip-backward "^;,=<>" lim t)
10173 (> (point) lim))
10174 (or
10175 (when c-overloadable-operators-regexp
10176 (when (setq placeholder (c-after-special-operator-id lim))
10177 (goto-char placeholder)
10178 t))
10179 (cond
10180 ((eq (char-before) ?>)
10181 (or (c-backward-<>-arglist nil lim)
10182 (backward-char))
10183 t)
10184 ((eq (char-before) ?<)
10185 (backward-char)
10186 (if (save-excursion
10187 (c-forward-<>-arglist nil))
10188 (progn (forward-char)
10189 nil)
10190 t))
10191 (t nil)))))
10192 ;; NB: No c-after-special-operator-id stuff in this
10193 ;; clause - we assume only C++ needs it.
10194 (c-syntactic-skip-backward "^;,=" lim t))
10195 (memq (char-before) '(?, ?= ?<)))
10196 (cond
10197
10198 ;; CASE 5D.3: perhaps a template list continuation?
10199 ((and (c-major-mode-is 'c++-mode)
10200 (save-excursion
10201 (save-restriction
10202 (c-with-syntax-table c++-template-syntax-table
10203 (goto-char indent-point)
10204 (setq placeholder (c-up-list-backward))
10205 (and placeholder
10206 (eq (char-after placeholder) ?<))))))
10207 (c-with-syntax-table c++-template-syntax-table
10208 (goto-char placeholder)
10209 (c-beginning-of-statement-1 lim t))
10210 (if (save-excursion
10211 (c-backward-syntactic-ws lim)
10212 (eq (char-before) ?<))
10213 ;; In a nested template arglist.
10214 (progn
10215 (goto-char placeholder)
10216 (c-syntactic-skip-backward "^,;" lim t)
10217 (c-forward-syntactic-ws))
10218 (back-to-indentation))
10219 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
10220 ;; template aware.
10221 (c-add-syntax 'template-args-cont (point) placeholder))
10222
10223 ;; CASE 5D.4: perhaps a multiple inheritance line?
10224 ((and (c-major-mode-is 'c++-mode)
10225 (save-excursion
10226 (c-beginning-of-statement-1 lim)
10227 (setq placeholder (point))
10228 (if (looking-at "static\\>[^_]")
10229 (c-forward-token-2 1 nil indent-point))
10230 (and (looking-at c-class-key)
10231 (zerop (c-forward-token-2 2 nil indent-point))
10232 (if (eq (char-after) ?<)
10233 (c-with-syntax-table c++-template-syntax-table
10234 (zerop (c-forward-token-2 1 t indent-point)))
10235 t)
10236 (eq (char-after) ?:))))
10237 (goto-char placeholder)
10238 (c-add-syntax 'inher-cont (c-point 'boi)))
10239
10240 ;; CASE 5D.5: Continuation of the "expression part" of a
10241 ;; top level construct. Or, perhaps, an unrecognized construct.
10242 (t
10243 (while (and (setq placeholder (point))
10244 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
10245 'same)
10246 (save-excursion
10247 (c-backward-syntactic-ws)
10248 (eq (char-before) ?}))
10249 (< (point) placeholder)))
10250 (c-add-stmt-syntax
10251 (cond
10252 ((eq (point) placeholder) 'statement) ; unrecognized construct
10253 ;; A preceding comma at the top level means that a
10254 ;; new variable declaration starts here. Use
10255 ;; topmost-intro-cont for it, for consistency with
10256 ;; the first variable declaration. C.f. case 5N.
10257 ((eq char-before-ip ?,) 'topmost-intro-cont)
10258 (t 'statement-cont))
10259 nil nil containing-sexp paren-state))
10260 ))
10261
10262 ;; CASE 5F: Close of a non-class declaration level block.
10263 ((and (eq char-after-ip ?})
10264 (c-keyword-member containing-decl-kwd
10265 'c-other-block-decl-kwds))
10266 ;; This is inconsistent: Should use `containing-decl-open'
10267 ;; here if it's at boi, like in case 5J.
10268 (goto-char containing-decl-start)
10269 (c-add-stmt-syntax
10270 (if (string-equal (symbol-name containing-decl-kwd) "extern")
10271 ;; Special case for compatibility with the
10272 ;; extern-lang syntactic symbols.
10273 'extern-lang-close
10274 (intern (concat (symbol-name containing-decl-kwd)
10275 "-close")))
10276 nil t
10277 (c-most-enclosing-brace paren-state (point))
10278 paren-state))
10279
10280 ;; CASE 5G: we are looking at the brace which closes the
10281 ;; enclosing nested class decl
10282 ((and containing-sexp
10283 (eq char-after-ip ?})
10284 (eq containing-decl-open containing-sexp))
10285 (c-add-class-syntax 'class-close
10286 containing-decl-open
10287 containing-decl-start
10288 containing-decl-kwd
10289 paren-state))
10290
10291 ;; CASE 5H: we could be looking at subsequent knr-argdecls
10292 ((and c-recognize-knr-p
10293 (not containing-sexp) ; can't be knr inside braces.
10294 (not (eq char-before-ip ?}))
10295 (save-excursion
10296 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
10297 (and placeholder
10298 ;; Do an extra check to avoid tripping up on
10299 ;; statements that occur in invalid contexts
10300 ;; (e.g. in macro bodies where we don't really
10301 ;; know the context of what we're looking at).
10302 (not (and c-opt-block-stmt-key
10303 (looking-at c-opt-block-stmt-key)))))
10304 (< placeholder indent-point))
10305 (goto-char placeholder)
10306 (c-add-syntax 'knr-argdecl (point)))
10307
10308 ;; CASE 5I: ObjC method definition.
10309 ((and c-opt-method-key
10310 (looking-at c-opt-method-key))
10311 (c-beginning-of-statement-1 nil t)
10312 (if (= (point) indent-point)
10313 ;; Handle the case when it's the first (non-comment)
10314 ;; thing in the buffer. Can't look for a 'same return
10315 ;; value from cbos1 since ObjC directives currently
10316 ;; aren't recognized fully, so that we get 'same
10317 ;; instead of 'previous if it moved over a preceding
10318 ;; directive.
10319 (goto-char (point-min)))
10320 (c-add-syntax 'objc-method-intro (c-point 'boi)))
10321
10322 ;; CASE 5N: At a variable declaration that follows a class
10323 ;; definition or some other block declaration that doesn't
10324 ;; end at the closing '}'. C.f. case 5D.5.
10325 ((progn
10326 (c-backward-syntactic-ws lim)
10327 (and (eq (char-before) ?})
10328 (save-excursion
10329 (let ((start (point)))
10330 (if (and c-state-cache
10331 (consp (car c-state-cache))
10332 (eq (cdar c-state-cache) (point)))
10333 ;; Speed up the backward search a bit.
10334 (goto-char (caar c-state-cache)))
10335 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
10336 (setq placeholder (point))
10337 (if (= start (point))
10338 ;; The '}' is unbalanced.
10339 nil
10340 (c-end-of-decl-1)
10341 (>= (point) indent-point))))))
10342 (goto-char placeholder)
10343 (c-add-stmt-syntax 'topmost-intro-cont nil nil
10344 containing-sexp paren-state))
10345
10346 ;; NOTE: The point is at the end of the previous token here.
10347
10348 ;; CASE 5J: we are at the topmost level, make
10349 ;; sure we skip back past any access specifiers
10350 ((and
10351 ;; A macro continuation line is never at top level.
10352 (not (and macro-start
10353 (> indent-point macro-start)))
10354 (save-excursion
10355 (setq placeholder (point))
10356 (or (memq char-before-ip '(?\; ?{ ?} nil))
10357 (c-at-vsemi-p before-ws-ip)
10358 (when (and (eq char-before-ip ?:)
10359 (eq (c-beginning-of-statement-1 lim)
10360 'label))
10361 (c-backward-syntactic-ws lim)
10362 (setq placeholder (point)))
10363 (and (c-major-mode-is 'objc-mode)
10364 (catch 'not-in-directive
10365 (c-beginning-of-statement-1 lim)
10366 (setq placeholder (point))
10367 (while (and (c-forward-objc-directive)
10368 (< (point) indent-point))
10369 (c-forward-syntactic-ws)
10370 (if (>= (point) indent-point)
10371 (throw 'not-in-directive t))
10372 (setq placeholder (point)))
10373 nil)))))
10374 ;; For historic reasons we anchor at bol of the last
10375 ;; line of the previous declaration. That's clearly
10376 ;; highly bogus and useless, and it makes our lives hard
10377 ;; to remain compatible. :P
10378 (goto-char placeholder)
10379 (c-add-syntax 'topmost-intro (c-point 'bol))
10380 (if containing-decl-open
10381 (if (c-keyword-member containing-decl-kwd
10382 'c-other-block-decl-kwds)
10383 (progn
10384 (goto-char (c-brace-anchor-point containing-decl-open))
10385 (c-add-stmt-syntax
10386 (if (string-equal (symbol-name containing-decl-kwd)
10387 "extern")
10388 ;; Special case for compatibility with the
10389 ;; extern-lang syntactic symbols.
10390 'inextern-lang
10391 (intern (concat "in"
10392 (symbol-name containing-decl-kwd))))
10393 nil t
10394 (c-most-enclosing-brace paren-state (point))
10395 paren-state))
10396 (c-add-class-syntax 'inclass
10397 containing-decl-open
10398 containing-decl-start
10399 containing-decl-kwd
10400 paren-state)))
10401 (when (and c-syntactic-indentation-in-macros
10402 macro-start
10403 (/= macro-start (c-point 'boi indent-point)))
10404 (c-add-syntax 'cpp-define-intro)
10405 (setq macro-start nil)))
10406
10407 ;; CASE 5K: we are at an ObjC method definition
10408 ;; continuation line.
10409 ((and c-opt-method-key
10410 (save-excursion
10411 (c-beginning-of-statement-1 lim)
10412 (beginning-of-line)
10413 (when (looking-at c-opt-method-key)
10414 (setq placeholder (point)))))
10415 (c-add-syntax 'objc-method-args-cont placeholder))
10416
10417 ;; CASE 5L: we are at the first argument of a template
10418 ;; arglist that begins on the previous line.
10419 ((and c-recognize-<>-arglists
10420 (eq (char-before) ?<)
10421 (not (and c-overloadable-operators-regexp
10422 (c-after-special-operator-id lim))))
10423 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10424 (c-add-syntax 'template-args-cont (c-point 'boi)))
10425
10426 ;; CASE 5Q: we are at a statement within a macro.
10427 (macro-start
10428 (c-beginning-of-statement-1 containing-sexp)
10429 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
10430
10431 ;;CASE 5N: We are at a topmost continuation line and the only
10432 ;;preceding items are annotations.
10433 ((and (c-major-mode-is 'java-mode)
10434 (setq placeholder (point))
10435 (c-beginning-of-statement-1)
10436 (progn
10437 (while (and (c-forward-annotation))
10438 (c-forward-syntactic-ws))
10439 t)
10440 (prog1
10441 (>= (point) placeholder)
10442 (goto-char placeholder)))
10443 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
10444
10445 ;; CASE 5M: we are at a topmost continuation line
10446 (t
10447 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10448 (when (c-major-mode-is 'objc-mode)
10449 (setq placeholder (point))
10450 (while (and (c-forward-objc-directive)
10451 (< (point) indent-point))
10452 (c-forward-syntactic-ws)
10453 (setq placeholder (point)))
10454 (goto-char placeholder))
10455 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10456 ))
10457
10458 ;; (CASE 6 has been removed.)
10459
10460 ;; CASE 7: line is an expression, not a statement. Most
10461 ;; likely we are either in a function prototype or a function
10462 ;; call argument list
10463 ((not (or (and c-special-brace-lists
10464 (save-excursion
10465 (goto-char containing-sexp)
10466 (c-looking-at-special-brace-list)))
10467 (eq (char-after containing-sexp) ?{)))
10468 (cond
10469
10470 ;; CASE 7A: we are looking at the arglist closing paren.
10471 ;; C.f. case 7F.
10472 ((memq char-after-ip '(?\) ?\]))
10473 (goto-char containing-sexp)
10474 (setq placeholder (c-point 'boi))
10475 (if (and (c-safe (backward-up-list 1) t)
10476 (>= (point) placeholder))
10477 (progn
10478 (forward-char)
10479 (skip-chars-forward " \t"))
10480 (goto-char placeholder))
10481 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
10482 (c-most-enclosing-brace paren-state (point))
10483 paren-state))
10484
10485 ;; CASE 7B: Looking at the opening brace of an
10486 ;; in-expression block or brace list. C.f. cases 4, 16A
10487 ;; and 17E.
10488 ((and (eq char-after-ip ?{)
10489 (progn
10490 (setq placeholder (c-inside-bracelist-p (point)
10491 paren-state))
10492 (if placeholder
10493 (setq tmpsymbol '(brace-list-open . inexpr-class))
10494 (setq tmpsymbol '(block-open . inexpr-statement)
10495 placeholder
10496 (cdr-safe (c-looking-at-inexpr-block
10497 (c-safe-position containing-sexp
10498 paren-state)
10499 containing-sexp)))
10500 ;; placeholder is nil if it's a block directly in
10501 ;; a function arglist. That makes us skip out of
10502 ;; this case.
10503 )))
10504 (goto-char placeholder)
10505 (back-to-indentation)
10506 (c-add-stmt-syntax (car tmpsymbol) nil t
10507 (c-most-enclosing-brace paren-state (point))
10508 paren-state)
10509 (if (/= (point) placeholder)
10510 (c-add-syntax (cdr tmpsymbol))))
10511
10512 ;; CASE 7C: we are looking at the first argument in an empty
10513 ;; argument list. Use arglist-close if we're actually
10514 ;; looking at a close paren or bracket.
10515 ((memq char-before-ip '(?\( ?\[))
10516 (goto-char containing-sexp)
10517 (setq placeholder (c-point 'boi))
10518 (if (and (c-safe (backward-up-list 1) t)
10519 (>= (point) placeholder))
10520 (progn
10521 (forward-char)
10522 (skip-chars-forward " \t"))
10523 (goto-char placeholder))
10524 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
10525 (c-most-enclosing-brace paren-state (point))
10526 paren-state))
10527
10528 ;; CASE 7D: we are inside a conditional test clause. treat
10529 ;; these things as statements
10530 ((progn
10531 (goto-char containing-sexp)
10532 (and (c-safe (c-forward-sexp -1) t)
10533 (looking-at "\\<for\\>[^_]")))
10534 (goto-char (1+ containing-sexp))
10535 (c-forward-syntactic-ws indent-point)
10536 (if (eq char-before-ip ?\;)
10537 (c-add-syntax 'statement (point))
10538 (c-add-syntax 'statement-cont (point))
10539 ))
10540
10541 ;; CASE 7E: maybe a continued ObjC method call. This is the
10542 ;; case when we are inside a [] bracketed exp, and what
10543 ;; precede the opening bracket is not an identifier.
10544 ((and c-opt-method-key
10545 (eq (char-after containing-sexp) ?\[)
10546 (progn
10547 (goto-char (1- containing-sexp))
10548 (c-backward-syntactic-ws (c-point 'bod))
10549 (if (not (looking-at c-symbol-key))
10550 (c-add-syntax 'objc-method-call-cont containing-sexp))
10551 )))
10552
10553 ;; CASE 7F: we are looking at an arglist continuation line,
10554 ;; but the preceding argument is on the same line as the
10555 ;; opening paren. This case includes multi-line
10556 ;; mathematical paren groupings, but we could be on a
10557 ;; for-list continuation line. C.f. case 7A.
10558 ((progn
10559 (goto-char (1+ containing-sexp))
10560 (< (save-excursion
10561 (c-forward-syntactic-ws)
10562 (point))
10563 (c-point 'bonl)))
10564 (goto-char containing-sexp) ; paren opening the arglist
10565 (setq placeholder (c-point 'boi))
10566 (if (and (c-safe (backward-up-list 1) t)
10567 (>= (point) placeholder))
10568 (progn
10569 (forward-char)
10570 (skip-chars-forward " \t"))
10571 (goto-char placeholder))
10572 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
10573 (c-most-enclosing-brace c-state-cache (point))
10574 paren-state))
10575
10576 ;; CASE 7G: we are looking at just a normal arglist
10577 ;; continuation line
10578 (t (c-forward-syntactic-ws indent-point)
10579 (c-add-syntax 'arglist-cont (c-point 'boi)))
10580 ))
10581
10582 ;; CASE 8: func-local multi-inheritance line
10583 ((and (c-major-mode-is 'c++-mode)
10584 (save-excursion
10585 (goto-char indent-point)
10586 (skip-chars-forward " \t")
10587 (looking-at c-opt-postfix-decl-spec-key)))
10588 (goto-char indent-point)
10589 (skip-chars-forward " \t")
10590 (cond
10591
10592 ;; CASE 8A: non-hanging colon on an inher intro
10593 ((eq char-after-ip ?:)
10594 (c-backward-syntactic-ws lim)
10595 (c-add-syntax 'inher-intro (c-point 'boi)))
10596
10597 ;; CASE 8B: hanging colon on an inher intro
10598 ((eq char-before-ip ?:)
10599 (c-add-syntax 'inher-intro (c-point 'boi)))
10600
10601 ;; CASE 8C: a continued inheritance line
10602 (t
10603 (c-beginning-of-inheritance-list lim)
10604 (c-add-syntax 'inher-cont (point))
10605 )))
10606
10607 ;; CASE 9: we are inside a brace-list
10608 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
10609 (setq special-brace-list
10610 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
10611 (save-excursion
10612 (goto-char containing-sexp)
10613 (c-looking-at-special-brace-list)))
10614 (c-inside-bracelist-p containing-sexp paren-state))))
10615 (cond
10616
10617 ;; CASE 9A: In the middle of a special brace list opener.
10618 ((and (consp special-brace-list)
10619 (save-excursion
10620 (goto-char containing-sexp)
10621 (eq (char-after) ?\())
10622 (eq char-after-ip (car (cdr special-brace-list))))
10623 (goto-char (car (car special-brace-list)))
10624 (skip-chars-backward " \t")
10625 (if (and (bolp)
10626 (assoc 'statement-cont
10627 (setq placeholder (c-guess-basic-syntax))))
10628 (setq c-syntactic-context placeholder)
10629 (c-beginning-of-statement-1
10630 (c-safe-position (1- containing-sexp) paren-state))
10631 (c-forward-token-2 0)
10632 (while (looking-at c-specifier-key)
10633 (goto-char (match-end 1))
10634 (c-forward-syntactic-ws))
10635 (c-add-syntax 'brace-list-open (c-point 'boi))))
10636
10637 ;; CASE 9B: brace-list-close brace
10638 ((if (consp special-brace-list)
10639 ;; Check special brace list closer.
10640 (progn
10641 (goto-char (car (car special-brace-list)))
10642 (save-excursion
10643 (goto-char indent-point)
10644 (back-to-indentation)
10645 (or
10646 ;; We were between the special close char and the `)'.
10647 (and (eq (char-after) ?\))
10648 (eq (1+ (point)) (cdr (car special-brace-list))))
10649 ;; We were before the special close char.
10650 (and (eq (char-after) (cdr (cdr special-brace-list)))
10651 (zerop (c-forward-token-2))
10652 (eq (1+ (point)) (cdr (car special-brace-list)))))))
10653 ;; Normal brace list check.
10654 (and (eq char-after-ip ?})
10655 (c-safe (goto-char (c-up-list-backward (point))) t)
10656 (= (point) containing-sexp)))
10657 (if (eq (point) (c-point 'boi))
10658 (c-add-syntax 'brace-list-close (point))
10659 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10660 (c-beginning-of-statement-1 lim nil nil t)
10661 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
10662
10663 (t
10664 ;; Prepare for the rest of the cases below by going to the
10665 ;; token following the opening brace
10666 (if (consp special-brace-list)
10667 (progn
10668 (goto-char (car (car special-brace-list)))
10669 (c-forward-token-2 1 nil indent-point))
10670 (goto-char containing-sexp))
10671 (forward-char)
10672 (let ((start (point)))
10673 (c-forward-syntactic-ws indent-point)
10674 (goto-char (max start (c-point 'bol))))
10675 (c-skip-ws-forward indent-point)
10676 (cond
10677
10678 ;; CASE 9C: we're looking at the first line in a brace-list
10679 ((= (point) indent-point)
10680 (if (consp special-brace-list)
10681 (goto-char (car (car special-brace-list)))
10682 (goto-char containing-sexp))
10683 (if (eq (point) (c-point 'boi))
10684 (c-add-syntax 'brace-list-intro (point))
10685 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10686 (c-beginning-of-statement-1 lim)
10687 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
10688
10689 ;; CASE 9D: this is just a later brace-list-entry or
10690 ;; brace-entry-open
10691 (t (if (or (eq char-after-ip ?{)
10692 (and c-special-brace-lists
10693 (save-excursion
10694 (goto-char indent-point)
10695 (c-forward-syntactic-ws (c-point 'eol))
10696 (c-looking-at-special-brace-list (point)))))
10697 (c-add-syntax 'brace-entry-open (point))
10698 (c-add-syntax 'brace-list-entry (point))
10699 ))
10700 ))))
10701
10702 ;; CASE 10: A continued statement or top level construct.
10703 ((and (not (memq char-before-ip '(?\; ?:)))
10704 (not (c-at-vsemi-p before-ws-ip))
10705 (or (not (eq char-before-ip ?}))
10706 (c-looking-at-inexpr-block-backward c-state-cache))
10707 (> (point)
10708 (save-excursion
10709 (c-beginning-of-statement-1 containing-sexp)
10710 (setq placeholder (point))))
10711 (/= placeholder containing-sexp))
10712 ;; This is shared with case 18.
10713 (c-guess-continued-construct indent-point
10714 char-after-ip
10715 placeholder
10716 containing-sexp
10717 paren-state))
10718
10719 ;; CASE 16: block close brace, possibly closing the defun or
10720 ;; the class
10721 ((eq char-after-ip ?})
10722 ;; From here on we have the next containing sexp in lim.
10723 (setq lim (c-most-enclosing-brace paren-state))
10724 (goto-char containing-sexp)
10725 (cond
10726
10727 ;; CASE 16E: Closing a statement block? This catches
10728 ;; cases where it's preceded by a statement keyword,
10729 ;; which works even when used in an "invalid" context,
10730 ;; e.g. a macro argument.
10731 ((c-after-conditional)
10732 (c-backward-to-block-anchor lim)
10733 (c-add-stmt-syntax 'block-close nil t lim paren-state))
10734
10735 ;; CASE 16A: closing a lambda defun or an in-expression
10736 ;; block? C.f. cases 4, 7B and 17E.
10737 ((setq placeholder (c-looking-at-inexpr-block
10738 (c-safe-position containing-sexp paren-state)
10739 nil))
10740 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10741 'inline-close
10742 'block-close))
10743 (goto-char containing-sexp)
10744 (back-to-indentation)
10745 (if (= containing-sexp (point))
10746 (c-add-syntax tmpsymbol (point))
10747 (goto-char (cdr placeholder))
10748 (back-to-indentation)
10749 (c-add-stmt-syntax tmpsymbol nil t
10750 (c-most-enclosing-brace paren-state (point))
10751 paren-state)
10752 (if (/= (point) (cdr placeholder))
10753 (c-add-syntax (car placeholder)))))
10754
10755 ;; CASE 16B: does this close an inline or a function in
10756 ;; a non-class declaration level block?
10757 ((save-excursion
10758 (and lim
10759 (progn
10760 (goto-char lim)
10761 (c-looking-at-decl-block
10762 (c-most-enclosing-brace paren-state lim)
10763 nil))
10764 (setq placeholder (point))))
10765 (c-backward-to-decl-anchor lim)
10766 (back-to-indentation)
10767 (if (save-excursion
10768 (goto-char placeholder)
10769 (looking-at c-other-decl-block-key))
10770 (c-add-syntax 'defun-close (point))
10771 (c-add-syntax 'inline-close (point))))
10772
10773 ;; CASE 16F: Can be a defun-close of a function declared
10774 ;; in a statement block, e.g. in Pike or when using gcc
10775 ;; extensions, but watch out for macros followed by
10776 ;; blocks. Let it through to be handled below.
10777 ;; C.f. cases B.3 and 17G.
10778 ((save-excursion
10779 (and (not (c-at-statement-start-p))
10780 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10781 (setq placeholder (point))
10782 (let ((c-recognize-typeless-decls nil))
10783 ;; Turn off recognition of constructs that
10784 ;; lacks a type in this case, since that's more
10785 ;; likely to be a macro followed by a block.
10786 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10787 (back-to-indentation)
10788 (if (/= (point) containing-sexp)
10789 (goto-char placeholder))
10790 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
10791
10792 ;; CASE 16C: If there is an enclosing brace then this is
10793 ;; a block close since defun closes inside declaration
10794 ;; level blocks have been handled above.
10795 (lim
10796 ;; If the block is preceded by a case/switch label on
10797 ;; the same line, we anchor at the first preceding label
10798 ;; at boi. The default handling in c-add-stmt-syntax
10799 ;; really fixes it better, but we do like this to keep
10800 ;; the indentation compatible with version 5.28 and
10801 ;; earlier. C.f. case 17H.
10802 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10803 (eq (c-beginning-of-statement-1 lim) 'label)))
10804 (goto-char placeholder)
10805 (if (looking-at c-label-kwds-regexp)
10806 (c-add-syntax 'block-close (point))
10807 (goto-char containing-sexp)
10808 ;; c-backward-to-block-anchor not necessary here; those
10809 ;; situations are handled in case 16E above.
10810 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
10811
10812 ;; CASE 16D: Only top level defun close left.
10813 (t
10814 (goto-char containing-sexp)
10815 (c-backward-to-decl-anchor lim)
10816 (c-add-stmt-syntax 'defun-close nil nil
10817 (c-most-enclosing-brace paren-state)
10818 paren-state))
10819 ))
10820
10821 ;; CASE 19: line is an expression, not a statement, and is directly
10822 ;; contained by a template delimiter. Most likely, we are in a
10823 ;; template arglist within a statement. This case is based on CASE
10824 ;; 7. At some point in the future, we may wish to create more
10825 ;; syntactic symbols such as `template-intro',
10826 ;; `template-cont-nonempty', etc., and distinguish between them as we
10827 ;; do for `arglist-intro' etc. (2009-12-07).
10828 ((and c-recognize-<>-arglists
10829 (setq containing-< (c-up-list-backward indent-point containing-sexp))
10830 (eq (char-after containing-<) ?\<))
10831 (setq placeholder (c-point 'boi containing-<))
10832 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
10833 ; '<') before indent-point.
10834 (if (>= (point) placeholder)
10835 (progn
10836 (forward-char)
10837 (skip-chars-forward " \t"))
10838 (goto-char placeholder))
10839 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
10840 (c-most-enclosing-brace c-state-cache (point))
10841 paren-state))
10842
10843 ;; CASE 17: Statement or defun catchall.
10844 (t
10845 (goto-char indent-point)
10846 ;; Back up statements until we find one that starts at boi.
10847 (while (let* ((prev-point (point))
10848 (last-step-type (c-beginning-of-statement-1
10849 containing-sexp)))
10850 (if (= (point) prev-point)
10851 (progn
10852 (setq step-type (or step-type last-step-type))
10853 nil)
10854 (setq step-type last-step-type)
10855 (/= (point) (c-point 'boi)))))
10856 (cond
10857
10858 ;; CASE 17B: continued statement
10859 ((and (eq step-type 'same)
10860 (/= (point) indent-point))
10861 (c-add-stmt-syntax 'statement-cont nil nil
10862 containing-sexp paren-state))
10863
10864 ;; CASE 17A: After a case/default label?
10865 ((progn
10866 (while (and (eq step-type 'label)
10867 (not (looking-at c-label-kwds-regexp)))
10868 (setq step-type
10869 (c-beginning-of-statement-1 containing-sexp)))
10870 (eq step-type 'label))
10871 (c-add-stmt-syntax (if (eq char-after-ip ?{)
10872 'statement-case-open
10873 'statement-case-intro)
10874 nil t containing-sexp paren-state))
10875
10876 ;; CASE 17D: any old statement
10877 ((progn
10878 (while (eq step-type 'label)
10879 (setq step-type
10880 (c-beginning-of-statement-1 containing-sexp)))
10881 (eq step-type 'previous))
10882 (c-add-stmt-syntax 'statement nil t
10883 containing-sexp paren-state)
10884 (if (eq char-after-ip ?{)
10885 (c-add-syntax 'block-open)))
10886
10887 ;; CASE 17I: Inside a substatement block.
10888 ((progn
10889 ;; The following tests are all based on containing-sexp.
10890 (goto-char containing-sexp)
10891 ;; From here on we have the next containing sexp in lim.
10892 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
10893 (c-after-conditional))
10894 (c-backward-to-block-anchor lim)
10895 (c-add-stmt-syntax 'statement-block-intro nil t
10896 lim paren-state)
10897 (if (eq char-after-ip ?{)
10898 (c-add-syntax 'block-open)))
10899
10900 ;; CASE 17E: first statement in an in-expression block.
10901 ;; C.f. cases 4, 7B and 16A.
10902 ((setq placeholder (c-looking-at-inexpr-block
10903 (c-safe-position containing-sexp paren-state)
10904 nil))
10905 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10906 'defun-block-intro
10907 'statement-block-intro))
10908 (back-to-indentation)
10909 (if (= containing-sexp (point))
10910 (c-add-syntax tmpsymbol (point))
10911 (goto-char (cdr placeholder))
10912 (back-to-indentation)
10913 (c-add-stmt-syntax tmpsymbol nil t
10914 (c-most-enclosing-brace c-state-cache (point))
10915 paren-state)
10916 (if (/= (point) (cdr placeholder))
10917 (c-add-syntax (car placeholder))))
10918 (if (eq char-after-ip ?{)
10919 (c-add-syntax 'block-open)))
10920
10921 ;; CASE 17F: first statement in an inline, or first
10922 ;; statement in a top-level defun. we can tell this is it
10923 ;; if there are no enclosing braces that haven't been
10924 ;; narrowed out by a class (i.e. don't use bod here).
10925 ((save-excursion
10926 (or (not (setq placeholder (c-most-enclosing-brace
10927 paren-state)))
10928 (and (progn
10929 (goto-char placeholder)
10930 (eq (char-after) ?{))
10931 (c-looking-at-decl-block (c-most-enclosing-brace
10932 paren-state (point))
10933 nil))))
10934 (c-backward-to-decl-anchor lim)
10935 (back-to-indentation)
10936 (c-add-syntax 'defun-block-intro (point)))
10937
10938 ;; CASE 17G: First statement in a function declared inside
10939 ;; a normal block. This can occur in Pike and with
10940 ;; e.g. the gcc extensions, but watch out for macros
10941 ;; followed by blocks. C.f. cases B.3 and 16F.
10942 ((save-excursion
10943 (and (not (c-at-statement-start-p))
10944 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10945 (setq placeholder (point))
10946 (let ((c-recognize-typeless-decls nil))
10947 ;; Turn off recognition of constructs that lacks
10948 ;; a type in this case, since that's more likely
10949 ;; to be a macro followed by a block.
10950 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10951 (back-to-indentation)
10952 (if (/= (point) containing-sexp)
10953 (goto-char placeholder))
10954 (c-add-stmt-syntax 'defun-block-intro nil t
10955 lim paren-state))
10956
10957 ;; CASE 17H: First statement in a block.
10958 (t
10959 ;; If the block is preceded by a case/switch label on the
10960 ;; same line, we anchor at the first preceding label at
10961 ;; boi. The default handling in c-add-stmt-syntax is
10962 ;; really fixes it better, but we do like this to keep the
10963 ;; indentation compatible with version 5.28 and earlier.
10964 ;; C.f. case 16C.
10965 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10966 (eq (c-beginning-of-statement-1 lim) 'label)))
10967 (goto-char placeholder)
10968 (if (looking-at c-label-kwds-regexp)
10969 (c-add-syntax 'statement-block-intro (point))
10970 (goto-char containing-sexp)
10971 ;; c-backward-to-block-anchor not necessary here; those
10972 ;; situations are handled in case 17I above.
10973 (c-add-stmt-syntax 'statement-block-intro nil t
10974 lim paren-state))
10975 (if (eq char-after-ip ?{)
10976 (c-add-syntax 'block-open)))
10977 ))
10978 )
10979
10980 ;; now we need to look at any modifiers
10981 (goto-char indent-point)
10982 (skip-chars-forward " \t")
10983
10984 ;; are we looking at a comment only line?
10985 (when (and (looking-at c-comment-start-regexp)
10986 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
10987 (c-append-syntax 'comment-intro))
10988
10989 ;; we might want to give additional offset to friends (in C++).
10990 (when (and c-opt-friend-key
10991 (looking-at c-opt-friend-key))
10992 (c-append-syntax 'friend))
10993
10994 ;; Set syntactic-relpos.
10995 (let ((p c-syntactic-context))
10996 (while (and p
10997 (if (integerp (c-langelem-pos (car p)))
10998 (progn
10999 (setq syntactic-relpos (c-langelem-pos (car p)))
11000 nil)
11001 t))
11002 (setq p (cdr p))))
11003
11004 ;; Start of or a continuation of a preprocessor directive?
11005 (if (and macro-start
11006 (eq macro-start (c-point 'boi))
11007 (not (and (c-major-mode-is 'pike-mode)
11008 (eq (char-after (1+ macro-start)) ?\"))))
11009 (c-append-syntax 'cpp-macro)
11010 (when (and c-syntactic-indentation-in-macros macro-start)
11011 (if in-macro-expr
11012 (when (or
11013 (< syntactic-relpos macro-start)
11014 (not (or
11015 (assq 'arglist-intro c-syntactic-context)
11016 (assq 'arglist-cont c-syntactic-context)
11017 (assq 'arglist-cont-nonempty c-syntactic-context)
11018 (assq 'arglist-close c-syntactic-context))))
11019 ;; If inside a cpp expression, i.e. anywhere in a
11020 ;; cpp directive except a #define body, we only let
11021 ;; through the syntactic analysis that is internal
11022 ;; in the expression. That means the arglist
11023 ;; elements, if they are anchored inside the cpp
11024 ;; expression.
11025 (setq c-syntactic-context nil)
11026 (c-add-syntax 'cpp-macro-cont macro-start))
11027 (when (and (eq macro-start syntactic-relpos)
11028 (not (assq 'cpp-define-intro c-syntactic-context))
11029 (save-excursion
11030 (goto-char macro-start)
11031 (or (not (c-forward-to-cpp-define-body))
11032 (<= (point) (c-point 'boi indent-point)))))
11033 ;; Inside a #define body and the syntactic analysis is
11034 ;; anchored on the start of the #define. In this case
11035 ;; we add cpp-define-intro to get the extra
11036 ;; indentation of the #define body.
11037 (c-add-syntax 'cpp-define-intro)))))
11038
11039 ;; return the syntax
11040 c-syntactic-context)))
11041
11042 \f
11043 ;; Indentation calculation.
11044
11045 (defun c-evaluate-offset (offset langelem symbol)
11046 ;; offset can be a number, a function, a variable, a list, or one of
11047 ;; the symbols + or -
11048 ;;
11049 ;; This function might do hidden buffer changes.
11050 (let ((res
11051 (cond
11052 ((numberp offset) offset)
11053 ((vectorp offset) offset)
11054 ((null offset) nil)
11055
11056 ((eq offset '+) c-basic-offset)
11057 ((eq offset '-) (- c-basic-offset))
11058 ((eq offset '++) (* 2 c-basic-offset))
11059 ((eq offset '--) (* 2 (- c-basic-offset)))
11060 ((eq offset '*) (/ c-basic-offset 2))
11061 ((eq offset '/) (/ (- c-basic-offset) 2))
11062
11063 ((functionp offset)
11064 (c-evaluate-offset
11065 (funcall offset
11066 (cons (c-langelem-sym langelem)
11067 (c-langelem-pos langelem)))
11068 langelem symbol))
11069
11070 ((listp offset)
11071 (cond
11072 ((eq (car offset) 'quote)
11073 (c-benign-error "The offset %S for %s was mistakenly quoted"
11074 offset symbol)
11075 nil)
11076
11077 ((memq (car offset) '(min max))
11078 (let (res val (method (car offset)))
11079 (setq offset (cdr offset))
11080 (while offset
11081 (setq val (c-evaluate-offset (car offset) langelem symbol))
11082 (cond
11083 ((not val))
11084 ((not res)
11085 (setq res val))
11086 ((integerp val)
11087 (if (vectorp res)
11088 (c-benign-error "\
11089 Error evaluating offset %S for %s: \
11090 Cannot combine absolute offset %S with relative %S in `%s' method"
11091 (car offset) symbol res val method)
11092 (setq res (funcall method res val))))
11093 (t
11094 (if (integerp res)
11095 (c-benign-error "\
11096 Error evaluating offset %S for %s: \
11097 Cannot combine relative offset %S with absolute %S in `%s' method"
11098 (car offset) symbol res val method)
11099 (setq res (vector (funcall method (aref res 0)
11100 (aref val 0)))))))
11101 (setq offset (cdr offset)))
11102 res))
11103
11104 ((eq (car offset) 'add)
11105 (let (res val)
11106 (setq offset (cdr offset))
11107 (while offset
11108 (setq val (c-evaluate-offset (car offset) langelem symbol))
11109 (cond
11110 ((not val))
11111 ((not res)
11112 (setq res val))
11113 ((integerp val)
11114 (if (vectorp res)
11115 (setq res (vector (+ (aref res 0) val)))
11116 (setq res (+ res val))))
11117 (t
11118 (if (vectorp res)
11119 (c-benign-error "\
11120 Error evaluating offset %S for %s: \
11121 Cannot combine absolute offsets %S and %S in `add' method"
11122 (car offset) symbol res val)
11123 (setq res val)))) ; Override.
11124 (setq offset (cdr offset)))
11125 res))
11126
11127 (t
11128 (let (res)
11129 (when (eq (car offset) 'first)
11130 (setq offset (cdr offset)))
11131 (while (and (not res) offset)
11132 (setq res (c-evaluate-offset (car offset) langelem symbol)
11133 offset (cdr offset)))
11134 res))))
11135
11136 ((and (symbolp offset) (boundp offset))
11137 (symbol-value offset))
11138
11139 (t
11140 (c-benign-error "Unknown offset format %S for %s" offset symbol)
11141 nil))))
11142
11143 (if (or (null res) (integerp res)
11144 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
11145 res
11146 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
11147 offset symbol res)
11148 nil)))
11149
11150 (defun c-calc-offset (langelem)
11151 ;; Get offset from LANGELEM which is a list beginning with the
11152 ;; syntactic symbol and followed by any analysis data it provides.
11153 ;; That data may be zero or more elements, but if at least one is
11154 ;; given then the first is the anchor position (or nil). The symbol
11155 ;; is matched against `c-offsets-alist' and the offset calculated
11156 ;; from that is returned.
11157 ;;
11158 ;; This function might do hidden buffer changes.
11159 (let* ((symbol (c-langelem-sym langelem))
11160 (match (assq symbol c-offsets-alist))
11161 (offset (cdr-safe match)))
11162 (if match
11163 (setq offset (c-evaluate-offset offset langelem symbol))
11164 (if c-strict-syntax-p
11165 (c-benign-error "No offset found for syntactic symbol %s" symbol))
11166 (setq offset 0))
11167 (if (vectorp offset)
11168 offset
11169 (or (and (numberp offset) offset)
11170 (and (symbolp offset) (symbol-value offset))
11171 0))
11172 ))
11173
11174 (defun c-get-offset (langelem)
11175 ;; This is a compatibility wrapper for `c-calc-offset' in case
11176 ;; someone is calling it directly. It takes an old style syntactic
11177 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
11178 ;; new list form.
11179 ;;
11180 ;; This function might do hidden buffer changes.
11181 (if (c-langelem-pos langelem)
11182 (c-calc-offset (list (c-langelem-sym langelem)
11183 (c-langelem-pos langelem)))
11184 (c-calc-offset langelem)))
11185
11186 (defun c-get-syntactic-indentation (langelems)
11187 ;; Calculate the syntactic indentation from a syntactic description
11188 ;; as returned by `c-guess-syntax'.
11189 ;;
11190 ;; Note that topmost-intro always has an anchor position at bol, for
11191 ;; historical reasons. It's often used together with other symbols
11192 ;; that has more sane positions. Since we always use the first
11193 ;; found anchor position, we rely on that these other symbols always
11194 ;; precede topmost-intro in the LANGELEMS list.
11195 ;;
11196 ;; This function might do hidden buffer changes.
11197 (let ((indent 0) anchor)
11198
11199 (while langelems
11200 (let* ((c-syntactic-element (car langelems))
11201 (res (c-calc-offset c-syntactic-element)))
11202
11203 (if (vectorp res)
11204 ;; Got an absolute column that overrides any indentation
11205 ;; we've collected so far, but not the relative
11206 ;; indentation we might get for the nested structures
11207 ;; further down the langelems list.
11208 (setq indent (elt res 0)
11209 anchor (point-min)) ; A position at column 0.
11210
11211 ;; Got a relative change of the current calculated
11212 ;; indentation.
11213 (setq indent (+ indent res))
11214
11215 ;; Use the anchor position from the first syntactic
11216 ;; element with one.
11217 (unless anchor
11218 (setq anchor (c-langelem-pos (car langelems)))))
11219
11220 (setq langelems (cdr langelems))))
11221
11222 (if anchor
11223 (+ indent (save-excursion
11224 (goto-char anchor)
11225 (current-column)))
11226 indent)))
11227
11228 \f
11229 (cc-provide 'cc-engine)
11230
11231 ;;; Local Variables:
11232 ;;; indent-tabs-mode: t
11233 ;;; tab-width: 8
11234 ;;; End:
11235 ;;; cc-engine.el ends here