Merge from emacs-24; up to 2012-12-26T22:30:58Z!yamaoka@jpl.org
[bpt/emacs.git] / 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-2013 Free Software Foundation, Inc.
4
5 ;; Authors: 2001- Alan Mackenzie
6 ;; 1998- Martin Stjernholm
7 ;; 1992-1999 Barry A. Warsaw
8 ;; 1987 Dave Detlefs
9 ;; 1987 Stewart Clamen
10 ;; 1985 Richard M. Stallman
11 ;; Maintainer: bug-cc-mode@gnu.org
12 ;; Created: 22-Apr-1997 (split from cc-mode.el)
13 ;; Keywords: c languages
14 ;; Package: cc-mode
15
16 ;; This file is part of GNU Emacs.
17
18 ;; GNU Emacs is free software: you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation, either version 3 of the License, or
21 ;; (at your option) any later version.
22
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;; GNU General Public License for more details.
27
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30
31 ;;; Commentary:
32
33 ;; The functions which have docstring documentation can be considered
34 ;; part of an API which other packages can use in CC Mode buffers.
35 ;; Otoh, undocumented functions and functions with the documentation
36 ;; in comments are considered purely internal and can change semantics
37 ;; or even disappear in the future.
38 ;;
39 ;; (This policy applies to CC Mode as a whole, not just this file. It
40 ;; probably also applies to many other Emacs packages, but here it's
41 ;; clearly spelled out.)
42
43 ;; Hidden buffer changes
44 ;;
45 ;; Various functions in CC Mode use text properties for caching and
46 ;; syntactic markup purposes, and those of them that might modify such
47 ;; properties but still don't modify the buffer in a visible way are
48 ;; said to do "hidden buffer changes". They should be used within
49 ;; `c-save-buffer-state' or a similar function that saves and restores
50 ;; buffer modifiedness, disables buffer change hooks, etc.
51 ;;
52 ;; Interactive functions are assumed to not do hidden buffer changes,
53 ;; except in the specific parts of them that do real changes.
54 ;;
55 ;; Lineup functions are assumed to do hidden buffer changes. They
56 ;; must not do real changes, though.
57 ;;
58 ;; All other functions that do hidden buffer changes have that noted
59 ;; in their doc string or comment.
60 ;;
61 ;; The intention with this system is to avoid wrapping every leaf
62 ;; function that do hidden buffer changes inside
63 ;; `c-save-buffer-state'. It should be used as near the top of the
64 ;; interactive functions as possible.
65 ;;
66 ;; Functions called during font locking are allowed to do hidden
67 ;; buffer changes since the font-lock package run them in a context
68 ;; similar to `c-save-buffer-state' (in fact, that function is heavily
69 ;; inspired by `save-buffer-state' in the font-lock package).
70
71 ;; Use of text properties
72 ;;
73 ;; CC Mode uses several text properties internally to mark up various
74 ;; positions, e.g. to improve speed and to eliminate glitches in
75 ;; interactive refontification.
76 ;;
77 ;; Note: This doc is for internal use only. Other packages should not
78 ;; assume that these text properties are used as described here.
79 ;;
80 ;; 'category
81 ;; Used for "indirection". With its help, some other property can
82 ;; be cheaply and easily switched on or off everywhere it occurs.
83 ;;
84 ;; 'syntax-table
85 ;; Used to modify the syntax of some characters. It is used to
86 ;; mark the "<" and ">" of angle bracket parens with paren syntax, and
87 ;; to "hide" obtrusive characters in preprocessor lines.
88 ;;
89 ;; This property is used on single characters and is therefore
90 ;; always treated as front and rear nonsticky (or start and end open
91 ;; in XEmacs vocabulary). It's therefore installed on
92 ;; `text-property-default-nonsticky' if that variable exists (Emacs
93 ;; >= 21).
94 ;;
95 ;; 'c-is-sws and 'c-in-sws
96 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
97 ;; speed them up. See the comment blurb before `c-put-is-sws'
98 ;; below for further details.
99 ;;
100 ;; 'c-type
101 ;; This property is used on single characters to mark positions with
102 ;; special syntactic relevance of various sorts. Its primary use is
103 ;; to avoid glitches when multiline constructs are refontified
104 ;; interactively (on font lock decoration level 3). It's cleared in
105 ;; a region before it's fontified and is then put on relevant chars
106 ;; in that region as they are encountered during the fontification.
107 ;; The value specifies the kind of position:
108 ;;
109 ;; 'c-decl-arg-start
110 ;; Put on the last char of the token preceding each declaration
111 ;; inside a declaration style arglist (typically in a function
112 ;; prototype).
113 ;;
114 ;; 'c-decl-end
115 ;; Put on the last char of the token preceding a declaration.
116 ;; This is used in cases where declaration boundaries can't be
117 ;; recognized simply by looking for a token like ";" or "}".
118 ;; `c-type-decl-end-used' must be set if this is used (see also
119 ;; `c-find-decl-spots').
120 ;;
121 ;; 'c-<>-arg-sep
122 ;; Put on the commas that separate arguments in angle bracket
123 ;; arglists like C++ template arglists.
124 ;;
125 ;; 'c-decl-id-start and 'c-decl-type-start
126 ;; Put on the last char of the token preceding each declarator
127 ;; in the declarator list of a declaration. They are also used
128 ;; between the identifiers cases like enum declarations.
129 ;; 'c-decl-type-start is used when the declarators are types,
130 ;; 'c-decl-id-start otherwise.
131 ;;
132 ;; 'c-awk-NL-prop
133 ;; Used in AWK mode to mark the various kinds of newlines. See
134 ;; cc-awk.el.
135
136 ;;; Code:
137
138 (eval-when-compile
139 (let ((load-path
140 (if (and (boundp 'byte-compile-dest-file)
141 (stringp byte-compile-dest-file))
142 (cons (file-name-directory byte-compile-dest-file) load-path)
143 load-path)))
144 (load "cc-bytecomp" nil t)))
145
146 (cc-require 'cc-defs)
147 (cc-require-when-compile 'cc-langs)
148 (cc-require 'cc-vars)
149
150 ;; Silence the compiler.
151 (cc-bytecomp-defun buffer-syntactic-context) ; XEmacs
152
153 \f
154 ;; Make declarations for all the `c-lang-defvar' variables in cc-langs.
155
156 (defmacro c-declare-lang-variables ()
157 `(progn
158 ,@(apply 'nconc
159 (mapcar (lambda (init)
160 `(,(if (elt init 2)
161 `(defvar ,(car init) nil ,(elt init 2))
162 `(defvar ,(car init) nil))
163 (make-variable-buffer-local ',(car init))))
164 (cdr c-lang-variable-inits)))))
165 (c-declare-lang-variables)
166
167 \f
168 ;;; Internal state variables.
169
170 ;; Internal state of hungry delete key feature
171 (defvar c-hungry-delete-key nil)
172 (make-variable-buffer-local 'c-hungry-delete-key)
173
174 ;; The electric flag (toggled by `c-toggle-electric-state').
175 ;; If t, electric actions (like automatic reindentation, and (if
176 ;; c-auto-newline is also set) auto newlining) will happen when an electric
177 ;; key like `{' is pressed (or an electric keyword like `else').
178 (defvar c-electric-flag t)
179 (make-variable-buffer-local 'c-electric-flag)
180
181 ;; Internal state of auto newline feature.
182 (defvar c-auto-newline nil)
183 (make-variable-buffer-local 'c-auto-newline)
184
185 ;; Included in the mode line to indicate the active submodes.
186 ;; (defvar c-submode-indicators nil)
187 ;; (make-variable-buffer-local 'c-submode-indicators)
188
189 (defun c-calculate-state (arg prevstate)
190 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
191 ;; arg is nil or zero, toggle the state. If arg is negative, turn
192 ;; the state off, and if arg is positive, turn the state on
193 (if (or (not arg)
194 (zerop (setq arg (prefix-numeric-value arg))))
195 (not prevstate)
196 (> arg 0)))
197
198 \f
199 ;; Basic handling of preprocessor directives.
200
201 ;; This is a dynamically bound cache used together with
202 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
203 ;; works as long as point doesn't cross a macro boundary.
204 (defvar c-macro-start 'unknown)
205
206 (defsubst c-query-and-set-macro-start ()
207 (if (symbolp c-macro-start)
208 (setq c-macro-start (save-excursion
209 (c-save-buffer-state ()
210 (and (c-beginning-of-macro)
211 (point)))))
212 c-macro-start))
213
214 (defsubst c-query-macro-start ()
215 (if (symbolp c-macro-start)
216 (save-excursion
217 (c-save-buffer-state ()
218 (and (c-beginning-of-macro)
219 (point))))
220 c-macro-start))
221
222 ;; One element macro cache to cope with continual movement within very large
223 ;; CPP macros.
224 (defvar c-macro-cache nil)
225 (make-variable-buffer-local 'c-macro-cache)
226 ;; Nil or cons of the bounds of the most recent CPP form probed by
227 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
228 ;; The cdr will be nil if we know only the start of the CPP form.
229 (defvar c-macro-cache-start-pos nil)
230 (make-variable-buffer-local 'c-macro-cache-start-pos)
231 ;; The starting position from where we determined `c-macro-cache'.
232 (defvar c-macro-cache-syntactic nil)
233 (make-variable-buffer-local 'c-macro-cache-syntactic)
234 ;; non-nil iff `c-macro-cache' has both elements set AND the cdr is at a
235 ;; syntactic end of macro, not merely an apparent one.
236
237 (defun c-invalidate-macro-cache (beg end)
238 ;; Called from a before-change function. If the change region is before or
239 ;; in the macro characterized by `c-macro-cache' etc., nullify it
240 ;; appropriately. BEG and END are the standard before-change-functions
241 ;; parameters. END isn't used.
242 (cond
243 ((null c-macro-cache))
244 ((< beg (car c-macro-cache))
245 (setq c-macro-cache nil
246 c-macro-cache-start-pos nil
247 c-macro-cache-syntactic nil))
248 ((and (cdr c-macro-cache)
249 (< beg (cdr c-macro-cache)))
250 (setcdr c-macro-cache nil)
251 (setq c-macro-cache-start-pos beg
252 c-macro-cache-syntactic nil))))
253
254 (defun c-beginning-of-macro (&optional lim)
255 "Go to the beginning of a preprocessor directive.
256 Leave point at the beginning of the directive and return t if in one,
257 otherwise return nil and leave point unchanged.
258
259 Note that this function might do hidden buffer changes. See the
260 comment at the start of cc-engine.el for more info."
261 (let ((here (point)))
262 (when c-opt-cpp-prefix
263 (if (and (car c-macro-cache)
264 (>= (point) (car c-macro-cache))
265 (or (and (cdr c-macro-cache)
266 (<= (point) (cdr c-macro-cache)))
267 (<= (point) c-macro-cache-start-pos)))
268 (unless (< (car c-macro-cache) (or lim (point-min)))
269 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
270 (setq c-macro-cache-start-pos
271 (max c-macro-cache-start-pos here))
272 t))
273 (setq c-macro-cache nil
274 c-macro-cache-start-pos nil
275 c-macro-cache-syntactic nil)
276
277 (save-restriction
278 (if lim (narrow-to-region lim (point-max)))
279 (beginning-of-line)
280 (while (eq (char-before (1- (point))) ?\\)
281 (forward-line -1))
282 (back-to-indentation)
283 (if (and (<= (point) here)
284 (looking-at c-opt-cpp-start))
285 (progn
286 (setq c-macro-cache (cons (point) nil)
287 c-macro-cache-start-pos here)
288 t)
289 (goto-char here)
290 nil))))))
291
292 (defun c-end-of-macro ()
293 "Go to the end of a preprocessor directive.
294 More accurately, move the point to the end of the closest following
295 line that doesn't end with a line continuation backslash - no check is
296 done that the point is inside a cpp directive to begin with.
297
298 Note that this function might do hidden buffer changes. See the
299 comment at the start of cc-engine.el for more info."
300 (if (and (cdr c-macro-cache)
301 (<= (point) (cdr c-macro-cache))
302 (>= (point) (car c-macro-cache)))
303 (goto-char (cdr c-macro-cache))
304 (unless (and (car c-macro-cache)
305 (<= (point) c-macro-cache-start-pos)
306 (>= (point) (car c-macro-cache)))
307 (setq c-macro-cache nil
308 c-macro-cache-start-pos nil
309 c-macro-cache-syntactic nil))
310 (while (progn
311 (end-of-line)
312 (when (and (eq (char-before) ?\\)
313 (not (eobp)))
314 (forward-char)
315 t)))
316 (when (car c-macro-cache)
317 (setcdr c-macro-cache (point)))))
318
319 (defun c-syntactic-end-of-macro ()
320 ;; Go to the end of a CPP directive, or a "safe" pos just before.
321 ;;
322 ;; This is normally the end of the next non-escaped line. A "safe"
323 ;; position is one not within a string or comment. (The EOL on a line
324 ;; comment is NOT "safe").
325 ;;
326 ;; This function must only be called from the beginning of a CPP construct.
327 ;;
328 ;; Note that this function might do hidden buffer changes. See the comment
329 ;; at the start of cc-engine.el for more info.
330 (let* ((here (point))
331 (there (progn (c-end-of-macro) (point)))
332 s)
333 (unless c-macro-cache-syntactic
334 (setq s (parse-partial-sexp here there))
335 (while (and (or (nth 3 s) ; in a string
336 (nth 4 s)) ; in a comment (maybe at end of line comment)
337 (> there here)) ; No infinite loops, please.
338 (setq there (1- (nth 8 s)))
339 (setq s (parse-partial-sexp here there)))
340 (setq c-macro-cache-syntactic (car c-macro-cache)))
341 (point)))
342
343 (defun c-forward-over-cpp-define-id ()
344 ;; Assuming point is at the "#" that introduces a preprocessor
345 ;; directive, it's moved forward to the end of the identifier which is
346 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
347 ;; is returned in this case, in all other cases nil is returned and
348 ;; point isn't moved.
349 ;;
350 ;; This function might do hidden buffer changes.
351 (when (and c-opt-cpp-macro-define-id
352 (looking-at c-opt-cpp-macro-define-id))
353 (goto-char (match-end 0))))
354
355 (defun c-forward-to-cpp-define-body ()
356 ;; Assuming point is at the "#" that introduces a preprocessor
357 ;; directive, it's moved forward to the start of the definition body
358 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
359 ;; specifies). Non-nil is returned in this case, in all other cases
360 ;; nil is returned and point isn't moved.
361 ;;
362 ;; This function might do hidden buffer changes.
363 (when (and c-opt-cpp-macro-define-start
364 (looking-at c-opt-cpp-macro-define-start)
365 (not (= (match-end 0) (c-point 'eol))))
366 (goto-char (match-end 0))))
367
368 \f
369 ;;; Basic utility functions.
370
371 (defun c-syntactic-content (from to paren-level)
372 ;; Return the given region as a string where all syntactic
373 ;; whitespace is removed or, where necessary, replaced with a single
374 ;; space. If PAREN-LEVEL is given then all parens in the region are
375 ;; collapsed to "()", "[]" etc.
376 ;;
377 ;; This function might do hidden buffer changes.
378
379 (save-excursion
380 (save-restriction
381 (narrow-to-region from to)
382 (goto-char from)
383 (let* ((parts (list nil)) (tail parts) pos in-paren)
384
385 (while (re-search-forward c-syntactic-ws-start to t)
386 (goto-char (setq pos (match-beginning 0)))
387 (c-forward-syntactic-ws)
388 (if (= (point) pos)
389 (forward-char)
390
391 (when paren-level
392 (save-excursion
393 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
394 pos (point))))
395
396 (if (and (> pos from)
397 (< (point) to)
398 (looking-at "\\w\\|\\s_")
399 (save-excursion
400 (goto-char (1- pos))
401 (looking-at "\\w\\|\\s_")))
402 (progn
403 (setcdr tail (list (buffer-substring-no-properties from pos)
404 " "))
405 (setq tail (cddr tail)))
406 (setcdr tail (list (buffer-substring-no-properties from pos)))
407 (setq tail (cdr tail)))
408
409 (when in-paren
410 (when (= (car (parse-partial-sexp pos to -1)) -1)
411 (setcdr tail (list (buffer-substring-no-properties
412 (1- (point)) (point))))
413 (setq tail (cdr tail))))
414
415 (setq from (point))))
416
417 (setcdr tail (list (buffer-substring-no-properties from to)))
418 (apply 'concat (cdr parts))))))
419
420 (defun c-shift-line-indentation (shift-amt)
421 ;; Shift the indentation of the current line with the specified
422 ;; amount (positive inwards). The buffer is modified only if
423 ;; SHIFT-AMT isn't equal to zero.
424 (let ((pos (- (point-max) (point)))
425 (c-macro-start c-macro-start)
426 tmp-char-inserted)
427 (if (zerop shift-amt)
428 nil
429 ;; If we're on an empty line inside a macro, we take the point
430 ;; to be at the current indentation and shift it to the
431 ;; appropriate column. This way we don't treat the extra
432 ;; whitespace out to the line continuation as indentation.
433 (when (and (c-query-and-set-macro-start)
434 (looking-at "[ \t]*\\\\$")
435 (save-excursion
436 (skip-chars-backward " \t")
437 (bolp)))
438 (insert ?x)
439 (backward-char)
440 (setq tmp-char-inserted t))
441 (unwind-protect
442 (let ((col (current-indentation)))
443 (delete-region (c-point 'bol) (c-point 'boi))
444 (beginning-of-line)
445 (indent-to (+ col shift-amt)))
446 (when tmp-char-inserted
447 (delete-char 1))))
448 ;; If initial point was within line's indentation and we're not on
449 ;; a line with a line continuation in a macro, position after the
450 ;; indentation. Else stay at same point in text.
451 (if (and (< (point) (c-point 'boi))
452 (not tmp-char-inserted))
453 (back-to-indentation)
454 (if (> (- (point-max) pos) (point))
455 (goto-char (- (point-max) pos))))))
456
457 (defsubst c-keyword-sym (keyword)
458 ;; Return non-nil if the string KEYWORD is a known keyword. More
459 ;; precisely, the value is the symbol for the keyword in
460 ;; `c-keywords-obarray'.
461 (intern-soft keyword c-keywords-obarray))
462
463 (defsubst c-keyword-member (keyword-sym lang-constant)
464 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
465 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
466 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
467 ;; nil then the result is nil.
468 (get keyword-sym lang-constant))
469
470 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
471 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
472 "\"|"
473 "\""))
474
475 ;; Regexp matching string limit syntax.
476 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
477 "\\s\"\\|\\s|"
478 "\\s\""))
479
480 ;; Regexp matching WS followed by string limit syntax.
481 (defconst c-ws*-string-limit-regexp
482 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
483
484 ;; Holds formatted error strings for the few cases where parse errors
485 ;; are reported.
486 (defvar c-parsing-error nil)
487 (make-variable-buffer-local 'c-parsing-error)
488
489 (defun c-echo-parsing-error (&optional quiet)
490 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
491 (c-benign-error "%s" c-parsing-error))
492 c-parsing-error)
493
494 ;; Faces given to comments and string literals. This is used in some
495 ;; situations to speed up recognition; it isn't mandatory that font
496 ;; locking is in use. This variable is extended with the face in
497 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
498 (defvar c-literal-faces
499 (append '(font-lock-comment-face font-lock-string-face)
500 (when (facep 'font-lock-comment-delimiter-face)
501 ;; New in Emacs 22.
502 '(font-lock-comment-delimiter-face))))
503
504 (defsubst c-put-c-type-property (pos value)
505 ;; Put a c-type property with the given value at POS.
506 (c-put-char-property pos 'c-type value))
507
508 (defun c-clear-c-type-property (from to value)
509 ;; Remove all occurrences of the c-type property that has the given
510 ;; value in the region between FROM and TO. VALUE is assumed to not
511 ;; be nil.
512 ;;
513 ;; Note: This assumes that c-type is put on single chars only; it's
514 ;; very inefficient if matching properties cover large regions.
515 (save-excursion
516 (goto-char from)
517 (while (progn
518 (when (eq (get-text-property (point) 'c-type) value)
519 (c-clear-char-property (point) 'c-type))
520 (goto-char (next-single-property-change (point) 'c-type nil to))
521 (< (point) to)))))
522
523 \f
524 ;; Some debug tools to visualize various special positions. This
525 ;; debug code isn't as portable as the rest of CC Mode.
526
527 (cc-bytecomp-defun overlays-in)
528 (cc-bytecomp-defun overlay-get)
529 (cc-bytecomp-defun overlay-start)
530 (cc-bytecomp-defun overlay-end)
531 (cc-bytecomp-defun delete-overlay)
532 (cc-bytecomp-defun overlay-put)
533 (cc-bytecomp-defun make-overlay)
534
535 (defun c-debug-add-face (beg end face)
536 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
537 (while overlays
538 (setq overlay (car overlays)
539 overlays (cdr overlays))
540 (when (eq (overlay-get overlay 'face) face)
541 (setq beg (min beg (overlay-start overlay))
542 end (max end (overlay-end overlay)))
543 (delete-overlay overlay)))
544 (overlay-put (make-overlay beg end) 'face face)))
545
546 (defun c-debug-remove-face (beg end face)
547 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
548 (ol-beg beg) (ol-end end))
549 (while overlays
550 (setq overlay (car overlays)
551 overlays (cdr overlays))
552 (when (eq (overlay-get overlay 'face) face)
553 (setq ol-beg (min ol-beg (overlay-start overlay))
554 ol-end (max ol-end (overlay-end overlay)))
555 (delete-overlay overlay)))
556 (when (< ol-beg beg)
557 (overlay-put (make-overlay ol-beg beg) 'face face))
558 (when (> ol-end end)
559 (overlay-put (make-overlay end ol-end) 'face face))))
560
561 \f
562 ;; `c-beginning-of-statement-1' and accompanying stuff.
563
564 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
565 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
566 ;; better way should be implemented, but this will at least shut up
567 ;; the byte compiler.
568 (defvar c-maybe-labelp)
569
570 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
571
572 ;; Macros used internally in c-beginning-of-statement-1 for the
573 ;; automaton actions.
574 (defmacro c-bos-push-state ()
575 '(setq stack (cons (cons state saved-pos)
576 stack)))
577 (defmacro c-bos-pop-state (&optional do-if-done)
578 `(if (setq state (car (car stack))
579 saved-pos (cdr (car stack))
580 stack (cdr stack))
581 t
582 ,do-if-done
583 (throw 'loop nil)))
584 (defmacro c-bos-pop-state-and-retry ()
585 '(throw 'loop (setq state (car (car stack))
586 saved-pos (cdr (car stack))
587 ;; Throw nil if stack is empty, else throw non-nil.
588 stack (cdr stack))))
589 (defmacro c-bos-save-pos ()
590 '(setq saved-pos (vector pos tok ptok pptok)))
591 (defmacro c-bos-restore-pos ()
592 '(unless (eq (elt saved-pos 0) start)
593 (setq pos (elt saved-pos 0)
594 tok (elt saved-pos 1)
595 ptok (elt saved-pos 2)
596 pptok (elt saved-pos 3))
597 (goto-char pos)
598 (setq sym nil)))
599 (defmacro c-bos-save-error-info (missing got)
600 `(setq saved-pos (vector pos ,missing ,got)))
601 (defmacro c-bos-report-error ()
602 '(unless noerror
603 (setq c-parsing-error
604 (format "No matching `%s' found for `%s' on line %d"
605 (elt saved-pos 1)
606 (elt saved-pos 2)
607 (1+ (count-lines (point-min)
608 (c-point 'bol (elt saved-pos 0))))))))
609
610 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
611 noerror comma-delim)
612 "Move to the start of the current statement or declaration, or to
613 the previous one if already at the beginning of one. Only
614 statements/declarations on the same level are considered, i.e. don't
615 move into or out of sexps (not even normal expression parentheses).
616
617 If point is already at the earliest statement within braces or parens,
618 this function doesn't move back into any whitespace preceding it; it
619 returns 'same in this case.
620
621 Stop at statement continuation tokens like \"else\", \"catch\",
622 \"finally\" and the \"while\" in \"do ... while\" if the start point
623 is within the continuation. If starting at such a token, move to the
624 corresponding statement start. If at the beginning of a statement,
625 move to the closest containing statement if there is any. This might
626 also stop at a continuation clause.
627
628 Labels are treated as part of the following statements if
629 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
630 statement start keyword.) Otherwise, each label is treated as a
631 separate statement.
632
633 Macros are ignored \(i.e. skipped over) unless point is within one, in
634 which case the content of the macro is treated as normal code. Aside
635 from any normal statement starts found in it, stop at the first token
636 of the content in the macro, i.e. the expression of an \"#if\" or the
637 start of the definition in a \"#define\". Also stop at start of
638 macros before leaving them.
639
640 Return:
641 'label if stopped at a label or \"case...:\" or \"default:\";
642 'same if stopped at the beginning of the current statement;
643 'up if stepped to a containing statement;
644 'previous if stepped to a preceding statement;
645 'beginning if stepped from a statement continuation clause to
646 its start clause; or
647 'macro if stepped to a macro start.
648 Note that 'same and not 'label is returned if stopped at the same
649 label without crossing the colon character.
650
651 LIM may be given to limit the search. If the search hits the limit,
652 point will be left at the closest following token, or at the start
653 position if that is less ('same is returned in this case).
654
655 NOERROR turns off error logging to `c-parsing-error'.
656
657 Normally only ';' and virtual semicolons are considered to delimit
658 statements, but if COMMA-DELIM is non-nil then ',' is treated
659 as a delimiter too.
660
661 Note that this function might do hidden buffer changes. See the
662 comment at the start of cc-engine.el for more info."
663
664 ;; The bulk of this function is a pushdown automaton that looks at statement
665 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
666 ;; purpose is to keep track of nested statements, ensuring that such
667 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
668 ;; does with nested braces/brackets/parentheses).
669 ;;
670 ;; Note: The position of a boundary is the following token.
671 ;;
672 ;; Beginning with the current token (the one following point), move back one
673 ;; sexp at a time (where a sexp is, more or less, either a token or the
674 ;; entire contents of a brace/bracket/paren pair). Each time a statement
675 ;; boundary is crossed or a "while"-like token is found, update the state of
676 ;; the PDA. Stop at the beginning of a statement when the stack (holding
677 ;; nested statement info) is empty and the position has been moved.
678 ;;
679 ;; The following variables constitute the PDA:
680 ;;
681 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
682 ;; scanned back over, 'boundary if we've just gone back over a
683 ;; statement boundary, or nil otherwise.
684 ;; state: takes one of the values (nil else else-boundary while
685 ;; while-boundary catch catch-boundary).
686 ;; nil means "no "while"-like token yet scanned".
687 ;; 'else, for example, means "just gone back over an else".
688 ;; 'else-boundary means "just gone back over a statement boundary
689 ;; immediately after having gone back over an else".
690 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
691 ;; of error reporting information.
692 ;; stack: The stack onto which the PDA pushes its state. Each entry
693 ;; consists of a saved value of state and saved-pos. An entry is
694 ;; pushed when we move back over a "continuation" token (e.g. else)
695 ;; and popped when we encounter the corresponding opening token
696 ;; (e.g. if).
697 ;;
698 ;;
699 ;; The following diagram briefly outlines the PDA.
700 ;;
701 ;; Common state:
702 ;; "else": Push state, goto state `else'.
703 ;; "while": Push state, goto state `while'.
704 ;; "catch" or "finally": Push state, goto state `catch'.
705 ;; boundary: Pop state.
706 ;; other: Do nothing special.
707 ;;
708 ;; State `else':
709 ;; boundary: Goto state `else-boundary'.
710 ;; other: Error, pop state, retry token.
711 ;;
712 ;; State `else-boundary':
713 ;; "if": Pop state.
714 ;; boundary: Error, pop state.
715 ;; other: See common state.
716 ;;
717 ;; State `while':
718 ;; boundary: Save position, goto state `while-boundary'.
719 ;; other: Pop state, retry token.
720 ;;
721 ;; State `while-boundary':
722 ;; "do": Pop state.
723 ;; boundary: Restore position if it's not at start, pop state. [*see below]
724 ;; other: See common state.
725 ;;
726 ;; State `catch':
727 ;; boundary: Goto state `catch-boundary'.
728 ;; other: Error, pop state, retry token.
729 ;;
730 ;; State `catch-boundary':
731 ;; "try": Pop state.
732 ;; "catch": Goto state `catch'.
733 ;; boundary: Error, pop state.
734 ;; other: See common state.
735 ;;
736 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
737 ;; searching for a "do" which would have opened a do-while. If we didn't
738 ;; find it, we discard the analysis done since the "while", go back to this
739 ;; token in the buffer and restart the scanning there, this time WITHOUT
740 ;; pushing the 'while state onto the stack.
741 ;;
742 ;; In addition to the above there is some special handling of labels
743 ;; and macros.
744
745 (let ((case-fold-search nil)
746 (start (point))
747 macro-start
748 (delims (if comma-delim '(?\; ?,) '(?\;)))
749 (c-stmt-delim-chars (if comma-delim
750 c-stmt-delim-chars-with-comma
751 c-stmt-delim-chars))
752 c-in-literal-cache c-maybe-labelp after-case:-pos saved
753 ;; Current position.
754 pos
755 ;; Position of last stmt boundary character (e.g. ;).
756 boundary-pos
757 ;; The position of the last sexp or bound that follows the
758 ;; first found colon, i.e. the start of the nonlabel part of
759 ;; the statement. It's `start' if a colon is found just after
760 ;; the start.
761 after-labels-pos
762 ;; Like `after-labels-pos', but the first such position inside
763 ;; a label, i.e. the start of the last label before the start
764 ;; of the nonlabel part of the statement.
765 last-label-pos
766 ;; The last position where a label is possible provided the
767 ;; statement started there. It's nil as long as no invalid
768 ;; label content has been found (according to
769 ;; `c-nonlabel-token-key'). It's `start' if no valid label
770 ;; content was found in the label. Note that we might still
771 ;; regard it a label if it starts with `c-label-kwds'.
772 label-good-pos
773 ;; Putative positions of the components of a bitfield declaration,
774 ;; e.g. "int foo : NUM_FOO_BITS ;"
775 bitfield-type-pos bitfield-id-pos bitfield-size-pos
776 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
777 ;; See above.
778 sym
779 ;; Current state in the automaton. See above.
780 state
781 ;; Current saved positions. See above.
782 saved-pos
783 ;; Stack of conses (state . saved-pos).
784 stack
785 ;; Regexp which matches "for", "if", etc.
786 (cond-key (or c-opt-block-stmt-key
787 "\\<\\>")) ; Matches nothing.
788 ;; Return value.
789 (ret 'same)
790 ;; Positions of the last three sexps or bounds we've stopped at.
791 tok ptok pptok)
792
793 (save-restriction
794 (if lim (narrow-to-region lim (point-max)))
795
796 (if (save-excursion
797 (and (c-beginning-of-macro)
798 (/= (point) start)))
799 (setq macro-start (point)))
800
801 ;; Try to skip back over unary operator characters, to register
802 ;; that we've moved.
803 (while (progn
804 (setq pos (point))
805 (c-backward-syntactic-ws)
806 ;; Protect post-++/-- operators just before a virtual semicolon.
807 (and (not (c-at-vsemi-p))
808 (/= (skip-chars-backward "-+!*&~@`#") 0))))
809
810 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
811 ;; done. Later on we ignore the boundaries for statements that don't
812 ;; contain any sexp. The only thing that is affected is that the error
813 ;; checking is a little less strict, and we really don't bother.
814 (if (and (memq (char-before) delims)
815 (progn (forward-char -1)
816 (setq saved (point))
817 (c-backward-syntactic-ws)
818 (or (memq (char-before) delims)
819 (memq (char-before) '(?: nil))
820 (eq (char-syntax (char-before)) ?\()
821 (c-at-vsemi-p))))
822 (setq ret 'previous
823 pos saved)
824
825 ;; Begin at start and not pos to detect macros if we stand
826 ;; directly after the #.
827 (goto-char start)
828 (if (looking-at "\\<\\|\\W")
829 ;; Record this as the first token if not starting inside it.
830 (setq tok start))
831
832
833 ;; The following while loop goes back one sexp (balanced parens,
834 ;; etc. with contents, or symbol or suchlike) each iteration. This
835 ;; movement is accomplished with a call to c-backward-sexp approx 170
836 ;; lines below.
837 ;;
838 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
839 ;; 1. On reaching the start of a macro;
840 ;; 2. On having passed a stmt boundary with the PDA stack empty;
841 ;; 3. On reaching the start of an Objective C method def;
842 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
843 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
844 (while
845 (catch 'loop ;; Throw nil to break, non-nil to continue.
846 (cond
847 ;; Are we in a macro, just after the opening #?
848 ((save-excursion
849 (and macro-start ; Always NIL for AWK.
850 (progn (skip-chars-backward " \t")
851 (eq (char-before) ?#))
852 (progn (setq saved (1- (point)))
853 (beginning-of-line)
854 (not (eq (char-before (1- (point))) ?\\)))
855 (looking-at c-opt-cpp-start)
856 (progn (skip-chars-forward " \t")
857 (eq (point) saved))))
858 (goto-char saved)
859 (if (and (c-forward-to-cpp-define-body)
860 (progn (c-forward-syntactic-ws start)
861 (< (point) start)))
862 ;; Stop at the first token in the content of the macro.
863 (setq pos (point)
864 ignore-labels t) ; Avoid the label check on exit.
865 (setq pos saved
866 ret 'macro
867 ignore-labels t))
868 (throw 'loop nil)) ; 1. Start of macro.
869
870 ;; Do a round through the automaton if we've just passed a
871 ;; statement boundary or passed a "while"-like token.
872 ((or sym
873 (and (looking-at cond-key)
874 (setq sym (intern (match-string 1)))))
875
876 (when (and (< pos start) (null stack))
877 (throw 'loop nil)) ; 2. Statement boundary.
878
879 ;; The PDA state handling.
880 ;;
881 ;; Refer to the description of the PDA in the opening
882 ;; comments. In the following OR form, the first leaf
883 ;; attempts to handles one of the specific actions detailed
884 ;; (e.g., finding token "if" whilst in state `else-boundary').
885 ;; We drop through to the second leaf (which handles common
886 ;; state) if no specific handler is found in the first cond.
887 ;; If a parsing error is detected (e.g. an "else" with no
888 ;; preceding "if"), we throw to the enclosing catch.
889 ;;
890 ;; Note that the (eq state 'else) means
891 ;; "we've just passed an else", NOT "we're looking for an
892 ;; else".
893 (or (cond
894 ((eq state 'else)
895 (if (eq sym 'boundary)
896 (setq state 'else-boundary)
897 (c-bos-report-error)
898 (c-bos-pop-state-and-retry)))
899
900 ((eq state 'else-boundary)
901 (cond ((eq sym 'if)
902 (c-bos-pop-state (setq ret 'beginning)))
903 ((eq sym 'boundary)
904 (c-bos-report-error)
905 (c-bos-pop-state))))
906
907 ((eq state 'while)
908 (if (and (eq sym 'boundary)
909 ;; Since this can cause backtracking we do a
910 ;; little more careful analysis to avoid it:
911 ;; If there's a label in front of the while
912 ;; it can't be part of a do-while.
913 (not after-labels-pos))
914 (progn (c-bos-save-pos)
915 (setq state 'while-boundary))
916 (c-bos-pop-state-and-retry))) ; Can't be a do-while
917
918 ((eq state 'while-boundary)
919 (cond ((eq sym 'do)
920 (c-bos-pop-state (setq ret 'beginning)))
921 ((eq sym 'boundary) ; isn't a do-while
922 (c-bos-restore-pos) ; the position of the while
923 (c-bos-pop-state)))) ; no longer searching for do.
924
925 ((eq state 'catch)
926 (if (eq sym 'boundary)
927 (setq state 'catch-boundary)
928 (c-bos-report-error)
929 (c-bos-pop-state-and-retry)))
930
931 ((eq state 'catch-boundary)
932 (cond
933 ((eq sym 'try)
934 (c-bos-pop-state (setq ret 'beginning)))
935 ((eq sym 'catch)
936 (setq state 'catch))
937 ((eq sym 'boundary)
938 (c-bos-report-error)
939 (c-bos-pop-state)))))
940
941 ;; This is state common. We get here when the previous
942 ;; cond statement found no particular state handler.
943 (cond ((eq sym 'boundary)
944 ;; If we have a boundary at the start
945 ;; position we push a frame to go to the
946 ;; previous statement.
947 (if (>= pos start)
948 (c-bos-push-state)
949 (c-bos-pop-state)))
950 ((eq sym 'else)
951 (c-bos-push-state)
952 (c-bos-save-error-info 'if 'else)
953 (setq state 'else))
954 ((eq sym 'while)
955 ;; Is this a real while, or a do-while?
956 ;; The next `when' triggers unless we are SURE that
957 ;; the `while' is not the tail end of a `do-while'.
958 (when (or (not pptok)
959 (memq (char-after pptok) delims)
960 ;; The following kludge is to prevent
961 ;; infinite recursion when called from
962 ;; c-awk-after-if-for-while-condition-p,
963 ;; or the like.
964 (and (eq (point) start)
965 (c-vsemi-status-unknown-p))
966 (c-at-vsemi-p pptok))
967 ;; Since this can cause backtracking we do a
968 ;; little more careful analysis to avoid it: If
969 ;; the while isn't followed by a (possibly
970 ;; virtual) semicolon it can't be a do-while.
971 (c-bos-push-state)
972 (setq state 'while)))
973 ((memq sym '(catch finally))
974 (c-bos-push-state)
975 (c-bos-save-error-info 'try sym)
976 (setq state 'catch))))
977
978 (when c-maybe-labelp
979 ;; We're either past a statement boundary or at the
980 ;; start of a statement, so throw away any label data
981 ;; for the previous one.
982 (setq after-labels-pos nil
983 last-label-pos nil
984 c-maybe-labelp nil))))
985
986 ;; Step to the previous sexp, but not if we crossed a
987 ;; boundary, since that doesn't consume an sexp.
988 (if (eq sym 'boundary)
989 (setq ret 'previous)
990
991 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
992 ;; BACKWARDS THROUGH THE SOURCE.
993
994 (c-backward-syntactic-ws)
995 (let ((before-sws-pos (point))
996 ;; The end position of the area to search for statement
997 ;; barriers in this round.
998 (maybe-after-boundary-pos pos))
999
1000 ;; Go back over exactly one logical sexp, taking proper
1001 ;; account of macros and escaped EOLs.
1002 (while
1003 (progn
1004 (unless (c-safe (c-backward-sexp) t)
1005 ;; Give up if we hit an unbalanced block. Since the
1006 ;; stack won't be empty the code below will report a
1007 ;; suitable error.
1008 (throw 'loop nil))
1009 (cond
1010 ;; Have we moved into a macro?
1011 ((and (not macro-start)
1012 (c-beginning-of-macro))
1013 ;; Have we crossed a statement boundary? If not,
1014 ;; keep going back until we find one or a "real" sexp.
1015 (and
1016 (save-excursion
1017 (c-end-of-macro)
1018 (not (c-crosses-statement-barrier-p
1019 (point) maybe-after-boundary-pos)))
1020 (setq maybe-after-boundary-pos (point))))
1021 ;; Have we just gone back over an escaped NL? This
1022 ;; doesn't count as a sexp.
1023 ((looking-at "\\\\$")))))
1024
1025 ;; Have we crossed a statement boundary?
1026 (setq boundary-pos
1027 (cond
1028 ;; Are we at a macro beginning?
1029 ((and (not macro-start)
1030 c-opt-cpp-prefix
1031 (looking-at c-opt-cpp-prefix))
1032 (save-excursion
1033 (c-end-of-macro)
1034 (c-crosses-statement-barrier-p
1035 (point) maybe-after-boundary-pos)))
1036 ;; Just gone back over a brace block?
1037 ((and
1038 (eq (char-after) ?{)
1039 (not (c-looking-at-inexpr-block lim nil t)))
1040 (save-excursion
1041 (c-forward-sexp) (point)))
1042 ;; Just gone back over some paren block?
1043 ((looking-at "\\s\(")
1044 (save-excursion
1045 (goto-char (1+ (c-down-list-backward
1046 before-sws-pos)))
1047 (c-crosses-statement-barrier-p
1048 (point) maybe-after-boundary-pos)))
1049 ;; Just gone back over an ordinary symbol of some sort?
1050 (t (c-crosses-statement-barrier-p
1051 (point) maybe-after-boundary-pos))))
1052
1053 (when boundary-pos
1054 (setq pptok ptok
1055 ptok tok
1056 tok boundary-pos
1057 sym 'boundary)
1058 ;; Like a C "continue". Analyze the next sexp.
1059 (throw 'loop t))))
1060
1061 ;; ObjC method def?
1062 (when (and c-opt-method-key
1063 (setq saved (c-in-method-def-p)))
1064 (setq pos saved
1065 ignore-labels t) ; Avoid the label check on exit.
1066 (throw 'loop nil)) ; 3. ObjC method def.
1067
1068 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1069 (if c-has-bitfields
1070 (cond
1071 ;; The : <size> and <id> fields?
1072 ((and (numberp c-maybe-labelp)
1073 (not bitfield-size-pos)
1074 (save-excursion
1075 (goto-char (or tok start))
1076 (not (looking-at c-keywords-regexp)))
1077 (not (looking-at c-keywords-regexp))
1078 (not (c-punctuation-in (point) c-maybe-labelp)))
1079 (setq bitfield-size-pos (or tok start)
1080 bitfield-id-pos (point)))
1081 ;; The <type> field?
1082 ((and bitfield-id-pos
1083 (not bitfield-type-pos))
1084 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1085 (not (looking-at c-not-primitive-type-keywords-regexp))
1086 (not (c-punctuation-in (point) tok)))
1087 (setq bitfield-type-pos (point))
1088 (setq bitfield-size-pos nil
1089 bitfield-id-pos nil)))))
1090
1091 ;; Handle labels.
1092 (unless (eq ignore-labels t)
1093 (when (numberp c-maybe-labelp)
1094 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1095 ;; might be in a label now. Have we got a real label
1096 ;; (including a case label) or something like C++'s "public:"?
1097 ;; A case label might use an expression rather than a token.
1098 (setq after-case:-pos (or tok start))
1099 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1100 ;; Catch C++'s inheritance construct "class foo : bar".
1101 (save-excursion
1102 (and
1103 (c-safe (c-backward-sexp) t)
1104 (looking-at c-nonlabel-token-2-key))))
1105 (setq c-maybe-labelp nil)
1106 (if after-labels-pos ; Have we already encountered a label?
1107 (if (not last-label-pos)
1108 (setq last-label-pos (or tok start)))
1109 (setq after-labels-pos (or tok start)))
1110 (setq c-maybe-labelp t
1111 label-good-pos nil))) ; bogus "label"
1112
1113 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1114 ; been found.
1115 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1116 ;; We're in a potential label and it's the first
1117 ;; time we've found something that isn't allowed in
1118 ;; one.
1119 (setq label-good-pos (or tok start))))
1120
1121 ;; We've moved back by a sexp, so update the token positions.
1122 (setq sym nil
1123 pptok ptok
1124 ptok tok
1125 tok (point)
1126 pos tok) ; always non-nil
1127 ) ; end of (catch loop ....)
1128 ) ; end of sexp-at-a-time (while ....)
1129
1130 ;; If the stack isn't empty there might be errors to report.
1131 (while stack
1132 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1133 (c-bos-report-error))
1134 (setq saved-pos (cdr (car stack))
1135 stack (cdr stack)))
1136
1137 (when (and (eq ret 'same)
1138 (not (memq sym '(boundary ignore nil))))
1139 ;; Need to investigate closer whether we've crossed
1140 ;; between a substatement and its containing statement.
1141 (if (setq saved (if (looking-at c-block-stmt-1-key)
1142 ptok
1143 pptok))
1144 (cond ((> start saved) (setq pos saved))
1145 ((= start saved) (setq ret 'up)))))
1146
1147 (when (and (not ignore-labels)
1148 (eq c-maybe-labelp t)
1149 (not (eq ret 'beginning))
1150 after-labels-pos
1151 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1152 (or (not label-good-pos)
1153 (<= label-good-pos pos)
1154 (progn
1155 (goto-char (if (and last-label-pos
1156 (< last-label-pos start))
1157 last-label-pos
1158 pos))
1159 (looking-at c-label-kwds-regexp))))
1160 ;; We're in a label. Maybe we should step to the statement
1161 ;; after it.
1162 (if (< after-labels-pos start)
1163 (setq pos after-labels-pos)
1164 (setq ret 'label)
1165 (if (and last-label-pos (< last-label-pos start))
1166 ;; Might have jumped over several labels. Go to the last one.
1167 (setq pos last-label-pos)))))
1168
1169 ;; Have we got "case <expression>:"?
1170 (goto-char pos)
1171 (when (and after-case:-pos
1172 (not (eq ret 'beginning))
1173 (looking-at c-case-kwds-regexp))
1174 (if (< after-case:-pos start)
1175 (setq pos after-case:-pos))
1176 (if (eq ret 'same)
1177 (setq ret 'label)))
1178
1179 ;; Skip over the unary operators that can start the statement.
1180 (while (progn
1181 (c-backward-syntactic-ws)
1182 ;; protect AWK post-inc/decrement operators, etc.
1183 (and (not (c-at-vsemi-p (point)))
1184 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1185 (setq pos (point)))
1186 (goto-char pos)
1187 ret)))
1188
1189 (defun c-punctuation-in (from to)
1190 "Return non-nil if there is a non-comment non-macro punctuation character
1191 between FROM and TO. FROM must not be in a string or comment. The returned
1192 value is the position of the first such character."
1193 (save-excursion
1194 (goto-char from)
1195 (let ((pos (point)))
1196 (while (progn (skip-chars-forward c-symbol-chars to)
1197 (c-forward-syntactic-ws to)
1198 (> (point) pos))
1199 (setq pos (point))))
1200 (and (< (point) to) (point))))
1201
1202 (defun c-crosses-statement-barrier-p (from to)
1203 "Return non-nil if buffer positions FROM to TO cross one or more
1204 statement or declaration boundaries. The returned value is actually
1205 the position of the earliest boundary char. FROM must not be within
1206 a string or comment.
1207
1208 The variable `c-maybe-labelp' is set to the position of the first `:' that
1209 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1210 single `?' is found, then `c-maybe-labelp' is cleared.
1211
1212 For AWK, a statement which is terminated by an EOL (not a \; or a }) is
1213 regarded as having a \"virtual semicolon\" immediately after the last token on
1214 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1215
1216 Note that this function might do hidden buffer changes. See the
1217 comment at the start of cc-engine.el for more info."
1218 (let* ((skip-chars
1219 ;; If the current language has CPP macros, insert # into skip-chars.
1220 (if c-opt-cpp-symbol
1221 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1222 c-opt-cpp-symbol ; usually "#"
1223 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1224 c-stmt-delim-chars))
1225 (non-skip-list
1226 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1227 lit-range vsemi-pos)
1228 (save-restriction
1229 (widen)
1230 (save-excursion
1231 (catch 'done
1232 (goto-char from)
1233 (while (progn (skip-chars-forward
1234 skip-chars
1235 (min to (c-point 'bonl)))
1236 (< (point) to))
1237 (cond
1238 ;; Virtual semicolon?
1239 ((and (bolp)
1240 (save-excursion
1241 (progn
1242 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1243 (goto-char (car lit-range)))
1244 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1245 (setq vsemi-pos (point))
1246 (c-at-vsemi-p))))
1247 (throw 'done vsemi-pos))
1248 ;; In a string/comment?
1249 ((setq lit-range (c-literal-limits from))
1250 (goto-char (cdr lit-range)))
1251 ((eq (char-after) ?:)
1252 (forward-char)
1253 (if (and (eq (char-after) ?:)
1254 (< (point) to))
1255 ;; Ignore scope operators.
1256 (forward-char)
1257 (setq c-maybe-labelp (1- (point)))))
1258 ((eq (char-after) ??)
1259 ;; A question mark. Can't be a label, so stop
1260 ;; looking for more : and ?.
1261 (setq c-maybe-labelp nil
1262 skip-chars (substring c-stmt-delim-chars 0 -2)))
1263 ;; At a CPP construct?
1264 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol)
1265 (save-excursion
1266 (forward-line 0)
1267 (looking-at c-opt-cpp-prefix)))
1268 (c-end-of-macro))
1269 ((memq (char-after) non-skip-list)
1270 (throw 'done (point)))))
1271 ;; In trailing space after an as yet undetected virtual semicolon?
1272 (c-backward-syntactic-ws from)
1273 (if (and (< (point) to)
1274 (c-at-vsemi-p))
1275 (point)
1276 nil))))))
1277
1278 (defun c-at-statement-start-p ()
1279 "Return non-nil if the point is at the first token in a statement
1280 or somewhere in the syntactic whitespace before it.
1281
1282 A \"statement\" here is not restricted to those inside code blocks.
1283 Any kind of declaration-like construct that occur outside function
1284 bodies is also considered a \"statement\".
1285
1286 Note that this function might do hidden buffer changes. See the
1287 comment at the start of cc-engine.el for more info."
1288
1289 (save-excursion
1290 (let ((end (point))
1291 c-maybe-labelp)
1292 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1293 (or (bobp)
1294 (eq (char-before) ?})
1295 (and (eq (char-before) ?{)
1296 (not (and c-special-brace-lists
1297 (progn (backward-char)
1298 (c-looking-at-special-brace-list)))))
1299 (c-crosses-statement-barrier-p (point) end)))))
1300
1301 (defun c-at-expression-start-p ()
1302 "Return non-nil if the point is at the first token in an expression or
1303 statement, or somewhere in the syntactic whitespace before it.
1304
1305 An \"expression\" here is a bit different from the normal language
1306 grammar sense: It's any sequence of expression tokens except commas,
1307 unless they are enclosed inside parentheses of some kind. Also, an
1308 expression never continues past an enclosing parenthesis, but it might
1309 contain parenthesis pairs of any sort except braces.
1310
1311 Since expressions never cross statement boundaries, this function also
1312 recognizes statement beginnings, just like `c-at-statement-start-p'.
1313
1314 Note that this function might do hidden buffer changes. See the
1315 comment at the start of cc-engine.el for more info."
1316
1317 (save-excursion
1318 (let ((end (point))
1319 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1320 c-maybe-labelp)
1321 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1322 (or (bobp)
1323 (memq (char-before) '(?{ ?}))
1324 (save-excursion (backward-char)
1325 (looking-at "\\s("))
1326 (c-crosses-statement-barrier-p (point) end)))))
1327
1328 \f
1329 ;; A set of functions that covers various idiosyncrasies in
1330 ;; implementations of `forward-comment'.
1331
1332 ;; Note: Some emacsen considers incorrectly that any line comment
1333 ;; ending with a backslash continues to the next line. I can't think
1334 ;; of any way to work around that in a reliable way without changing
1335 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1336 ;; changing the syntax for backslash doesn't work since we must treat
1337 ;; escapes in string literals correctly.)
1338
1339 (defun c-forward-single-comment ()
1340 "Move forward past whitespace and the closest following comment, if any.
1341 Return t if a comment was found, nil otherwise. In either case, the
1342 point is moved past the following whitespace. Line continuations,
1343 i.e. a backslashes followed by line breaks, are treated as whitespace.
1344 The line breaks that end line comments are considered to be the
1345 comment enders, so the point will be put on the beginning of the next
1346 line if it moved past a line comment.
1347
1348 This function does not do any hidden buffer changes."
1349
1350 (let ((start (point)))
1351 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1352 (goto-char (match-end 0)))
1353
1354 (when (forward-comment 1)
1355 (if (eobp)
1356 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1357 ;; forwards at eob.
1358 nil
1359
1360 ;; Emacs includes the ending newline in a b-style (c++)
1361 ;; comment, but XEmacs doesn't. We depend on the Emacs
1362 ;; behavior (which also is symmetric).
1363 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1364 (condition-case nil (forward-char 1)))
1365
1366 t))))
1367
1368 (defsubst c-forward-comments ()
1369 "Move forward past all following whitespace and comments.
1370 Line continuations, i.e. a backslashes followed by line breaks, are
1371 treated as whitespace.
1372
1373 Note that this function might do hidden buffer changes. See the
1374 comment at the start of cc-engine.el for more info."
1375
1376 (while (or
1377 ;; If forward-comment in at least XEmacs 21 is given a large
1378 ;; positive value, it'll loop all the way through if it hits
1379 ;; eob.
1380 (and (forward-comment 5)
1381 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1382 ;; forwards at eob.
1383 (not (eobp)))
1384
1385 (when (looking-at "\\\\[\n\r]")
1386 (forward-char 2)
1387 t))))
1388
1389 (defun c-backward-single-comment ()
1390 "Move backward past whitespace and the closest preceding comment, if any.
1391 Return t if a comment was found, nil otherwise. In either case, the
1392 point is moved past the preceding whitespace. Line continuations,
1393 i.e. a backslashes followed by line breaks, are treated as whitespace.
1394 The line breaks that end line comments are considered to be the
1395 comment enders, so the point cannot be at the end of the same line to
1396 move over a line comment.
1397
1398 This function does not do any hidden buffer changes."
1399
1400 (let ((start (point)))
1401 ;; When we got newline terminated comments, forward-comment in all
1402 ;; supported emacsen so far will stop at eol of each line not
1403 ;; ending with a comment when moving backwards. This corrects for
1404 ;; that, and at the same time handles line continuations.
1405 (while (progn
1406 (skip-chars-backward " \t\n\r\f\v")
1407 (and (looking-at "[\n\r]")
1408 (eq (char-before) ?\\)))
1409 (backward-char))
1410
1411 (if (bobp)
1412 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1413 ;; backwards at bob.
1414 nil
1415
1416 ;; Leave point after the closest following newline if we've
1417 ;; backed up over any above, since forward-comment won't move
1418 ;; backward over a line comment if point is at the end of the
1419 ;; same line.
1420 (re-search-forward "\\=\\s *[\n\r]" start t)
1421
1422 (if (if (let (open-paren-in-column-0-is-defun-start) (forward-comment -1))
1423 (if (eolp)
1424 ;; If forward-comment above succeeded and we're at eol
1425 ;; then the newline we moved over above didn't end a
1426 ;; line comment, so we give it another go.
1427 (let (open-paren-in-column-0-is-defun-start)
1428 (forward-comment -1))
1429 t))
1430
1431 ;; Emacs <= 20 and XEmacs move back over the closer of a
1432 ;; block comment that lacks an opener.
1433 (if (looking-at "\\*/")
1434 (progn (forward-char 2) nil)
1435 t)))))
1436
1437 (defsubst c-backward-comments ()
1438 "Move backward past all preceding whitespace and comments.
1439 Line continuations, i.e. a backslashes followed by line breaks, are
1440 treated as whitespace. The line breaks that end line comments are
1441 considered to be the comment enders, so the point cannot be at the end
1442 of the same line to move over a line comment. Unlike
1443 c-backward-syntactic-ws, this function doesn't move back over
1444 preprocessor directives.
1445
1446 Note that this function might do hidden buffer changes. See the
1447 comment at the start of cc-engine.el for more info."
1448
1449 (let ((start (point)))
1450 (while (and
1451 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1452 ;; return t when moving backwards at bob.
1453 (not (bobp))
1454
1455 (if (let (open-paren-in-column-0-is-defun-start moved-comment)
1456 (while
1457 (and (not (setq moved-comment (forward-comment -1)))
1458 ;; Cope specifically with ^M^J here -
1459 ;; forward-comment sometimes gets stuck after ^Ms,
1460 ;; sometimes after ^M^J.
1461 (or
1462 (when (eq (char-before) ?\r)
1463 (backward-char)
1464 t)
1465 (when (and (eq (char-before) ?\n)
1466 (eq (char-before (1- (point))) ?\r))
1467 (backward-char 2)
1468 t))))
1469 moved-comment)
1470 (if (looking-at "\\*/")
1471 ;; Emacs <= 20 and XEmacs move back over the
1472 ;; closer of a block comment that lacks an opener.
1473 (progn (forward-char 2) nil)
1474 t)
1475
1476 ;; XEmacs treats line continuations as whitespace but
1477 ;; only in the backward direction, which seems a bit
1478 ;; odd. Anyway, this is necessary for Emacs.
1479 (when (and (looking-at "[\n\r]")
1480 (eq (char-before) ?\\)
1481 (< (point) start))
1482 (backward-char)
1483 t))))))
1484
1485 \f
1486 ;; Tools for skipping over syntactic whitespace.
1487
1488 ;; The following functions use text properties to cache searches over
1489 ;; large regions of syntactic whitespace. It works as follows:
1490 ;;
1491 ;; o If a syntactic whitespace region contains anything but simple
1492 ;; whitespace (i.e. space, tab and line breaks), the text property
1493 ;; `c-in-sws' is put over it. At places where we have stopped
1494 ;; within that region there's also a `c-is-sws' text property.
1495 ;; That since there typically are nested whitespace inside that
1496 ;; must be handled separately, e.g. whitespace inside a comment or
1497 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1498 ;; to jump to another point with that property within the same
1499 ;; `c-in-sws' region. It can be likened to a ladder where
1500 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1501 ;;
1502 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1503 ;; a "rung position" and also maybe on the first following char.
1504 ;; As many characters as can be conveniently found in this range
1505 ;; are marked, but no assumption can be made that the whole range
1506 ;; is marked (it could be clobbered by later changes, for
1507 ;; instance).
1508 ;;
1509 ;; Note that some part of the beginning of a sequence of simple
1510 ;; whitespace might be part of the end of a preceding line comment
1511 ;; or cpp directive and must not be considered part of the "rung".
1512 ;; Such whitespace is some amount of horizontal whitespace followed
1513 ;; by a newline. In the case of cpp directives it could also be
1514 ;; two newlines with horizontal whitespace between them.
1515 ;;
1516 ;; The reason to include the first following char is to cope with
1517 ;; "rung positions" that doesn't have any ordinary whitespace. If
1518 ;; `c-is-sws' is put on a token character it does not have
1519 ;; `c-in-sws' set simultaneously. That's the only case when that
1520 ;; can occur, and the reason for not extending the `c-in-sws'
1521 ;; region to cover it is that the `c-in-sws' region could then be
1522 ;; accidentally merged with a following one if the token is only
1523 ;; one character long.
1524 ;;
1525 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1526 ;; removed in the changed region. If the change was inside
1527 ;; syntactic whitespace that means that the "ladder" is broken, but
1528 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1529 ;; parts on either side and use an ordinary search only to "repair"
1530 ;; the gap.
1531 ;;
1532 ;; Special care needs to be taken if a region is removed: If there
1533 ;; are `c-in-sws' on both sides of it which do not connect inside
1534 ;; the region then they can't be joined. If e.g. a marked macro is
1535 ;; broken, syntactic whitespace inside the new text might be
1536 ;; marked. If those marks would become connected with the old
1537 ;; `c-in-sws' range around the macro then we could get a ladder
1538 ;; with one end outside the macro and the other at some whitespace
1539 ;; within it.
1540 ;;
1541 ;; The main motivation for this system is to increase the speed in
1542 ;; skipping over the large whitespace regions that can occur at the
1543 ;; top level in e.g. header files that contain a lot of comments and
1544 ;; cpp directives. For small comments inside code it's probably
1545 ;; slower than using `forward-comment' straightforwardly, but speed is
1546 ;; not a significant factor there anyway.
1547
1548 ; (defface c-debug-is-sws-face
1549 ; '((t (:background "GreenYellow")))
1550 ; "Debug face to mark the `c-is-sws' property.")
1551 ; (defface c-debug-in-sws-face
1552 ; '((t (:underline t)))
1553 ; "Debug face to mark the `c-in-sws' property.")
1554
1555 ; (defun c-debug-put-sws-faces ()
1556 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1557 ; ;; properties in the buffer.
1558 ; (interactive)
1559 ; (save-excursion
1560 ; (c-save-buffer-state (in-face)
1561 ; (goto-char (point-min))
1562 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1563 ; (point)))
1564 ; (while (progn
1565 ; (goto-char (next-single-property-change
1566 ; (point) 'c-is-sws nil (point-max)))
1567 ; (if in-face
1568 ; (progn
1569 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1570 ; (setq in-face nil))
1571 ; (setq in-face (point)))
1572 ; (not (eobp))))
1573 ; (goto-char (point-min))
1574 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1575 ; (point)))
1576 ; (while (progn
1577 ; (goto-char (next-single-property-change
1578 ; (point) 'c-in-sws nil (point-max)))
1579 ; (if in-face
1580 ; (progn
1581 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1582 ; (setq in-face nil))
1583 ; (setq in-face (point)))
1584 ; (not (eobp)))))))
1585
1586 (defmacro c-debug-sws-msg (&rest args)
1587 ;;`(message ,@args)
1588 )
1589
1590 (defmacro c-put-is-sws (beg end)
1591 ;; This macro does a hidden buffer change.
1592 `(let ((beg ,beg) (end ,end))
1593 (put-text-property beg end 'c-is-sws t)
1594 ,@(when (facep 'c-debug-is-sws-face)
1595 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1596
1597 (defmacro c-put-in-sws (beg end)
1598 ;; This macro does a hidden buffer change.
1599 `(let ((beg ,beg) (end ,end))
1600 (put-text-property beg end 'c-in-sws t)
1601 ,@(when (facep 'c-debug-is-sws-face)
1602 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1603
1604 (defmacro c-remove-is-sws (beg end)
1605 ;; This macro does a hidden buffer change.
1606 `(let ((beg ,beg) (end ,end))
1607 (remove-text-properties beg end '(c-is-sws nil))
1608 ,@(when (facep 'c-debug-is-sws-face)
1609 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1610
1611 (defmacro c-remove-in-sws (beg end)
1612 ;; This macro does a hidden buffer change.
1613 `(let ((beg ,beg) (end ,end))
1614 (remove-text-properties beg end '(c-in-sws nil))
1615 ,@(when (facep 'c-debug-is-sws-face)
1616 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1617
1618 (defmacro c-remove-is-and-in-sws (beg end)
1619 ;; This macro does a hidden buffer change.
1620 `(let ((beg ,beg) (end ,end))
1621 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1622 ,@(when (facep 'c-debug-is-sws-face)
1623 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1624 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1625
1626 (defsubst c-invalidate-sws-region-after (beg end)
1627 ;; Called from `after-change-functions'. Note that if
1628 ;; `c-forward-sws' or `c-backward-sws' are used outside
1629 ;; `c-save-buffer-state' or similar then this will remove the cache
1630 ;; properties right after they're added.
1631 ;;
1632 ;; This function does hidden buffer changes.
1633
1634 (save-excursion
1635 ;; Adjust the end to remove the properties in any following simple
1636 ;; ws up to and including the next line break, if there is any
1637 ;; after the changed region. This is necessary e.g. when a rung
1638 ;; marked empty line is converted to a line comment by inserting
1639 ;; "//" before the line break. In that case the line break would
1640 ;; keep the rung mark which could make a later `c-backward-sws'
1641 ;; move into the line comment instead of over it.
1642 (goto-char end)
1643 (skip-chars-forward " \t\f\v")
1644 (when (and (eolp) (not (eobp)))
1645 (setq end (1+ (point)))))
1646
1647 (when (and (= beg end)
1648 (get-text-property beg 'c-in-sws)
1649 (> beg (point-min))
1650 (get-text-property (1- beg) 'c-in-sws))
1651 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1652 ;; safe to keep a range that was continuous before the change. E.g:
1653 ;;
1654 ;; #define foo
1655 ;; \
1656 ;; bar
1657 ;;
1658 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1659 ;; after "foo" is removed then "bar" will become part of the cpp
1660 ;; directive instead of a syntactically relevant token. In that
1661 ;; case there's no longer syntactic ws from "#" to "b".
1662 (setq beg (1- beg)))
1663
1664 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1665 (c-remove-is-and-in-sws beg end))
1666
1667 (defun c-forward-sws ()
1668 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1669 ;;
1670 ;; This function might do hidden buffer changes.
1671
1672 (let (;; `rung-pos' is set to a position as early as possible in the
1673 ;; unmarked part of the simple ws region.
1674 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1675 rung-is-marked next-rung-is-marked simple-ws-end
1676 ;; `safe-start' is set when it's safe to cache the start position.
1677 ;; It's not set if we've initially skipped over comments and line
1678 ;; continuations since we might have gone out through the end of a
1679 ;; macro then. This provision makes `c-forward-sws' not populate the
1680 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1681 ;; more common.
1682 safe-start)
1683
1684 ;; Skip simple ws and do a quick check on the following character to see
1685 ;; if it's anything that can't start syntactic ws, so we can bail out
1686 ;; early in the majority of cases when there just are a few ws chars.
1687 (skip-chars-forward " \t\n\r\f\v")
1688 (when (looking-at c-syntactic-ws-start)
1689
1690 (setq rung-end-pos (min (1+ (point)) (point-max)))
1691 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1692 'c-is-sws t))
1693 ;; Find the last rung position to avoid setting properties in all
1694 ;; the cases when the marked rung is complete.
1695 ;; (`next-single-property-change' is certain to move at least one
1696 ;; step forward.)
1697 (setq rung-pos (1- (next-single-property-change
1698 rung-is-marked 'c-is-sws nil rung-end-pos)))
1699 ;; Got no marked rung here. Since the simple ws might have started
1700 ;; inside a line comment or cpp directive we must set `rung-pos' as
1701 ;; high as possible.
1702 (setq rung-pos (point)))
1703
1704 (with-silent-modifications
1705 (while
1706 (progn
1707 (while
1708 (when (and rung-is-marked
1709 (get-text-property (point) 'c-in-sws))
1710
1711 ;; The following search is the main reason that `c-in-sws'
1712 ;; and `c-is-sws' aren't combined to one property.
1713 (goto-char (next-single-property-change
1714 (point) 'c-in-sws nil (point-max)))
1715 (unless (get-text-property (point) 'c-is-sws)
1716 ;; If the `c-in-sws' region extended past the last
1717 ;; `c-is-sws' char we have to go back a bit.
1718 (or (get-text-property (1- (point)) 'c-is-sws)
1719 (goto-char (previous-single-property-change
1720 (point) 'c-is-sws)))
1721 (backward-char))
1722
1723 (c-debug-sws-msg
1724 "c-forward-sws cached move %s -> %s (max %s)"
1725 rung-pos (point) (point-max))
1726
1727 (setq rung-pos (point))
1728 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1729 (not (eobp))))
1730
1731 ;; We'll loop here if there is simple ws after the last rung.
1732 ;; That means that there's been some change in it and it's
1733 ;; possible that we've stepped into another ladder, so extend
1734 ;; the previous one to join with it if there is one, and try to
1735 ;; use the cache again.
1736 (c-debug-sws-msg
1737 "c-forward-sws extending rung with [%s..%s] (max %s)"
1738 (1+ rung-pos) (1+ (point)) (point-max))
1739 (unless (get-text-property (point) 'c-is-sws)
1740 ;; Remove any `c-in-sws' property from the last char of
1741 ;; the rung before we mark it with `c-is-sws', so that we
1742 ;; won't connect with the remains of a broken "ladder".
1743 (c-remove-in-sws (point) (1+ (point))))
1744 (c-put-is-sws (1+ rung-pos)
1745 (1+ (point)))
1746 (c-put-in-sws rung-pos
1747 (setq rung-pos (point)
1748 last-put-in-sws-pos rung-pos)))
1749
1750 (setq simple-ws-end (point))
1751 (c-forward-comments)
1752
1753 (cond
1754 ((/= (point) simple-ws-end)
1755 ;; Skipped over comments. Don't cache at eob in case the buffer
1756 ;; is narrowed.
1757 (not (eobp)))
1758
1759 ((save-excursion
1760 (and c-opt-cpp-prefix
1761 (looking-at c-opt-cpp-start)
1762 (progn (skip-chars-backward " \t")
1763 (bolp))
1764 (or (bobp)
1765 (progn (backward-char)
1766 (not (eq (char-before) ?\\))))))
1767 ;; Skip a preprocessor directive.
1768 (end-of-line)
1769 (while (and (eq (char-before) ?\\)
1770 (= (forward-line 1) 0))
1771 (end-of-line))
1772 (forward-line 1)
1773 (setq safe-start t)
1774 ;; Don't cache at eob in case the buffer is narrowed.
1775 (not (eobp)))))
1776
1777 ;; We've searched over a piece of non-white syntactic ws. See if this
1778 ;; can be cached.
1779 (setq next-rung-pos (point))
1780 (skip-chars-forward " \t\n\r\f\v")
1781 (setq rung-end-pos (min (1+ (point)) (point-max)))
1782
1783 (if (or
1784 ;; Cache if we haven't skipped comments only, and if we started
1785 ;; either from a marked rung or from a completely uncached
1786 ;; position.
1787 (and safe-start
1788 (or rung-is-marked
1789 (not (get-text-property simple-ws-end 'c-in-sws))))
1790
1791 ;; See if there's a marked rung in the encountered simple ws. If
1792 ;; so then we can cache, unless `safe-start' is nil. Even then
1793 ;; we need to do this to check if the cache can be used for the
1794 ;; next step.
1795 (and (setq next-rung-is-marked
1796 (text-property-any next-rung-pos rung-end-pos
1797 'c-is-sws t))
1798 safe-start))
1799
1800 (progn
1801 (c-debug-sws-msg
1802 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1803 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1804 (point-max))
1805
1806 ;; Remove the properties for any nested ws that might be cached.
1807 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1808 ;; anyway.
1809 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1810 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1811 (c-put-is-sws rung-pos
1812 (1+ simple-ws-end))
1813 (setq rung-is-marked t))
1814 (c-put-in-sws rung-pos
1815 (setq rung-pos (point)
1816 last-put-in-sws-pos rung-pos))
1817 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1818 ;; Remove any `c-in-sws' property from the last char of
1819 ;; the rung before we mark it with `c-is-sws', so that we
1820 ;; won't connect with the remains of a broken "ladder".
1821 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1822 (c-put-is-sws next-rung-pos
1823 rung-end-pos))
1824
1825 (c-debug-sws-msg
1826 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1827 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1828 (point-max))
1829
1830 ;; Set `rung-pos' for the next rung. It's the same thing here as
1831 ;; initially, except that the rung position is set as early as
1832 ;; possible since we can't be in the ending ws of a line comment or
1833 ;; cpp directive now.
1834 (if (setq rung-is-marked next-rung-is-marked)
1835 (setq rung-pos (1- (next-single-property-change
1836 rung-is-marked 'c-is-sws nil rung-end-pos)))
1837 (setq rung-pos next-rung-pos))
1838 (setq safe-start t)))
1839
1840 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1841 ;; another one after the point (which might occur when editing inside a
1842 ;; comment or macro).
1843 (when (eq last-put-in-sws-pos (point))
1844 (cond ((< last-put-in-sws-pos (point-max))
1845 (c-debug-sws-msg
1846 "c-forward-sws clearing at %s for cache separation"
1847 last-put-in-sws-pos)
1848 (c-remove-in-sws last-put-in-sws-pos
1849 (1+ last-put-in-sws-pos)))
1850 (t
1851 ;; If at eob we have to clear the last character before the end
1852 ;; instead since the buffer might be narrowed and there might
1853 ;; be a `c-in-sws' after (point-max). In this case it's
1854 ;; necessary to clear both properties.
1855 (c-debug-sws-msg
1856 "c-forward-sws clearing thoroughly at %s for cache separation"
1857 (1- last-put-in-sws-pos))
1858 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1859 last-put-in-sws-pos))))
1860 ))))
1861
1862 (defun c-backward-sws ()
1863 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1864 ;;
1865 ;; This function might do hidden buffer changes.
1866
1867 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1868 ;; part of the simple ws region.
1869 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1870 rung-is-marked simple-ws-beg cmt-skip-pos)
1871
1872 ;; Skip simple horizontal ws and do a quick check on the preceding
1873 ;; character to see if it's anything that can't end syntactic ws, so we can
1874 ;; bail out early in the majority of cases when there just are a few ws
1875 ;; chars. Newlines are complicated in the backward direction, so we can't
1876 ;; skip over them.
1877 (skip-chars-backward " \t\f")
1878 (when (and (not (bobp))
1879 (save-excursion
1880 (backward-char)
1881 (looking-at c-syntactic-ws-end)))
1882
1883 ;; Try to find a rung position in the simple ws preceding point, so that
1884 ;; we can get a cache hit even if the last bit of the simple ws has
1885 ;; changed recently.
1886 (setq simple-ws-beg (point))
1887 (skip-chars-backward " \t\n\r\f\v")
1888 (if (setq rung-is-marked (text-property-any
1889 (point) (min (1+ rung-pos) (point-max))
1890 'c-is-sws t))
1891 ;; `rung-pos' will be the earliest marked position, which means that
1892 ;; there might be later unmarked parts in the simple ws region.
1893 ;; It's not worth the effort to fix that; the last part of the
1894 ;; simple ws is also typically edited often, so it could be wasted.
1895 (goto-char (setq rung-pos rung-is-marked))
1896 (goto-char simple-ws-beg))
1897
1898 (with-silent-modifications
1899 (while
1900 (progn
1901 (while
1902 (when (and rung-is-marked
1903 (not (bobp))
1904 (get-text-property (1- (point)) 'c-in-sws))
1905
1906 ;; The following search is the main reason that `c-in-sws'
1907 ;; and `c-is-sws' aren't combined to one property.
1908 (goto-char (previous-single-property-change
1909 (point) 'c-in-sws nil (point-min)))
1910 (unless (get-text-property (point) 'c-is-sws)
1911 ;; If the `c-in-sws' region extended past the first
1912 ;; `c-is-sws' char we have to go forward a bit.
1913 (goto-char (next-single-property-change
1914 (point) 'c-is-sws)))
1915
1916 (c-debug-sws-msg
1917 "c-backward-sws cached move %s <- %s (min %s)"
1918 (point) rung-pos (point-min))
1919
1920 (setq rung-pos (point))
1921 (if (and (< (min (skip-chars-backward " \t\f\v")
1922 (progn
1923 (setq simple-ws-beg (point))
1924 (skip-chars-backward " \t\n\r\f\v")))
1925 0)
1926 (setq rung-is-marked
1927 (text-property-any (point) rung-pos
1928 'c-is-sws t)))
1929 t
1930 (goto-char simple-ws-beg)
1931 nil))
1932
1933 ;; We'll loop here if there is simple ws before the first rung.
1934 ;; That means that there's been some change in it and it's
1935 ;; possible that we've stepped into another ladder, so extend
1936 ;; the previous one to join with it if there is one, and try to
1937 ;; use the cache again.
1938 (c-debug-sws-msg
1939 "c-backward-sws extending rung with [%s..%s] (min %s)"
1940 rung-is-marked rung-pos (point-min))
1941 (unless (get-text-property (1- rung-pos) 'c-is-sws)
1942 ;; Remove any `c-in-sws' property from the last char of
1943 ;; the rung before we mark it with `c-is-sws', so that we
1944 ;; won't connect with the remains of a broken "ladder".
1945 (c-remove-in-sws (1- rung-pos) rung-pos))
1946 (c-put-is-sws rung-is-marked
1947 rung-pos)
1948 (c-put-in-sws rung-is-marked
1949 (1- rung-pos))
1950 (setq rung-pos rung-is-marked
1951 last-put-in-sws-pos rung-pos))
1952
1953 (c-backward-comments)
1954 (setq cmt-skip-pos (point))
1955
1956 (cond
1957 ((and c-opt-cpp-prefix
1958 (/= cmt-skip-pos simple-ws-beg)
1959 (c-beginning-of-macro))
1960 ;; Inside a cpp directive. See if it should be skipped over.
1961 (let ((cpp-beg (point)))
1962
1963 ;; Move back over all line continuations in the region skipped
1964 ;; over by `c-backward-comments'. If we go past it then we
1965 ;; started inside the cpp directive.
1966 (goto-char simple-ws-beg)
1967 (beginning-of-line)
1968 (while (and (> (point) cmt-skip-pos)
1969 (progn (backward-char)
1970 (eq (char-before) ?\\)))
1971 (beginning-of-line))
1972
1973 (if (< (point) cmt-skip-pos)
1974 ;; Don't move past the cpp directive if we began inside
1975 ;; it. Note that the position at the end of the last line
1976 ;; of the macro is also considered to be within it.
1977 (progn (goto-char cmt-skip-pos)
1978 nil)
1979
1980 ;; It's worthwhile to spend a little bit of effort on finding
1981 ;; the end of the macro, to get a good `simple-ws-beg'
1982 ;; position for the cache. Note that `c-backward-comments'
1983 ;; could have stepped over some comments before going into
1984 ;; the macro, and then `simple-ws-beg' must be kept on the
1985 ;; same side of those comments.
1986 (goto-char simple-ws-beg)
1987 (skip-chars-backward " \t\n\r\f\v")
1988 (if (eq (char-before) ?\\)
1989 (forward-char))
1990 (forward-line 1)
1991 (if (< (point) simple-ws-beg)
1992 ;; Might happen if comments after the macro were skipped
1993 ;; over.
1994 (setq simple-ws-beg (point)))
1995
1996 (goto-char cpp-beg)
1997 t)))
1998
1999 ((/= (save-excursion
2000 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
2001 (setq next-rung-pos (point)))
2002 simple-ws-beg)
2003 ;; Skipped over comments. Must put point at the end of
2004 ;; the simple ws at point since we might be after a line
2005 ;; comment or cpp directive that's been partially
2006 ;; narrowed out, and we can't risk marking the simple ws
2007 ;; at the end of it.
2008 (goto-char next-rung-pos)
2009 t)))
2010
2011 ;; We've searched over a piece of non-white syntactic ws. See if this
2012 ;; can be cached.
2013 (setq next-rung-pos (point))
2014 (skip-chars-backward " \t\f\v")
2015
2016 (if (or
2017 ;; Cache if we started either from a marked rung or from a
2018 ;; completely uncached position.
2019 rung-is-marked
2020 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2021
2022 ;; Cache if there's a marked rung in the encountered simple ws.
2023 (save-excursion
2024 (skip-chars-backward " \t\n\r\f\v")
2025 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2026 'c-is-sws t)))
2027
2028 (progn
2029 (c-debug-sws-msg
2030 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2031 (point) (1+ next-rung-pos)
2032 simple-ws-beg (min (1+ rung-pos) (point-max))
2033 (point-min))
2034
2035 ;; Remove the properties for any nested ws that might be cached.
2036 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2037 ;; anyway.
2038 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2039 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2040 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2041 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2042 ;; Remove any `c-in-sws' property from the last char of
2043 ;; the rung before we mark it with `c-is-sws', so that we
2044 ;; won't connect with the remains of a broken "ladder".
2045 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2046 (c-put-is-sws simple-ws-beg
2047 rung-end-pos)
2048 (setq rung-is-marked t)))
2049 (c-put-in-sws (setq simple-ws-beg (point)
2050 last-put-in-sws-pos simple-ws-beg)
2051 rung-pos)
2052 (c-put-is-sws (setq rung-pos simple-ws-beg)
2053 (1+ next-rung-pos)))
2054
2055 (c-debug-sws-msg
2056 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2057 (point) (1+ next-rung-pos)
2058 simple-ws-beg (min (1+ rung-pos) (point-max))
2059 (point-min))
2060 (setq rung-pos next-rung-pos
2061 simple-ws-beg (point))
2062 ))
2063
2064 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2065 ;; another one before the point (which might occur when editing inside a
2066 ;; comment or macro).
2067 (when (eq last-put-in-sws-pos (point))
2068 (cond ((< (point-min) last-put-in-sws-pos)
2069 (c-debug-sws-msg
2070 "c-backward-sws clearing at %s for cache separation"
2071 (1- last-put-in-sws-pos))
2072 (c-remove-in-sws (1- last-put-in-sws-pos)
2073 last-put-in-sws-pos))
2074 ((> (point-min) 1)
2075 ;; If at bob and the buffer is narrowed, we have to clear the
2076 ;; character we're standing on instead since there might be a
2077 ;; `c-in-sws' before (point-min). In this case it's necessary
2078 ;; to clear both properties.
2079 (c-debug-sws-msg
2080 "c-backward-sws clearing thoroughly at %s for cache separation"
2081 last-put-in-sws-pos)
2082 (c-remove-is-and-in-sws last-put-in-sws-pos
2083 (1+ last-put-in-sws-pos)))))
2084 ))))
2085
2086 \f
2087 ;; Other whitespace tools
2088 (defun c-partial-ws-p (beg end)
2089 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2090 ;; region? This is a "heuristic" function. .....
2091 ;;
2092 ;; The motivation for the second bit is to check whether removing this
2093 ;; region would coalesce two symbols.
2094 ;;
2095 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2096 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2097 (save-excursion
2098 (let ((end+1 (min (1+ end) (point-max))))
2099 (or (progn (goto-char (max (point-min) (1- beg)))
2100 (c-skip-ws-forward end)
2101 (eq (point) end))
2102 (progn (goto-char beg)
2103 (c-skip-ws-forward end+1)
2104 (eq (point) end+1))))))
2105 \f
2106 ;; A system for finding noteworthy parens before the point.
2107
2108 (defconst c-state-cache-too-far 5000)
2109 ;; A maximum comfortable scanning distance, e.g. between
2110 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2111 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2112 ;; the cache and starting again from point-min or a beginning of defun. This
2113 ;; value can be tuned for efficiency or set to a lower value for testing.
2114
2115 (defvar c-state-cache nil)
2116 (make-variable-buffer-local 'c-state-cache)
2117 ;; The state cache used by `c-parse-state' to cut down the amount of
2118 ;; searching. It's the result from some earlier `c-parse-state' call. See
2119 ;; `c-parse-state''s doc string for details of its structure.
2120 ;;
2121 ;; The use of the cached info is more effective if the next
2122 ;; `c-parse-state' call is on a line close by the one the cached state
2123 ;; was made at; the cache can actually slow down a little if the
2124 ;; cached state was made very far back in the buffer. The cache is
2125 ;; most effective if `c-parse-state' is used on each line while moving
2126 ;; forward.
2127
2128 (defvar c-state-cache-good-pos 1)
2129 (make-variable-buffer-local 'c-state-cache-good-pos)
2130 ;; This is a position where `c-state-cache' is known to be correct, or
2131 ;; nil (see below). It's a position inside one of the recorded unclosed
2132 ;; parens or the top level, but not further nested inside any literal or
2133 ;; subparen that is closed before the last recorded position.
2134 ;;
2135 ;; The exact position is chosen to try to be close to yet earlier than
2136 ;; the position where `c-state-cache' will be called next. Right now
2137 ;; the heuristic is to set it to the position after the last found
2138 ;; closing paren (of any type) before the line on which
2139 ;; `c-parse-state' was called. That is chosen primarily to work well
2140 ;; with refontification of the current line.
2141 ;;
2142 ;; 2009-07-28: When `c-state-point-min' and the last position where
2143 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2144 ;; both in the same literal, there is no such "good position", and
2145 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2146 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2147 ;;
2148 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2149 ;; the middle of the desert, as long as it is not within a brace pair
2150 ;; recorded in `c-state-cache' or a paren/bracket pair.
2151
2152
2153 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2154 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2155 ;; speed up testing for non-literality.
2156 (defconst c-state-nonlit-pos-interval 3000)
2157 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2158
2159 (defvar c-state-nonlit-pos-cache nil)
2160 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2161 ;; A list of buffer positions which are known not to be in a literal or a cpp
2162 ;; construct. This is ordered with higher positions at the front of the list.
2163 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2164
2165 (defvar c-state-nonlit-pos-cache-limit 1)
2166 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2167 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2168 ;; reduced by buffer changes, and increased by invocations of
2169 ;; `c-state-literal-at'.
2170
2171 (defvar c-state-semi-nonlit-pos-cache nil)
2172 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2173 ;; A list of buffer positions which are known not to be in a literal. This is
2174 ;; ordered with higher positions at the front of the list. Only those which
2175 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2176
2177 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2178 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2179 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2180 ;; reduced by buffer changes, and increased by invocations of
2181 ;; `c-state-literal-at'. FIXME!!!
2182
2183 (defsubst c-state-pp-to-literal (from to &optional not-in-delimiter)
2184 ;; Do a parse-partial-sexp from FROM to TO, returning either
2185 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2186 ;; (STATE) otherwise,
2187 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2188 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal.
2189 ;;
2190 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2191 ;; comment opener, this is recognized as being in a comment literal.
2192 ;;
2193 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2194 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2195 ;; STATE are valid.
2196 (save-excursion
2197 (let ((s (parse-partial-sexp from to))
2198 ty co-st)
2199 (cond
2200 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2201 (setq ty (cond
2202 ((nth 3 s) 'string)
2203 ((nth 7 s) 'c++)
2204 (t 'c)))
2205 (parse-partial-sexp (point) (point-max)
2206 nil ; TARGETDEPTH
2207 nil ; STOPBEFORE
2208 s ; OLDSTATE
2209 'syntax-table) ; stop at end of literal
2210 `(,s ,ty (,(nth 8 s) . ,(point))))
2211
2212 ((and (not not-in-delimiter) ; inside a comment starter
2213 (not (bobp))
2214 (progn (backward-char)
2215 (looking-at c-comment-start-regexp)))
2216 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2217 co-st (point))
2218 (forward-comment 1)
2219 `(,s ,ty (,co-st . ,(point))))
2220
2221 (t `(,s))))))
2222
2223 (defun c-state-safe-place (here)
2224 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2225 ;; string, comment, or macro.
2226 ;;
2227 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2228 ;; MAY NOT contain any positions within macros, since macros are frequently
2229 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2230 ;; We cannot rely on this mechanism whilst determining a cache pos since
2231 ;; this function is also called from outwith `c-parse-state'.
2232 (save-restriction
2233 (widen)
2234 (save-excursion
2235 (let ((c c-state-nonlit-pos-cache)
2236 pos npos high-pos lit macro-beg macro-end)
2237 ;; Trim the cache to take account of buffer changes.
2238 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2239 (setq c (cdr c)))
2240 (setq c-state-nonlit-pos-cache c)
2241
2242 (while (and c (> (car c) here))
2243 (setq high-pos (car c))
2244 (setq c (cdr c)))
2245 (setq pos (or (car c) (point-min)))
2246
2247 (unless high-pos
2248 (while
2249 ;; Add an element to `c-state-nonlit-pos-cache' each iteration.
2250 (and
2251 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2252
2253 ;; Test for being in a literal. If so, go to after it.
2254 (progn
2255 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2256 (or (null lit)
2257 (prog1 (<= (cdr lit) here)
2258 (setq npos (cdr lit)))))
2259
2260 ;; Test for being in a macro. If so, go to after it.
2261 (progn
2262 (goto-char npos)
2263 (setq macro-beg
2264 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2265 (when macro-beg
2266 (c-syntactic-end-of-macro)
2267 (or (eobp) (forward-char))
2268 (setq macro-end (point)))
2269 (or (null macro-beg)
2270 (prog1 (<= macro-end here)
2271 (setq npos macro-end)))))
2272
2273 (setq pos npos)
2274 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2275 ;; Add one extra element above HERE so as to to avoid the previous
2276 ;; expensive calculation when the next call is close to the current
2277 ;; one. This is especially useful when inside a large macro.
2278 (setq c-state-nonlit-pos-cache (cons npos c-state-nonlit-pos-cache)))
2279
2280 (if (> pos c-state-nonlit-pos-cache-limit)
2281 (setq c-state-nonlit-pos-cache-limit pos))
2282 pos))))
2283
2284 (defun c-state-semi-safe-place (here)
2285 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2286 ;; string or comment. It may be in a macro.
2287 (save-restriction
2288 (widen)
2289 (save-excursion
2290 (let ((c c-state-semi-nonlit-pos-cache)
2291 pos npos high-pos lit macro-beg macro-end)
2292 ;; Trim the cache to take account of buffer changes.
2293 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2294 (setq c (cdr c)))
2295 (setq c-state-semi-nonlit-pos-cache c)
2296
2297 (while (and c (> (car c) here))
2298 (setq high-pos (car c))
2299 (setq c (cdr c)))
2300 (setq pos (or (car c) (point-min)))
2301
2302 (unless high-pos
2303 (while
2304 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2305 (and
2306 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2307
2308 ;; Test for being in a literal. If so, go to after it.
2309 (progn
2310 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2311 (or (null lit)
2312 (prog1 (<= (cdr lit) here)
2313 (setq npos (cdr lit))))))
2314
2315 (setq pos npos)
2316 (setq c-state-semi-nonlit-pos-cache
2317 (cons pos c-state-semi-nonlit-pos-cache))))
2318
2319 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2320 (setq c-state-semi-nonlit-pos-cache-limit pos))
2321 pos))))
2322
2323 (defun c-state-literal-at (here)
2324 ;; If position HERE is inside a literal, return (START . END), the
2325 ;; boundaries of the literal (which may be outside the accessible bit of the
2326 ;; buffer). Otherwise, return nil.
2327 ;;
2328 ;; This function is almost the same as `c-literal-limits'. Previously, it
2329 ;; differed in that it was a lower level function, and that it rigorously
2330 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2331 ;; virtually identical to this function.
2332 (save-restriction
2333 (widen)
2334 (save-excursion
2335 (let ((pos (c-state-safe-place here)))
2336 (car (cddr (c-state-pp-to-literal pos here)))))))
2337
2338 (defsubst c-state-lit-beg (pos)
2339 ;; Return the start of the literal containing POS, or POS itself.
2340 (or (car (c-state-literal-at pos))
2341 pos))
2342
2343 (defsubst c-state-cache-non-literal-place (pos state)
2344 ;; Return a position outside of a string/comment/macro at or before POS.
2345 ;; STATE is the parse-partial-sexp state at POS.
2346 (let ((res (if (or (nth 3 state) ; in a string?
2347 (nth 4 state)) ; in a comment?
2348 (nth 8 state)
2349 pos)))
2350 (save-excursion
2351 (goto-char res)
2352 (if (c-beginning-of-macro)
2353 (point)
2354 res))))
2355
2356 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2357 ;; Stuff to do with point-min, and coping with any literal there.
2358 (defvar c-state-point-min 1)
2359 (make-variable-buffer-local 'c-state-point-min)
2360 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2361 ;; narrowing is likely to affect the parens that are visible before the point.
2362
2363 (defvar c-state-point-min-lit-type nil)
2364 (make-variable-buffer-local 'c-state-point-min-lit-type)
2365 (defvar c-state-point-min-lit-start nil)
2366 (make-variable-buffer-local 'c-state-point-min-lit-start)
2367 ;; These two variables define the literal, if any, containing point-min.
2368 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2369 ;; literal. If there's no literal there, they're both nil.
2370
2371 (defvar c-state-min-scan-pos 1)
2372 (make-variable-buffer-local 'c-state-min-scan-pos)
2373 ;; This is the earliest buffer-pos from which scanning can be done. It is
2374 ;; either the end of the literal containing point-min, or point-min itself.
2375 ;; It becomes nil if the buffer is changed earlier than this point.
2376 (defun c-state-get-min-scan-pos ()
2377 ;; Return the lowest valid scanning pos. This will be the end of the
2378 ;; literal enclosing point-min, or point-min itself.
2379 (or c-state-min-scan-pos
2380 (save-restriction
2381 (save-excursion
2382 (widen)
2383 (goto-char c-state-point-min-lit-start)
2384 (if (eq c-state-point-min-lit-type 'string)
2385 (forward-sexp)
2386 (forward-comment 1))
2387 (setq c-state-min-scan-pos (point))))))
2388
2389 (defun c-state-mark-point-min-literal ()
2390 ;; Determine the properties of any literal containing POINT-MIN, setting the
2391 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2392 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2393 (let ((p-min (point-min))
2394 lit)
2395 (save-restriction
2396 (widen)
2397 (setq lit (c-state-literal-at p-min))
2398 (if lit
2399 (setq c-state-point-min-lit-type
2400 (save-excursion
2401 (goto-char (car lit))
2402 (cond
2403 ((looking-at c-block-comment-start-regexp) 'c)
2404 ((looking-at c-line-comment-starter) 'c++)
2405 (t 'string)))
2406 c-state-point-min-lit-start (car lit)
2407 c-state-min-scan-pos (cdr lit))
2408 (setq c-state-point-min-lit-type nil
2409 c-state-point-min-lit-start nil
2410 c-state-min-scan-pos p-min)))))
2411
2412
2413 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2414 ;; A variable which signals a brace dessert - helpful for reducing the number
2415 ;; of fruitless backward scans.
2416 (defvar c-state-brace-pair-desert nil)
2417 (make-variable-buffer-local 'c-state-brace-pair-desert)
2418 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2419 ;; that defun has searched backwards for a brace pair and not found one. Its
2420 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2421 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2422 ;; nil when at top level) and FROM is where the backward search started. It
2423 ;; is reset to nil in `c-invalidate-state-cache'.
2424
2425
2426 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2427 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2428 ;; list of like structure.
2429 (defmacro c-state-cache-top-lparen (&optional cache)
2430 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2431 ;; (default `c-state-cache') (or nil).
2432 (let ((cash (or cache 'c-state-cache)))
2433 `(if (consp (car ,cash))
2434 (caar ,cash)
2435 (car ,cash))))
2436
2437 (defmacro c-state-cache-top-paren (&optional cache)
2438 ;; Return the address of the latest brace/bracket/paren (whether left or
2439 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2440 (let ((cash (or cache 'c-state-cache)))
2441 `(if (consp (car ,cash))
2442 (cdar ,cash)
2443 (car ,cash))))
2444
2445 (defmacro c-state-cache-after-top-paren (&optional cache)
2446 ;; Return the position just after the latest brace/bracket/paren (whether
2447 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2448 (let ((cash (or cache 'c-state-cache)))
2449 `(if (consp (car ,cash))
2450 (cdar ,cash)
2451 (and (car ,cash)
2452 (1+ (car ,cash))))))
2453
2454 (defun c-get-cache-scan-pos (here)
2455 ;; From the state-cache, determine the buffer position from which we might
2456 ;; scan forward to HERE to update this cache. This position will be just
2457 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2458 ;; return the earliest position in the accessible region which isn't within
2459 ;; a literal. If the visible portion of the buffer is entirely within a
2460 ;; literal, return NIL.
2461 (let ((c c-state-cache) elt)
2462 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2463 (while (and c
2464 (>= (c-state-cache-top-lparen c) here))
2465 (setq c (cdr c)))
2466
2467 (setq elt (car c))
2468 (cond
2469 ((consp elt)
2470 (if (> (cdr elt) here)
2471 (1+ (car elt))
2472 (cdr elt)))
2473 (elt (1+ elt))
2474 ((<= (c-state-get-min-scan-pos) here)
2475 (c-state-get-min-scan-pos))
2476 (t nil))))
2477
2478 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2479 ;; Variables which keep track of preprocessor constructs.
2480 (defvar c-state-old-cpp-beg-marker nil)
2481 (make-variable-buffer-local 'c-state-old-cpp-beg-marker)
2482 (defvar c-state-old-cpp-beg nil)
2483 (make-variable-buffer-local 'c-state-old-cpp-beg)
2484 (defvar c-state-old-cpp-end-marker nil)
2485 (make-variable-buffer-local 'c-state-old-cpp-end-marker)
2486 (defvar c-state-old-cpp-end nil)
2487 (make-variable-buffer-local 'c-state-old-cpp-end)
2488 ;; These are the limits of the macro containing point at the previous call of
2489 ;; `c-parse-state', or nil.
2490
2491 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2492 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2493 (defun c-state-balance-parens-backwards (here- here+ top)
2494 ;; Return the position of the opening paren/brace/bracket before HERE- which
2495 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2496 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2497 ;;
2498 ;; ............................................
2499 ;; | |
2500 ;; ( [ ( .........#macro.. ) ( ) ] )
2501 ;; ^ ^ ^ ^
2502 ;; | | | |
2503 ;; return HERE- HERE+ TOP
2504 ;;
2505 ;; If there aren't enough opening paren/brace/brackets, return the position
2506 ;; of the outermost one found, or HERE- if there are none. If there are no
2507 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2508 ;; must not be inside literals. Only the accessible portion of the buffer
2509 ;; will be scanned.
2510
2511 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2512 ;; `here'. Go round the next loop each time we pass over such a ")". These
2513 ;; probably match "("s before `here-'.
2514 (let (pos pa ren+1 lonely-rens)
2515 (save-excursion
2516 (save-restriction
2517 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2518 (setq pos here+)
2519 (c-safe
2520 (while
2521 (setq ren+1 (scan-lists pos 1 1)) ; might signal
2522 (setq lonely-rens (cons ren+1 lonely-rens)
2523 pos ren+1)))))
2524
2525 ;; PART 2: Scan back before `here-' searching for the "("s
2526 ;; matching/mismatching the ")"s found above. We only need to direct the
2527 ;; caller to scan when we've encountered unmatched right parens.
2528 (setq pos here-)
2529 (when lonely-rens
2530 (c-safe
2531 (while
2532 (and lonely-rens ; actual values aren't used.
2533 (setq pa (scan-lists pos -1 1)))
2534 (setq pos pa)
2535 (setq lonely-rens (cdr lonely-rens)))))
2536 pos))
2537
2538 (defun c-parse-state-get-strategy (here good-pos)
2539 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2540 ;; to minimize the amount of scanning. HERE is the pertinent position in
2541 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2542 ;; its head trimmed) is known to be good, or nil if there is no such
2543 ;; position.
2544 ;;
2545 ;; The return value is a list, one of the following:
2546 ;;
2547 ;; o - ('forward START-POINT) - scan forward from START-POINT,
2548 ;; which is not less than the highest position in `c-state-cache' below here.
2549 ;; o - ('backward nil) - scan backwards (from HERE).
2550 ;; o - ('IN-LIT nil) - point is inside the literal containing point-min.
2551 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2552 strategy ; 'forward, 'backward, or 'IN-LIT.
2553 start-point)
2554 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2555 (cond
2556 ((< here (c-state-get-min-scan-pos))
2557 (setq strategy 'IN-LIT))
2558 ((<= good-pos here)
2559 (setq strategy 'forward
2560 start-point (max good-pos cache-pos)))
2561 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2562 (setq strategy 'backward))
2563 (t
2564 (setq strategy 'forward
2565 start-point cache-pos)))
2566 (list strategy (and (eq strategy 'forward) start-point))))
2567
2568
2569 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2570 ;; Routines which change `c-state-cache' and associated values.
2571 (defun c-renarrow-state-cache ()
2572 ;; The region (more precisely, point-min) has changed since we
2573 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2574 (if (< (point-min) c-state-point-min)
2575 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2576 ;; It would be possible to do a better job here and recalculate the top
2577 ;; only.
2578 (progn
2579 (c-state-mark-point-min-literal)
2580 (setq c-state-cache nil
2581 c-state-cache-good-pos c-state-min-scan-pos
2582 c-state-brace-pair-desert nil))
2583
2584 ;; point-min has MOVED FORWARD.
2585
2586 ;; Is the new point-min inside a (different) literal?
2587 (unless (and c-state-point-min-lit-start ; at prev. point-min
2588 (< (point-min) (c-state-get-min-scan-pos)))
2589 (c-state-mark-point-min-literal))
2590
2591 ;; Cut off a bit of the tail from `c-state-cache'.
2592 (let ((ptr (cons nil c-state-cache))
2593 pa)
2594 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2595 (>= pa (point-min)))
2596 (setq ptr (cdr ptr)))
2597
2598 (when (consp ptr)
2599 (if (eq (cdr ptr) c-state-cache)
2600 (setq c-state-cache nil
2601 c-state-cache-good-pos c-state-min-scan-pos)
2602 (setcdr ptr nil)
2603 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2604 )))
2605
2606 (setq c-state-point-min (point-min)))
2607
2608 (defun c-append-lower-brace-pair-to-state-cache (from here &optional upper-lim)
2609 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2610 ;; of nesting (not necessarily immediately preceding), push a cons onto
2611 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2612 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2613 ;; UPPER-LIM.
2614 ;;
2615 ;; Return non-nil when this has been done.
2616 ;;
2617 ;; The situation it copes with is this transformation:
2618 ;;
2619 ;; OLD: { (.) {...........}
2620 ;; ^ ^
2621 ;; FROM HERE
2622 ;;
2623 ;; NEW: { {....} (.) {.........
2624 ;; ^ ^ ^
2625 ;; LOWER BRACE PAIR HERE or HERE
2626 ;;
2627 ;; This routine should be fast. Since it can get called a LOT, we maintain
2628 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2629 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2630 (save-excursion
2631 (save-restriction
2632 (let* (new-cons
2633 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2634 (macro-start-or-from
2635 (progn (goto-char from)
2636 (c-beginning-of-macro)
2637 (point)))
2638 (bra ; Position of "{".
2639 ;; Don't start scanning in the middle of a CPP construct unless
2640 ;; it contains HERE - these constructs, in Emacs, are "commented
2641 ;; out" with category properties.
2642 (if (eq (c-get-char-property macro-start-or-from 'category)
2643 'c-cpp-delimiter)
2644 macro-start-or-from
2645 from))
2646 ce) ; Position of "}"
2647 (or upper-lim (setq upper-lim from))
2648
2649 ;; If we're essentially repeating a fruitless search, just give up.
2650 (unless (and c-state-brace-pair-desert
2651 (eq cache-pos (car c-state-brace-pair-desert))
2652 (or (null (car c-state-brace-pair-desert))
2653 (> from (car c-state-brace-pair-desert)))
2654 (<= from (cdr c-state-brace-pair-desert)))
2655 ;; DESERT-LIM. Avoid repeated searching through the cached desert.
2656 (let ((desert-lim
2657 (and c-state-brace-pair-desert
2658 (eq cache-pos (car c-state-brace-pair-desert))
2659 (>= from (cdr c-state-brace-pair-desert))
2660 (cdr c-state-brace-pair-desert)))
2661 ;; CACHE-LIM. This limit will be necessary when an opening
2662 ;; paren at `cache-pos' has just had its matching close paren
2663 ;; inserted into the buffer. `cache-pos' continues to be a
2664 ;; search bound, even though the algorithm below would skip
2665 ;; over the new paren pair.
2666 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2667 (narrow-to-region
2668 (cond
2669 ((and desert-lim cache-lim)
2670 (max desert-lim cache-lim))
2671 (desert-lim)
2672 (cache-lim)
2673 ((point-min)))
2674 ;; The top limit is EOB to ensure that `bra' is inside the
2675 ;; accessible part of the buffer at the next scan operation.
2676 (1+ (buffer-size))))
2677
2678 ;; In the next pair of nested loops, the inner one moves back past a
2679 ;; pair of (mis-)matching parens or brackets; the outer one moves
2680 ;; back over a sequence of unmatched close brace/paren/bracket each
2681 ;; time round.
2682 (while
2683 (progn
2684 (c-safe
2685 (while
2686 (and (setq ce (scan-lists bra -1 -1)) ; back past )/]/}; might signal
2687 (setq bra (scan-lists ce -1 1)) ; back past (/[/{; might signal
2688 (or (> bra here) ;(> ce here)
2689 (and
2690 (< ce here)
2691 (or (not (eq (char-after bra) ?\{))
2692 (and (goto-char bra)
2693 (c-beginning-of-macro)
2694 (< (point) macro-start-or-from))))))))
2695 (and ce (< ce bra)))
2696 (setq bra ce)) ; If we just backed over an unbalanced closing
2697 ; brace, ignore it.
2698
2699 (if (and ce (< ce here) (< bra ce) (eq (char-after bra) ?\{))
2700 ;; We've found the desired brace-pair.
2701 (progn
2702 (setq new-cons (cons bra (1+ ce)))
2703 (cond
2704 ((consp (car c-state-cache))
2705 (setcar c-state-cache new-cons))
2706 ((and (numberp (car c-state-cache)) ; probably never happens
2707 (< ce (car c-state-cache)))
2708 (setcdr c-state-cache
2709 (cons new-cons (cdr c-state-cache))))
2710 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2711
2712 ;; We haven't found a brace pair. Record this in the cache.
2713 (setq c-state-brace-pair-desert
2714 (cons (if (and ce (< bra ce) (> ce here)) ; {..} straddling HERE?
2715 bra
2716 (point-min))
2717 (min here from)))))))))
2718
2719 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2720 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2721 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2722 ;; "push" "a" brace pair onto `c-state-cache'.
2723 ;;
2724 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2725 ;; otherwise push it normally.
2726 ;;
2727 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2728 ;; latter is inside a macro, not being a macro containing
2729 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2730 ;; base pair. This latter case is assumed to be rare.
2731 ;;
2732 ;; Note: POINT is not preserved in this routine.
2733 (if bra+1
2734 (if (or (> bra+1 macro-start-or-here)
2735 (progn (goto-char bra+1)
2736 (not (c-beginning-of-macro))))
2737 (setq c-state-cache
2738 (cons (cons (1- bra+1)
2739 (scan-lists bra+1 1 1))
2740 (if (consp (car c-state-cache))
2741 (cdr c-state-cache)
2742 c-state-cache)))
2743 ;; N.B. This defsubst codes one method for the simple, normal case,
2744 ;; and a more sophisticated, slower way for the general case. Don't
2745 ;; eliminate this defsubst - it's a speed optimization.
2746 (c-append-lower-brace-pair-to-state-cache (1- bra+1) (point-max)))))
2747
2748 (defun c-append-to-state-cache (from here)
2749 ;; Scan the buffer from FROM to HERE, adding elements into `c-state-cache'
2750 ;; for braces etc. Return a candidate for `c-state-cache-good-pos'.
2751 ;;
2752 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2753 ;; any. Typically, it is immediately after it. It must not be inside a
2754 ;; literal.
2755 (let ((here-bol (c-point 'bol here))
2756 (macro-start-or-here
2757 (save-excursion (goto-char here)
2758 (if (c-beginning-of-macro)
2759 (point)
2760 here)))
2761 pa+1 ; pos just after an opening PAren (or brace).
2762 (ren+1 from) ; usually a pos just after an closing paREN etc.
2763 ; Is actually the pos. to scan for a (/{/[ from,
2764 ; which sometimes is after a silly )/}/].
2765 paren+1 ; Pos after some opening or closing paren.
2766 paren+1s ; A list of `paren+1's; used to determine a
2767 ; good-pos.
2768 bra+1 ce+1 ; just after L/R bra-ces.
2769 bra+1s ; list of OLD values of bra+1.
2770 mstart) ; start of a macro.
2771
2772 (save-excursion
2773 (save-restriction
2774 (narrow-to-region (point-min) here)
2775 ;; Each time round the following loop, we enter a successively deeper
2776 ;; level of brace/paren nesting. (Except sometimes we "continue at
2777 ;; the existing level".) `pa+1' is a pos inside an opening
2778 ;; brace/paren/bracket, usually just after it.
2779 (while
2780 (progn
2781 ;; Each time round the next loop moves forward over an opening then
2782 ;; a closing brace/bracket/paren. This loop is white hot, so it
2783 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2784 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2785 ;; call of `scan-lists' signals an error, which happens when there
2786 ;; are no more b/b/p's to scan.
2787 (c-safe
2788 (while t
2789 (setq pa+1 (scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2790 paren+1s (cons pa+1 paren+1s))
2791 (setq ren+1 (scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2792 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2793 (setq bra+1 pa+1))
2794 (setcar paren+1s ren+1)))
2795
2796 (if (and pa+1 (> pa+1 ren+1))
2797 ;; We've just entered a deeper nesting level.
2798 (progn
2799 ;; Insert the brace pair (if present) and the single open
2800 ;; paren/brace/bracket into `c-state-cache' It cannot be
2801 ;; inside a macro, except one around point, because of what
2802 ;; `c-neutralize-syntax-in-CPP' has done.
2803 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2804 ;; Insert the opening brace/bracket/paren position.
2805 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2806 ;; Clear admin stuff for the next more nested part of the scan.
2807 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2808 t) ; Carry on the loop
2809
2810 ;; All open p/b/b's at this nesting level, if any, have probably
2811 ;; been closed by matching/mismatching ones. We're probably
2812 ;; finished - we just need to check for having found an
2813 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2814 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2815 (c-safe (setq ren+1 (scan-lists ren+1 1 1)))))) ; acts as loop control.
2816
2817 ;; Record the final, innermost, brace-pair if there is one.
2818 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2819
2820 ;; Determine a good pos
2821 (while (and (setq paren+1 (car paren+1s))
2822 (> (if (> paren+1 macro-start-or-here)
2823 paren+1
2824 (goto-char paren+1)
2825 (setq mstart (and (c-beginning-of-macro)
2826 (point)))
2827 (or mstart paren+1))
2828 here-bol))
2829 (setq paren+1s (cdr paren+1s)))
2830 (cond
2831 ((and paren+1 mstart)
2832 (min paren+1 mstart))
2833 (paren+1)
2834 (t from))))))
2835
2836 (defun c-remove-stale-state-cache (start-point here pps-point)
2837 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2838 ;; not be in it when it is amended for position HERE. Additionally, the
2839 ;; "outermost" open-brace entry before HERE will be converted to a cons if
2840 ;; the matching close-brace is scanned.
2841 ;;
2842 ;; START-POINT is a "maximal" "safe position" - there must be no open
2843 ;; parens/braces/brackets between START-POINT and HERE.
2844 ;;
2845 ;; As a second thing, calculate the result of parse-partial-sexp at
2846 ;; PPS-POINT, w.r.t. START-POINT. The motivation here is that
2847 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
2848 ;; adjust it to get outside a string/comment. (Sorry about this! The code
2849 ;; needs to be FAST).
2850 ;;
2851 ;; Return a list (GOOD-POS SCAN-BACK-POS PPS-STATE), where
2852 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
2853 ;; to be good (we aim for this to be as high as possible);
2854 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
2855 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
2856 ;; position to scan backwards from. It is the position of the "{" of the
2857 ;; last element to be removed from `c-state-cache', when that elt is a
2858 ;; cons, otherwise nil.
2859 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
2860 (save-excursion
2861 (save-restriction
2862 (narrow-to-region 1 (point-max))
2863 (let* ((in-macro-start ; start of macro containing HERE or nil.
2864 (save-excursion
2865 (goto-char here)
2866 (and (c-beginning-of-macro)
2867 (point))))
2868 (start-point-actual-macro-start ; Start of macro containing
2869 ; start-point or nil
2870 (and (< start-point here)
2871 (save-excursion
2872 (goto-char start-point)
2873 (and (c-beginning-of-macro)
2874 (point)))))
2875 (start-point-actual-macro-end ; End of this macro, (maybe
2876 ; HERE), or nil.
2877 (and start-point-actual-macro-start
2878 (save-excursion
2879 (goto-char start-point-actual-macro-start)
2880 (c-end-of-macro)
2881 (point))))
2882 pps-state ; Will be 9 or 10 elements long.
2883 pos
2884 upper-lim ; ,beyond which `c-state-cache' entries are removed
2885 scan-back-pos
2886 pair-beg pps-point-state target-depth)
2887
2888 ;; Remove entries beyond HERE. Also remove any entries inside
2889 ;; a macro, unless HERE is in the same macro.
2890 (setq upper-lim
2891 (if (or (null c-state-old-cpp-beg)
2892 (and (> here c-state-old-cpp-beg)
2893 (< here c-state-old-cpp-end)))
2894 here
2895 (min here c-state-old-cpp-beg)))
2896 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
2897 (setq scan-back-pos (car-safe (car c-state-cache)))
2898 (setq c-state-cache (cdr c-state-cache)))
2899
2900 ;; If `upper-lim' is inside the last recorded brace pair, remove its
2901 ;; RBrace and indicate we'll need to search backwards for a previous
2902 ;; brace pair.
2903 (when (and c-state-cache
2904 (consp (car c-state-cache))
2905 (> (cdar c-state-cache) upper-lim))
2906 (setcar c-state-cache (caar c-state-cache))
2907 (setq scan-back-pos (car c-state-cache)))
2908
2909 ;; The next loop jumps forward out of a nested level of parens each
2910 ;; time round; the corresponding elements in `c-state-cache' are
2911 ;; removed. `pos' is just after the brace-pair or the open paren at
2912 ;; (car c-state-cache). There can be no open parens/braces/brackets
2913 ;; between `start-point'/`start-point-actual-macro-start' and HERE,
2914 ;; due to the interface spec to this function.
2915 (setq pos (if (and start-point-actual-macro-end
2916 (not (eq start-point-actual-macro-start
2917 in-macro-start)))
2918 (1+ start-point-actual-macro-end) ; get outside the macro as
2919 ; marked by a `category' text property.
2920 start-point))
2921 (goto-char pos)
2922 (while (and c-state-cache
2923 (or (numberp (car c-state-cache)) ; Have we a { at all?
2924 (cdr c-state-cache))
2925 (< (point) here))
2926 (cond
2927 ((null pps-state) ; first time through
2928 (setq target-depth -1))
2929 ((eq (car pps-state) target-depth) ; found closing ),},]
2930 (setq target-depth (1- (car pps-state))))
2931 ;; Do nothing when we've merely reached pps-point.
2932 )
2933
2934 ;; Scan!
2935 (setq pps-state
2936 (parse-partial-sexp
2937 (point) (if (< (point) pps-point) pps-point here)
2938 target-depth
2939 nil pps-state))
2940
2941 (if (= (point) pps-point)
2942 (setq pps-point-state pps-state))
2943
2944 (when (eq (car pps-state) target-depth)
2945 (setq pos (point)) ; POS is now just after an R-paren/brace.
2946 (cond
2947 ((and (consp (car c-state-cache))
2948 (eq (point) (cdar c-state-cache)))
2949 ;; We've just moved out of the paren pair containing the brace-pair
2950 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
2951 ;; and is potentially where the open brace of a cons in
2952 ;; c-state-cache will be.
2953 (setq pair-beg (car-safe (cdr c-state-cache))
2954 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
2955 ((numberp (car c-state-cache))
2956 (setq pair-beg (car c-state-cache)
2957 c-state-cache (cdr c-state-cache))) ; remove this
2958 ; containing Lparen
2959 ((numberp (cadr c-state-cache))
2960 (setq pair-beg (cadr c-state-cache)
2961 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
2962 ; together with enclosed brace pair.
2963 ;; (t nil) ; Ignore an unmated Rparen.
2964 )))
2965
2966 (if (< (point) pps-point)
2967 (setq pps-state (parse-partial-sexp (point) pps-point
2968 nil nil ; TARGETDEPTH, STOPBEFORE
2969 pps-state)))
2970
2971 ;; If the last paren pair we moved out of was actually a brace pair,
2972 ;; insert it into `c-state-cache'.
2973 (when (and pair-beg (eq (char-after pair-beg) ?{))
2974 (if (consp (car-safe c-state-cache))
2975 (setq c-state-cache (cdr c-state-cache)))
2976 (setq c-state-cache (cons (cons pair-beg pos)
2977 c-state-cache)))
2978
2979 (list pos scan-back-pos pps-state)))))
2980
2981 (defun c-remove-stale-state-cache-backwards (here)
2982 ;; Strip stale elements of `c-state-cache' by moving backwards through the
2983 ;; buffer, and inform the caller of the scenario detected.
2984 ;;
2985 ;; HERE is the position we're setting `c-state-cache' for.
2986 ;; CACHE-POS (a locally bound variable) is just after the latest recorded
2987 ;; position in `c-state-cache' before HERE, or a position at or near
2988 ;; point-min which isn't in a literal.
2989 ;;
2990 ;; This function must only be called only when (> `c-state-cache-good-pos'
2991 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
2992 ;; optimized to eliminate (or minimize) scanning between these two
2993 ;; positions.
2994 ;;
2995 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
2996 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
2997 ;; could become so after missing elements are inserted into
2998 ;; `c-state-cache'. This is JUST AFTER an opening or closing
2999 ;; brace/paren/bracket which is already in `c-state-cache' or just before
3000 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
3001 ;; before `here''s line, or the start of the literal containing it.
3002 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
3003 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
3004 ;; to scan backwards from.
3005 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
3006 ;; POS and HERE which aren't recorded in `c-state-cache'.
3007 ;;
3008 ;; The comments in this defun use "paren" to mean parenthesis or square
3009 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
3010 ;;
3011 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
3012 ;; | | | | | |
3013 ;; CP E here D C good
3014 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
3015 (pos c-state-cache-good-pos)
3016 pa ren ; positions of "(" and ")"
3017 dropped-cons ; whether the last element dropped from `c-state-cache'
3018 ; was a cons (representing a brace-pair)
3019 good-pos ; see above.
3020 lit ; (START . END) of a literal containing some point.
3021 here-lit-start here-lit-end ; bounds of literal containing `here'
3022 ; or `here' itself.
3023 here- here+ ; start/end of macro around HERE, or HERE
3024 (here-bol (c-point 'bol here))
3025 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3026
3027 ;; Remove completely irrelevant entries from `c-state-cache'.
3028 (while (and c-state-cache
3029 (>= (setq pa (c-state-cache-top-lparen)) here))
3030 (setq dropped-cons (consp (car c-state-cache)))
3031 (setq c-state-cache (cdr c-state-cache))
3032 (setq pos pa))
3033 ;; At this stage, (> pos here);
3034 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3035
3036 (cond
3037 ((and (consp (car c-state-cache))
3038 (> (cdar c-state-cache) here))
3039 ;; CASE 1: The top of the cache is a brace pair which now encloses
3040 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3041 ;; knowledge of what's inside these braces, we have no alternative but
3042 ;; to direct the caller to scan the buffer from the opening brace.
3043 (setq pos (caar c-state-cache))
3044 (setcar c-state-cache pos)
3045 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3046 ; entry into a { entry, so the caller needs to
3047 ; search for a brace pair before the {.
3048
3049 ;; `here' might be inside a literal. Check for this.
3050 ((progn
3051 (setq lit (c-state-literal-at here)
3052 here-lit-start (or (car lit) here)
3053 here-lit-end (or (cdr lit) here))
3054 ;; Has `here' just "newly entered" a macro?
3055 (save-excursion
3056 (goto-char here-lit-start)
3057 (if (and (c-beginning-of-macro)
3058 (or (null c-state-old-cpp-beg)
3059 (not (= (point) c-state-old-cpp-beg))))
3060 (progn
3061 (setq here- (point))
3062 (c-end-of-macro)
3063 (setq here+ (point)))
3064 (setq here- here-lit-start
3065 here+ here-lit-end)))
3066
3067 ;; `here' might be nested inside any depth of parens (or brackets but
3068 ;; not braces). Scan backwards to find the outermost such opening
3069 ;; paren, if there is one. This will be the scan position to return.
3070 (save-restriction
3071 (narrow-to-region cache-pos (point-max))
3072 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3073 nil)) ; for the cond
3074
3075 ((< pos here-lit-start)
3076 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3077 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3078 ;; a brace pair preceding this, it will already be in `c-state-cache',
3079 ;; unless there was a brace pair after it, i.e. there'll only be one to
3080 ;; scan for if we've just deleted one.
3081 (list pos (and dropped-cons pos) t)) ; Return value.
3082
3083 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3084 ;; Further forward scanning isn't needed, but we still need to find a
3085 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3086 ((progn
3087 (save-restriction
3088 (narrow-to-region here-bol (point-max))
3089 (setq pos here-lit-start)
3090 (c-safe (while (setq pa (scan-lists pos -1 1))
3091 (setq pos pa)))) ; might signal
3092 nil)) ; for the cond
3093
3094 ((setq ren (c-safe-scan-lists pos -1 -1 too-far-back))
3095 ;; CASE 3: After a }/)/] before `here''s BOL.
3096 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3097
3098 (t
3099 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3100 ;; literal containing it.
3101 (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3102 (list good-pos (and dropped-cons good-pos) nil)))))
3103
3104
3105 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3106 ;; Externally visible routines.
3107
3108 (defun c-state-cache-init ()
3109 (setq c-state-cache nil
3110 c-state-cache-good-pos 1
3111 c-state-nonlit-pos-cache nil
3112 c-state-nonlit-pos-cache-limit 1
3113 c-state-semi-nonlit-pos-cache nil
3114 c-state-semi-nonlit-pos-cache-limit 1
3115 c-state-brace-pair-desert nil
3116 c-state-point-min 1
3117 c-state-point-min-lit-type nil
3118 c-state-point-min-lit-start nil
3119 c-state-min-scan-pos 1
3120 c-state-old-cpp-beg nil
3121 c-state-old-cpp-end nil)
3122 (c-state-mark-point-min-literal))
3123
3124 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3125 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3126 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3127 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3128 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3129 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3130 ;; (defun c-state-dump ()
3131 ;; ;; For debugging.
3132 ;; ;(message
3133 ;; (concat
3134 ;; (c-sc-qde c-state-cache)
3135 ;; (c-sc-de c-state-cache-good-pos)
3136 ;; (c-sc-qde c-state-nonlit-pos-cache)
3137 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3138 ;; (c-sc-qde c-state-brace-pair-desert)
3139 ;; (c-sc-de c-state-point-min)
3140 ;; (c-sc-de c-state-point-min-lit-type)
3141 ;; (c-sc-de c-state-point-min-lit-start)
3142 ;; (c-sc-de c-state-min-scan-pos)
3143 ;; (c-sc-de c-state-old-cpp-beg)
3144 ;; (c-sc-de c-state-old-cpp-end)))
3145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3146
3147 (defun c-invalidate-state-cache-1 (here)
3148 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3149 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3150 ;; left in a consistent state.
3151 ;;
3152 ;; This is much like `c-whack-state-after', but it never changes a paren
3153 ;; pair element into an open paren element. Doing that would mean that the
3154 ;; new open paren wouldn't have the required preceding paren pair element.
3155 ;;
3156 ;; This function is called from c-after-change.
3157
3158 ;; The caches of non-literals:
3159 ;; Note that we use "<=" for the possibility of the second char of a two-char
3160 ;; comment opener being typed; this would invalidate any cache position at
3161 ;; HERE.
3162 (if (<= here c-state-nonlit-pos-cache-limit)
3163 (setq c-state-nonlit-pos-cache-limit (1- here)))
3164 (if (<= here c-state-semi-nonlit-pos-cache-limit)
3165 (setq c-state-semi-nonlit-pos-cache-limit (1- here)))
3166
3167 ;; `c-state-cache':
3168 ;; Case 1: if `here' is in a literal containing point-min, everything
3169 ;; becomes (or is already) nil.
3170 (if (or (null c-state-cache-good-pos)
3171 (< here (c-state-get-min-scan-pos)))
3172 (setq c-state-cache nil
3173 c-state-cache-good-pos nil
3174 c-state-min-scan-pos nil)
3175
3176 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3177 ;; below `here'. To maintain its consistency, we may need to insert a new
3178 ;; brace pair.
3179 (let ((here-bol (c-point 'bol here))
3180 too-high-pa ; recorded {/(/[ next above here, or nil.
3181 dropped-cons ; was the last removed element a brace pair?
3182 pa)
3183 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3184 (while (and c-state-cache
3185 (>= (setq pa (c-state-cache-top-paren)) here))
3186 (setq dropped-cons (consp (car c-state-cache))
3187 too-high-pa (c-state-cache-top-lparen)
3188 c-state-cache (cdr c-state-cache)))
3189
3190 ;; Do we need to add in an earlier brace pair, having lopped one off?
3191 (if (and dropped-cons
3192 (< too-high-pa (+ here c-state-cache-too-far)))
3193 (c-append-lower-brace-pair-to-state-cache too-high-pa here here-bol))
3194 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3195 (c-state-get-min-scan-pos)))))
3196
3197 ;; The brace-pair desert marker:
3198 (when (car c-state-brace-pair-desert)
3199 (if (< here (car c-state-brace-pair-desert))
3200 (setq c-state-brace-pair-desert nil)
3201 (if (< here (cdr c-state-brace-pair-desert))
3202 (setcdr c-state-brace-pair-desert here)))))
3203
3204 (defun c-parse-state-1 ()
3205 ;; Find and record all noteworthy parens between some good point earlier in
3206 ;; the file and point. That good point is at least the beginning of the
3207 ;; top-level construct we are in, or the beginning of the preceding
3208 ;; top-level construct if we aren't in one.
3209 ;;
3210 ;; The returned value is a list of the noteworthy parens with the last one
3211 ;; first. If an element in the list is an integer, it's the position of an
3212 ;; open paren (of any type) which has not been closed before the point. If
3213 ;; an element is a cons, it gives the position of a closed BRACE paren
3214 ;; pair[*]; the car is the start brace position and the cdr is the position
3215 ;; following the closing brace. Only the last closed brace paren pair
3216 ;; before each open paren and before the point is recorded, and thus the
3217 ;; state never contains two cons elements in succession. When a close brace
3218 ;; has no matching open brace (e.g., the matching brace is outside the
3219 ;; visible region), it is not represented in the returned value.
3220 ;;
3221 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3222 ;; This defun explicitly treats mismatching parens/braces/brackets as
3223 ;; matching. It is the open brace which makes it a "brace" pair.
3224 ;;
3225 ;; If POINT is within a macro, open parens and brace pairs within
3226 ;; THIS macro MIGHT be recorded. This depends on whether their
3227 ;; syntactic properties have been suppressed by
3228 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3229 ;;
3230 ;; Currently no characters which are given paren syntax with the
3231 ;; syntax-table property are recorded, i.e. angle bracket arglist
3232 ;; parens are never present here. Note that this might change.
3233 ;;
3234 ;; BUG: This function doesn't cope entirely well with unbalanced
3235 ;; parens in macros. (2008-12-11: this has probably been resolved
3236 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3237 ;; following case the brace before the macro isn't balanced with the
3238 ;; one after it:
3239 ;;
3240 ;; {
3241 ;; #define X {
3242 ;; }
3243 ;;
3244 ;; Note to maintainers: this function DOES get called with point
3245 ;; within comments and strings, so don't assume it doesn't!
3246 ;;
3247 ;; This function might do hidden buffer changes.
3248 (let* ((here (point))
3249 (here-bopl (c-point 'bopl))
3250 strategy ; 'forward, 'backward etc..
3251 ;; Candidate positions to start scanning from:
3252 cache-pos ; highest position below HERE already existing in
3253 ; cache (or 1).
3254 good-pos
3255 start-point ; (when scanning forward) a place below HERE where there
3256 ; are no open parens/braces between it and HERE.
3257 bopl-state
3258 res
3259 scan-backward-pos scan-forward-p) ; used for 'backward.
3260 ;; If POINT-MIN has changed, adjust the cache
3261 (unless (= (point-min) c-state-point-min)
3262 (c-renarrow-state-cache))
3263
3264 ;; Strategy?
3265 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3266 strategy (car res)
3267 start-point (cadr res))
3268
3269 ;; SCAN!
3270 (cond
3271 ((eq strategy 'forward)
3272 (setq res (c-remove-stale-state-cache start-point here here-bopl))
3273 (setq cache-pos (car res)
3274 scan-backward-pos (cadr res)
3275 bopl-state (car (cddr res))) ; will be nil if (< here-bopl
3276 ; start-point)
3277 (if scan-backward-pos
3278 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3279 (setq good-pos
3280 (c-append-to-state-cache cache-pos here))
3281 (setq c-state-cache-good-pos
3282 (if (and bopl-state
3283 (< good-pos (- here c-state-cache-too-far)))
3284 (c-state-cache-non-literal-place here-bopl bopl-state)
3285 good-pos)))
3286
3287 ((eq strategy 'backward)
3288 (setq res (c-remove-stale-state-cache-backwards here)
3289 good-pos (car res)
3290 scan-backward-pos (cadr res)
3291 scan-forward-p (car (cddr res)))
3292 (if scan-backward-pos
3293 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3294 (setq c-state-cache-good-pos
3295 (if scan-forward-p
3296 (c-append-to-state-cache good-pos here)
3297 good-pos)))
3298
3299 (t ; (eq strategy 'IN-LIT)
3300 (setq c-state-cache nil
3301 c-state-cache-good-pos nil))))
3302
3303 c-state-cache)
3304
3305 (defun c-invalidate-state-cache (here)
3306 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3307 ;;
3308 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3309 ;; of all parens in preprocessor constructs, except for any such construct
3310 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3311 ;; worrying further about macros and template delimiters.
3312 (c-with-<->-as-parens-suppressed
3313 (if (and c-state-old-cpp-beg
3314 (< c-state-old-cpp-beg here))
3315 (c-with-all-but-one-cpps-commented-out
3316 c-state-old-cpp-beg
3317 (min c-state-old-cpp-end here)
3318 (c-invalidate-state-cache-1 here))
3319 (c-with-cpps-commented-out
3320 (c-invalidate-state-cache-1 here)))))
3321
3322 (defmacro c-state-maybe-marker (place marker)
3323 ;; If PLACE is non-nil, return a marker marking it, otherwise nil.
3324 ;; We (re)use MARKER.
3325 `(and ,place
3326 (or ,marker (setq ,marker (make-marker)))
3327 (set-marker ,marker ,place)))
3328
3329 (defun c-parse-state ()
3330 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3331 ;; description of the functionality and return value.
3332 ;;
3333 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3334 ;; of all parens in preprocessor constructs, except for any such construct
3335 ;; containing point. We can then call `c-parse-state-1' without worrying
3336 ;; further about macros and template delimiters.
3337 (let (here-cpp-beg here-cpp-end)
3338 (save-excursion
3339 (when (c-beginning-of-macro)
3340 (setq here-cpp-beg (point))
3341 (unless
3342 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3343 here-cpp-beg)
3344 (setq here-cpp-beg nil here-cpp-end nil))))
3345 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3346 ;; subsystem.
3347 (prog1
3348 (c-with-<->-as-parens-suppressed
3349 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3350 (c-with-all-but-one-cpps-commented-out
3351 here-cpp-beg here-cpp-end
3352 (c-parse-state-1))
3353 (c-with-cpps-commented-out
3354 (c-parse-state-1))))
3355 (setq c-state-old-cpp-beg
3356 (c-state-maybe-marker here-cpp-beg c-state-old-cpp-beg-marker)
3357 c-state-old-cpp-end
3358 (c-state-maybe-marker here-cpp-end c-state-old-cpp-end-marker)))))
3359
3360 ;; Debug tool to catch cache inconsistencies. This is called from
3361 ;; 000tests.el.
3362 (defvar c-debug-parse-state nil)
3363 (unless (fboundp 'c-real-parse-state)
3364 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3365 (cc-bytecomp-defun c-real-parse-state)
3366
3367 (defvar c-parse-state-point nil)
3368 (defvar c-parse-state-state nil)
3369 (defun c-record-parse-state-state ()
3370 (setq c-parse-state-point (point))
3371 (setq c-parse-state-state
3372 (mapcar
3373 (lambda (arg)
3374 (let ((val (symbol-value arg)))
3375 (cons arg
3376 (if (consp val)
3377 (copy-tree val)
3378 val))))
3379 '(c-state-cache
3380 c-state-cache-good-pos
3381 c-state-nonlit-pos-cache
3382 c-state-nonlit-pos-cache-limit
3383 c-state-semi-nonlit-pos-cache
3384 c-state-semi-nonlit-pos-cache-limit
3385 c-state-brace-pair-desert
3386 c-state-point-min
3387 c-state-point-min-lit-type
3388 c-state-point-min-lit-start
3389 c-state-min-scan-pos
3390 c-state-old-cpp-beg
3391 c-state-old-cpp-end
3392 c-parse-state-point))))
3393 (defun c-replay-parse-state-state ()
3394 (message
3395 (concat "(setq "
3396 (mapconcat
3397 (lambda (arg)
3398 (format "%s %s%s" (car arg) (if (atom (cdr arg)) "" "'") (cdr arg)))
3399 c-parse-state-state " ")
3400 ")")))
3401
3402 (defun c-debug-parse-state-double-cons (state)
3403 (let (state-car conses-not-ok)
3404 (while state
3405 (setq state-car (car state)
3406 state (cdr state))
3407 (if (and (consp state-car)
3408 (consp (car state)))
3409 (setq conses-not-ok t)))
3410 conses-not-ok))
3411
3412 (defun c-debug-parse-state ()
3413 (let ((here (point)) (res1 (c-real-parse-state)) res2)
3414 (let ((c-state-cache nil)
3415 (c-state-cache-good-pos 1)
3416 (c-state-nonlit-pos-cache nil)
3417 (c-state-nonlit-pos-cache-limit 1)
3418 (c-state-brace-pair-desert nil)
3419 (c-state-point-min 1)
3420 (c-state-point-min-lit-type nil)
3421 (c-state-point-min-lit-start nil)
3422 (c-state-min-scan-pos 1)
3423 (c-state-old-cpp-beg nil)
3424 (c-state-old-cpp-end nil))
3425 (setq res2 (c-real-parse-state)))
3426 (unless (equal res1 res2)
3427 ;; The cache can actually go further back due to the ad-hoc way
3428 ;; the first paren is found, so try to whack off a bit of its
3429 ;; start before complaining.
3430 ;; (save-excursion
3431 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3432 ;; (c-beginning-of-defun-1)
3433 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3434 ;; (c-beginning-of-defun-1))
3435 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3436 ;; (message (concat "c-parse-state inconsistency at %s: "
3437 ;; "using cache: %s, from scratch: %s")
3438 ;; here res1 res2)))
3439 (message (concat "c-parse-state inconsistency at %s: "
3440 "using cache: %s, from scratch: %s")
3441 here res1 res2)
3442 (message "Old state:")
3443 (c-replay-parse-state-state))
3444
3445 (when (c-debug-parse-state-double-cons res1)
3446 (message "c-parse-state INVALIDITY at %s: %s"
3447 here res1)
3448 (message "Old state:")
3449 (c-replay-parse-state-state))
3450
3451 (c-record-parse-state-state)
3452 res2 ; res1 correct a cascading series of errors ASAP
3453 ))
3454
3455 (defun c-toggle-parse-state-debug (&optional arg)
3456 (interactive "P")
3457 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3458 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3459 'c-debug-parse-state
3460 'c-real-parse-state)))
3461 (c-keep-region-active)
3462 (message "c-debug-parse-state %sabled"
3463 (if c-debug-parse-state "en" "dis")))
3464 (when c-debug-parse-state
3465 (c-toggle-parse-state-debug 1))
3466
3467 \f
3468 (defun c-whack-state-before (bufpos paren-state)
3469 ;; Whack off any state information from PAREN-STATE which lies
3470 ;; before BUFPOS. Not destructive on PAREN-STATE.
3471 (let* ((newstate (list nil))
3472 (ptr newstate)
3473 car)
3474 (while paren-state
3475 (setq car (car paren-state)
3476 paren-state (cdr paren-state))
3477 (if (< (if (consp car) (car car) car) bufpos)
3478 (setq paren-state nil)
3479 (setcdr ptr (list car))
3480 (setq ptr (cdr ptr))))
3481 (cdr newstate)))
3482
3483 (defun c-whack-state-after (bufpos paren-state)
3484 ;; Whack off any state information from PAREN-STATE which lies at or
3485 ;; after BUFPOS. Not destructive on PAREN-STATE.
3486 (catch 'done
3487 (while paren-state
3488 (let ((car (car paren-state)))
3489 (if (consp car)
3490 ;; just check the car, because in a balanced brace
3491 ;; expression, it must be impossible for the corresponding
3492 ;; close brace to be before point, but the open brace to
3493 ;; be after.
3494 (if (<= bufpos (car car))
3495 nil ; whack it off
3496 (if (< bufpos (cdr car))
3497 ;; its possible that the open brace is before
3498 ;; bufpos, but the close brace is after. In that
3499 ;; case, convert this to a non-cons element. The
3500 ;; rest of the state is before bufpos, so we're
3501 ;; done.
3502 (throw 'done (cons (car car) (cdr paren-state)))
3503 ;; we know that both the open and close braces are
3504 ;; before bufpos, so we also know that everything else
3505 ;; on state is before bufpos.
3506 (throw 'done paren-state)))
3507 (if (<= bufpos car)
3508 nil ; whack it off
3509 ;; it's before bufpos, so everything else should too.
3510 (throw 'done paren-state)))
3511 (setq paren-state (cdr paren-state)))
3512 nil)))
3513
3514 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3515 ;; Return the bufpos of the innermost enclosing open paren before
3516 ;; bufpos, or nil if none was found.
3517 (let (enclosingp)
3518 (or bufpos (setq bufpos 134217727))
3519 (while paren-state
3520 (setq enclosingp (car paren-state)
3521 paren-state (cdr paren-state))
3522 (if (or (consp enclosingp)
3523 (>= enclosingp bufpos))
3524 (setq enclosingp nil)
3525 (setq paren-state nil)))
3526 enclosingp))
3527
3528 (defun c-least-enclosing-brace (paren-state)
3529 ;; Return the bufpos of the outermost enclosing open paren, or nil
3530 ;; if none was found.
3531 (let (pos elem)
3532 (while paren-state
3533 (setq elem (car paren-state)
3534 paren-state (cdr paren-state))
3535 (if (integerp elem)
3536 (setq pos elem)))
3537 pos))
3538
3539 (defun c-safe-position (bufpos paren-state)
3540 ;; Return the closest "safe" position recorded on PAREN-STATE that
3541 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3542 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3543 ;; find the closest limit before a given limit that might be nil.
3544 ;;
3545 ;; A "safe" position is a position at or after a recorded open
3546 ;; paren, or after a recorded close paren. The returned position is
3547 ;; thus either the first position after a close brace, or the first
3548 ;; position after an enclosing paren, or at the enclosing paren in
3549 ;; case BUFPOS is immediately after it.
3550 (when bufpos
3551 (let (elem)
3552 (catch 'done
3553 (while paren-state
3554 (setq elem (car paren-state))
3555 (if (consp elem)
3556 (cond ((< (cdr elem) bufpos)
3557 (throw 'done (cdr elem)))
3558 ((< (car elem) bufpos)
3559 ;; See below.
3560 (throw 'done (min (1+ (car elem)) bufpos))))
3561 (if (< elem bufpos)
3562 ;; elem is the position at and not after the opening paren, so
3563 ;; we can go forward one more step unless it's equal to
3564 ;; bufpos. This is useful in some cases avoid an extra paren
3565 ;; level between the safe position and bufpos.
3566 (throw 'done (min (1+ elem) bufpos))))
3567 (setq paren-state (cdr paren-state)))))))
3568
3569 (defun c-beginning-of-syntax ()
3570 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3571 ;; goes to the closest previous point that is known to be outside
3572 ;; any string literal or comment. `c-state-cache' is used if it has
3573 ;; a position in the vicinity.
3574 (let* ((paren-state c-state-cache)
3575 elem
3576
3577 (pos (catch 'done
3578 ;; Note: Similar code in `c-safe-position'. The
3579 ;; difference is that we accept a safe position at
3580 ;; the point and don't bother to go forward past open
3581 ;; parens.
3582 (while paren-state
3583 (setq elem (car paren-state))
3584 (if (consp elem)
3585 (cond ((<= (cdr elem) (point))
3586 (throw 'done (cdr elem)))
3587 ((<= (car elem) (point))
3588 (throw 'done (car elem))))
3589 (if (<= elem (point))
3590 (throw 'done elem)))
3591 (setq paren-state (cdr paren-state)))
3592 (point-min))))
3593
3594 (if (> pos (- (point) 4000))
3595 (goto-char pos)
3596 ;; The position is far back. Try `c-beginning-of-defun-1'
3597 ;; (although we can't be entirely sure it will go to a position
3598 ;; outside a comment or string in current emacsen). FIXME:
3599 ;; Consult `syntax-ppss' here.
3600 (c-beginning-of-defun-1)
3601 (if (< (point) pos)
3602 (goto-char pos)))))
3603
3604 \f
3605 ;; Tools for scanning identifiers and other tokens.
3606
3607 (defun c-on-identifier ()
3608 "Return non-nil if the point is on or directly after an identifier.
3609 Keywords are recognized and not considered identifiers. If an
3610 identifier is detected, the returned value is its starting position.
3611 If an identifier ends at the point and another begins at it \(can only
3612 happen in Pike) then the point for the preceding one is returned.
3613
3614 Note that this function might do hidden buffer changes. See the
3615 comment at the start of cc-engine.el for more info."
3616
3617 ;; FIXME: Shouldn't this function handle "operator" in C++?
3618
3619 (save-excursion
3620 (skip-syntax-backward "w_")
3621
3622 (or
3623
3624 ;; Check for a normal (non-keyword) identifier.
3625 (and (looking-at c-symbol-start)
3626 (not (looking-at c-keywords-regexp))
3627 (point))
3628
3629 (when (c-major-mode-is 'pike-mode)
3630 ;; Handle the `<operator> syntax in Pike.
3631 (let ((pos (point)))
3632 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3633 (and (if (< (skip-chars-backward "`") 0)
3634 t
3635 (goto-char pos)
3636 (eq (char-after) ?\`))
3637 (looking-at c-symbol-key)
3638 (>= (match-end 0) pos)
3639 (point))))
3640
3641 ;; Handle the "operator +" syntax in C++.
3642 (when (and c-overloadable-operators-regexp
3643 (= (c-backward-token-2 0) 0))
3644
3645 (cond ((and (looking-at c-overloadable-operators-regexp)
3646 (or (not c-opt-op-identifier-prefix)
3647 (and (= (c-backward-token-2 1) 0)
3648 (looking-at c-opt-op-identifier-prefix))))
3649 (point))
3650
3651 ((save-excursion
3652 (and c-opt-op-identifier-prefix
3653 (looking-at c-opt-op-identifier-prefix)
3654 (= (c-forward-token-2 1) 0)
3655 (looking-at c-overloadable-operators-regexp)))
3656 (point))))
3657
3658 )))
3659
3660 (defsubst c-simple-skip-symbol-backward ()
3661 ;; If the point is at the end of a symbol then skip backward to the
3662 ;; beginning of it. Don't move otherwise. Return non-nil if point
3663 ;; moved.
3664 ;;
3665 ;; This function might do hidden buffer changes.
3666 (or (< (skip-syntax-backward "w_") 0)
3667 (and (c-major-mode-is 'pike-mode)
3668 ;; Handle the `<operator> syntax in Pike.
3669 (let ((pos (point)))
3670 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3671 (< (skip-chars-backward "`") 0)
3672 (looking-at c-symbol-key)
3673 (>= (match-end 0) pos))
3674 t
3675 (goto-char pos)
3676 nil)))))
3677
3678 (defun c-beginning-of-current-token (&optional back-limit)
3679 ;; Move to the beginning of the current token. Do not move if not
3680 ;; in the middle of one. BACK-LIMIT may be used to bound the
3681 ;; backward search; if given it's assumed to be at the boundary
3682 ;; between two tokens. Return non-nil if the point is moved, nil
3683 ;; otherwise.
3684 ;;
3685 ;; This function might do hidden buffer changes.
3686 (let ((start (point)))
3687 (if (looking-at "\\w\\|\\s_")
3688 (skip-syntax-backward "w_" back-limit)
3689 (when (< (skip-syntax-backward ".()" back-limit) 0)
3690 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3691 (match-end 0))
3692 ;; `c-nonsymbol-token-regexp' should always match
3693 ;; since we've skipped backward over punctuator
3694 ;; or paren syntax, but consume one char in case
3695 ;; it doesn't so that we don't leave point before
3696 ;; some earlier incorrect token.
3697 (1+ (point)))))
3698 (if (<= pos start)
3699 (goto-char pos))))))
3700 (< (point) start)))
3701
3702 (defun c-end-of-current-token (&optional back-limit)
3703 ;; Move to the end of the current token. Do not move if not in the
3704 ;; middle of one. BACK-LIMIT may be used to bound the backward
3705 ;; search; if given it's assumed to be at the boundary between two
3706 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3707 ;;
3708 ;; This function might do hidden buffer changes.
3709 (let ((start (point)))
3710 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3711 (skip-syntax-forward "w_"))
3712 ((< (skip-syntax-backward ".()" back-limit) 0)
3713 (while (progn
3714 (if (looking-at c-nonsymbol-token-regexp)
3715 (goto-char (match-end 0))
3716 ;; `c-nonsymbol-token-regexp' should always match since
3717 ;; we've skipped backward over punctuator or paren
3718 ;; syntax, but move forward in case it doesn't so that
3719 ;; we don't leave point earlier than we started with.
3720 (forward-char))
3721 (< (point) start)))))
3722 (> (point) start)))
3723
3724 (defconst c-jump-syntax-balanced
3725 (if (memq 'gen-string-delim c-emacs-features)
3726 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\"\\|\\s|"
3727 "\\w\\|\\s_\\|\\s\(\\|\\s\)\\|\\s\""))
3728
3729 (defconst c-jump-syntax-unbalanced
3730 (if (memq 'gen-string-delim c-emacs-features)
3731 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3732 "\\w\\|\\s_\\|\\s\""))
3733
3734 (defun c-forward-token-2 (&optional count balanced limit)
3735 "Move forward by tokens.
3736 A token is defined as all symbols and identifiers which aren't
3737 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3738 treated properly). Point is always either left at the beginning of a
3739 token or not moved at all. COUNT specifies the number of tokens to
3740 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3741 moves to the next token beginning only if not already at one. If
3742 BALANCED is true, move over balanced parens, otherwise move into them.
3743 Also, if BALANCED is true, never move out of an enclosing paren.
3744
3745 LIMIT sets the limit for the movement and defaults to the point limit.
3746 The case when LIMIT is set in the middle of a token, comment or macro
3747 is handled correctly, i.e. the point won't be left there.
3748
3749 Return the number of tokens left to move \(positive or negative). If
3750 BALANCED is true, a move over a balanced paren counts as one. Note
3751 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3752 be returned. Thus, a return value of 0 guarantees that point is at
3753 the requested position and a return value less \(without signs) than
3754 COUNT guarantees that point is at the beginning of some token.
3755
3756 Note that this function might do hidden buffer changes. See the
3757 comment at the start of cc-engine.el for more info."
3758
3759 (or count (setq count 1))
3760 (if (< count 0)
3761 (- (c-backward-token-2 (- count) balanced limit))
3762
3763 (let ((jump-syntax (if balanced
3764 c-jump-syntax-balanced
3765 c-jump-syntax-unbalanced))
3766 (last (point))
3767 (prev (point)))
3768
3769 (if (zerop count)
3770 ;; If count is zero we should jump if in the middle of a token.
3771 (c-end-of-current-token))
3772
3773 (save-restriction
3774 (if limit (narrow-to-region (point-min) limit))
3775 (if (/= (point)
3776 (progn (c-forward-syntactic-ws) (point)))
3777 ;; Skip whitespace. Count this as a move if we did in
3778 ;; fact move.
3779 (setq count (max (1- count) 0)))
3780
3781 (if (eobp)
3782 ;; Moved out of bounds. Make sure the returned count isn't zero.
3783 (progn
3784 (if (zerop count) (setq count 1))
3785 (goto-char last))
3786
3787 ;; Use `condition-case' to avoid having the limit tests
3788 ;; inside the loop.
3789 (condition-case nil
3790 (while (and
3791 (> count 0)
3792 (progn
3793 (setq last (point))
3794 (cond ((looking-at jump-syntax)
3795 (goto-char (scan-sexps (point) 1))
3796 t)
3797 ((looking-at c-nonsymbol-token-regexp)
3798 (goto-char (match-end 0))
3799 t)
3800 ;; `c-nonsymbol-token-regexp' above should always
3801 ;; match if there are correct tokens. Try to
3802 ;; widen to see if the limit was set in the
3803 ;; middle of one, else fall back to treating
3804 ;; the offending thing as a one character token.
3805 ((and limit
3806 (save-restriction
3807 (widen)
3808 (looking-at c-nonsymbol-token-regexp)))
3809 nil)
3810 (t
3811 (forward-char)
3812 t))))
3813 (c-forward-syntactic-ws)
3814 (setq prev last
3815 count (1- count)))
3816 (error (goto-char last)))
3817
3818 (when (eobp)
3819 (goto-char prev)
3820 (setq count (1+ count)))))
3821
3822 count)))
3823
3824 (defun c-backward-token-2 (&optional count balanced limit)
3825 "Move backward by tokens.
3826 See `c-forward-token-2' for details."
3827
3828 (or count (setq count 1))
3829 (if (< count 0)
3830 (- (c-forward-token-2 (- count) balanced limit))
3831
3832 (or limit (setq limit (point-min)))
3833 (let ((jump-syntax (if balanced
3834 c-jump-syntax-balanced
3835 c-jump-syntax-unbalanced))
3836 (last (point)))
3837
3838 (if (zerop count)
3839 ;; The count is zero so try to skip to the beginning of the
3840 ;; current token.
3841 (if (> (point)
3842 (progn (c-beginning-of-current-token) (point)))
3843 (if (< (point) limit)
3844 ;; The limit is inside the same token, so return 1.
3845 (setq count 1))
3846
3847 ;; We're not in the middle of a token. If there's
3848 ;; whitespace after the point then we must move backward,
3849 ;; so set count to 1 in that case.
3850 (and (looking-at c-syntactic-ws-start)
3851 ;; If we're looking at a '#' that might start a cpp
3852 ;; directive then we have to do a more elaborate check.
3853 (or (/= (char-after) ?#)
3854 (not c-opt-cpp-prefix)
3855 (save-excursion
3856 (and (= (point)
3857 (progn (beginning-of-line)
3858 (looking-at "[ \t]*")
3859 (match-end 0)))
3860 (or (bobp)
3861 (progn (backward-char)
3862 (not (eq (char-before) ?\\)))))))
3863 (setq count 1))))
3864
3865 ;; Use `condition-case' to avoid having to check for buffer
3866 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
3867 (condition-case nil
3868 (while (and
3869 (> count 0)
3870 (progn
3871 (c-backward-syntactic-ws)
3872 (backward-char)
3873 (if (looking-at jump-syntax)
3874 (goto-char (scan-sexps (1+ (point)) -1))
3875 ;; This can be very inefficient if there's a long
3876 ;; sequence of operator tokens without any separation.
3877 ;; That doesn't happen in practice, anyway.
3878 (c-beginning-of-current-token))
3879 (>= (point) limit)))
3880 (setq last (point)
3881 count (1- count)))
3882 (error (goto-char last)))
3883
3884 (if (< (point) limit)
3885 (goto-char last))
3886
3887 count)))
3888
3889 (defun c-forward-token-1 (&optional count balanced limit)
3890 "Like `c-forward-token-2' but doesn't treat multicharacter operator
3891 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3892 characters are jumped over character by character. This function is
3893 for compatibility only; it's only a wrapper over `c-forward-token-2'."
3894 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3895 (c-forward-token-2 count balanced limit)))
3896
3897 (defun c-backward-token-1 (&optional count balanced limit)
3898 "Like `c-backward-token-2' but doesn't treat multicharacter operator
3899 tokens like \"==\" as single tokens, i.e. all sequences of symbol
3900 characters are jumped over character by character. This function is
3901 for compatibility only; it's only a wrapper over `c-backward-token-2'."
3902 (let ((c-nonsymbol-token-regexp "\\s.\\|\\s\(\\|\\s\)"))
3903 (c-backward-token-2 count balanced limit)))
3904
3905 \f
3906 ;; Tools for doing searches restricted to syntactically relevant text.
3907
3908 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
3909 paren-level not-inside-token
3910 lookbehind-submatch)
3911 "Like `re-search-forward', but only report matches that are found
3912 in syntactically significant text. I.e. matches in comments, macros
3913 or string literals are ignored. The start point is assumed to be
3914 outside any comment, macro or string literal, or else the content of
3915 that region is taken as syntactically significant text.
3916
3917 If PAREN-LEVEL is non-nil, an additional restriction is added to
3918 ignore matches in nested paren sexps. The search will also not go
3919 outside the current list sexp, which has the effect that if the point
3920 should be moved to BOUND when no match is found \(i.e. NOERROR is
3921 neither nil nor t), then it will be at the closing paren if the end of
3922 the current list sexp is encountered first.
3923
3924 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
3925 ignored. Things like multicharacter operators and special symbols
3926 \(e.g. \"`()\" in Pike) are handled but currently not floating point
3927 constants.
3928
3929 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
3930 subexpression in REGEXP. The end of that submatch is used as the
3931 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
3932 isn't used or if that subexpression didn't match then the start
3933 position of the whole match is used instead. The \"look behind\"
3934 subexpression is never tested before the starting position, so it
3935 might be a good idea to include \\=\\= as a match alternative in it.
3936
3937 Optimization note: Matches might be missed if the \"look behind\"
3938 subexpression can match the end of nonwhite syntactic whitespace,
3939 i.e. the end of comments or cpp directives. This since the function
3940 skips over such things before resuming the search. It's on the other
3941 hand not safe to assume that the \"look behind\" subexpression never
3942 matches syntactic whitespace.
3943
3944 Bug: Unbalanced parens inside cpp directives are currently not handled
3945 correctly \(i.e. they don't get ignored as they should) when
3946 PAREN-LEVEL is set.
3947
3948 Note that this function might do hidden buffer changes. See the
3949 comment at the start of cc-engine.el for more info."
3950
3951 (or bound (setq bound (point-max)))
3952 (if paren-level (setq paren-level -1))
3953
3954 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
3955
3956 (let ((start (point))
3957 tmp
3958 ;; Start position for the last search.
3959 search-pos
3960 ;; The `parse-partial-sexp' state between the start position
3961 ;; and the point.
3962 state
3963 ;; The current position after the last state update. The next
3964 ;; `parse-partial-sexp' continues from here.
3965 (state-pos (point))
3966 ;; The position at which to check the state and the state
3967 ;; there. This is separate from `state-pos' since we might
3968 ;; need to back up before doing the next search round.
3969 check-pos check-state
3970 ;; Last position known to end a token.
3971 (last-token-end-pos (point-min))
3972 ;; Set when a valid match is found.
3973 found)
3974
3975 (condition-case err
3976 (while
3977 (and
3978 (progn
3979 (setq search-pos (point))
3980 (re-search-forward regexp bound noerror))
3981
3982 (progn
3983 (setq state (parse-partial-sexp
3984 state-pos (match-beginning 0) paren-level nil state)
3985 state-pos (point))
3986 (if (setq check-pos (and lookbehind-submatch
3987 (or (not paren-level)
3988 (>= (car state) 0))
3989 (match-end lookbehind-submatch)))
3990 (setq check-state (parse-partial-sexp
3991 state-pos check-pos paren-level nil state))
3992 (setq check-pos state-pos
3993 check-state state))
3994
3995 ;; NOTE: If we got a look behind subexpression and get
3996 ;; an insignificant match in something that isn't
3997 ;; syntactic whitespace (i.e. strings or in nested
3998 ;; parentheses), then we can never skip more than a
3999 ;; single character from the match start position
4000 ;; (i.e. `state-pos' here) before continuing the
4001 ;; search. That since the look behind subexpression
4002 ;; might match the end of the insignificant region in
4003 ;; the next search.
4004
4005 (cond
4006 ((elt check-state 7)
4007 ;; Match inside a line comment. Skip to eol. Use
4008 ;; `re-search-forward' instead of `skip-chars-forward' to get
4009 ;; the right bound behavior.
4010 (re-search-forward "[\n\r]" bound noerror))
4011
4012 ((elt check-state 4)
4013 ;; Match inside a block comment. Skip to the '*/'.
4014 (search-forward "*/" bound noerror))
4015
4016 ((and (not (elt check-state 5))
4017 (eq (char-before check-pos) ?/)
4018 (not (c-get-char-property (1- check-pos) 'syntax-table))
4019 (memq (char-after check-pos) '(?/ ?*)))
4020 ;; Match in the middle of the opener of a block or line
4021 ;; comment.
4022 (if (= (char-after check-pos) ?/)
4023 (re-search-forward "[\n\r]" bound noerror)
4024 (search-forward "*/" bound noerror)))
4025
4026 ;; The last `parse-partial-sexp' above might have
4027 ;; stopped short of the real check position if the end
4028 ;; of the current sexp was encountered in paren-level
4029 ;; mode. The checks above are always false in that
4030 ;; case, and since they can do better skipping in
4031 ;; lookbehind-submatch mode, we do them before
4032 ;; checking the paren level.
4033
4034 ((and paren-level
4035 (/= (setq tmp (car check-state)) 0))
4036 ;; Check the paren level first since we're short of the
4037 ;; syntactic checking position if the end of the
4038 ;; current sexp was encountered by `parse-partial-sexp'.
4039 (if (> tmp 0)
4040
4041 ;; Inside a nested paren sexp.
4042 (if lookbehind-submatch
4043 ;; See the NOTE above.
4044 (progn (goto-char state-pos) t)
4045 ;; Skip out of the paren quickly.
4046 (setq state (parse-partial-sexp state-pos bound 0 nil state)
4047 state-pos (point)))
4048
4049 ;; Have exited the current paren sexp.
4050 (if noerror
4051 (progn
4052 ;; The last `parse-partial-sexp' call above
4053 ;; has left us just after the closing paren
4054 ;; in this case, so we can modify the bound
4055 ;; to leave the point at the right position
4056 ;; upon return.
4057 (setq bound (1- (point)))
4058 nil)
4059 (signal 'search-failed (list regexp)))))
4060
4061 ((setq tmp (elt check-state 3))
4062 ;; Match inside a string.
4063 (if (or lookbehind-submatch
4064 (not (integerp tmp)))
4065 ;; See the NOTE above.
4066 (progn (goto-char state-pos) t)
4067 ;; Skip to the end of the string before continuing.
4068 (let ((ender (make-string 1 tmp)) (continue t))
4069 (while (if (search-forward ender bound noerror)
4070 (progn
4071 (setq state (parse-partial-sexp
4072 state-pos (point) nil nil state)
4073 state-pos (point))
4074 (elt state 3))
4075 (setq continue nil)))
4076 continue)))
4077
4078 ((save-excursion
4079 (save-match-data
4080 (c-beginning-of-macro start)))
4081 ;; Match inside a macro. Skip to the end of it.
4082 (c-end-of-macro)
4083 (cond ((<= (point) bound) t)
4084 (noerror nil)
4085 (t (signal 'search-failed (list regexp)))))
4086
4087 ((and not-inside-token
4088 (or (< check-pos last-token-end-pos)
4089 (< check-pos
4090 (save-excursion
4091 (goto-char check-pos)
4092 (save-match-data
4093 (c-end-of-current-token last-token-end-pos))
4094 (setq last-token-end-pos (point))))))
4095 ;; Inside a token.
4096 (if lookbehind-submatch
4097 ;; See the NOTE above.
4098 (goto-char state-pos)
4099 (goto-char (min last-token-end-pos bound))))
4100
4101 (t
4102 ;; A real match.
4103 (setq found t)
4104 nil)))
4105
4106 ;; Should loop to search again, but take care to avoid
4107 ;; looping on the same spot.
4108 (or (/= search-pos (point))
4109 (if (= (point) bound)
4110 (if noerror
4111 nil
4112 (signal 'search-failed (list regexp)))
4113 (forward-char)
4114 t))))
4115
4116 (error
4117 (goto-char start)
4118 (signal (car err) (cdr err))))
4119
4120 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4121
4122 (if found
4123 (progn
4124 (goto-char (match-end 0))
4125 (match-end 0))
4126
4127 ;; Search failed. Set point as appropriate.
4128 (if (eq noerror t)
4129 (goto-char start)
4130 (goto-char bound))
4131 nil)))
4132
4133 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4134
4135 (defsubst c-ssb-lit-begin ()
4136 ;; Return the start of the literal point is in, or nil.
4137 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4138 ;; bound in the caller.
4139
4140 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4141 ;; if it's outside comments and strings.
4142 (save-excursion
4143 (let ((pos (point)) safe-pos state pps-end-pos)
4144 ;; Pick a safe position as close to the point as possible.
4145 ;;
4146 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4147 ;; position.
4148
4149 (while (and safe-pos-list
4150 (> (car safe-pos-list) (point)))
4151 (setq safe-pos-list (cdr safe-pos-list)))
4152 (unless (setq safe-pos (car-safe safe-pos-list))
4153 (setq safe-pos (max (or (c-safe-position
4154 (point) (or c-state-cache
4155 (c-parse-state)))
4156 0)
4157 (point-min))
4158 safe-pos-list (list safe-pos)))
4159
4160 ;; Cache positions along the way to use if we have to back up more. We
4161 ;; cache every closing paren on the same level. If the paren cache is
4162 ;; relevant in this region then we're typically already on the same
4163 ;; level as the target position. Note that we might cache positions
4164 ;; after opening parens in case safe-pos is in a nested list. That's
4165 ;; both uncommon and harmless.
4166 (while (progn
4167 (setq state (parse-partial-sexp
4168 safe-pos pos 0))
4169 (< (point) pos))
4170 (setq safe-pos (point)
4171 safe-pos-list (cons safe-pos safe-pos-list)))
4172
4173 ;; If the state contains the start of the containing sexp we cache that
4174 ;; position too, so that parse-partial-sexp in the next run has a bigger
4175 ;; chance of starting at the same level as the target position and thus
4176 ;; will get more good safe positions into the list.
4177 (if (elt state 1)
4178 (setq safe-pos (1+ (elt state 1))
4179 safe-pos-list (cons safe-pos safe-pos-list)))
4180
4181 (if (or (elt state 3) (elt state 4))
4182 ;; Inside string or comment. Continue search at the
4183 ;; beginning of it.
4184 (elt state 8)))))
4185
4186 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4187 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4188 i.e. don't stop at positions inside syntactic whitespace or string
4189 literals. Preprocessor directives are also ignored, with the exception
4190 of the one that the point starts within, if any. If LIMIT is given,
4191 it's assumed to be at a syntactically relevant position.
4192
4193 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4194 sexps, and the search will also not go outside the current paren sexp.
4195 However, if LIMIT or the buffer limit is reached inside a nested paren
4196 then the point will be left at the limit.
4197
4198 Non-nil is returned if the point moved, nil otherwise.
4199
4200 Note that this function might do hidden buffer changes. See the
4201 comment at the start of cc-engine.el for more info."
4202
4203 (let ((start (point))
4204 state-2
4205 ;; A list of syntactically relevant positions in descending
4206 ;; order. It's used to avoid scanning repeatedly over
4207 ;; potentially large regions with `parse-partial-sexp' to verify
4208 ;; each position. Used in `c-ssb-lit-begin'
4209 safe-pos-list
4210 ;; The result from `c-beginning-of-macro' at the start position or the
4211 ;; start position itself if it isn't within a macro. Evaluated on
4212 ;; demand.
4213 start-macro-beg
4214 ;; The earliest position after the current one with the same paren
4215 ;; level. Used only when `paren-level' is set.
4216 lit-beg
4217 (paren-level-pos (point)))
4218
4219 (while
4220 (progn
4221 ;; The next loop "tries" to find the end point each time round,
4222 ;; loops when it hasn't succeeded.
4223 (while
4224 (and
4225 (< (skip-chars-backward skip-chars limit) 0)
4226
4227 (let ((pos (point)) state-2 pps-end-pos)
4228
4229 (cond
4230 ;; Don't stop inside a literal
4231 ((setq lit-beg (c-ssb-lit-begin))
4232 (goto-char lit-beg)
4233 t)
4234
4235 ((and paren-level
4236 (save-excursion
4237 (setq state-2 (parse-partial-sexp
4238 pos paren-level-pos -1)
4239 pps-end-pos (point))
4240 (/= (car state-2) 0)))
4241 ;; Not at the right level.
4242
4243 (if (and (< (car state-2) 0)
4244 ;; We stop above if we go out of a paren.
4245 ;; Now check whether it precedes or is
4246 ;; nested in the starting sexp.
4247 (save-excursion
4248 (setq state-2
4249 (parse-partial-sexp
4250 pps-end-pos paren-level-pos
4251 nil nil state-2))
4252 (< (car state-2) 0)))
4253
4254 ;; We've stopped short of the starting position
4255 ;; so the hit was inside a nested list. Go up
4256 ;; until we are at the right level.
4257 (condition-case nil
4258 (progn
4259 (goto-char (scan-lists pos -1
4260 (- (car state-2))))
4261 (setq paren-level-pos (point))
4262 (if (and limit (>= limit paren-level-pos))
4263 (progn
4264 (goto-char limit)
4265 nil)
4266 t))
4267 (error
4268 (goto-char (or limit (point-min)))
4269 nil))
4270
4271 ;; The hit was outside the list at the start
4272 ;; position. Go to the start of the list and exit.
4273 (goto-char (1+ (elt state-2 1)))
4274 nil))
4275
4276 ((c-beginning-of-macro limit)
4277 ;; Inside a macro.
4278 (if (< (point)
4279 (or start-macro-beg
4280 (setq start-macro-beg
4281 (save-excursion
4282 (goto-char start)
4283 (c-beginning-of-macro limit)
4284 (point)))))
4285 t
4286
4287 ;; It's inside the same macro we started in so it's
4288 ;; a relevant match.
4289 (goto-char pos)
4290 nil))))))
4291
4292 (> (point)
4293 (progn
4294 ;; Skip syntactic ws afterwards so that we don't stop at the
4295 ;; end of a comment if `skip-chars' is something like "^/".
4296 (c-backward-syntactic-ws)
4297 (point)))))
4298
4299 ;; We might want to extend this with more useful return values in
4300 ;; the future.
4301 (/= (point) start)))
4302
4303 ;; The following is an alternative implementation of
4304 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4305 ;; track of the syntactic context. It turned out to be generally
4306 ;; slower than the one above which uses forward checks from earlier
4307 ;; safe positions.
4308 ;;
4309 ;;(defconst c-ssb-stop-re
4310 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4311 ;; ;; stop at to avoid going into comments and literals.
4312 ;; (concat
4313 ;; ;; Match comment end syntax and string literal syntax. Also match
4314 ;; ;; '/' for block comment endings (not covered by comment end
4315 ;; ;; syntax).
4316 ;; "\\s>\\|/\\|\\s\""
4317 ;; (if (memq 'gen-string-delim c-emacs-features)
4318 ;; "\\|\\s|"
4319 ;; "")
4320 ;; (if (memq 'gen-comment-delim c-emacs-features)
4321 ;; "\\|\\s!"
4322 ;; "")))
4323 ;;
4324 ;;(defconst c-ssb-stop-paren-re
4325 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4326 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4327 ;;
4328 ;;(defconst c-ssb-sexp-end-re
4329 ;; ;; Regexp matching the ending syntax of a complex sexp.
4330 ;; (concat c-string-limit-regexp "\\|\\s)"))
4331 ;;
4332 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4333 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4334 ;;i.e. don't stop at positions inside syntactic whitespace or string
4335 ;;literals. Preprocessor directives are also ignored. However, if the
4336 ;;point is within a comment, string literal or preprocessor directory to
4337 ;;begin with, its contents is treated as syntactically relevant chars.
4338 ;;If LIMIT is given, it limits the backward search and the point will be
4339 ;;left there if no earlier position is found.
4340 ;;
4341 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4342 ;;sexps, and the search will also not go outside the current paren sexp.
4343 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4344 ;;then the point will be left at the limit.
4345 ;;
4346 ;;Non-nil is returned if the point moved, nil otherwise.
4347 ;;
4348 ;;Note that this function might do hidden buffer changes. See the
4349 ;;comment at the start of cc-engine.el for more info."
4350 ;;
4351 ;; (save-restriction
4352 ;; (when limit
4353 ;; (narrow-to-region limit (point-max)))
4354 ;;
4355 ;; (let ((start (point)))
4356 ;; (catch 'done
4357 ;; (while (let ((last-pos (point))
4358 ;; (stop-pos (progn
4359 ;; (skip-chars-backward skip-chars)
4360 ;; (point))))
4361 ;;
4362 ;; ;; Skip back over the same region as
4363 ;; ;; `skip-chars-backward' above, but keep to
4364 ;; ;; syntactically relevant positions.
4365 ;; (goto-char last-pos)
4366 ;; (while (and
4367 ;; ;; `re-search-backward' with a single char regexp
4368 ;; ;; should be fast.
4369 ;; (re-search-backward
4370 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4371 ;; stop-pos 'move)
4372 ;;
4373 ;; (progn
4374 ;; (cond
4375 ;; ((looking-at "\\s(")
4376 ;; ;; `paren-level' is set and we've found the
4377 ;; ;; start of the containing paren.
4378 ;; (forward-char)
4379 ;; (throw 'done t))
4380 ;;
4381 ;; ((looking-at c-ssb-sexp-end-re)
4382 ;; ;; We're at the end of a string literal or paren
4383 ;; ;; sexp (if `paren-level' is set).
4384 ;; (forward-char)
4385 ;; (condition-case nil
4386 ;; (c-backward-sexp)
4387 ;; (error
4388 ;; (goto-char limit)
4389 ;; (throw 'done t))))
4390 ;;
4391 ;; (t
4392 ;; (forward-char)
4393 ;; ;; At the end of some syntactic ws or possibly
4394 ;; ;; after a plain '/' operator.
4395 ;; (let ((pos (point)))
4396 ;; (c-backward-syntactic-ws)
4397 ;; (if (= pos (point))
4398 ;; ;; Was a plain '/' operator. Go past it.
4399 ;; (backward-char)))))
4400 ;;
4401 ;; (> (point) stop-pos))))
4402 ;;
4403 ;; ;; Now the point is either at `stop-pos' or at some
4404 ;; ;; position further back if `stop-pos' was at a
4405 ;; ;; syntactically irrelevant place.
4406 ;;
4407 ;; ;; Skip additional syntactic ws so that we don't stop
4408 ;; ;; at the end of a comment if `skip-chars' is
4409 ;; ;; something like "^/".
4410 ;; (c-backward-syntactic-ws)
4411 ;;
4412 ;; (< (point) stop-pos))))
4413 ;;
4414 ;; ;; We might want to extend this with more useful return values
4415 ;; ;; in the future.
4416 ;; (/= (point) start))))
4417
4418 \f
4419 ;; Tools for handling comments and string literals.
4420
4421 (defun c-in-literal (&optional lim detect-cpp)
4422 "Return the type of literal point is in, if any.
4423 The return value is `c' if in a C-style comment, `c++' if in a C++
4424 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4425 is non-nil and in a preprocessor line, or nil if somewhere else.
4426 Optional LIM is used as the backward limit of the search. If omitted,
4427 or nil, `c-beginning-of-defun' is used.
4428
4429 The last point calculated is cached if the cache is enabled, i.e. if
4430 `c-in-literal-cache' is bound to a two element vector.
4431
4432 Note that this function might do hidden buffer changes. See the
4433 comment at the start of cc-engine.el for more info."
4434 (save-restriction
4435 (widen)
4436 (let* ((safe-place (c-state-semi-safe-place (point)))
4437 (lit (c-state-pp-to-literal safe-place (point))))
4438 (or (cadr lit)
4439 (and detect-cpp
4440 (save-excursion (c-beginning-of-macro))
4441 'pound)))))
4442
4443 (defun c-literal-limits (&optional lim near not-in-delimiter)
4444 "Return a cons of the beginning and end positions of the comment or
4445 string surrounding point (including both delimiters), or nil if point
4446 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4447 to start parsing from. If NEAR is non-nil, then the limits of any
4448 literal next to point is returned. \"Next to\" means there's only
4449 spaces and tabs between point and the literal. The search for such a
4450 literal is done first in forward direction. If NOT-IN-DELIMITER is
4451 non-nil, the case when point is inside a starting delimiter won't be
4452 recognized. This only has effect for comments which have starting
4453 delimiters with more than one character.
4454
4455 Note that this function might do hidden buffer changes. See the
4456 comment at the start of cc-engine.el for more info."
4457
4458 (save-excursion
4459 (let* ((pos (point))
4460 (lim (or lim (c-state-semi-safe-place pos)))
4461 (pp-to-lit (save-restriction
4462 (widen)
4463 (c-state-pp-to-literal lim pos not-in-delimiter)))
4464 (state (car pp-to-lit))
4465 (lit-limits (car (cddr pp-to-lit))))
4466
4467 (cond
4468 (lit-limits)
4469
4470 (near
4471 (goto-char pos)
4472 ;; Search forward for a literal.
4473 (skip-chars-forward " \t")
4474 (cond
4475 ((looking-at c-string-limit-regexp) ; String.
4476 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4477 (point-max))))
4478
4479 ((looking-at c-comment-start-regexp) ; Line or block comment.
4480 (cons (point) (progn (c-forward-single-comment) (point))))
4481
4482 (t
4483 ;; Search backward.
4484 (skip-chars-backward " \t")
4485
4486 (let ((end (point)) beg)
4487 (cond
4488 ((save-excursion
4489 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4490 (setq beg (c-safe (c-backward-sexp 1) (point))))
4491
4492 ((and (c-safe (forward-char -2) t)
4493 (looking-at "*/"))
4494 ;; Block comment. Due to the nature of line
4495 ;; comments, they will always be covered by the
4496 ;; normal case above.
4497 (goto-char end)
4498 (c-backward-single-comment)
4499 ;; If LIM is bogus, beg will be bogus.
4500 (setq beg (point))))
4501
4502 (if beg (cons beg end))))))
4503 ))))
4504
4505 ;; In case external callers use this; it did have a docstring.
4506 (defalias 'c-literal-limits-fast 'c-literal-limits)
4507
4508 (defun c-collect-line-comments (range)
4509 "If the argument is a cons of two buffer positions (such as returned by
4510 `c-literal-limits'), and that range contains a C++ style line comment,
4511 then an extended range is returned that contains all adjacent line
4512 comments (i.e. all comments that starts in the same column with no
4513 empty lines or non-whitespace characters between them). Otherwise the
4514 argument is returned.
4515
4516 Note that this function might do hidden buffer changes. See the
4517 comment at the start of cc-engine.el for more info."
4518
4519 (save-excursion
4520 (condition-case nil
4521 (if (and (consp range) (progn
4522 (goto-char (car range))
4523 (looking-at c-line-comment-starter)))
4524 (let ((col (current-column))
4525 (beg (point))
4526 (bopl (c-point 'bopl))
4527 (end (cdr range)))
4528 ;; Got to take care in the backward direction to handle
4529 ;; comments which are preceded by code.
4530 (while (and (c-backward-single-comment)
4531 (>= (point) bopl)
4532 (looking-at c-line-comment-starter)
4533 (= col (current-column)))
4534 (setq beg (point)
4535 bopl (c-point 'bopl)))
4536 (goto-char end)
4537 (while (and (progn (skip-chars-forward " \t")
4538 (looking-at c-line-comment-starter))
4539 (= col (current-column))
4540 (prog1 (zerop (forward-line 1))
4541 (setq end (point)))))
4542 (cons beg end))
4543 range)
4544 (error range))))
4545
4546 (defun c-literal-type (range)
4547 "Convenience function that given the result of `c-literal-limits',
4548 returns nil or the type of literal that the range surrounds, one
4549 of the symbols 'c, 'c++ or 'string. It's much faster than using
4550 `c-in-literal' and is intended to be used when you need both the
4551 type of a literal and its limits.
4552
4553 Note that this function might do hidden buffer changes. See the
4554 comment at the start of cc-engine.el for more info."
4555
4556 (if (consp range)
4557 (save-excursion
4558 (goto-char (car range))
4559 (cond ((looking-at c-string-limit-regexp) 'string)
4560 ((or (looking-at "//") ; c++ line comment
4561 (and (looking-at "\\s<") ; comment starter
4562 (looking-at "#"))) ; awk comment.
4563 'c++)
4564 (t 'c))) ; Assuming the range is valid.
4565 range))
4566
4567 (defsubst c-determine-limit-get-base (start try-size)
4568 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4569 ;; This doesn't preserve point.
4570 (let* ((pos (max (- start try-size) (point-min)))
4571 (base (c-state-semi-safe-place pos))
4572 (s (parse-partial-sexp base pos)))
4573 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4574 (nth 8 s)
4575 (point))))
4576
4577 (defun c-determine-limit (how-far-back &optional start try-size)
4578 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4579 ;; (default point). This is done by going back further in the buffer then
4580 ;; searching forward for literals. The position found won't be in a
4581 ;; literal. We start searching for the sought position TRY-SIZE (default
4582 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4583 ;; :-)
4584 (save-excursion
4585 (let* ((start (or start (point)))
4586 (try-size (or try-size (* 2 how-far-back)))
4587 (base (c-determine-limit-get-base start try-size))
4588 (pos base)
4589
4590 (s (parse-partial-sexp pos pos)) ; null state.
4591 stack elt size
4592 (count 0))
4593 (while (< pos start)
4594 ;; Move forward one literal each time round this loop.
4595 ;; Move forward to the start of a comment or string.
4596 (setq s (parse-partial-sexp
4597 pos
4598 start
4599 nil ; target-depth
4600 nil ; stop-before
4601 s ; state
4602 'syntax-table)) ; stop-comment
4603
4604 ;; Gather details of the non-literal-bit - starting pos and size.
4605 (setq size (- (if (or (nth 4 s) (nth 3 s))
4606 (nth 8 s)
4607 (point))
4608 pos))
4609 (if (> size 0)
4610 (setq stack (cons (cons pos size) stack)))
4611
4612 ;; Move forward to the end of the comment/string.
4613 (if (or (nth 4 s) (nth 3 s))
4614 (setq s (parse-partial-sexp
4615 (point)
4616 start
4617 nil ; target-depth
4618 nil ; stop-before
4619 s ; state
4620 'syntax-table))) ; stop-comment
4621 (setq pos (point)))
4622
4623 ;; Now try and find enough non-literal characters recorded on the stack.
4624 ;; Go back one recorded literal each time round this loop.
4625 (while (and (< count how-far-back)
4626 stack)
4627 (setq elt (car stack)
4628 stack (cdr stack))
4629 (setq count (+ count (cdr elt))))
4630
4631 ;; Have we found enough yet?
4632 (cond
4633 ((>= count how-far-back)
4634 (+ (car elt) (- count how-far-back)))
4635 ((eq base (point-min))
4636 (point-min))
4637 (t
4638 (c-determine-limit (- how-far-back count) base try-size))))))
4639
4640 (defun c-determine-+ve-limit (how-far &optional start-pos)
4641 ;; Return a buffer position about HOW-FAR non-literal characters forward
4642 ;; from START-POS (default point), which must not be inside a literal.
4643 (save-excursion
4644 (let ((pos (or start-pos (point)))
4645 (count how-far)
4646 (s (parse-partial-sexp (point) (point)))) ; null state
4647 (while (and (not (eobp))
4648 (> count 0))
4649 ;; Scan over counted characters.
4650 (setq s (parse-partial-sexp
4651 pos
4652 (min (+ pos count) (point-max))
4653 nil ; target-depth
4654 nil ; stop-before
4655 s ; state
4656 'syntax-table)) ; stop-comment
4657 (setq count (- count (- (point) pos) 1)
4658 pos (point))
4659 ;; Scan over literal characters.
4660 (if (nth 8 s)
4661 (setq s (parse-partial-sexp
4662 pos
4663 (point-max)
4664 nil ; target-depth
4665 nil ; stop-before
4666 s ; state
4667 'syntax-table) ; stop-comment
4668 pos (point))))
4669 (point))))
4670
4671 \f
4672 ;; `c-find-decl-spots' and accompanying stuff.
4673
4674 ;; Variables used in `c-find-decl-spots' to cache the search done for
4675 ;; the first declaration in the last call. When that function starts,
4676 ;; it needs to back up over syntactic whitespace to look at the last
4677 ;; token before the region being searched. That can sometimes cause
4678 ;; moves back and forth over a quite large region of comments and
4679 ;; macros, which would be repeated for each changed character when
4680 ;; we're called during fontification, since font-lock refontifies the
4681 ;; current line for each change. Thus it's worthwhile to cache the
4682 ;; first match.
4683 ;;
4684 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4685 ;; the syntactic whitespace less or equal to some start position.
4686 ;; There's no cached value if it's nil.
4687 ;;
4688 ;; `c-find-decl-match-pos' is the match position if
4689 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4690 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4691 (defvar c-find-decl-syntactic-pos nil)
4692 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4693 (defvar c-find-decl-match-pos nil)
4694 (make-variable-buffer-local 'c-find-decl-match-pos)
4695
4696 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4697 (and c-find-decl-syntactic-pos
4698 (< change-min-pos c-find-decl-syntactic-pos)
4699 (setq c-find-decl-syntactic-pos nil)))
4700
4701 ; (defface c-debug-decl-spot-face
4702 ; '((t (:background "Turquoise")))
4703 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4704 ; (defface c-debug-decl-sws-face
4705 ; '((t (:background "Khaki")))
4706 ; "Debug face to mark the syntactic whitespace between the declaration
4707 ; spots and the preceding token end.")
4708
4709 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4710 (when (facep 'c-debug-decl-spot-face)
4711 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4712 (c-debug-add-face (max match-pos (point-min)) decl-pos
4713 'c-debug-decl-sws-face)
4714 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4715 'c-debug-decl-spot-face))))
4716 (defmacro c-debug-remove-decl-spot-faces (beg end)
4717 (when (facep 'c-debug-decl-spot-face)
4718 `(c-save-buffer-state ()
4719 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4720 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4721
4722 (defmacro c-find-decl-prefix-search ()
4723 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4724 ;; but it contains lots of free variables that refer to things
4725 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4726 ;; if there is a match, otherwise at `cfd-limit'.
4727 ;;
4728 ;; This macro might do hidden buffer changes.
4729
4730 '(progn
4731 ;; Find the next property match position if we haven't got one already.
4732 (unless cfd-prop-match
4733 (save-excursion
4734 (while (progn
4735 (goto-char (next-single-property-change
4736 (point) 'c-type nil cfd-limit))
4737 (and (< (point) cfd-limit)
4738 (not (eq (c-get-char-property (1- (point)) 'c-type)
4739 'c-decl-end)))))
4740 (setq cfd-prop-match (point))))
4741
4742 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4743 ;; got one already.
4744 (unless cfd-re-match
4745
4746 (if (> cfd-re-match-end (point))
4747 (goto-char cfd-re-match-end))
4748
4749 (while (if (setq cfd-re-match-end
4750 (re-search-forward c-decl-prefix-or-start-re
4751 cfd-limit 'move))
4752
4753 ;; Match. Check if it's inside a comment or string literal.
4754 (c-got-face-at
4755 (if (setq cfd-re-match (match-end 1))
4756 ;; Matched the end of a token preceding a decl spot.
4757 (progn
4758 (goto-char cfd-re-match)
4759 (1- cfd-re-match))
4760 ;; Matched a token that start a decl spot.
4761 (goto-char (match-beginning 0))
4762 (point))
4763 c-literal-faces)
4764
4765 ;; No match. Finish up and exit the loop.
4766 (setq cfd-re-match cfd-limit)
4767 nil)
4768
4769 ;; Skip out of comments and string literals.
4770 (while (progn
4771 (goto-char (next-single-property-change
4772 (point) 'face nil cfd-limit))
4773 (and (< (point) cfd-limit)
4774 (c-got-face-at (point) c-literal-faces)))))
4775
4776 ;; If we matched at the decl start, we have to back up over the
4777 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4778 ;; any decl spots in the syntactic ws.
4779 (unless cfd-re-match
4780 (c-backward-syntactic-ws)
4781 (setq cfd-re-match (point))))
4782
4783 ;; Choose whichever match is closer to the start.
4784 (if (< cfd-re-match cfd-prop-match)
4785 (setq cfd-match-pos cfd-re-match
4786 cfd-re-match nil)
4787 (setq cfd-match-pos cfd-prop-match
4788 cfd-prop-match nil))
4789
4790 (goto-char cfd-match-pos)
4791
4792 (when (< cfd-match-pos cfd-limit)
4793 ;; Skip forward past comments only so we don't skip macros.
4794 (c-forward-comments)
4795 ;; Set the position to continue at. We can avoid going over
4796 ;; the comments skipped above a second time, but it's possible
4797 ;; that the comment skipping has taken us past `cfd-prop-match'
4798 ;; since the property might be used inside comments.
4799 (setq cfd-continue-pos (if cfd-prop-match
4800 (min cfd-prop-match (point))
4801 (point))))))
4802
4803 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
4804 ;; Call CFD-FUN for each possible spot for a declaration, cast or
4805 ;; label from the point to CFD-LIMIT.
4806 ;;
4807 ;; CFD-FUN is called with point at the start of the spot. It's passed two
4808 ;; arguments: The first is the end position of the token preceding the spot,
4809 ;; or 0 for the implicit match at bob. The second is a flag that is t when
4810 ;; the match is inside a macro. Point should be moved forward by at least
4811 ;; one token.
4812 ;;
4813 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
4814 ;; it should return non-nil to ensure that the next search will find them.
4815 ;;
4816 ;; Such a spot is:
4817 ;; o The first token after bob.
4818 ;; o The first token after the end of submatch 1 in
4819 ;; `c-decl-prefix-or-start-re' when that submatch matches.
4820 ;; o The start of each `c-decl-prefix-or-start-re' match when
4821 ;; submatch 1 doesn't match.
4822 ;; o The first token after the end of each occurrence of the
4823 ;; `c-type' text property with the value `c-decl-end', provided
4824 ;; `c-type-decl-end-used' is set.
4825 ;;
4826 ;; Only a spot that match CFD-DECL-RE and whose face is in the
4827 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
4828 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
4829 ;;
4830 ;; If the match is inside a macro then the buffer is narrowed to the
4831 ;; end of it, so that CFD-FUN can investigate the following tokens
4832 ;; without matching something that begins inside a macro and ends
4833 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
4834 ;; CFD-FACE-CHECKLIST checks exist.
4835 ;;
4836 ;; The spots are visited approximately in order from top to bottom.
4837 ;; It's however the positions where `c-decl-prefix-or-start-re'
4838 ;; matches and where `c-decl-end' properties are found that are in
4839 ;; order. Since the spots often are at the following token, they
4840 ;; might be visited out of order insofar as more spots are reported
4841 ;; later on within the syntactic whitespace between the match
4842 ;; positions and their spots.
4843 ;;
4844 ;; It's assumed that comments and strings are fontified in the
4845 ;; searched range.
4846 ;;
4847 ;; This is mainly used in fontification, and so has an elaborate
4848 ;; cache to handle repeated calls from the same start position; see
4849 ;; the variables above.
4850 ;;
4851 ;; All variables in this function begin with `cfd-' to avoid name
4852 ;; collision with the (dynamically bound) variables used in CFD-FUN.
4853 ;;
4854 ;; This function might do hidden buffer changes.
4855
4856 (let ((cfd-start-pos (point))
4857 (cfd-buffer-end (point-max))
4858 ;; The end of the token preceding the decl spot last found
4859 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
4860 ;; no match.
4861 cfd-re-match
4862 ;; The end position of the last `c-decl-prefix-or-start-re'
4863 ;; match. If this is greater than `cfd-continue-pos', the
4864 ;; next regexp search is started here instead.
4865 (cfd-re-match-end (point-min))
4866 ;; The end of the last `c-decl-end' found by
4867 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
4868 ;; match. If searching for the property isn't needed then we
4869 ;; disable it by setting it to `cfd-limit' directly.
4870 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
4871 ;; The end of the token preceding the decl spot last found by
4872 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
4873 ;; bob. `cfd-limit' if there's no match. In other words,
4874 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
4875 (cfd-match-pos cfd-limit)
4876 ;; The position to continue searching at.
4877 cfd-continue-pos
4878 ;; The position of the last "real" token we've stopped at.
4879 ;; This can be greater than `cfd-continue-pos' when we get
4880 ;; hits inside macros or at `c-decl-end' positions inside
4881 ;; comments.
4882 (cfd-token-pos 0)
4883 ;; The end position of the last entered macro.
4884 (cfd-macro-end 0))
4885
4886 ;; Initialize by finding a syntactically relevant start position
4887 ;; before the point, and do the first `c-decl-prefix-or-start-re'
4888 ;; search unless we're at bob.
4889
4890 (let (start-in-literal start-in-macro syntactic-pos)
4891 ;; Must back up a bit since we look for the end of the previous
4892 ;; statement or declaration, which is earlier than the first
4893 ;; returned match.
4894
4895 (cond
4896 ;; First we need to move to a syntactically relevant position.
4897 ;; Begin by backing out of comment or string literals.
4898 ((and
4899 (when (c-got-face-at (point) c-literal-faces)
4900 ;; Try to use the faces to back up to the start of the
4901 ;; literal. FIXME: What if the point is on a declaration
4902 ;; inside a comment?
4903 (while (and (not (bobp))
4904 (c-got-face-at (1- (point)) c-literal-faces))
4905 (goto-char (previous-single-property-change
4906 (point) 'face nil (point-min))))
4907
4908 ;; XEmacs doesn't fontify the quotes surrounding string
4909 ;; literals.
4910 (and (featurep 'xemacs)
4911 (eq (get-text-property (point) 'face)
4912 'font-lock-string-face)
4913 (not (bobp))
4914 (progn (backward-char)
4915 (not (looking-at c-string-limit-regexp)))
4916 (forward-char))
4917
4918 ;; Don't trust the literal to contain only literal faces
4919 ;; (the font lock package might not have fontified the
4920 ;; start of it at all, for instance) so check that we have
4921 ;; arrived at something that looks like a start or else
4922 ;; resort to `c-literal-limits'.
4923 (unless (looking-at c-literal-start-regexp)
4924 (let ((range (c-literal-limits)))
4925 (if range (goto-char (car range)))))
4926
4927 (setq start-in-literal (point)))
4928
4929 ;; The start is in a literal. If the limit is in the same
4930 ;; one we don't have to find a syntactic position etc. We
4931 ;; only check that if the limit is at or before bonl to save
4932 ;; time; it covers the by far most common case when font-lock
4933 ;; refontifies the current line only.
4934 (<= cfd-limit (c-point 'bonl cfd-start-pos))
4935 (save-excursion
4936 (goto-char cfd-start-pos)
4937 (while (progn
4938 (goto-char (next-single-property-change
4939 (point) 'face nil cfd-limit))
4940 (and (< (point) cfd-limit)
4941 (c-got-face-at (point) c-literal-faces))))
4942 (= (point) cfd-limit)))
4943
4944 ;; Completely inside a literal. Set up variables to trig the
4945 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
4946 ;; find a suitable start position.
4947 (setq cfd-continue-pos start-in-literal))
4948
4949 ;; Check if the region might be completely inside a macro, to
4950 ;; optimize that like the completely-inside-literal above.
4951 ((save-excursion
4952 (and (= (forward-line 1) 0)
4953 (bolp) ; forward-line has funny behavior at eob.
4954 (>= (point) cfd-limit)
4955 (progn (backward-char)
4956 (eq (char-before) ?\\))))
4957 ;; (Maybe) completely inside a macro. Only need to trig the
4958 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
4959 ;; set things up.
4960 (setq cfd-continue-pos (1- cfd-start-pos)
4961 start-in-macro t))
4962
4963 (t
4964 ;; Back out of any macro so we don't miss any declaration
4965 ;; that could follow after it.
4966 (when (c-beginning-of-macro)
4967 (setq start-in-macro t))
4968
4969 ;; Now we're at a proper syntactically relevant position so we
4970 ;; can use the cache. But first clear it if it applied
4971 ;; further down.
4972 (c-invalidate-find-decl-cache cfd-start-pos)
4973
4974 (setq syntactic-pos (point))
4975 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
4976 ;; Don't have to do this if the cache is relevant here,
4977 ;; typically if the same line is refontified again. If
4978 ;; we're just some syntactic whitespace further down we can
4979 ;; still use the cache to limit the skipping.
4980 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
4981
4982 ;; If we hit `c-find-decl-syntactic-pos' and
4983 ;; `c-find-decl-match-pos' is set then we install the cached
4984 ;; values. If we hit `c-find-decl-syntactic-pos' and
4985 ;; `c-find-decl-match-pos' is nil then we know there's no decl
4986 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
4987 ;; and so we can continue the search from this point. If we
4988 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
4989 ;; the right spot to begin searching anyway.
4990 (if (and (eq (point) c-find-decl-syntactic-pos)
4991 c-find-decl-match-pos)
4992 (setq cfd-match-pos c-find-decl-match-pos
4993 cfd-continue-pos syntactic-pos)
4994
4995 (setq c-find-decl-syntactic-pos syntactic-pos)
4996
4997 (when (if (bobp)
4998 ;; Always consider bob a match to get the first
4999 ;; declaration in the file. Do this separately instead of
5000 ;; letting `c-decl-prefix-or-start-re' match bob, so that
5001 ;; regexp always can consume at least one character to
5002 ;; ensure that we won't get stuck in an infinite loop.
5003 (setq cfd-re-match 0)
5004 (backward-char)
5005 (c-beginning-of-current-token)
5006 (< (point) cfd-limit))
5007 ;; Do an initial search now. In the bob case above it's
5008 ;; only done to search for a `c-decl-end' spot.
5009 (c-find-decl-prefix-search))
5010
5011 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
5012 cfd-match-pos)))))
5013
5014 ;; Advance `cfd-continue-pos' if it's before the start position.
5015 ;; The closest continue position that might have effect at or
5016 ;; after the start depends on what we started in. This also
5017 ;; finds a suitable start position in the special cases when the
5018 ;; region is completely within a literal or macro.
5019 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
5020
5021 (cond
5022 (start-in-macro
5023 ;; If we're in a macro then it's the closest preceding token
5024 ;; in the macro. Check this before `start-in-literal',
5025 ;; since if we're inside a literal in a macro, the preceding
5026 ;; token is earlier than any `c-decl-end' spot inside the
5027 ;; literal (comment).
5028 (goto-char (or start-in-literal cfd-start-pos))
5029 ;; The only syntactic ws in macros are comments.
5030 (c-backward-comments)
5031 (backward-char)
5032 (c-beginning-of-current-token))
5033
5034 (start-in-literal
5035 ;; If we're in a comment it can only be the closest
5036 ;; preceding `c-decl-end' position within that comment, if
5037 ;; any. Go back to the beginning of such a property so that
5038 ;; `c-find-decl-prefix-search' will find the end of it.
5039 ;; (Can't stop at the end and install it directly on
5040 ;; `cfd-prop-match' since that variable might be cleared
5041 ;; after `cfd-fun' below.)
5042 ;;
5043 ;; Note that if the literal is a string then the property
5044 ;; search will simply skip to the beginning of it right
5045 ;; away.
5046 (if (not c-type-decl-end-used)
5047 (goto-char start-in-literal)
5048 (goto-char cfd-start-pos)
5049 (while (progn
5050 (goto-char (previous-single-property-change
5051 (point) 'c-type nil start-in-literal))
5052 (and (> (point) start-in-literal)
5053 (not (eq (c-get-char-property (point) 'c-type)
5054 'c-decl-end))))))
5055
5056 (when (= (point) start-in-literal)
5057 ;; Didn't find any property inside the comment, so we can
5058 ;; skip it entirely. (This won't skip past a string, but
5059 ;; that'll be handled quickly by the next
5060 ;; `c-find-decl-prefix-search' anyway.)
5061 (c-forward-single-comment)
5062 (if (> (point) cfd-limit)
5063 (goto-char cfd-limit))))
5064
5065 (t
5066 ;; If we started in normal code, the only match that might
5067 ;; apply before the start is what we already got in
5068 ;; `cfd-match-pos' so we can continue at the start position.
5069 ;; (Note that we don't get here if the first match is below
5070 ;; it.)
5071 (goto-char cfd-start-pos)))
5072
5073 ;; Delete found matches if they are before our new continue
5074 ;; position, so that `c-find-decl-prefix-search' won't back up
5075 ;; to them later on.
5076 (setq cfd-continue-pos (point))
5077 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5078 (setq cfd-re-match nil))
5079 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5080 (setq cfd-prop-match nil)))
5081
5082 (if syntactic-pos
5083 ;; This is the normal case and we got a proper syntactic
5084 ;; position. If there's a match then it's always outside
5085 ;; macros and comments, so advance to the next token and set
5086 ;; `cfd-token-pos'. The loop below will later go back using
5087 ;; `cfd-continue-pos' to fix declarations inside the
5088 ;; syntactic ws.
5089 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5090 (goto-char syntactic-pos)
5091 (c-forward-syntactic-ws)
5092 (and cfd-continue-pos
5093 (< cfd-continue-pos (point))
5094 (setq cfd-token-pos (point))))
5095
5096 ;; Have one of the special cases when the region is completely
5097 ;; within a literal or macro. `cfd-continue-pos' is set to a
5098 ;; good start position for the search, so do it.
5099 (c-find-decl-prefix-search)))
5100
5101 ;; Now loop. Round what? (ACM, 2006/7/5). We already got the first match.
5102
5103 (while (progn
5104 (while (and
5105 (< cfd-match-pos cfd-limit)
5106
5107 (or
5108 ;; Kludge to filter out matches on the "<" that
5109 ;; aren't open parens, for the sake of languages
5110 ;; that got `c-recognize-<>-arglists' set.
5111 (and (eq (char-before cfd-match-pos) ?<)
5112 (not (c-get-char-property (1- cfd-match-pos)
5113 'syntax-table)))
5114
5115 ;; If `cfd-continue-pos' is less or equal to
5116 ;; `cfd-token-pos', we've got a hit inside a macro
5117 ;; that's in the syntactic whitespace before the last
5118 ;; "real" declaration we've checked. If they're equal
5119 ;; we've arrived at the declaration a second time, so
5120 ;; there's nothing to do.
5121 (= cfd-continue-pos cfd-token-pos)
5122
5123 (progn
5124 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5125 ;; we're still searching for declarations embedded in
5126 ;; the syntactic whitespace. In that case we need
5127 ;; only to skip comments and not macros, since they
5128 ;; can't be nested, and that's already been done in
5129 ;; `c-find-decl-prefix-search'.
5130 (when (> cfd-continue-pos cfd-token-pos)
5131 (c-forward-syntactic-ws)
5132 (setq cfd-token-pos (point)))
5133
5134 ;; Continue if the following token fails the
5135 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5136 (when (or (>= (point) cfd-limit)
5137 (not (looking-at cfd-decl-re))
5138 (and cfd-face-checklist
5139 (not (c-got-face-at
5140 (point) cfd-face-checklist))))
5141 (goto-char cfd-continue-pos)
5142 t)))
5143
5144 (< (point) cfd-limit))
5145 (c-find-decl-prefix-search))
5146
5147 (< (point) cfd-limit))
5148
5149 (when (and
5150 (>= (point) cfd-start-pos)
5151
5152 (progn
5153 ;; Narrow to the end of the macro if we got a hit inside
5154 ;; one, to avoid recognizing things that start inside the
5155 ;; macro and end outside it.
5156 (when (> cfd-match-pos cfd-macro-end)
5157 ;; Not in the same macro as in the previous round.
5158 (save-excursion
5159 (goto-char cfd-match-pos)
5160 (setq cfd-macro-end
5161 (if (save-excursion (and (c-beginning-of-macro)
5162 (< (point) cfd-match-pos)))
5163 (progn (c-end-of-macro)
5164 (point))
5165 0))))
5166
5167 (if (zerop cfd-macro-end)
5168 t
5169 (if (> cfd-macro-end (point))
5170 (progn (narrow-to-region (point-min) cfd-macro-end)
5171 t)
5172 ;; The matched token was the last thing in the macro,
5173 ;; so the whole match is bogus.
5174 (setq cfd-macro-end 0)
5175 nil))))
5176
5177 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5178 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5179 (setq cfd-prop-match nil))
5180
5181 (when (/= cfd-macro-end 0)
5182 ;; Restore limits if we did macro narrowing above.
5183 (narrow-to-region (point-min) cfd-buffer-end)))
5184
5185 (goto-char cfd-continue-pos)
5186 (if (= cfd-continue-pos cfd-limit)
5187 (setq cfd-match-pos cfd-limit)
5188 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5189 ; cfd-match-pos, etc.
5190
5191 \f
5192 ;; A cache for found types.
5193
5194 ;; Buffer local variable that contains an obarray with the types we've
5195 ;; found. If a declaration is recognized somewhere we record the
5196 ;; fully qualified identifier in it to recognize it as a type
5197 ;; elsewhere in the file too. This is not accurate since we do not
5198 ;; bother with the scoping rules of the languages, but in practice the
5199 ;; same name is seldom used as both a type and something else in a
5200 ;; file, and we only use this as a last resort in ambiguous cases (see
5201 ;; `c-forward-decl-or-cast-1').
5202 ;;
5203 ;; Not every type need be in this cache. However, things which have
5204 ;; ceased to be types must be removed from it.
5205 ;;
5206 ;; Template types in C++ are added here too but with the template
5207 ;; arglist replaced with "<>" in references or "<" for the one in the
5208 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5209 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5210 ;; template specs can be fairly sized programs in themselves) and
5211 ;; improves the hit ratio (it's a type regardless of the template
5212 ;; args; it's just not the same type, but we're only interested in
5213 ;; recognizing types, not telling distinct types apart). Note that
5214 ;; template types in references are added here too; from the example
5215 ;; above there will also be an entry "Foo<".
5216 (defvar c-found-types nil)
5217 (make-variable-buffer-local 'c-found-types)
5218
5219 (defsubst c-clear-found-types ()
5220 ;; Clears `c-found-types'.
5221 (setq c-found-types (make-vector 53 0)))
5222
5223 (defun c-add-type (from to)
5224 ;; Add the given region as a type in `c-found-types'. If the region
5225 ;; doesn't match an existing type but there is a type which is equal
5226 ;; to the given one except that the last character is missing, then
5227 ;; the shorter type is removed. That's done to avoid adding all
5228 ;; prefixes of a type as it's being entered and font locked. This
5229 ;; doesn't cover cases like when characters are removed from a type
5230 ;; or added in the middle. We'd need the position of point when the
5231 ;; font locking is invoked to solve this well.
5232 ;;
5233 ;; This function might do hidden buffer changes.
5234 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5235 (unless (intern-soft type c-found-types)
5236 (unintern (substring type 0 -1) c-found-types)
5237 (intern type c-found-types))))
5238
5239 (defun c-unfind-type (name)
5240 ;; Remove the "NAME" from c-found-types, if present.
5241 (unintern name c-found-types))
5242
5243 (defsubst c-check-type (from to)
5244 ;; Return non-nil if the given region contains a type in
5245 ;; `c-found-types'.
5246 ;;
5247 ;; This function might do hidden buffer changes.
5248 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5249 c-found-types))
5250
5251 (defun c-list-found-types ()
5252 ;; Return all the types in `c-found-types' as a sorted list of
5253 ;; strings.
5254 (let (type-list)
5255 (mapatoms (lambda (type)
5256 (setq type-list (cons (symbol-name type)
5257 type-list)))
5258 c-found-types)
5259 (sort type-list 'string-lessp)))
5260
5261 ;; Shut up the byte compiler.
5262 (defvar c-maybe-stale-found-type)
5263
5264 (defun c-trim-found-types (beg end old-len)
5265 ;; An after change function which, in conjunction with the info in
5266 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5267 ;; from `c-found-types', should this type have become stale. For
5268 ;; example, this happens to "foo" when "foo \n bar();" becomes
5269 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5270 ;; the fontification.
5271 ;;
5272 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5273 ;; type?
5274 (when (> end beg)
5275 (save-excursion
5276 (when (< end (point-max))
5277 (goto-char end)
5278 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5279 (progn (goto-char end)
5280 (c-end-of-current-token)))
5281 (c-unfind-type (buffer-substring-no-properties
5282 end (point)))))
5283 (when (> beg (point-min))
5284 (goto-char beg)
5285 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5286 (progn (goto-char beg)
5287 (c-beginning-of-current-token)))
5288 (c-unfind-type (buffer-substring-no-properties
5289 (point) beg))))))
5290
5291 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5292 (cond
5293 ;; Changing the amount of (already existing) whitespace - don't do anything.
5294 ((and (c-partial-ws-p beg end)
5295 (or (= beg end) ; removal of WS
5296 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5297
5298 ;; The syntactic relationship which defined a "found type" has been
5299 ;; destroyed.
5300 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5301 (c-unfind-type (cadr c-maybe-stale-found-type)))
5302 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5303 )))
5304
5305 \f
5306 ;; Setting and removing syntax properties on < and > in languages (C++
5307 ;; and Java) where they can be template/generic delimiters as well as
5308 ;; their normal meaning of "less/greater than".
5309
5310 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5311 ;; be delimiters, they are marked as such with the category properties
5312 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5313
5314 ;; STRATEGY:
5315 ;;
5316 ;; It is impossible to determine with certainty whether a <..> pair in
5317 ;; C++ is two comparison operators or is template delimiters, unless
5318 ;; one duplicates a lot of a C++ compiler. For example, the following
5319 ;; code fragment:
5320 ;;
5321 ;; foo (a < b, c > d) ;
5322 ;;
5323 ;; could be a function call with two integer parameters (each a
5324 ;; relational expression), or it could be a constructor for class foo
5325 ;; taking one parameter d of templated type "a < b, c >". They are
5326 ;; somewhat easier to distinguish in Java.
5327 ;;
5328 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5329 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5330 ;; individually when their context so indicated. This gave rise to
5331 ;; intractable problems when one of a matching pair was deleted, or
5332 ;; pulled into a literal.]
5333 ;;
5334 ;; At each buffer change, the syntax-table properties are removed in a
5335 ;; before-change function and reapplied, when needed, in an
5336 ;; after-change function. It is far more important that the
5337 ;; properties get removed when they they are spurious than that they
5338 ;; be present when wanted.
5339 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5340 (defun c-clear-<-pair-props (&optional pos)
5341 ;; POS (default point) is at a < character. If it is marked with
5342 ;; open paren syntax-table text property, remove the property,
5343 ;; together with the close paren property on the matching > (if
5344 ;; any).
5345 (save-excursion
5346 (if pos
5347 (goto-char pos)
5348 (setq pos (point)))
5349 (when (equal (c-get-char-property (point) 'syntax-table)
5350 c-<-as-paren-syntax)
5351 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5352 (c-go-list-forward))
5353 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5354 c->-as-paren-syntax) ; should always be true.
5355 (c-clear-char-property (1- (point)) 'category))
5356 (c-clear-char-property pos 'category))))
5357
5358 (defun c-clear->-pair-props (&optional pos)
5359 ;; POS (default point) is at a > character. If it is marked with
5360 ;; close paren syntax-table property, remove the property, together
5361 ;; with the open paren property on the matching < (if any).
5362 (save-excursion
5363 (if pos
5364 (goto-char pos)
5365 (setq pos (point)))
5366 (when (equal (c-get-char-property (point) 'syntax-table)
5367 c->-as-paren-syntax)
5368 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5369 (c-go-up-list-backward))
5370 (when (equal (c-get-char-property (point) 'syntax-table)
5371 c-<-as-paren-syntax) ; should always be true.
5372 (c-clear-char-property (point) 'category))
5373 (c-clear-char-property pos 'category))))
5374
5375 (defun c-clear-<>-pair-props (&optional pos)
5376 ;; POS (default point) is at a < or > character. If it has an
5377 ;; open/close paren syntax-table property, remove this property both
5378 ;; from the current character and its partner (which will also be
5379 ;; thusly marked).
5380 (cond
5381 ((eq (char-after) ?\<)
5382 (c-clear-<-pair-props pos))
5383 ((eq (char-after) ?\>)
5384 (c-clear->-pair-props pos))
5385 (t (c-benign-error
5386 "c-clear-<>-pair-props called from wrong position"))))
5387
5388 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5389 ;; POS (default point) is at a < character. If it is both marked
5390 ;; with open/close paren syntax-table property, and has a matching >
5391 ;; (also marked) which is after LIM, remove the property both from
5392 ;; the current > and its partner. Return t when this happens, nil
5393 ;; when it doesn't.
5394 (save-excursion
5395 (if pos
5396 (goto-char pos)
5397 (setq pos (point)))
5398 (when (equal (c-get-char-property (point) 'syntax-table)
5399 c-<-as-paren-syntax)
5400 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5401 (c-go-list-forward))
5402 (when (and (>= (point) lim)
5403 (equal (c-get-char-property (1- (point)) 'syntax-table)
5404 c->-as-paren-syntax)) ; should always be true.
5405 (c-unmark-<->-as-paren (1- (point)))
5406 (c-unmark-<->-as-paren pos))
5407 t)))
5408
5409 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5410 ;; POS (default point) is at a > character. If it is both marked
5411 ;; with open/close paren syntax-table property, and has a matching <
5412 ;; (also marked) which is before LIM, remove the property both from
5413 ;; the current < and its partner. Return t when this happens, nil
5414 ;; when it doesn't.
5415 (save-excursion
5416 (if pos
5417 (goto-char pos)
5418 (setq pos (point)))
5419 (when (equal (c-get-char-property (point) 'syntax-table)
5420 c->-as-paren-syntax)
5421 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5422 (c-go-up-list-backward))
5423 (when (and (<= (point) lim)
5424 (equal (c-get-char-property (point) 'syntax-table)
5425 c-<-as-paren-syntax)) ; should always be true.
5426 (c-unmark-<->-as-paren (point))
5427 (c-unmark-<->-as-paren pos))
5428 t)))
5429
5430 ;; Set by c-common-init in cc-mode.el.
5431 (defvar c-new-BEG)
5432 (defvar c-new-END)
5433
5434 (defun c-before-change-check-<>-operators (beg end)
5435 ;; Unmark certain pairs of "< .... >" which are currently marked as
5436 ;; template/generic delimiters. (This marking is via syntax-table
5437 ;; text properties).
5438 ;;
5439 ;; These pairs are those which are in the current "statement" (i.e.,
5440 ;; the region between the {, }, or ; before BEG and the one after
5441 ;; END), and which enclose any part of the interval (BEG END).
5442 ;;
5443 ;; Note that in C++ (?and Java), template/generic parens cannot
5444 ;; enclose a brace or semicolon, so we use these as bounds on the
5445 ;; region we must work on.
5446 ;;
5447 ;; This function is called from before-change-functions (via
5448 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5449 ;; and point is undefined, both at entry and exit.
5450 ;;
5451 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5452 ;; 2010-01-29.
5453 (save-excursion
5454 (let ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5455 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5456 new-beg new-end need-new-beg need-new-end)
5457 ;; Locate the barrier before the changed region
5458 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5459 (c-syntactic-skip-backward "^;{}" (c-determine-limit 512))
5460 (setq new-beg (point))
5461
5462 ;; Remove the syntax-table properties from each pertinent <...> pair.
5463 ;; Firsly, the ones with the < before beg and > after beg.
5464 (while (c-search-forward-char-property 'category 'c-<-as-paren-syntax beg)
5465 (if (c-clear-<-pair-props-if-match-after beg (1- (point)))
5466 (setq need-new-beg t)))
5467
5468 ;; Locate the barrier after END.
5469 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5470 (c-syntactic-re-search-forward "[;{}]" (c-determine-+ve-limit 512) 'end)
5471 (setq new-end (point))
5472
5473 ;; Remove syntax-table properties from the remaining pertinent <...>
5474 ;; pairs, those with a > after end and < before end.
5475 (while (c-search-backward-char-property 'category 'c->-as-paren-syntax end)
5476 (if (c-clear->-pair-props-if-match-before end)
5477 (setq need-new-end t)))
5478
5479 ;; Extend the fontification region, if needed.
5480 (when need-new-beg
5481 (goto-char new-beg)
5482 (c-forward-syntactic-ws)
5483 (and (< (point) c-new-BEG) (setq c-new-BEG (point))))
5484
5485 (when need-new-end
5486 (and (> new-end c-new-END) (setq c-new-END new-end))))))
5487
5488
5489
5490 (defun c-after-change-check-<>-operators (beg end)
5491 ;; This is called from `after-change-functions' when
5492 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5493 ;; chars with paren syntax become part of another operator like "<<"
5494 ;; or ">=".
5495 ;;
5496 ;; This function might do hidden buffer changes.
5497
5498 (save-excursion
5499 (goto-char beg)
5500 (when (or (looking-at "[<>]")
5501 (< (skip-chars-backward "<>") 0))
5502
5503 (goto-char beg)
5504 (c-beginning-of-current-token)
5505 (when (and (< (point) beg)
5506 (looking-at c-<>-multichar-token-regexp)
5507 (< beg (setq beg (match-end 0))))
5508 (while (progn (skip-chars-forward "^<>" beg)
5509 (< (point) beg))
5510 (c-clear-<>-pair-props)
5511 (forward-char))))
5512
5513 (when (< beg end)
5514 (goto-char end)
5515 (when (or (looking-at "[<>]")
5516 (< (skip-chars-backward "<>") 0))
5517
5518 (goto-char end)
5519 (c-beginning-of-current-token)
5520 (when (and (< (point) end)
5521 (looking-at c-<>-multichar-token-regexp)
5522 (< end (setq end (match-end 0))))
5523 (while (progn (skip-chars-forward "^<>" end)
5524 (< (point) end))
5525 (c-clear-<>-pair-props)
5526 (forward-char)))))))
5527
5528
5529 \f
5530 ;; Handling of small scale constructs like types and names.
5531
5532 ;; Dynamically bound variable that instructs `c-forward-type' to also
5533 ;; treat possible types (i.e. those that it normally returns 'maybe or
5534 ;; 'found for) as actual types (and always return 'found for them).
5535 ;; This means that it records them in `c-record-type-identifiers' if
5536 ;; that is set, and that it adds them to `c-found-types'.
5537 (defvar c-promote-possible-types nil)
5538
5539 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5540 ;; mark up successfully parsed arglists with paren syntax properties on
5541 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
5542 ;; `c-type' property of each argument separating comma.
5543 ;;
5544 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
5545 ;; all arglists for side effects (i.e. recording types), otherwise it
5546 ;; exploits any existing paren syntax properties to quickly jump to the
5547 ;; end of already parsed arglists.
5548 ;;
5549 ;; Marking up the arglists is not the default since doing that correctly
5550 ;; depends on a proper value for `c-restricted-<>-arglists'.
5551 (defvar c-parse-and-markup-<>-arglists nil)
5552
5553 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
5554 ;; not accept arglists that contain binary operators.
5555 ;;
5556 ;; This is primarily used to handle C++ template arglists. C++
5557 ;; disambiguates them by checking whether the preceding name is a
5558 ;; template or not. We can't do that, so we assume it is a template
5559 ;; if it can be parsed as one. That usually works well since
5560 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
5561 ;; in almost all cases would be pointless.
5562 ;;
5563 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
5564 ;; should let the comma separate the function arguments instead. And
5565 ;; in a context where the value of the expression is taken, e.g. in
5566 ;; "if (a < b || c > d)", it's probably not a template.
5567 (defvar c-restricted-<>-arglists nil)
5568
5569 ;; Dynamically bound variables that instructs
5570 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
5571 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
5572 ;; `c-forward-label' to record the ranges of all the type and
5573 ;; reference identifiers they encounter. They will build lists on
5574 ;; these variables where each element is a cons of the buffer
5575 ;; positions surrounding each identifier. This recording is only
5576 ;; activated when `c-record-type-identifiers' is non-nil.
5577 ;;
5578 ;; All known types that can't be identifiers are recorded, and also
5579 ;; other possible types if `c-promote-possible-types' is set.
5580 ;; Recording is however disabled inside angle bracket arglists that
5581 ;; are encountered inside names and other angle bracket arglists.
5582 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
5583 ;; instead.
5584 ;;
5585 ;; Only the names in C++ template style references (e.g. "tmpl" in
5586 ;; "tmpl<a,b>::foo") are recorded as references, other references
5587 ;; aren't handled here.
5588 ;;
5589 ;; `c-forward-label' records the label identifier(s) on
5590 ;; `c-record-ref-identifiers'.
5591 (defvar c-record-type-identifiers nil)
5592 (defvar c-record-ref-identifiers nil)
5593
5594 ;; This variable will receive a cons cell of the range of the last
5595 ;; single identifier symbol stepped over by `c-forward-name' if it's
5596 ;; successful. This is the range that should be put on one of the
5597 ;; record lists above by the caller. It's assigned nil if there's no
5598 ;; such symbol in the name.
5599 (defvar c-last-identifier-range nil)
5600
5601 (defmacro c-record-type-id (range)
5602 (if (eq (car-safe range) 'cons)
5603 ;; Always true.
5604 `(setq c-record-type-identifiers
5605 (cons ,range c-record-type-identifiers))
5606 `(let ((range ,range))
5607 (if range
5608 (setq c-record-type-identifiers
5609 (cons range c-record-type-identifiers))))))
5610
5611 (defmacro c-record-ref-id (range)
5612 (if (eq (car-safe range) 'cons)
5613 ;; Always true.
5614 `(setq c-record-ref-identifiers
5615 (cons ,range c-record-ref-identifiers))
5616 `(let ((range ,range))
5617 (if range
5618 (setq c-record-ref-identifiers
5619 (cons range c-record-ref-identifiers))))))
5620
5621 ;; Dynamically bound variable that instructs `c-forward-type' to
5622 ;; record the ranges of types that only are found. Behaves otherwise
5623 ;; like `c-record-type-identifiers'.
5624 (defvar c-record-found-types nil)
5625
5626 (defmacro c-forward-keyword-prefixed-id (type)
5627 ;; Used internally in `c-forward-keyword-clause' to move forward
5628 ;; over a type (if TYPE is 'type) or a name (otherwise) which
5629 ;; possibly is prefixed by keywords and their associated clauses.
5630 ;; Try with a type/name first to not trip up on those that begin
5631 ;; with a keyword. Return t if a known or found type is moved
5632 ;; over. The point is clobbered if nil is returned. If range
5633 ;; recording is enabled, the identifier is recorded on as a type
5634 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
5635 ;;
5636 ;; This macro might do hidden buffer changes.
5637 `(let (res)
5638 (while (if (setq res ,(if (eq type 'type)
5639 `(c-forward-type)
5640 `(c-forward-name)))
5641 nil
5642 (and (looking-at c-keywords-regexp)
5643 (c-forward-keyword-clause 1))))
5644 (when (memq res '(t known found prefix))
5645 ,(when (eq type 'ref)
5646 `(when c-record-type-identifiers
5647 (c-record-ref-id c-last-identifier-range)))
5648 t)))
5649
5650 (defmacro c-forward-id-comma-list (type update-safe-pos)
5651 ;; Used internally in `c-forward-keyword-clause' to move forward
5652 ;; over a comma separated list of types or names using
5653 ;; `c-forward-keyword-prefixed-id'.
5654 ;;
5655 ;; This macro might do hidden buffer changes.
5656 `(while (and (progn
5657 ,(when update-safe-pos
5658 `(setq safe-pos (point)))
5659 (eq (char-after) ?,))
5660 (progn
5661 (forward-char)
5662 (c-forward-syntactic-ws)
5663 (c-forward-keyword-prefixed-id ,type)))))
5664
5665 (defun c-forward-keyword-clause (match)
5666 ;; Submatch MATCH in the current match data is assumed to surround a
5667 ;; token. If it's a keyword, move over it and any immediately
5668 ;; following clauses associated with it, stopping at the start of
5669 ;; the next token. t is returned in that case, otherwise the point
5670 ;; stays and nil is returned. The kind of clauses that are
5671 ;; recognized are those specified by `c-type-list-kwds',
5672 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
5673 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
5674 ;; and `c-<>-arglist-kwds'.
5675 ;;
5676 ;; This function records identifier ranges on
5677 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5678 ;; `c-record-type-identifiers' is non-nil.
5679 ;;
5680 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
5681 ;; apply directly after the keyword, the type list is moved over
5682 ;; only when there is no unaccounted token before it (i.e. a token
5683 ;; that isn't moved over due to some other keyword list). The
5684 ;; identifier ranges in the list are still recorded if that should
5685 ;; be done, though.
5686 ;;
5687 ;; This function might do hidden buffer changes.
5688
5689 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
5690 ;; The call to `c-forward-<>-arglist' below is made after
5691 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
5692 ;; are angle bracket arglists and `c-restricted-<>-arglists'
5693 ;; should therefore be nil.
5694 (c-parse-and-markup-<>-arglists t)
5695 c-restricted-<>-arglists)
5696
5697 (when kwd-sym
5698 (goto-char (match-end match))
5699 (c-forward-syntactic-ws)
5700 (setq safe-pos (point))
5701
5702 (cond
5703 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
5704 (c-forward-keyword-prefixed-id type))
5705 ;; There's a type directly after a keyword in `c-type-list-kwds'.
5706 (c-forward-id-comma-list type t))
5707
5708 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
5709 (c-forward-keyword-prefixed-id ref))
5710 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
5711 (c-forward-id-comma-list ref t))
5712
5713 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
5714 (eq (char-after) ?\())
5715 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
5716
5717 (forward-char)
5718 (when (and (setq pos (c-up-list-forward))
5719 (eq (char-before pos) ?\)))
5720 (when (and c-record-type-identifiers
5721 (c-keyword-member kwd-sym 'c-paren-type-kwds))
5722 ;; Use `c-forward-type' on every identifier we can find
5723 ;; inside the paren, to record the types.
5724 (while (c-syntactic-re-search-forward c-symbol-start pos t)
5725 (goto-char (match-beginning 0))
5726 (unless (c-forward-type)
5727 (looking-at c-symbol-key) ; Always matches.
5728 (goto-char (match-end 0)))))
5729
5730 (goto-char pos)
5731 (c-forward-syntactic-ws)
5732 (setq safe-pos (point))))
5733
5734 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
5735 (eq (char-after) ?<)
5736 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
5737 (c-forward-syntactic-ws)
5738 (setq safe-pos (point)))
5739
5740 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
5741 (not (looking-at c-symbol-start))
5742 (c-safe (c-forward-sexp) t))
5743 (c-forward-syntactic-ws)
5744 (setq safe-pos (point))))
5745
5746 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
5747 (if (eq (char-after) ?:)
5748 ;; If we are at the colon already, we move over the type
5749 ;; list after it.
5750 (progn
5751 (forward-char)
5752 (c-forward-syntactic-ws)
5753 (when (c-forward-keyword-prefixed-id type)
5754 (c-forward-id-comma-list type t)))
5755 ;; Not at the colon, so stop here. But the identifier
5756 ;; ranges in the type list later on should still be
5757 ;; recorded.
5758 (and c-record-type-identifiers
5759 (progn
5760 ;; If a keyword matched both one of the types above and
5761 ;; this one, we match `c-colon-type-list-re' after the
5762 ;; clause matched above.
5763 (goto-char safe-pos)
5764 (looking-at c-colon-type-list-re))
5765 (progn
5766 (goto-char (match-end 0))
5767 (c-forward-syntactic-ws)
5768 (c-forward-keyword-prefixed-id type))
5769 ;; There's a type after the `c-colon-type-list-re' match
5770 ;; after a keyword in `c-colon-type-list-kwds'.
5771 (c-forward-id-comma-list type nil))))
5772
5773 (goto-char safe-pos)
5774 t)))
5775
5776 ;; cc-mode requires cc-fonts.
5777 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
5778
5779 (defun c-forward-<>-arglist (all-types)
5780 ;; The point is assumed to be at a "<". Try to treat it as the open
5781 ;; paren of an angle bracket arglist and move forward to the
5782 ;; corresponding ">". If successful, the point is left after the
5783 ;; ">" and t is returned, otherwise the point isn't moved and nil is
5784 ;; returned. If ALL-TYPES is t then all encountered arguments in
5785 ;; the arglist that might be types are treated as found types.
5786 ;;
5787 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
5788 ;; function handles text properties on the angle brackets and argument
5789 ;; separating commas.
5790 ;;
5791 ;; `c-restricted-<>-arglists' controls how lenient the template
5792 ;; arglist recognition should be.
5793 ;;
5794 ;; This function records identifier ranges on
5795 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
5796 ;; `c-record-type-identifiers' is non-nil.
5797 ;;
5798 ;; This function might do hidden buffer changes.
5799
5800 (let ((start (point))
5801 ;; If `c-record-type-identifiers' is set then activate
5802 ;; recording of any found types that constitute an argument in
5803 ;; the arglist.
5804 (c-record-found-types (if c-record-type-identifiers t)))
5805 (if (catch 'angle-bracket-arglist-escape
5806 (setq c-record-found-types
5807 (c-forward-<>-arglist-recur all-types)))
5808 (progn
5809 (when (consp c-record-found-types)
5810 (setq c-record-type-identifiers
5811 ;; `nconc' doesn't mind that the tail of
5812 ;; `c-record-found-types' is t.
5813 (nconc c-record-found-types c-record-type-identifiers)))
5814 (if (c-major-mode-is 'java-mode) (c-fontify-recorded-types-and-refs))
5815 t)
5816
5817 (goto-char start)
5818 nil)))
5819
5820 (defun c-forward-<>-arglist-recur (all-types)
5821 ;; Recursive part of `c-forward-<>-arglist'.
5822 ;;
5823 ;; This function might do hidden buffer changes.
5824
5825 (let ((start (point)) res pos tmp
5826 ;; Cover this so that any recorded found type ranges are
5827 ;; automatically lost if it turns out to not be an angle
5828 ;; bracket arglist. It's propagated through the return value
5829 ;; on successful completion.
5830 (c-record-found-types c-record-found-types)
5831 ;; List that collects the positions after the argument
5832 ;; separating ',' in the arglist.
5833 arg-start-pos)
5834 ;; If the '<' has paren open syntax then we've marked it as an angle
5835 ;; bracket arglist before, so skip to the end.
5836 (if (and (not c-parse-and-markup-<>-arglists)
5837 (c-get-char-property (point) 'syntax-table))
5838
5839 (progn
5840 (forward-char)
5841 (if (and (c-go-up-list-forward)
5842 (eq (char-before) ?>))
5843 t
5844 ;; Got unmatched paren angle brackets. We don't clear the paren
5845 ;; syntax properties and retry, on the basis that it's very
5846 ;; unlikely that paren angle brackets become operators by code
5847 ;; manipulation. It's far more likely that it doesn't match due
5848 ;; to narrowing or some temporary change.
5849 (goto-char start)
5850 nil))
5851
5852 (forward-char) ; Forward over the opening '<'.
5853
5854 (unless (looking-at c-<-op-cont-regexp)
5855 ;; go forward one non-alphanumeric character (group) per iteration of
5856 ;; this loop.
5857 (while (and
5858 (progn
5859 (c-forward-syntactic-ws)
5860 (let ((orig-record-found-types c-record-found-types))
5861 (when (or (and c-record-type-identifiers all-types)
5862 (c-major-mode-is 'java-mode))
5863 ;; All encountered identifiers are types, so set the
5864 ;; promote flag and parse the type.
5865 (progn
5866 (c-forward-syntactic-ws)
5867 (if (looking-at "\\?")
5868 (forward-char)
5869 (when (looking-at c-identifier-start)
5870 (let ((c-promote-possible-types t)
5871 (c-record-found-types t))
5872 (c-forward-type))))
5873
5874 (c-forward-syntactic-ws)
5875
5876 (when (or (looking-at "extends")
5877 (looking-at "super"))
5878 (forward-word)
5879 (c-forward-syntactic-ws)
5880 (let ((c-promote-possible-types t)
5881 (c-record-found-types t))
5882 (c-forward-type)
5883 (c-forward-syntactic-ws))))))
5884
5885 (setq pos (point)) ; e.g. first token inside the '<'
5886
5887 ;; Note: These regexps exploit the match order in \| so
5888 ;; that "<>" is matched by "<" rather than "[^>:-]>".
5889 (c-syntactic-re-search-forward
5890 ;; Stop on ',', '|', '&', '+' and '-' to catch
5891 ;; common binary operators that could be between
5892 ;; two comparison expressions "a<b" and "c>d".
5893 "[<;{},|+&-]\\|[>)]"
5894 nil t t))
5895
5896 (cond
5897 ((eq (char-before) ?>)
5898 ;; Either an operator starting with '>' or the end of
5899 ;; the angle bracket arglist.
5900
5901 (if (looking-at c->-op-cont-regexp)
5902 (progn
5903 (goto-char (match-end 0))
5904 t) ; Continue the loop.
5905
5906 ;; The angle bracket arglist is finished.
5907 (when c-parse-and-markup-<>-arglists
5908 (while arg-start-pos
5909 (c-put-c-type-property (1- (car arg-start-pos))
5910 'c-<>-arg-sep)
5911 (setq arg-start-pos (cdr arg-start-pos)))
5912 (c-mark-<-as-paren start)
5913 (c-mark->-as-paren (1- (point))))
5914 (setq res t)
5915 nil)) ; Exit the loop.
5916
5917 ((eq (char-before) ?<)
5918 ;; Either an operator starting with '<' or a nested arglist.
5919 (setq pos (point))
5920 (let (id-start id-end subres keyword-match)
5921 (cond
5922 ;; The '<' begins a multi-char operator.
5923 ((looking-at c-<-op-cont-regexp)
5924 (setq tmp (match-end 0))
5925 (goto-char (match-end 0)))
5926 ;; We're at a nested <.....>
5927 ((progn
5928 (setq tmp pos)
5929 (backward-char) ; to the '<'
5930 (and
5931 (save-excursion
5932 ;; There's always an identifier before an angle
5933 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
5934 ;; or `c-<>-arglist-kwds'.
5935 (c-backward-syntactic-ws)
5936 (setq id-end (point))
5937 (c-simple-skip-symbol-backward)
5938 (when (or (setq keyword-match
5939 (looking-at c-opt-<>-sexp-key))
5940 (not (looking-at c-keywords-regexp)))
5941 (setq id-start (point))))
5942 (setq subres
5943 (let ((c-promote-possible-types t)
5944 (c-record-found-types t))
5945 (c-forward-<>-arglist-recur
5946 (and keyword-match
5947 (c-keyword-member
5948 (c-keyword-sym (match-string 1))
5949 'c-<>-type-kwds)))))))
5950
5951 ;; It was an angle bracket arglist.
5952 (setq c-record-found-types subres)
5953
5954 ;; Record the identifier before the template as a type
5955 ;; or reference depending on whether the arglist is last
5956 ;; in a qualified identifier.
5957 (when (and c-record-type-identifiers
5958 (not keyword-match))
5959 (if (and c-opt-identifier-concat-key
5960 (progn
5961 (c-forward-syntactic-ws)
5962 (looking-at c-opt-identifier-concat-key)))
5963 (c-record-ref-id (cons id-start id-end))
5964 (c-record-type-id (cons id-start id-end)))))
5965
5966 ;; At a "less than" operator.
5967 (t
5968 (forward-char)
5969 )))
5970 t) ; carry on looping.
5971
5972 ((and (not c-restricted-<>-arglists)
5973 (or (and (eq (char-before) ?&)
5974 (not (eq (char-after) ?&)))
5975 (eq (char-before) ?,)))
5976 ;; Just another argument. Record the position. The
5977 ;; type check stuff that made us stop at it is at
5978 ;; the top of the loop.
5979 (setq arg-start-pos (cons (point) arg-start-pos)))
5980
5981 (t
5982 ;; Got a character that can't be in an angle bracket
5983 ;; arglist argument. Abort using `throw', since
5984 ;; it's useless to try to find a surrounding arglist
5985 ;; if we're nested.
5986 (throw 'angle-bracket-arglist-escape nil))))))
5987 (if res
5988 (or c-record-found-types t)))))
5989
5990 (defun c-backward-<>-arglist (all-types &optional limit)
5991 ;; The point is assumed to be directly after a ">". Try to treat it
5992 ;; as the close paren of an angle bracket arglist and move back to
5993 ;; the corresponding "<". If successful, the point is left at
5994 ;; the "<" and t is returned, otherwise the point isn't moved and
5995 ;; nil is returned. ALL-TYPES is passed on to
5996 ;; `c-forward-<>-arglist'.
5997 ;;
5998 ;; If the optional LIMIT is given, it bounds the backward search.
5999 ;; It's then assumed to be at a syntactically relevant position.
6000 ;;
6001 ;; This is a wrapper around `c-forward-<>-arglist'. See that
6002 ;; function for more details.
6003
6004 (let ((start (point)))
6005 (backward-char)
6006 (if (and (not c-parse-and-markup-<>-arglists)
6007 (c-get-char-property (point) 'syntax-table))
6008
6009 (if (and (c-go-up-list-backward)
6010 (eq (char-after) ?<))
6011 t
6012 ;; See corresponding note in `c-forward-<>-arglist'.
6013 (goto-char start)
6014 nil)
6015
6016 (while (progn
6017 (c-syntactic-skip-backward "^<;{}" limit t)
6018
6019 (and
6020 (if (eq (char-before) ?<)
6021 t
6022 ;; Stopped at bob or a char that isn't allowed in an
6023 ;; arglist, so we've failed.
6024 (goto-char start)
6025 nil)
6026
6027 (if (> (point)
6028 (progn (c-beginning-of-current-token)
6029 (point)))
6030 ;; If we moved then the "<" was part of some
6031 ;; multicharacter token.
6032 t
6033
6034 (backward-char)
6035 (let ((beg-pos (point)))
6036 (if (c-forward-<>-arglist all-types)
6037 (cond ((= (point) start)
6038 ;; Matched the arglist. Break the while.
6039 (goto-char beg-pos)
6040 nil)
6041 ((> (point) start)
6042 ;; We started from a non-paren ">" inside an
6043 ;; arglist.
6044 (goto-char start)
6045 nil)
6046 (t
6047 ;; Matched a shorter arglist. Can be a nested
6048 ;; one so continue looking.
6049 (goto-char beg-pos)
6050 t))
6051 t))))))
6052
6053 (/= (point) start))))
6054
6055 (defun c-forward-name ()
6056 ;; Move forward over a complete name if at the beginning of one,
6057 ;; stopping at the next following token. A keyword, as such,
6058 ;; doesn't count as a name. If the point is not at something that
6059 ;; is recognized as a name then it stays put.
6060 ;;
6061 ;; A name could be something as simple as "foo" in C or something as
6062 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6063 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6064 ;; int>::*volatile const" in C++ (this function is actually little
6065 ;; more than a `looking-at' call in all modes except those that,
6066 ;; like C++, have `c-recognize-<>-arglists' set).
6067 ;;
6068 ;; Return
6069 ;; o - nil if no name is found;
6070 ;; o - 'template if it's an identifier ending with an angle bracket
6071 ;; arglist;
6072 ;; o - 'operator of it's an operator identifier;
6073 ;; o - t if it's some other kind of name.
6074 ;;
6075 ;; This function records identifier ranges on
6076 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6077 ;; `c-record-type-identifiers' is non-nil.
6078 ;;
6079 ;; This function might do hidden buffer changes.
6080
6081 (let ((pos (point)) (start (point)) res id-start id-end
6082 ;; Turn off `c-promote-possible-types' here since we might
6083 ;; call `c-forward-<>-arglist' and we don't want it to promote
6084 ;; every suspect thing in the arglist to a type. We're
6085 ;; typically called from `c-forward-type' in this case, and
6086 ;; the caller only wants the top level type that it finds to
6087 ;; be promoted.
6088 c-promote-possible-types)
6089 (while
6090 (and
6091 (looking-at c-identifier-key)
6092
6093 (progn
6094 ;; Check for keyword. We go to the last symbol in
6095 ;; `c-identifier-key' first.
6096 (goto-char (setq id-end (match-end 0)))
6097 (c-simple-skip-symbol-backward)
6098 (setq id-start (point))
6099
6100 (if (looking-at c-keywords-regexp)
6101 (when (and (c-major-mode-is 'c++-mode)
6102 (looking-at
6103 (cc-eval-when-compile
6104 (concat "\\(operator\\|\\(template\\)\\)"
6105 "\\(" (c-lang-const c-nonsymbol-key c++)
6106 "\\|$\\)")))
6107 (if (match-beginning 2)
6108 ;; "template" is only valid inside an
6109 ;; identifier if preceded by "::".
6110 (save-excursion
6111 (c-backward-syntactic-ws)
6112 (and (c-safe (backward-char 2) t)
6113 (looking-at "::")))
6114 t))
6115
6116 ;; Handle a C++ operator or template identifier.
6117 (goto-char id-end)
6118 (c-forward-syntactic-ws)
6119 (cond ((eq (char-before id-end) ?e)
6120 ;; Got "... ::template".
6121 (let ((subres (c-forward-name)))
6122 (when subres
6123 (setq pos (point)
6124 res subres))))
6125
6126 ((looking-at c-identifier-start)
6127 ;; Got a cast operator.
6128 (when (c-forward-type)
6129 (setq pos (point)
6130 res 'operator)
6131 ;; Now we should match a sequence of either
6132 ;; '*', '&' or a name followed by ":: *",
6133 ;; where each can be followed by a sequence
6134 ;; of `c-opt-type-modifier-key'.
6135 (while (cond ((looking-at "[*&]")
6136 (goto-char (match-end 0))
6137 t)
6138 ((looking-at c-identifier-start)
6139 (and (c-forward-name)
6140 (looking-at "::")
6141 (progn
6142 (goto-char (match-end 0))
6143 (c-forward-syntactic-ws)
6144 (eq (char-after) ?*))
6145 (progn
6146 (forward-char)
6147 t))))
6148 (while (progn
6149 (c-forward-syntactic-ws)
6150 (setq pos (point))
6151 (looking-at c-opt-type-modifier-key))
6152 (goto-char (match-end 1))))))
6153
6154 ((looking-at c-overloadable-operators-regexp)
6155 ;; Got some other operator.
6156 (setq c-last-identifier-range
6157 (cons (point) (match-end 0)))
6158 (goto-char (match-end 0))
6159 (c-forward-syntactic-ws)
6160 (setq pos (point)
6161 res 'operator)))
6162
6163 nil)
6164
6165 ;; `id-start' is equal to `id-end' if we've jumped over
6166 ;; an identifier that doesn't end with a symbol token.
6167 ;; That can occur e.g. for Java import directives on the
6168 ;; form "foo.bar.*".
6169 (when (and id-start (/= id-start id-end))
6170 (setq c-last-identifier-range
6171 (cons id-start id-end)))
6172 (goto-char id-end)
6173 (c-forward-syntactic-ws)
6174 (setq pos (point)
6175 res t)))
6176
6177 (progn
6178 (goto-char pos)
6179 (when (or c-opt-identifier-concat-key
6180 c-recognize-<>-arglists)
6181
6182 (cond
6183 ((and c-opt-identifier-concat-key
6184 (looking-at c-opt-identifier-concat-key))
6185 ;; Got a concatenated identifier. This handles the
6186 ;; cases with tricky syntactic whitespace that aren't
6187 ;; covered in `c-identifier-key'.
6188 (goto-char (match-end 0))
6189 (c-forward-syntactic-ws)
6190 t)
6191
6192 ((and c-recognize-<>-arglists
6193 (eq (char-after) ?<))
6194 ;; Maybe an angle bracket arglist.
6195 (when (let ((c-record-type-identifiers t)
6196 (c-record-found-types t))
6197 (c-forward-<>-arglist nil))
6198
6199 (c-add-type start (1+ pos))
6200 (c-forward-syntactic-ws)
6201 (setq pos (point)
6202 c-last-identifier-range nil)
6203
6204 (if (and c-opt-identifier-concat-key
6205 (looking-at c-opt-identifier-concat-key))
6206
6207 ;; Continue if there's an identifier concatenation
6208 ;; operator after the template argument.
6209 (progn
6210 (when (and c-record-type-identifiers id-start)
6211 (c-record-ref-id (cons id-start id-end)))
6212 (forward-char 2)
6213 (c-forward-syntactic-ws)
6214 t)
6215
6216 (when (and c-record-type-identifiers id-start)
6217 (c-record-type-id (cons id-start id-end)))
6218 (setq res 'template)
6219 nil)))
6220 )))))
6221
6222 (goto-char pos)
6223 res))
6224
6225 (defun c-forward-type (&optional brace-block-too)
6226 ;; Move forward over a type spec if at the beginning of one,
6227 ;; stopping at the next following token. The keyword "typedef"
6228 ;; isn't part of a type spec here.
6229 ;;
6230 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6231 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6232 ;; The current (2009-03-10) intention is to convert all uses of
6233 ;; `c-forward-type' to call with this parameter set, then to
6234 ;; eliminate it.
6235 ;;
6236 ;; Return
6237 ;; o - t if it's a known type that can't be a name or other
6238 ;; expression;
6239 ;; o - 'known if it's an otherwise known type (according to
6240 ;; `*-font-lock-extra-types');
6241 ;; o - 'prefix if it's a known prefix of a type;
6242 ;; o - 'found if it's a type that matches one in `c-found-types';
6243 ;; o - 'maybe if it's an identifier that might be a type; or
6244 ;; o - nil if it can't be a type (the point isn't moved then).
6245 ;;
6246 ;; The point is assumed to be at the beginning of a token.
6247 ;;
6248 ;; Note that this function doesn't skip past the brace definition
6249 ;; that might be considered part of the type, e.g.
6250 ;; "enum {a, b, c} foo".
6251 ;;
6252 ;; This function records identifier ranges on
6253 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6254 ;; `c-record-type-identifiers' is non-nil.
6255 ;;
6256 ;; This function might do hidden buffer changes.
6257 (when (and c-recognize-<>-arglists
6258 (looking-at "<"))
6259 (c-forward-<>-arglist t)
6260 (c-forward-syntactic-ws))
6261
6262 (let ((start (point)) pos res name-res id-start id-end id-range)
6263
6264 ;; Skip leading type modifiers. If any are found we know it's a
6265 ;; prefix of a type.
6266 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6267 (while (looking-at c-opt-type-modifier-key)
6268 (goto-char (match-end 1))
6269 (c-forward-syntactic-ws)
6270 (setq res 'prefix)))
6271
6272 (cond
6273 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6274 ; "typedef".
6275 (goto-char (match-end 1))
6276 (c-forward-syntactic-ws)
6277 (setq pos (point))
6278
6279 (setq name-res (c-forward-name))
6280 (setq res (not (null name-res)))
6281 (when (eq name-res t)
6282 ;; In many languages the name can be used without the
6283 ;; prefix, so we add it to `c-found-types'.
6284 (c-add-type pos (point))
6285 (when (and c-record-type-identifiers
6286 c-last-identifier-range)
6287 (c-record-type-id c-last-identifier-range)))
6288 (when (and brace-block-too
6289 (memq res '(t nil))
6290 (eq (char-after) ?\{)
6291 (save-excursion
6292 (c-safe
6293 (progn (c-forward-sexp)
6294 (c-forward-syntactic-ws)
6295 (setq pos (point))))))
6296 (goto-char pos)
6297 (setq res t))
6298 (unless res (goto-char start))) ; invalid syntax
6299
6300 ((progn
6301 (setq pos nil)
6302 (if (looking-at c-identifier-start)
6303 (save-excursion
6304 (setq id-start (point)
6305 name-res (c-forward-name))
6306 (when name-res
6307 (setq id-end (point)
6308 id-range c-last-identifier-range))))
6309 (and (cond ((looking-at c-primitive-type-key)
6310 (setq res t))
6311 ((c-with-syntax-table c-identifier-syntax-table
6312 (looking-at c-known-type-key))
6313 (setq res 'known)))
6314 (or (not id-end)
6315 (>= (save-excursion
6316 (save-match-data
6317 (goto-char (match-end 1))
6318 (c-forward-syntactic-ws)
6319 (setq pos (point))))
6320 id-end)
6321 (setq res nil))))
6322 ;; Looking at a primitive or known type identifier. We've
6323 ;; checked for a name first so that we don't go here if the
6324 ;; known type match only is a prefix of another name.
6325
6326 (setq id-end (match-end 1))
6327
6328 (when (and c-record-type-identifiers
6329 (or c-promote-possible-types (eq res t)))
6330 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6331
6332 (if (and c-opt-type-component-key
6333 (save-match-data
6334 (looking-at c-opt-type-component-key)))
6335 ;; There might be more keywords for the type.
6336 (let (safe-pos)
6337 (c-forward-keyword-clause 1)
6338 (while (progn
6339 (setq safe-pos (point))
6340 (looking-at c-opt-type-component-key))
6341 (when (and c-record-type-identifiers
6342 (looking-at c-primitive-type-key))
6343 (c-record-type-id (cons (match-beginning 1)
6344 (match-end 1))))
6345 (c-forward-keyword-clause 1))
6346 (if (looking-at c-primitive-type-key)
6347 (progn
6348 (when c-record-type-identifiers
6349 (c-record-type-id (cons (match-beginning 1)
6350 (match-end 1))))
6351 (c-forward-keyword-clause 1)
6352 (setq res t))
6353 (goto-char safe-pos)
6354 (setq res 'prefix)))
6355 (unless (save-match-data (c-forward-keyword-clause 1))
6356 (if pos
6357 (goto-char pos)
6358 (goto-char (match-end 1))
6359 (c-forward-syntactic-ws)))))
6360
6361 (name-res
6362 (cond ((eq name-res t)
6363 ;; A normal identifier.
6364 (goto-char id-end)
6365 (if (or res c-promote-possible-types)
6366 (progn
6367 (c-add-type id-start id-end)
6368 (when (and c-record-type-identifiers id-range)
6369 (c-record-type-id id-range))
6370 (unless res
6371 (setq res 'found)))
6372 (setq res (if (c-check-type id-start id-end)
6373 ;; It's an identifier that has been used as
6374 ;; a type somewhere else.
6375 'found
6376 ;; It's an identifier that might be a type.
6377 'maybe))))
6378 ((eq name-res 'template)
6379 ;; A template is a type.
6380 (goto-char id-end)
6381 (setq res t))
6382 (t
6383 ;; Otherwise it's an operator identifier, which is not a type.
6384 (goto-char start)
6385 (setq res nil)))))
6386
6387 (when res
6388 ;; Skip trailing type modifiers. If any are found we know it's
6389 ;; a type.
6390 (when c-opt-type-modifier-key
6391 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
6392 (goto-char (match-end 1))
6393 (c-forward-syntactic-ws)
6394 (setq res t)))
6395 ;; Step over any type suffix operator. Do not let the existence
6396 ;; of these alter the classification of the found type, since
6397 ;; these operators typically are allowed in normal expressions
6398 ;; too.
6399 (when c-opt-type-suffix-key
6400 (while (looking-at c-opt-type-suffix-key)
6401 (goto-char (match-end 1))
6402 (c-forward-syntactic-ws)))
6403
6404 (when c-opt-type-concat-key ; Only/mainly for pike.
6405 ;; Look for a trailing operator that concatenates the type
6406 ;; with a following one, and if so step past that one through
6407 ;; a recursive call. Note that we don't record concatenated
6408 ;; types in `c-found-types' - it's the component types that
6409 ;; are recorded when appropriate.
6410 (setq pos (point))
6411 (let* ((c-promote-possible-types (or (memq res '(t known))
6412 c-promote-possible-types))
6413 ;; If we can't promote then set `c-record-found-types' so that
6414 ;; we can merge in the types from the second part afterwards if
6415 ;; it turns out to be a known type there.
6416 (c-record-found-types (and c-record-type-identifiers
6417 (not c-promote-possible-types)))
6418 subres)
6419 (if (and (looking-at c-opt-type-concat-key)
6420
6421 (progn
6422 (goto-char (match-end 1))
6423 (c-forward-syntactic-ws)
6424 (setq subres (c-forward-type))))
6425
6426 (progn
6427 ;; If either operand certainly is a type then both are, but we
6428 ;; don't let the existence of the operator itself promote two
6429 ;; uncertain types to a certain one.
6430 (cond ((eq res t))
6431 ((eq subres t)
6432 (unless (eq name-res 'template)
6433 (c-add-type id-start id-end))
6434 (when (and c-record-type-identifiers id-range)
6435 (c-record-type-id id-range))
6436 (setq res t))
6437 ((eq res 'known))
6438 ((eq subres 'known)
6439 (setq res 'known))
6440 ((eq res 'found))
6441 ((eq subres 'found)
6442 (setq res 'found))
6443 (t
6444 (setq res 'maybe)))
6445
6446 (when (and (eq res t)
6447 (consp c-record-found-types))
6448 ;; Merge in the ranges of any types found by the second
6449 ;; `c-forward-type'.
6450 (setq c-record-type-identifiers
6451 ;; `nconc' doesn't mind that the tail of
6452 ;; `c-record-found-types' is t.
6453 (nconc c-record-found-types
6454 c-record-type-identifiers))))
6455
6456 (goto-char pos))))
6457
6458 (when (and c-record-found-types (memq res '(known found)) id-range)
6459 (setq c-record-found-types
6460 (cons id-range c-record-found-types))))
6461
6462 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
6463
6464 res))
6465
6466 (defun c-forward-annotation ()
6467 ;; Used for Java code only at the moment. Assumes point is on the
6468 ;; @, moves forward an annotation. returns nil if there is no
6469 ;; annotation at point.
6470 (and (looking-at "@")
6471 (progn (forward-char) t)
6472 (c-forward-type)
6473 (progn (c-forward-syntactic-ws) t)
6474 (if (looking-at "(")
6475 (c-go-list-forward)
6476 t)))
6477
6478 \f
6479 ;; Handling of large scale constructs like statements and declarations.
6480
6481 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
6482 ;; defsubst or perhaps even a defun, but it contains lots of free
6483 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
6484 (defmacro c-fdoc-shift-type-backward (&optional short)
6485 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
6486 ;; of types when parsing a declaration, which means that it
6487 ;; sometimes consumes the identifier in the declaration as a type.
6488 ;; This is used to "backtrack" and make the last type be treated as
6489 ;; an identifier instead.
6490 `(progn
6491 ,(unless short
6492 ;; These identifiers are bound only in the inner let.
6493 '(setq identifier-type at-type
6494 identifier-start type-start
6495 got-parens nil
6496 got-identifier t
6497 got-suffix t
6498 got-suffix-after-parens id-start
6499 paren-depth 0))
6500
6501 (if (setq at-type (if (eq backup-at-type 'prefix)
6502 t
6503 backup-at-type))
6504 (setq type-start backup-type-start
6505 id-start backup-id-start)
6506 (setq type-start start-pos
6507 id-start start-pos))
6508
6509 ;; When these flags already are set we've found specifiers that
6510 ;; unconditionally signal these attributes - backtracking doesn't
6511 ;; change that. So keep them set in that case.
6512 (or at-type-decl
6513 (setq at-type-decl backup-at-type-decl))
6514 (or maybe-typeless
6515 (setq maybe-typeless backup-maybe-typeless))
6516
6517 ,(unless short
6518 ;; This identifier is bound only in the inner let.
6519 '(setq start id-start))))
6520
6521 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
6522 ;; Move forward over a declaration or a cast if at the start of one.
6523 ;; The point is assumed to be at the start of some token. Nil is
6524 ;; returned if no declaration or cast is recognized, and the point
6525 ;; is clobbered in that case.
6526 ;;
6527 ;; If a declaration is parsed:
6528 ;;
6529 ;; The point is left at the first token after the first complete
6530 ;; declarator, if there is one. The return value is a cons where
6531 ;; the car is the position of the first token in the declarator. (See
6532 ;; below for the cdr.)
6533 ;; Some examples:
6534 ;;
6535 ;; void foo (int a, char *b) stuff ...
6536 ;; car ^ ^ point
6537 ;; float (*a)[], b;
6538 ;; car ^ ^ point
6539 ;; unsigned int a = c_style_initializer, b;
6540 ;; car ^ ^ point
6541 ;; unsigned int a (cplusplus_style_initializer), b;
6542 ;; car ^ ^ point (might change)
6543 ;; class Foo : public Bar {}
6544 ;; car ^ ^ point
6545 ;; class PikeClass (int a, string b) stuff ...
6546 ;; car ^ ^ point
6547 ;; enum bool;
6548 ;; car ^ ^ point
6549 ;; enum bool flag;
6550 ;; car ^ ^ point
6551 ;; void cplusplus_function (int x) throw (Bad);
6552 ;; car ^ ^ point
6553 ;; Foo::Foo (int b) : Base (b) {}
6554 ;; car ^ ^ point
6555 ;;
6556 ;; The cdr of the return value is non-nil when a
6557 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
6558 ;; Specifically it is a dotted pair (A . B) where B is t when a
6559 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
6560 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
6561 ;; specifier is present. I.e., (some of) the declared
6562 ;; identifier(s) are types.
6563 ;;
6564 ;; If a cast is parsed:
6565 ;;
6566 ;; The point is left at the first token after the closing paren of
6567 ;; the cast. The return value is `cast'. Note that the start
6568 ;; position must be at the first token inside the cast parenthesis
6569 ;; to recognize it.
6570 ;;
6571 ;; PRECEDING-TOKEN-END is the first position after the preceding
6572 ;; token, i.e. on the other side of the syntactic ws from the point.
6573 ;; Use a value less than or equal to (point-min) if the point is at
6574 ;; the first token in (the visible part of) the buffer.
6575 ;;
6576 ;; CONTEXT is a symbol that describes the context at the point:
6577 ;; 'decl In a comma-separated declaration context (typically
6578 ;; inside a function declaration arglist).
6579 ;; '<> In an angle bracket arglist.
6580 ;; 'arglist Some other type of arglist.
6581 ;; nil Some other context or unknown context. Includes
6582 ;; within the parens of an if, for, ... construct.
6583 ;;
6584 ;; LAST-CAST-END is the first token after the closing paren of a
6585 ;; preceding cast, or nil if none is known. If
6586 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
6587 ;; the position after the closest preceding call where a cast was
6588 ;; matched. In that case it's used to discover chains of casts like
6589 ;; "(a) (b) c".
6590 ;;
6591 ;; This function records identifier ranges on
6592 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6593 ;; `c-record-type-identifiers' is non-nil.
6594 ;;
6595 ;; This function might do hidden buffer changes.
6596
6597 (let (;; `start-pos' is used below to point to the start of the
6598 ;; first type, i.e. after any leading specifiers. It might
6599 ;; also point at the beginning of the preceding syntactic
6600 ;; whitespace.
6601 (start-pos (point))
6602 ;; Set to the result of `c-forward-type'.
6603 at-type
6604 ;; The position of the first token in what we currently
6605 ;; believe is the type in the declaration or cast, after any
6606 ;; specifiers and their associated clauses.
6607 type-start
6608 ;; The position of the first token in what we currently
6609 ;; believe is the declarator for the first identifier. Set
6610 ;; when the type is found, and moved forward over any
6611 ;; `c-decl-hangon-kwds' and their associated clauses that
6612 ;; occurs after the type.
6613 id-start
6614 ;; These store `at-type', `type-start' and `id-start' of the
6615 ;; identifier before the one in those variables. The previous
6616 ;; identifier might turn out to be the real type in a
6617 ;; declaration if the last one has to be the declarator in it.
6618 ;; If `backup-at-type' is nil then the other variables have
6619 ;; undefined values.
6620 backup-at-type backup-type-start backup-id-start
6621 ;; Set if we've found a specifier (apart from "typedef") that makes
6622 ;; the defined identifier(s) types.
6623 at-type-decl
6624 ;; Set if we've a "typedef" keyword.
6625 at-typedef
6626 ;; Set if we've found a specifier that can start a declaration
6627 ;; where there's no type.
6628 maybe-typeless
6629 ;; If a specifier is found that also can be a type prefix,
6630 ;; these flags are set instead of those above. If we need to
6631 ;; back up an identifier, they are copied to the real flag
6632 ;; variables. Thus they only take effect if we fail to
6633 ;; interpret it as a type.
6634 backup-at-type-decl backup-maybe-typeless
6635 ;; Whether we've found a declaration or a cast. We might know
6636 ;; this before we've found the type in it. It's 'ids if we've
6637 ;; found two consecutive identifiers (usually a sure sign, but
6638 ;; we should allow that in labels too), and t if we've found a
6639 ;; specifier keyword (a 100% sure sign).
6640 at-decl-or-cast
6641 ;; Set when we need to back up to parse this as a declaration
6642 ;; but not as a cast.
6643 backup-if-not-cast
6644 ;; For casts, the return position.
6645 cast-end
6646 ;; Save `c-record-type-identifiers' and
6647 ;; `c-record-ref-identifiers' since ranges are recorded
6648 ;; speculatively and should be thrown away if it turns out
6649 ;; that it isn't a declaration or cast.
6650 (save-rec-type-ids c-record-type-identifiers)
6651 (save-rec-ref-ids c-record-ref-identifiers))
6652
6653 (while (c-forward-annotation)
6654 (c-forward-syntactic-ws))
6655
6656 ;; Check for a type. Unknown symbols are treated as possible
6657 ;; types, but they could also be specifiers disguised through
6658 ;; macros like __INLINE__, so we recognize both types and known
6659 ;; specifiers after them too.
6660 (while
6661 (let* ((start (point)) kwd-sym kwd-clause-end found-type)
6662
6663 ;; Look for a specifier keyword clause.
6664 (when (or (looking-at c-prefix-spec-kwds-re)
6665 (and (c-major-mode-is 'java-mode)
6666 (looking-at "@[A-Za-z0-9]+")))
6667 (if (looking-at c-typedef-key)
6668 (setq at-typedef t))
6669 (setq kwd-sym (c-keyword-sym (match-string 1)))
6670 (save-excursion
6671 (c-forward-keyword-clause 1)
6672 (setq kwd-clause-end (point))))
6673
6674 (when (setq found-type (c-forward-type t)) ; brace-block-too
6675 ;; Found a known or possible type or a prefix of a known type.
6676
6677 (when at-type
6678 ;; Got two identifiers with nothing but whitespace
6679 ;; between them. That can only happen in declarations.
6680 (setq at-decl-or-cast 'ids)
6681
6682 (when (eq at-type 'found)
6683 ;; If the previous identifier is a found type we
6684 ;; record it as a real one; it might be some sort of
6685 ;; alias for a prefix like "unsigned".
6686 (save-excursion
6687 (goto-char type-start)
6688 (let ((c-promote-possible-types t))
6689 (c-forward-type)))))
6690
6691 (setq backup-at-type at-type
6692 backup-type-start type-start
6693 backup-id-start id-start
6694 at-type found-type
6695 type-start start
6696 id-start (point)
6697 ;; The previous ambiguous specifier/type turned out
6698 ;; to be a type since we've parsed another one after
6699 ;; it, so clear these backup flags.
6700 backup-at-type-decl nil
6701 backup-maybe-typeless nil))
6702
6703 (if kwd-sym
6704 (progn
6705 ;; Handle known specifier keywords and
6706 ;; `c-decl-hangon-kwds' which can occur after known
6707 ;; types.
6708
6709 (if (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
6710 ;; It's a hang-on keyword that can occur anywhere.
6711 (progn
6712 (setq at-decl-or-cast t)
6713 (if at-type
6714 ;; Move the identifier start position if
6715 ;; we've passed a type.
6716 (setq id-start kwd-clause-end)
6717 ;; Otherwise treat this as a specifier and
6718 ;; move the fallback position.
6719 (setq start-pos kwd-clause-end))
6720 (goto-char kwd-clause-end))
6721
6722 ;; It's an ordinary specifier so we know that
6723 ;; anything before this can't be the type.
6724 (setq backup-at-type nil
6725 start-pos kwd-clause-end)
6726
6727 (if found-type
6728 ;; It's ambiguous whether this keyword is a
6729 ;; specifier or a type prefix, so set the backup
6730 ;; flags. (It's assumed that `c-forward-type'
6731 ;; moved further than `c-forward-keyword-clause'.)
6732 (progn
6733 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6734 (setq backup-at-type-decl t))
6735 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6736 (setq backup-maybe-typeless t)))
6737
6738 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
6739 ;; This test only happens after we've scanned a type.
6740 ;; So, with valid syntax, kwd-sym can't be 'typedef.
6741 (setq at-type-decl t))
6742 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
6743 (setq maybe-typeless t))
6744
6745 ;; Haven't matched a type so it's an unambiguous
6746 ;; specifier keyword and we know we're in a
6747 ;; declaration.
6748 (setq at-decl-or-cast t)
6749
6750 (goto-char kwd-clause-end))))
6751
6752 ;; If the type isn't known we continue so that we'll jump
6753 ;; over all specifiers and type identifiers. The reason
6754 ;; to do this for a known type prefix is to make things
6755 ;; like "unsigned INT16" work.
6756 (and found-type (not (eq found-type t))))))
6757
6758 (cond
6759 ((eq at-type t)
6760 ;; If a known type was found, we still need to skip over any
6761 ;; hangon keyword clauses after it. Otherwise it has already
6762 ;; been done in the loop above.
6763 (while (looking-at c-decl-hangon-key)
6764 (c-forward-keyword-clause 1))
6765 (setq id-start (point)))
6766
6767 ((eq at-type 'prefix)
6768 ;; A prefix type is itself a primitive type when it's not
6769 ;; followed by another type.
6770 (setq at-type t))
6771
6772 ((not at-type)
6773 ;; Got no type but set things up to continue anyway to handle
6774 ;; the various cases when a declaration doesn't start with a
6775 ;; type.
6776 (setq id-start start-pos))
6777
6778 ((and (eq at-type 'maybe)
6779 (c-major-mode-is 'c++-mode))
6780 ;; If it's C++ then check if the last "type" ends on the form
6781 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
6782 ;; (con|de)structor.
6783 (save-excursion
6784 (let (name end-2 end-1)
6785 (goto-char id-start)
6786 (c-backward-syntactic-ws)
6787 (setq end-2 (point))
6788 (when (and
6789 (c-simple-skip-symbol-backward)
6790 (progn
6791 (setq name
6792 (buffer-substring-no-properties (point) end-2))
6793 ;; Cheating in the handling of syntactic ws below.
6794 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
6795 (progn
6796 (setq end-1 (point))
6797 (c-simple-skip-symbol-backward))
6798 (>= (point) type-start)
6799 (equal (buffer-substring-no-properties (point) end-1)
6800 name))
6801 ;; It is a (con|de)structor name. In that case the
6802 ;; declaration is typeless so zap out any preceding
6803 ;; identifier(s) that we might have taken as types.
6804 (goto-char type-start)
6805 (setq at-type nil
6806 backup-at-type nil
6807 id-start type-start))))))
6808
6809 ;; Check for and step over a type decl expression after the thing
6810 ;; that is or might be a type. This can't be skipped since we
6811 ;; need the correct end position of the declarator for
6812 ;; `max-type-decl-end-*'.
6813 (let ((start (point)) (paren-depth 0) pos
6814 ;; True if there's a non-open-paren match of
6815 ;; `c-type-decl-prefix-key'.
6816 got-prefix
6817 ;; True if the declarator is surrounded by a parenthesis pair.
6818 got-parens
6819 ;; True if there is an identifier in the declarator.
6820 got-identifier
6821 ;; True if there's a non-close-paren match of
6822 ;; `c-type-decl-suffix-key'.
6823 got-suffix
6824 ;; True if there's a prefix match outside the outermost
6825 ;; paren pair that surrounds the declarator.
6826 got-prefix-before-parens
6827 ;; True if there's a suffix match outside the outermost
6828 ;; paren pair that surrounds the declarator. The value is
6829 ;; the position of the first suffix match.
6830 got-suffix-after-parens
6831 ;; True if we've parsed the type decl to a token that is
6832 ;; known to end declarations in this context.
6833 at-decl-end
6834 ;; The earlier values of `at-type' and `type-start' if we've
6835 ;; shifted the type backwards.
6836 identifier-type identifier-start
6837 ;; If `c-parse-and-markup-<>-arglists' is set we need to
6838 ;; turn it off during the name skipping below to avoid
6839 ;; getting `c-type' properties that might be bogus. That
6840 ;; can happen since we don't know if
6841 ;; `c-restricted-<>-arglists' will be correct inside the
6842 ;; arglist paren that gets entered.
6843 c-parse-and-markup-<>-arglists)
6844
6845 (goto-char id-start)
6846
6847 ;; Skip over type decl prefix operators. (Note similar code in
6848 ;; `c-font-lock-declarators'.)
6849 (while (and (looking-at c-type-decl-prefix-key)
6850 (if (and (c-major-mode-is 'c++-mode)
6851 (match-beginning 3))
6852 ;; If the second submatch matches in C++ then
6853 ;; we're looking at an identifier that's a
6854 ;; prefix only if it specifies a member pointer.
6855 (when (setq got-identifier (c-forward-name))
6856 (if (looking-at "\\(::\\)")
6857 ;; We only check for a trailing "::" and
6858 ;; let the "*" that should follow be
6859 ;; matched in the next round.
6860 (progn (setq got-identifier nil) t)
6861 ;; It turned out to be the real identifier,
6862 ;; so stop.
6863 nil))
6864 t))
6865
6866 (if (eq (char-after) ?\()
6867 (progn
6868 (setq paren-depth (1+ paren-depth))
6869 (forward-char))
6870 (unless got-prefix-before-parens
6871 (setq got-prefix-before-parens (= paren-depth 0)))
6872 (setq got-prefix t)
6873 (goto-char (match-end 1)))
6874 (c-forward-syntactic-ws))
6875
6876 (setq got-parens (> paren-depth 0))
6877
6878 ;; Skip over an identifier.
6879 (or got-identifier
6880 (and (looking-at c-identifier-start)
6881 (setq got-identifier (c-forward-name))))
6882
6883 ;; Skip over type decl suffix operators.
6884 (while (if (looking-at c-type-decl-suffix-key)
6885
6886 (if (eq (char-after) ?\))
6887 (when (> paren-depth 0)
6888 (setq paren-depth (1- paren-depth))
6889 (forward-char)
6890 t)
6891 (when (if (save-match-data (looking-at "\\s\("))
6892 (c-safe (c-forward-sexp 1) t)
6893 (goto-char (match-end 1))
6894 t)
6895 (when (and (not got-suffix-after-parens)
6896 (= paren-depth 0))
6897 (setq got-suffix-after-parens (match-beginning 0)))
6898 (setq got-suffix t)))
6899
6900 ;; No suffix matched. We might have matched the
6901 ;; identifier as a type and the open paren of a
6902 ;; function arglist as a type decl prefix. In that
6903 ;; case we should "backtrack": Reinterpret the last
6904 ;; type as the identifier, move out of the arglist and
6905 ;; continue searching for suffix operators.
6906 ;;
6907 ;; Do this even if there's no preceding type, to cope
6908 ;; with old style function declarations in K&R C,
6909 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
6910 ;; style declarations. That isn't applicable in an
6911 ;; arglist context, though.
6912 (when (and (= paren-depth 1)
6913 (not got-prefix-before-parens)
6914 (not (eq at-type t))
6915 (or backup-at-type
6916 maybe-typeless
6917 backup-maybe-typeless
6918 (when c-recognize-typeless-decls
6919 (not context)))
6920 (setq pos (c-up-list-forward (point)))
6921 (eq (char-before pos) ?\)))
6922 (c-fdoc-shift-type-backward)
6923 (goto-char pos)
6924 t))
6925
6926 (c-forward-syntactic-ws))
6927
6928 (when (and (or maybe-typeless backup-maybe-typeless)
6929 (not got-identifier)
6930 (not got-prefix)
6931 at-type)
6932 ;; Have found no identifier but `c-typeless-decl-kwds' has
6933 ;; matched so we know we're inside a declaration. The
6934 ;; preceding type must be the identifier instead.
6935 (c-fdoc-shift-type-backward))
6936
6937 (setq
6938 at-decl-or-cast
6939 (catch 'at-decl-or-cast
6940
6941 ;; CASE 1
6942 (when (> paren-depth 0)
6943 ;; Encountered something inside parens that isn't matched by
6944 ;; the `c-type-decl-*' regexps, so it's not a type decl
6945 ;; expression. Try to skip out to the same paren depth to
6946 ;; not confuse the cast check below.
6947 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
6948 ;; If we've found a specifier keyword then it's a
6949 ;; declaration regardless.
6950 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
6951
6952 (setq at-decl-end
6953 (looking-at (cond ((eq context '<>) "[,>]")
6954 (context "[,\)]")
6955 (t "[,;]"))))
6956
6957 ;; Now we've collected info about various characteristics of
6958 ;; the construct we're looking at. Below follows a decision
6959 ;; tree based on that. It's ordered to check more certain
6960 ;; signs before less certain ones.
6961
6962 (if got-identifier
6963 (progn
6964
6965 ;; CASE 2
6966 (when (and (or at-type maybe-typeless)
6967 (not (or got-prefix got-parens)))
6968 ;; Got another identifier directly after the type, so it's a
6969 ;; declaration.
6970 (throw 'at-decl-or-cast t))
6971
6972 (when (and got-parens
6973 (not got-prefix)
6974 (not got-suffix-after-parens)
6975 (or backup-at-type
6976 maybe-typeless
6977 backup-maybe-typeless))
6978 ;; Got a declaration of the form "foo bar (gnu);" where we've
6979 ;; recognized "bar" as the type and "gnu" as the declarator.
6980 ;; In this case it's however more likely that "bar" is the
6981 ;; declarator and "gnu" a function argument or initializer (if
6982 ;; `c-recognize-paren-inits' is set), since the parens around
6983 ;; "gnu" would be superfluous if it's a declarator. Shift the
6984 ;; type one step backward.
6985 (c-fdoc-shift-type-backward)))
6986
6987 ;; Found no identifier.
6988
6989 (if backup-at-type
6990 (progn
6991
6992
6993 ;; CASE 3
6994 (when (= (point) start)
6995 ;; Got a plain list of identifiers. If a colon follows it's
6996 ;; a valid label, or maybe a bitfield. Otherwise the last
6997 ;; one probably is the declared identifier and we should
6998 ;; back up to the previous type, providing it isn't a cast.
6999 (if (and (eq (char-after) ?:)
7000 (not (c-major-mode-is 'java-mode)))
7001 (cond
7002 ;; If we've found a specifier keyword then it's a
7003 ;; declaration regardless.
7004 ((eq at-decl-or-cast t)
7005 (throw 'at-decl-or-cast t))
7006 ((and c-has-bitfields
7007 (eq at-decl-or-cast 'ids)) ; bitfield.
7008 (setq backup-if-not-cast t)
7009 (throw 'at-decl-or-cast t)))
7010
7011 (setq backup-if-not-cast t)
7012 (throw 'at-decl-or-cast t)))
7013
7014 ;; CASE 4
7015 (when (and got-suffix
7016 (not got-prefix)
7017 (not got-parens))
7018 ;; Got a plain list of identifiers followed by some suffix.
7019 ;; If this isn't a cast then the last identifier probably is
7020 ;; the declared one and we should back up to the previous
7021 ;; type.
7022 (setq backup-if-not-cast t)
7023 (throw 'at-decl-or-cast t)))
7024
7025 ;; CASE 5
7026 (when (eq at-type t)
7027 ;; If the type is known we know that there can't be any
7028 ;; identifier somewhere else, and it's only in declarations in
7029 ;; e.g. function prototypes and in casts that the identifier may
7030 ;; be left out.
7031 (throw 'at-decl-or-cast t))
7032
7033 (when (= (point) start)
7034 ;; Only got a single identifier (parsed as a type so far).
7035 ;; CASE 6
7036 (if (and
7037 ;; Check that the identifier isn't at the start of an
7038 ;; expression.
7039 at-decl-end
7040 (cond
7041 ((eq context 'decl)
7042 ;; Inside an arglist that contains declarations. If K&R
7043 ;; style declarations and parenthesis style initializers
7044 ;; aren't allowed then the single identifier must be a
7045 ;; type, else we require that it's known or found
7046 ;; (primitive types are handled above).
7047 (or (and (not c-recognize-knr-p)
7048 (not c-recognize-paren-inits))
7049 (memq at-type '(known found))))
7050 ((eq context '<>)
7051 ;; Inside a template arglist. Accept known and found
7052 ;; types; other identifiers could just as well be
7053 ;; constants in C++.
7054 (memq at-type '(known found)))))
7055 (throw 'at-decl-or-cast t)
7056 ;; CASE 7
7057 ;; Can't be a valid declaration or cast, but if we've found a
7058 ;; specifier it can't be anything else either, so treat it as
7059 ;; an invalid/unfinished declaration or cast.
7060 (throw 'at-decl-or-cast at-decl-or-cast))))
7061
7062 (if (and got-parens
7063 (not got-prefix)
7064 (not context)
7065 (not (eq at-type t))
7066 (or backup-at-type
7067 maybe-typeless
7068 backup-maybe-typeless
7069 (when c-recognize-typeless-decls
7070 (or (not got-suffix)
7071 (not (looking-at
7072 c-after-suffixed-type-maybe-decl-key))))))
7073 ;; Got an empty paren pair and a preceding type that probably
7074 ;; really is the identifier. Shift the type backwards to make
7075 ;; the last one the identifier. This is analogous to the
7076 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
7077 ;; above.
7078 ;;
7079 ;; Exception: In addition to the conditions in that
7080 ;; "backtracking" code, do not shift backward if we're not
7081 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
7082 ;; Since there's no preceding type, the shift would mean that
7083 ;; the declaration is typeless. But if the regexp doesn't match
7084 ;; then we will simply fall through in the tests below and not
7085 ;; recognize it at all, so it's better to try it as an abstract
7086 ;; declarator instead.
7087 (c-fdoc-shift-type-backward)
7088
7089 ;; Still no identifier.
7090 ;; CASE 8
7091 (when (and got-prefix (or got-parens got-suffix))
7092 ;; Require `got-prefix' together with either `got-parens' or
7093 ;; `got-suffix' to recognize it as an abstract declarator:
7094 ;; `got-parens' only is probably an empty function call.
7095 ;; `got-suffix' only can build an ordinary expression together
7096 ;; with the preceding identifier which we've taken as a type.
7097 ;; We could actually accept on `got-prefix' only, but that can
7098 ;; easily occur temporarily while writing an expression so we
7099 ;; avoid that case anyway. We could do a better job if we knew
7100 ;; the point when the fontification was invoked.
7101 (throw 'at-decl-or-cast t))
7102
7103 ;; CASE 9
7104 (when (and at-type
7105 (not got-prefix)
7106 (not got-parens)
7107 got-suffix-after-parens
7108 (eq (char-after got-suffix-after-parens) ?\())
7109 ;; Got a type, no declarator but a paren suffix. I.e. it's a
7110 ;; normal function call after all (or perhaps a C++ style object
7111 ;; instantiation expression).
7112 (throw 'at-decl-or-cast nil))))
7113
7114 ;; CASE 10
7115 (when at-decl-or-cast
7116 ;; By now we've located the type in the declaration that we know
7117 ;; we're in.
7118 (throw 'at-decl-or-cast t))
7119
7120 ;; CASE 11
7121 (when (and got-identifier
7122 (not context)
7123 (looking-at c-after-suffixed-type-decl-key)
7124 (if (and got-parens
7125 (not got-prefix)
7126 (not got-suffix)
7127 (not (eq at-type t)))
7128 ;; Shift the type backward in the case that there's a
7129 ;; single identifier inside parens. That can only
7130 ;; occur in K&R style function declarations so it's
7131 ;; more likely that it really is a function call.
7132 ;; Therefore we only do this after
7133 ;; `c-after-suffixed-type-decl-key' has matched.
7134 (progn (c-fdoc-shift-type-backward) t)
7135 got-suffix-after-parens))
7136 ;; A declaration according to `c-after-suffixed-type-decl-key'.
7137 (throw 'at-decl-or-cast t))
7138
7139 ;; CASE 12
7140 (when (and (or got-prefix (not got-parens))
7141 (memq at-type '(t known)))
7142 ;; It's a declaration if a known type precedes it and it can't be a
7143 ;; function call.
7144 (throw 'at-decl-or-cast t))
7145
7146 ;; If we get here we can't tell if this is a type decl or a normal
7147 ;; expression by looking at it alone. (That's under the assumption
7148 ;; that normal expressions always can look like type decl expressions,
7149 ;; which isn't really true but the cases where it doesn't hold are so
7150 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
7151 ;; the effort to look for them.)
7152
7153 (unless (or at-decl-end (looking-at "=[^=]"))
7154 ;; If this is a declaration it should end here or its initializer(*)
7155 ;; should start here, so check for allowed separation tokens. Note
7156 ;; that this rule doesn't work e.g. with a K&R arglist after a
7157 ;; function header.
7158 ;;
7159 ;; *) Don't check for C++ style initializers using parens
7160 ;; since those already have been matched as suffixes.
7161 ;;
7162 ;; If `at-decl-or-cast' is then we've found some other sign that
7163 ;; it's a declaration or cast, so then it's probably an
7164 ;; invalid/unfinished one.
7165 (throw 'at-decl-or-cast at-decl-or-cast))
7166
7167 ;; Below are tests that only should be applied when we're certain to
7168 ;; not have parsed halfway through an expression.
7169
7170 ;; CASE 14
7171 (when (memq at-type '(t known))
7172 ;; The expression starts with a known type so treat it as a
7173 ;; declaration.
7174 (throw 'at-decl-or-cast t))
7175
7176 ;; CASE 15
7177 (when (and (c-major-mode-is 'c++-mode)
7178 ;; In C++ we check if the identifier is a known type, since
7179 ;; (con|de)structors use the class name as identifier.
7180 ;; We've always shifted over the identifier as a type and
7181 ;; then backed up again in this case.
7182 identifier-type
7183 (or (memq identifier-type '(found known))
7184 (and (eq (char-after identifier-start) ?~)
7185 ;; `at-type' probably won't be 'found for
7186 ;; destructors since the "~" is then part of the
7187 ;; type name being checked against the list of
7188 ;; known types, so do a check without that
7189 ;; operator.
7190 (or (save-excursion
7191 (goto-char (1+ identifier-start))
7192 (c-forward-syntactic-ws)
7193 (c-with-syntax-table
7194 c-identifier-syntax-table
7195 (looking-at c-known-type-key)))
7196 (save-excursion
7197 (goto-char (1+ identifier-start))
7198 ;; We have already parsed the type earlier,
7199 ;; so it'd be possible to cache the end
7200 ;; position instead of redoing it here, but
7201 ;; then we'd need to keep track of another
7202 ;; position everywhere.
7203 (c-check-type (point)
7204 (progn (c-forward-type)
7205 (point))))))))
7206 (throw 'at-decl-or-cast t))
7207
7208 (if got-identifier
7209 (progn
7210 ;; CASE 16
7211 (when (and got-prefix-before-parens
7212 at-type
7213 (or at-decl-end (looking-at "=[^=]"))
7214 (not context)
7215 (not got-suffix))
7216 ;; Got something like "foo * bar;". Since we're not inside an
7217 ;; arglist it would be a meaningless expression because the
7218 ;; result isn't used. We therefore choose to recognize it as
7219 ;; a declaration. Do not allow a suffix since it could then
7220 ;; be a function call.
7221 (throw 'at-decl-or-cast t))
7222
7223 ;; CASE 17
7224 (when (and (or got-suffix-after-parens
7225 (looking-at "=[^=]"))
7226 (eq at-type 'found)
7227 (not (eq context 'arglist)))
7228 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
7229 ;; be an odd expression or it could be a declaration. Treat
7230 ;; it as a declaration if "a" has been used as a type
7231 ;; somewhere else (if it's a known type we won't get here).
7232 (throw 'at-decl-or-cast t)))
7233
7234 ;; CASE 18
7235 (when (and context
7236 (or got-prefix
7237 (and (eq context 'decl)
7238 (not c-recognize-paren-inits)
7239 (or got-parens got-suffix))))
7240 ;; Got a type followed by an abstract declarator. If `got-prefix'
7241 ;; is set it's something like "a *" without anything after it. If
7242 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
7243 ;; or similar, which we accept only if the context rules out
7244 ;; expressions.
7245 (throw 'at-decl-or-cast t)))
7246
7247 ;; If we had a complete symbol table here (which rules out
7248 ;; `c-found-types') we should return t due to the disambiguation rule
7249 ;; (in at least C++) that anything that can be parsed as a declaration
7250 ;; is a declaration. Now we're being more defensive and prefer to
7251 ;; highlight things like "foo (bar);" as a declaration only if we're
7252 ;; inside an arglist that contains declarations.
7253 (eq context 'decl))))
7254
7255 ;; The point is now after the type decl expression.
7256
7257 (cond
7258 ;; Check for a cast.
7259 ((save-excursion
7260 (and
7261 c-cast-parens
7262
7263 ;; Should be the first type/identifier in a cast paren.
7264 (> preceding-token-end (point-min))
7265 (memq (char-before preceding-token-end) c-cast-parens)
7266
7267 ;; The closing paren should follow.
7268 (progn
7269 (c-forward-syntactic-ws)
7270 (looking-at "\\s\)"))
7271
7272 ;; There should be a primary expression after it.
7273 (let (pos)
7274 (forward-char)
7275 (c-forward-syntactic-ws)
7276 (setq cast-end (point))
7277 (and (looking-at c-primary-expr-regexp)
7278 (progn
7279 (setq pos (match-end 0))
7280 (or
7281 ;; Check if the expression begins with a prefix keyword.
7282 (match-beginning 2)
7283 (if (match-beginning 1)
7284 ;; Expression begins with an ambiguous operator. Treat
7285 ;; it as a cast if it's a type decl or if we've
7286 ;; recognized the type somewhere else.
7287 (or at-decl-or-cast
7288 (memq at-type '(t known found)))
7289 ;; Unless it's a keyword, it's the beginning of a primary
7290 ;; expression.
7291 (not (looking-at c-keywords-regexp)))))
7292 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
7293 ;; that it matched a whole one so that we don't e.g. confuse
7294 ;; the operator '-' with '->'. It's ok if it matches further,
7295 ;; though, since it e.g. can match the float '.5' while the
7296 ;; operator regexp only matches '.'.
7297 (or (not (looking-at c-nonsymbol-token-regexp))
7298 (<= (match-end 0) pos))))
7299
7300 ;; There should either be a cast before it or something that isn't an
7301 ;; identifier or close paren.
7302 (> preceding-token-end (point-min))
7303 (progn
7304 (goto-char (1- preceding-token-end))
7305 (or (eq (point) last-cast-end)
7306 (progn
7307 (c-backward-syntactic-ws)
7308 (if (< (skip-syntax-backward "w_") 0)
7309 ;; It's a symbol. Accept it only if it's one of the
7310 ;; keywords that can precede an expression (without
7311 ;; surrounding parens).
7312 (looking-at c-simple-stmt-key)
7313 (and
7314 ;; Check that it isn't a close paren (block close is ok,
7315 ;; though).
7316 (not (memq (char-before) '(?\) ?\])))
7317 ;; Check that it isn't a nonsymbol identifier.
7318 (not (c-on-identifier)))))))))
7319
7320 ;; Handle the cast.
7321 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7322 (let ((c-promote-possible-types t))
7323 (goto-char type-start)
7324 (c-forward-type)))
7325
7326 (goto-char cast-end)
7327 'cast)
7328
7329 (at-decl-or-cast
7330 ;; We're at a declaration. Highlight the type and the following
7331 ;; declarators.
7332
7333 (when backup-if-not-cast
7334 (c-fdoc-shift-type-backward t))
7335
7336 (when (and (eq context 'decl) (looking-at ","))
7337 ;; Make sure to propagate the `c-decl-arg-start' property to
7338 ;; the next argument if it's set in this one, to cope with
7339 ;; interactive refontification.
7340 (c-put-c-type-property (point) 'c-decl-arg-start))
7341
7342 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
7343 (let ((c-promote-possible-types t))
7344 (save-excursion
7345 (goto-char type-start)
7346 (c-forward-type))))
7347
7348 (cons id-start
7349 (and (or at-type-decl at-typedef)
7350 (cons at-type-decl at-typedef))))
7351
7352 (t
7353 ;; False alarm. Restore the recorded ranges.
7354 (setq c-record-type-identifiers save-rec-type-ids
7355 c-record-ref-identifiers save-rec-ref-ids)
7356 nil))))
7357
7358 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
7359 ;; Assuming that point is at the beginning of a token, check if it starts a
7360 ;; label and if so move over it and return non-nil (t in default situations,
7361 ;; specific symbols (see below) for interesting situations), otherwise don't
7362 ;; move and return nil. "Label" here means "most things with a colon".
7363 ;;
7364 ;; More precisely, a "label" is regarded as one of:
7365 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
7366 ;; (ii) A case label - either the entire construct "case FOO:", or just the
7367 ;; bare "case", should the colon be missing. We return t;
7368 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
7369 ;; return t;
7370 ;; (iv) One of QT's "extended" C++ variants of
7371 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
7372 ;; Returns the symbol `qt-2kwds-colon'.
7373 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
7374 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
7375 ;; colon). Currently (2006-03), this applies only to Objective C's
7376 ;; keywords "@private", "@protected", and "@public". Returns t.
7377 ;;
7378 ;; One of the things which will NOT be recognized as a label is a bit-field
7379 ;; element of a struct, something like "int foo:5".
7380 ;;
7381 ;; The end of the label is taken to be just after the colon, or the end of
7382 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
7383 ;; after the end on return. The terminating char gets marked with
7384 ;; `c-decl-end' to improve recognition of the following declaration or
7385 ;; statement.
7386 ;;
7387 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
7388 ;; label, if any, has already been marked up like that.
7389 ;;
7390 ;; If PRECEDING-TOKEN-END is given, it should be the first position
7391 ;; after the preceding token, i.e. on the other side of the
7392 ;; syntactic ws from the point. Use a value less than or equal to
7393 ;; (point-min) if the point is at the first token in (the visible
7394 ;; part of) the buffer.
7395 ;;
7396 ;; The optional LIMIT limits the forward scan for the colon.
7397 ;;
7398 ;; This function records the ranges of the label symbols on
7399 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
7400 ;; non-nil.
7401 ;;
7402 ;; This function might do hidden buffer changes.
7403
7404 (let ((start (point))
7405 label-end
7406 qt-symbol-idx
7407 macro-start ; if we're in one.
7408 label-type
7409 kwd)
7410 (cond
7411 ;; "case" or "default" (Doesn't apply to AWK).
7412 ((looking-at c-label-kwds-regexp)
7413 (let ((kwd-end (match-end 1)))
7414 ;; Record only the keyword itself for fontification, since in
7415 ;; case labels the following is a constant expression and not
7416 ;; a label.
7417 (when c-record-type-identifiers
7418 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
7419
7420 ;; Find the label end.
7421 (goto-char kwd-end)
7422 (setq label-type
7423 (if (and (c-syntactic-re-search-forward
7424 ;; Stop on chars that aren't allowed in expressions,
7425 ;; and on operator chars that would be meaningless
7426 ;; there. FIXME: This doesn't cope with ?: operators.
7427 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
7428 limit t t nil 1)
7429 (match-beginning 2))
7430
7431 (progn ; there's a proper :
7432 (goto-char (match-beginning 2)) ; just after the :
7433 (c-put-c-type-property (1- (point)) 'c-decl-end)
7434 t)
7435
7436 ;; It's an unfinished label. We consider the keyword enough
7437 ;; to recognize it as a label, so that it gets fontified.
7438 ;; Leave the point at the end of it, but don't put any
7439 ;; `c-decl-end' marker.
7440 (goto-char kwd-end)
7441 t))))
7442
7443 ;; @private, @protected, @public, in Objective C, or similar.
7444 ((and c-opt-extra-label-key
7445 (looking-at c-opt-extra-label-key))
7446 ;; For a `c-opt-extra-label-key' match, we record the whole
7447 ;; thing for fontification. That's to get the leading '@' in
7448 ;; Objective-C protection labels fontified.
7449 (goto-char (match-end 1))
7450 (when c-record-type-identifiers
7451 (c-record-ref-id (cons (match-beginning 1) (point))))
7452 (c-put-c-type-property (1- (point)) 'c-decl-end)
7453 (setq label-type t))
7454
7455 ;; All other cases of labels.
7456 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
7457
7458 ;; A colon label must have something before the colon.
7459 (not (eq (char-after) ?:))
7460
7461 ;; Check that we're not after a token that can't precede a label.
7462 (or
7463 ;; Trivially succeeds when there's no preceding token.
7464 ;; Succeeds when we're at a virtual semicolon.
7465 (if preceding-token-end
7466 (<= preceding-token-end (point-min))
7467 (save-excursion
7468 (c-backward-syntactic-ws)
7469 (setq preceding-token-end (point))
7470 (or (bobp)
7471 (c-at-vsemi-p))))
7472
7473 ;; Check if we're after a label, if we're after a closing
7474 ;; paren that belong to statement, and with
7475 ;; `c-label-prefix-re'. It's done in different order
7476 ;; depending on `assume-markup' since the checks have
7477 ;; different expensiveness.
7478 (if assume-markup
7479 (or
7480 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
7481 'c-decl-end)
7482
7483 (save-excursion
7484 (goto-char (1- preceding-token-end))
7485 (c-beginning-of-current-token)
7486 (or (looking-at c-label-prefix-re)
7487 (looking-at c-block-stmt-1-key)))
7488
7489 (and (eq (char-before preceding-token-end) ?\))
7490 (c-after-conditional)))
7491
7492 (or
7493 (save-excursion
7494 (goto-char (1- preceding-token-end))
7495 (c-beginning-of-current-token)
7496 (or (looking-at c-label-prefix-re)
7497 (looking-at c-block-stmt-1-key)))
7498
7499 (cond
7500 ((eq (char-before preceding-token-end) ?\))
7501 (c-after-conditional))
7502
7503 ((eq (char-before preceding-token-end) ?:)
7504 ;; Might be after another label, so check it recursively.
7505 (save-restriction
7506 (save-excursion
7507 (goto-char (1- preceding-token-end))
7508 ;; Essentially the same as the
7509 ;; `c-syntactic-re-search-forward' regexp below.
7510 (setq macro-start
7511 (save-excursion (and (c-beginning-of-macro)
7512 (point))))
7513 (if macro-start (narrow-to-region macro-start (point-max)))
7514 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
7515 ;; Note: the following should work instead of the
7516 ;; narrow-to-region above. Investigate why not,
7517 ;; sometime. ACM, 2006-03-31.
7518 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
7519 ;; macro-start t)
7520 (let ((pte (point))
7521 ;; If the caller turned on recording for us,
7522 ;; it shouldn't apply when we check the
7523 ;; preceding label.
7524 c-record-type-identifiers)
7525 ;; A label can't start at a cpp directive. Check for
7526 ;; this, since c-forward-syntactic-ws would foul up on it.
7527 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
7528 (c-forward-syntactic-ws)
7529 (c-forward-label nil pte start))))))))))
7530
7531 ;; Point is still at the beginning of the possible label construct.
7532 ;;
7533 ;; Check that the next nonsymbol token is ":", or that we're in one
7534 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
7535 ;; arguments. FIXME: Should build this regexp from the language
7536 ;; constants.
7537 (cond
7538 ;; public: protected: private:
7539 ((and
7540 (c-major-mode-is 'c++-mode)
7541 (search-forward-regexp
7542 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
7543 (progn (backward-char)
7544 (c-forward-syntactic-ws limit)
7545 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
7546 (forward-char)
7547 (setq label-type t))
7548 ;; QT double keyword like "protected slots:" or goto target.
7549 ((progn (goto-char start) nil))
7550 ((when (c-syntactic-re-search-forward
7551 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
7552 (backward-char)
7553 (setq label-end (point))
7554 (setq qt-symbol-idx
7555 (and (c-major-mode-is 'c++-mode)
7556 (string-match
7557 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
7558 (buffer-substring start (point)))))
7559 (c-forward-syntactic-ws limit)
7560 (cond
7561 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
7562 (forward-char)
7563 (setq label-type
7564 (if (or (string= "signals" ; Special QT macro
7565 (setq kwd (buffer-substring-no-properties start label-end)))
7566 (string= "Q_SIGNALS" kwd))
7567 'qt-1kwd-colon
7568 'goto-target)))
7569 ((and qt-symbol-idx
7570 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
7571 (progn (c-forward-syntactic-ws limit)
7572 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
7573 (forward-char)
7574 (setq label-type 'qt-2kwds-colon)))))))
7575
7576 (save-restriction
7577 (narrow-to-region start (point))
7578
7579 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
7580 (catch 'check-label
7581 (goto-char start)
7582 (while (progn
7583 (when (looking-at c-nonlabel-token-key)
7584 (goto-char start)
7585 (setq label-type nil)
7586 (throw 'check-label nil))
7587 (and (c-safe (c-forward-sexp)
7588 (c-forward-syntactic-ws)
7589 t)
7590 (not (eobp)))))
7591
7592 ;; Record the identifiers in the label for fontification, unless
7593 ;; it begins with `c-label-kwds' in which case the following
7594 ;; identifiers are part of a (constant) expression that
7595 ;; shouldn't be fontified.
7596 (when (and c-record-type-identifiers
7597 (progn (goto-char start)
7598 (not (looking-at c-label-kwds-regexp))))
7599 (while (c-syntactic-re-search-forward c-symbol-key nil t)
7600 (c-record-ref-id (cons (match-beginning 0)
7601 (match-end 0)))))
7602
7603 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
7604 (goto-char (point-max)))))
7605
7606 (t
7607 ;; Not a label.
7608 (goto-char start)))
7609 label-type))
7610
7611 (defun c-forward-objc-directive ()
7612 ;; Assuming the point is at the beginning of a token, try to move
7613 ;; forward to the end of the Objective-C directive that starts
7614 ;; there. Return t if a directive was fully recognized, otherwise
7615 ;; the point is moved as far as one could be successfully parsed and
7616 ;; nil is returned.
7617 ;;
7618 ;; This function records identifier ranges on
7619 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7620 ;; `c-record-type-identifiers' is non-nil.
7621 ;;
7622 ;; This function might do hidden buffer changes.
7623
7624 (let ((start (point))
7625 start-char
7626 (c-promote-possible-types t)
7627 lim
7628 ;; Turn off recognition of angle bracket arglists while parsing
7629 ;; types here since the protocol reference list might then be
7630 ;; considered part of the preceding name or superclass-name.
7631 c-recognize-<>-arglists)
7632
7633 (if (or
7634 (when (looking-at
7635 (eval-when-compile
7636 (c-make-keywords-re t
7637 (append (c-lang-const c-protection-kwds objc)
7638 '("@end"))
7639 'objc-mode)))
7640 (goto-char (match-end 1))
7641 t)
7642
7643 (and
7644 (looking-at
7645 (eval-when-compile
7646 (c-make-keywords-re t
7647 '("@interface" "@implementation" "@protocol")
7648 'objc-mode)))
7649
7650 ;; Handle the name of the class itself.
7651 (progn
7652 ; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
7653 ; at EOB.
7654 (goto-char (match-end 0))
7655 (setq lim (point))
7656 (c-skip-ws-forward)
7657 (c-forward-type))
7658
7659 (catch 'break
7660 ;; Look for ": superclass-name" or "( category-name )".
7661 (when (looking-at "[:\(]")
7662 (setq start-char (char-after))
7663 (forward-char)
7664 (c-forward-syntactic-ws)
7665 (unless (c-forward-type) (throw 'break nil))
7666 (when (eq start-char ?\()
7667 (unless (eq (char-after) ?\)) (throw 'break nil))
7668 (forward-char)
7669 (c-forward-syntactic-ws)))
7670
7671 ;; Look for a protocol reference list.
7672 (if (eq (char-after) ?<)
7673 (let ((c-recognize-<>-arglists t)
7674 (c-parse-and-markup-<>-arglists t)
7675 c-restricted-<>-arglists)
7676 (c-forward-<>-arglist t))
7677 t))))
7678
7679 (progn
7680 (c-backward-syntactic-ws lim)
7681 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
7682 (c-put-c-type-property (1- (point)) 'c-decl-end)
7683 t)
7684
7685 (c-clear-c-type-property start (point) 'c-decl-end)
7686 nil)))
7687
7688 (defun c-beginning-of-inheritance-list (&optional lim)
7689 ;; Go to the first non-whitespace after the colon that starts a
7690 ;; multiple inheritance introduction. Optional LIM is the farthest
7691 ;; back we should search.
7692 ;;
7693 ;; This function might do hidden buffer changes.
7694 (c-with-syntax-table c++-template-syntax-table
7695 (c-backward-token-2 0 t lim)
7696 (while (and (or (looking-at c-symbol-start)
7697 (looking-at "[<,]\\|::"))
7698 (zerop (c-backward-token-2 1 t lim))))))
7699
7700 (defun c-in-method-def-p ()
7701 ;; Return nil if we aren't in a method definition, otherwise the
7702 ;; position of the initial [+-].
7703 ;;
7704 ;; This function might do hidden buffer changes.
7705 (save-excursion
7706 (beginning-of-line)
7707 (and c-opt-method-key
7708 (looking-at c-opt-method-key)
7709 (point))
7710 ))
7711
7712 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
7713 (defun c-in-gcc-asm-p ()
7714 ;; Return non-nil if point is within a gcc \"asm\" block.
7715 ;;
7716 ;; This should be called with point inside an argument list.
7717 ;;
7718 ;; Only one level of enclosing parentheses is considered, so for
7719 ;; instance `nil' is returned when in a function call within an asm
7720 ;; operand.
7721 ;;
7722 ;; This function might do hidden buffer changes.
7723
7724 (and c-opt-asm-stmt-key
7725 (save-excursion
7726 (beginning-of-line)
7727 (backward-up-list 1)
7728 (c-beginning-of-statement-1 (point-min) nil t)
7729 (looking-at c-opt-asm-stmt-key))))
7730
7731 (defun c-at-toplevel-p ()
7732 "Return a determination as to whether point is \"at the top level\".
7733 Informally, \"at the top level\" is anywhere where you can write
7734 a function.
7735
7736 More precisely, being at the top-level means that point is either
7737 outside any enclosing block (such as a function definition), or
7738 directly inside a class, namespace or other block that contains
7739 another declaration level.
7740
7741 If point is not at the top-level (e.g. it is inside a method
7742 definition), then nil is returned. Otherwise, if point is at a
7743 top-level not enclosed within a class definition, t is returned.
7744 Otherwise, a 2-vector is returned where the zeroth element is the
7745 buffer position of the start of the class declaration, and the first
7746 element is the buffer position of the enclosing class's opening
7747 brace.
7748
7749 Note that this function might do hidden buffer changes. See the
7750 comment at the start of cc-engine.el for more info."
7751 (let ((paren-state (c-parse-state)))
7752 (or (not (c-most-enclosing-brace paren-state))
7753 (c-search-uplist-for-classkey paren-state))))
7754
7755 (defun c-just-after-func-arglist-p (&optional lim)
7756 ;; Return non-nil if the point is in the region after the argument
7757 ;; list of a function and its opening brace (or semicolon in case it
7758 ;; got no body). If there are K&R style argument declarations in
7759 ;; that region, the point has to be inside the first one for this
7760 ;; function to recognize it.
7761 ;;
7762 ;; If successful, the point is moved to the first token after the
7763 ;; function header (see `c-forward-decl-or-cast-1' for details) and
7764 ;; the position of the opening paren of the function arglist is
7765 ;; returned.
7766 ;;
7767 ;; The point is clobbered if not successful.
7768 ;;
7769 ;; LIM is used as bound for backward buffer searches.
7770 ;;
7771 ;; This function might do hidden buffer changes.
7772
7773 (let ((beg (point)) end id-start)
7774 (and
7775 (eq (c-beginning-of-statement-1 lim) 'same)
7776
7777 (not (and (c-major-mode-is 'objc-mode)
7778 (c-forward-objc-directive)))
7779
7780 (setq id-start
7781 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
7782 (< id-start beg)
7783
7784 ;; There should not be a '=' or ',' between beg and the
7785 ;; start of the declaration since that means we were in the
7786 ;; "expression part" of the declaration.
7787 (or (> (point) beg)
7788 (not (looking-at "[=,]")))
7789
7790 (save-excursion
7791 ;; Check that there's an arglist paren in the
7792 ;; declaration.
7793 (goto-char id-start)
7794 (cond ((eq (char-after) ?\()
7795 ;; The declarator is a paren expression, so skip past it
7796 ;; so that we don't get stuck on that instead of the
7797 ;; function arglist.
7798 (c-forward-sexp))
7799 ((and c-opt-op-identifier-prefix
7800 (looking-at c-opt-op-identifier-prefix))
7801 ;; Don't trip up on "operator ()".
7802 (c-forward-token-2 2 t)))
7803 (and (< (point) beg)
7804 (c-syntactic-re-search-forward "(" beg t t)
7805 (1- (point)))))))
7806
7807 (defun c-in-knr-argdecl (&optional lim)
7808 ;; Return the position of the first argument declaration if point is
7809 ;; inside a K&R style argument declaration list, nil otherwise.
7810 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
7811 ;; position that bounds the backward search for the argument list.
7812 ;;
7813 ;; Point must be within a possible K&R region, e.g. just before a top-level
7814 ;; "{". It must be outside of parens and brackets. The test can return
7815 ;; false positives otherwise.
7816 ;;
7817 ;; This function might do hidden buffer changes.
7818
7819 (save-excursion
7820 (save-restriction
7821 ;; If we're in a macro, our search range is restricted to it. Narrow to
7822 ;; the searchable range.
7823 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
7824 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
7825 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
7826 before-lparen after-rparen
7827 (pp-count-out 20)) ; Max number of paren/brace constructs before
7828 ; we give up
7829 (narrow-to-region low-lim (or macro-end (point-max)))
7830
7831 ;; Search backwards for the defun's argument list. We give up if we
7832 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
7833 ;; a knr region) or BOB.
7834 ;;
7835 ;; The criterion for a paren structure being the arg list is:
7836 ;; o - there is non-WS stuff after it but before any "{"; AND
7837 ;; o - the token after it isn't a ";" AND
7838 ;; o - it is preceded by either an identifier (the function name) or
7839 ;; a macro expansion like "DEFUN (...)"; AND
7840 ;; o - its content is a non-empty comma-separated list of identifiers
7841 ;; (an empty arg list won't have a knr region).
7842 ;;
7843 ;; The following snippet illustrates these rules:
7844 ;; int foo (bar, baz, yuk)
7845 ;; int bar [] ;
7846 ;; int (*baz) (my_type) ;
7847 ;; int (*) (void) (*yuk) (void) ;
7848 ;; {
7849
7850 (catch 'knr
7851 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
7852 (setq pp-count-out (1- pp-count-out))
7853 (c-syntactic-skip-backward "^)]}=")
7854 (cond ((eq (char-before) ?\))
7855 (setq after-rparen (point)))
7856 ((eq (char-before) ?\])
7857 (setq after-rparen nil))
7858 (t ; either } (hit previous defun) or = or no more
7859 ; parens/brackets.
7860 (throw 'knr nil)))
7861
7862 (if after-rparen
7863 ;; We're inside a paren. Could it be our argument list....?
7864 (if
7865 (and
7866 (progn
7867 (goto-char after-rparen)
7868 (unless (c-go-list-backward) (throw 'knr nil)) ;
7869 ;; FIXME!!! What about macros between the parens? 2007/01/20
7870 (setq before-lparen (point)))
7871
7872 ;; It can't be the arg list if next token is ; or {
7873 (progn (goto-char after-rparen)
7874 (c-forward-syntactic-ws)
7875 (not (memq (char-after) '(?\; ?\{ ?\=))))
7876
7877 ;; Is the thing preceding the list an identifier (the
7878 ;; function name), or a macro expansion?
7879 (progn
7880 (goto-char before-lparen)
7881 (eq (c-backward-token-2) 0)
7882 (or (eq (c-on-identifier) (point))
7883 (and (eq (char-after) ?\))
7884 (c-go-up-list-backward)
7885 (eq (c-backward-token-2) 0)
7886 (eq (c-on-identifier) (point)))))
7887
7888 ;; Have we got a non-empty list of comma-separated
7889 ;; identifiers?
7890 (progn
7891 (goto-char before-lparen)
7892 (c-forward-token-2) ; to first token inside parens
7893 (and
7894 (c-on-identifier)
7895 (c-forward-token-2)
7896 (catch 'id-list
7897 (while (eq (char-after) ?\,)
7898 (c-forward-token-2)
7899 (unless (c-on-identifier) (throw 'id-list nil))
7900 (c-forward-token-2))
7901 (eq (char-after) ?\))))))
7902
7903 ;; ...Yes. We've identified the function's argument list.
7904 (throw 'knr
7905 (progn (goto-char after-rparen)
7906 (c-forward-syntactic-ws)
7907 (point)))
7908
7909 ;; ...No. The current parens aren't the function's arg list.
7910 (goto-char before-lparen))
7911
7912 (or (c-go-list-backward) ; backwards over [ .... ]
7913 (throw 'knr nil)))))))))
7914
7915 (defun c-skip-conditional ()
7916 ;; skip forward over conditional at point, including any predicate
7917 ;; statements in parentheses. No error checking is performed.
7918 ;;
7919 ;; This function might do hidden buffer changes.
7920 (c-forward-sexp (cond
7921 ;; else if()
7922 ((looking-at (concat "\\<else"
7923 "\\([ \t\n]\\|\\\\\n\\)+"
7924 "if\\>\\([^_]\\|$\\)"))
7925 3)
7926 ;; do, else, try, finally
7927 ((looking-at (concat "\\<\\("
7928 "do\\|else\\|try\\|finally"
7929 "\\)\\>\\([^_]\\|$\\)"))
7930 1)
7931 ;; for, if, while, switch, catch, synchronized, foreach
7932 (t 2))))
7933
7934 (defun c-after-conditional (&optional lim)
7935 ;; If looking at the token after a conditional then return the
7936 ;; position of its start, otherwise return nil.
7937 ;;
7938 ;; This function might do hidden buffer changes.
7939 (save-excursion
7940 (and (zerop (c-backward-token-2 1 t lim))
7941 (or (looking-at c-block-stmt-1-key)
7942 (and (eq (char-after) ?\()
7943 (zerop (c-backward-token-2 1 t lim))
7944 (looking-at c-block-stmt-2-key)))
7945 (point))))
7946
7947 (defun c-after-special-operator-id (&optional lim)
7948 ;; If the point is after an operator identifier that isn't handled
7949 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
7950 ;; position of the start of that identifier is returned. nil is
7951 ;; returned otherwise. The point may be anywhere in the syntactic
7952 ;; whitespace after the last token of the operator identifier.
7953 ;;
7954 ;; This function might do hidden buffer changes.
7955 (save-excursion
7956 (and c-overloadable-operators-regexp
7957 (zerop (c-backward-token-2 1 nil lim))
7958 (looking-at c-overloadable-operators-regexp)
7959 (or (not c-opt-op-identifier-prefix)
7960 (and
7961 (zerop (c-backward-token-2 1 nil lim))
7962 (looking-at c-opt-op-identifier-prefix)))
7963 (point))))
7964
7965 (defsubst c-backward-to-block-anchor (&optional lim)
7966 ;; Assuming point is at a brace that opens a statement block of some
7967 ;; kind, move to the proper anchor point for that block. It might
7968 ;; need to be adjusted further by c-add-stmt-syntax, but the
7969 ;; position at return is suitable as start position for that
7970 ;; function.
7971 ;;
7972 ;; This function might do hidden buffer changes.
7973 (unless (= (point) (c-point 'boi))
7974 (let ((start (c-after-conditional lim)))
7975 (if start
7976 (goto-char start)))))
7977
7978 (defsubst c-backward-to-decl-anchor (&optional lim)
7979 ;; Assuming point is at a brace that opens the block of a top level
7980 ;; declaration of some kind, move to the proper anchor point for
7981 ;; that block.
7982 ;;
7983 ;; This function might do hidden buffer changes.
7984 (unless (= (point) (c-point 'boi))
7985 (c-beginning-of-statement-1 lim)))
7986
7987 (defun c-search-decl-header-end ()
7988 ;; Search forward for the end of the "header" of the current
7989 ;; declaration. That's the position where the definition body
7990 ;; starts, or the first variable initializer, or the ending
7991 ;; semicolon. I.e. search forward for the closest following
7992 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
7993 ;; _after_ the first found token, or at point-max if none is found.
7994 ;;
7995 ;; This function might do hidden buffer changes.
7996
7997 (let ((base (point)))
7998 (if (c-major-mode-is 'c++-mode)
7999
8000 ;; In C++ we need to take special care to handle operator
8001 ;; tokens and those pesky template brackets.
8002 (while (and
8003 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
8004 (or
8005 (c-end-of-current-token base)
8006 ;; Handle operator identifiers, i.e. ignore any
8007 ;; operator token preceded by "operator".
8008 (save-excursion
8009 (and (c-safe (c-backward-sexp) t)
8010 (looking-at c-opt-op-identifier-prefix)))
8011 (and (eq (char-before) ?<)
8012 (c-with-syntax-table c++-template-syntax-table
8013 (if (c-safe (goto-char (c-up-list-forward (point))))
8014 t
8015 (goto-char (point-max))
8016 nil)))))
8017 (setq base (point)))
8018
8019 (while (and
8020 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
8021 (c-end-of-current-token base))
8022 (setq base (point))))))
8023
8024 (defun c-beginning-of-decl-1 (&optional lim)
8025 ;; Go to the beginning of the current declaration, or the beginning
8026 ;; of the previous one if already at the start of it. Point won't
8027 ;; be moved out of any surrounding paren. Return a cons cell of the
8028 ;; form (MOVE . KNR-POS). MOVE is like the return value from
8029 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
8030 ;; style argument declarations (and they are to be recognized) then
8031 ;; KNR-POS is set to the start of the first such argument
8032 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
8033 ;; position that bounds the backward search.
8034 ;;
8035 ;; NB: Cases where the declaration continues after the block, as in
8036 ;; "struct foo { ... } bar;", are currently recognized as two
8037 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
8038 ;;
8039 ;; This function might do hidden buffer changes.
8040 (catch 'return
8041 (let* ((start (point))
8042 (last-stmt-start (point))
8043 (move (c-beginning-of-statement-1 lim nil t)))
8044
8045 ;; `c-beginning-of-statement-1' stops at a block start, but we
8046 ;; want to continue if the block doesn't begin a top level
8047 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
8048 ;; or an open paren.
8049 (let ((beg (point)) tentative-move)
8050 ;; Go back one "statement" each time round the loop until we're just
8051 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
8052 ;; an ObjC method. This will move over a multiple declaration whose
8053 ;; components are comma separated.
8054 (while (and
8055 ;; Must check with c-opt-method-key in ObjC mode.
8056 (not (and c-opt-method-key
8057 (looking-at c-opt-method-key)))
8058 (/= last-stmt-start (point))
8059 (progn
8060 (c-backward-syntactic-ws lim)
8061 (not (memq (char-before) '(?\; ?} ?: nil))))
8062 (save-excursion
8063 (backward-char)
8064 (not (looking-at "\\s(")))
8065 ;; Check that we don't move from the first thing in a
8066 ;; macro to its header.
8067 (not (eq (setq tentative-move
8068 (c-beginning-of-statement-1 lim nil t))
8069 'macro)))
8070 (setq last-stmt-start beg
8071 beg (point)
8072 move tentative-move))
8073 (goto-char beg))
8074
8075 (when c-recognize-knr-p
8076 (let ((fallback-pos (point)) knr-argdecl-start)
8077 ;; Handle K&R argdecls. Back up after the "statement" jumped
8078 ;; over by `c-beginning-of-statement-1', unless it was the
8079 ;; function body, in which case we're sitting on the opening
8080 ;; brace now. Then test if we're in a K&R argdecl region and
8081 ;; that we started at the other side of the first argdecl in
8082 ;; it.
8083 (unless (eq (char-after) ?{)
8084 (goto-char last-stmt-start))
8085 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
8086 (< knr-argdecl-start start)
8087 (progn
8088 (goto-char knr-argdecl-start)
8089 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
8090 (throw 'return
8091 (cons (if (eq (char-after fallback-pos) ?{)
8092 'previous
8093 'same)
8094 knr-argdecl-start))
8095 (goto-char fallback-pos))))
8096
8097 ;; `c-beginning-of-statement-1' counts each brace block as a separate
8098 ;; statement, so the result will be 'previous if we've moved over any.
8099 ;; So change our result back to 'same if necessary.
8100 ;;
8101 ;; If they were brace list initializers we might not have moved over a
8102 ;; declaration boundary though, so change it to 'same if we've moved
8103 ;; past a '=' before '{', but not ';'. (This ought to be integrated
8104 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
8105 ;; potentially can search over a large amount of text.). Take special
8106 ;; pains not to get mislead by C++'s "operator=", and the like.
8107 (if (and (eq move 'previous)
8108 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
8109 c++-template-syntax-table
8110 (syntax-table))
8111 (save-excursion
8112 (and
8113 (progn
8114 (while ; keep going back to "[;={"s until we either find
8115 ; no more, or get to one which isn't an "operator ="
8116 (and (c-syntactic-re-search-forward "[;={]" start t t t)
8117 (eq (char-before) ?=)
8118 c-overloadable-operators-regexp
8119 c-opt-op-identifier-prefix
8120 (save-excursion
8121 (eq (c-backward-token-2) 0)
8122 (looking-at c-overloadable-operators-regexp)
8123 (eq (c-backward-token-2) 0)
8124 (looking-at c-opt-op-identifier-prefix))))
8125 (eq (char-before) ?=))
8126 (c-syntactic-re-search-forward "[;{]" start t t)
8127 (eq (char-before) ?{)
8128 (c-safe (goto-char (c-up-list-forward (point))) t)
8129 (not (c-syntactic-re-search-forward ";" start t t))))))
8130 (cons 'same nil)
8131 (cons move nil)))))
8132
8133 (defun c-end-of-decl-1 ()
8134 ;; Assuming point is at the start of a declaration (as detected by
8135 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
8136 ;; `c-beginning-of-decl-1', this function handles the case when a
8137 ;; block is followed by identifiers in e.g. struct declarations in C
8138 ;; or C++. If a proper end was found then t is returned, otherwise
8139 ;; point is moved as far as possible within the current sexp and nil
8140 ;; is returned. This function doesn't handle macros; use
8141 ;; `c-end-of-macro' instead in those cases.
8142 ;;
8143 ;; This function might do hidden buffer changes.
8144 (let ((start (point))
8145 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
8146 c++-template-syntax-table
8147 (syntax-table))))
8148 (catch 'return
8149 (c-search-decl-header-end)
8150
8151 (when (and c-recognize-knr-p
8152 (eq (char-before) ?\;)
8153 (c-in-knr-argdecl start))
8154 ;; Stopped at the ';' in a K&R argdecl section which is
8155 ;; detected using the same criteria as in
8156 ;; `c-beginning-of-decl-1'. Move to the following block
8157 ;; start.
8158 (c-syntactic-re-search-forward "{" nil 'move t))
8159
8160 (when (eq (char-before) ?{)
8161 ;; Encountered a block in the declaration. Jump over it.
8162 (condition-case nil
8163 (goto-char (c-up-list-forward (point)))
8164 (error (goto-char (point-max))
8165 (throw 'return nil)))
8166 (if (or (not c-opt-block-decls-with-vars-key)
8167 (save-excursion
8168 (c-with-syntax-table decl-syntax-table
8169 (let ((lim (point)))
8170 (goto-char start)
8171 (not (and
8172 ;; Check for `c-opt-block-decls-with-vars-key'
8173 ;; before the first paren.
8174 (c-syntactic-re-search-forward
8175 (concat "[;=\(\[{]\\|\\("
8176 c-opt-block-decls-with-vars-key
8177 "\\)")
8178 lim t t t)
8179 (match-beginning 1)
8180 (not (eq (char-before) ?_))
8181 ;; Check that the first following paren is
8182 ;; the block.
8183 (c-syntactic-re-search-forward "[;=\(\[{]"
8184 lim t t t)
8185 (eq (char-before) ?{)))))))
8186 ;; The declaration doesn't have any of the
8187 ;; `c-opt-block-decls-with-vars' keywords in the
8188 ;; beginning, so it ends here at the end of the block.
8189 (throw 'return t)))
8190
8191 (c-with-syntax-table decl-syntax-table
8192 (while (progn
8193 (if (eq (char-before) ?\;)
8194 (throw 'return t))
8195 (c-syntactic-re-search-forward ";" nil 'move t))))
8196 nil)))
8197
8198 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
8199 ;; Assuming the point is at an open brace, check if it starts a
8200 ;; block that contains another declaration level, i.e. that isn't a
8201 ;; statement block or a brace list, and if so return non-nil.
8202 ;;
8203 ;; If the check is successful, the return value is the start of the
8204 ;; keyword that tells what kind of construct it is, i.e. typically
8205 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
8206 ;; the point will be at the start of the construct, before any
8207 ;; leading specifiers, otherwise it's at the returned position.
8208 ;;
8209 ;; The point is clobbered if the check is unsuccessful.
8210 ;;
8211 ;; CONTAINING-SEXP is the position of the open of the surrounding
8212 ;; paren, or nil if none.
8213 ;;
8214 ;; The optional LIMIT limits the backward search for the start of
8215 ;; the construct. It's assumed to be at a syntactically relevant
8216 ;; position.
8217 ;;
8218 ;; If any template arglists are found in the searched region before
8219 ;; the open brace, they get marked with paren syntax.
8220 ;;
8221 ;; This function might do hidden buffer changes.
8222
8223 (let ((open-brace (point)) kwd-start first-specifier-pos)
8224 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8225
8226 (when (and c-recognize-<>-arglists
8227 (eq (char-before) ?>))
8228 ;; Could be at the end of a template arglist.
8229 (let ((c-parse-and-markup-<>-arglists t)
8230 (c-disallow-comma-in-<>-arglists
8231 (and containing-sexp
8232 (not (eq (char-after containing-sexp) ?{)))))
8233 (while (and
8234 (c-backward-<>-arglist nil limit)
8235 (progn
8236 (c-syntactic-skip-backward c-block-prefix-charset limit t)
8237 (eq (char-before) ?>))))))
8238
8239 ;; Note: Can't get bogus hits inside template arglists below since they
8240 ;; have gotten paren syntax above.
8241 (when (and
8242 ;; If `goto-start' is set we begin by searching for the
8243 ;; first possible position of a leading specifier list.
8244 ;; The `c-decl-block-key' search continues from there since
8245 ;; we know it can't match earlier.
8246 (if goto-start
8247 (when (c-syntactic-re-search-forward c-symbol-start
8248 open-brace t t)
8249 (goto-char (setq first-specifier-pos (match-beginning 0)))
8250 t)
8251 t)
8252
8253 (cond
8254 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
8255 (goto-char (setq kwd-start (match-beginning 0)))
8256 (or
8257
8258 ;; Found a keyword that can't be a type?
8259 (match-beginning 1)
8260
8261 ;; Can be a type too, in which case it's the return type of a
8262 ;; function (under the assumption that no declaration level
8263 ;; block construct starts with a type).
8264 (not (c-forward-type))
8265
8266 ;; Jumped over a type, but it could be a declaration keyword
8267 ;; followed by the declared identifier that we've jumped over
8268 ;; instead (e.g. in "class Foo {"). If it indeed is a type
8269 ;; then we should be at the declarator now, so check for a
8270 ;; valid declarator start.
8271 ;;
8272 ;; Note: This doesn't cope with the case when a declared
8273 ;; identifier is followed by e.g. '(' in a language where '('
8274 ;; also might be part of a declarator expression. Currently
8275 ;; there's no such language.
8276 (not (or (looking-at c-symbol-start)
8277 (looking-at c-type-decl-prefix-key)))))
8278
8279 ;; In Pike a list of modifiers may be followed by a brace
8280 ;; to make them apply to many identifiers. Note that the
8281 ;; match data will be empty on return in this case.
8282 ((and (c-major-mode-is 'pike-mode)
8283 (progn
8284 (goto-char open-brace)
8285 (= (c-backward-token-2) 0))
8286 (looking-at c-specifier-key)
8287 ;; Use this variant to avoid yet another special regexp.
8288 (c-keyword-member (c-keyword-sym (match-string 1))
8289 'c-modifier-kwds))
8290 (setq kwd-start (point))
8291 t)))
8292
8293 ;; Got a match.
8294
8295 (if goto-start
8296 ;; Back up over any preceding specifiers and their clauses
8297 ;; by going forward from `first-specifier-pos', which is the
8298 ;; earliest possible position where the specifier list can
8299 ;; start.
8300 (progn
8301 (goto-char first-specifier-pos)
8302
8303 (while (< (point) kwd-start)
8304 (if (looking-at c-symbol-key)
8305 ;; Accept any plain symbol token on the ground that
8306 ;; it's a specifier masked through a macro (just
8307 ;; like `c-forward-decl-or-cast-1' skip forward over
8308 ;; such tokens).
8309 ;;
8310 ;; Could be more restrictive wrt invalid keywords,
8311 ;; but that'd only occur in invalid code so there's
8312 ;; no use spending effort on it.
8313 (let ((end (match-end 0)))
8314 (unless (c-forward-keyword-clause 0)
8315 (goto-char end)
8316 (c-forward-syntactic-ws)))
8317
8318 ;; Can't parse a declaration preamble and is still
8319 ;; before `kwd-start'. That means `first-specifier-pos'
8320 ;; was in some earlier construct. Search again.
8321 (if (c-syntactic-re-search-forward c-symbol-start
8322 kwd-start 'move t)
8323 (goto-char (setq first-specifier-pos (match-beginning 0)))
8324 ;; Got no preamble before the block declaration keyword.
8325 (setq first-specifier-pos kwd-start))))
8326
8327 (goto-char first-specifier-pos))
8328 (goto-char kwd-start))
8329
8330 kwd-start)))
8331
8332 (defun c-search-uplist-for-classkey (paren-state)
8333 ;; Check if the closest containing paren sexp is a declaration
8334 ;; block, returning a 2 element vector in that case. Aref 0
8335 ;; contains the bufpos at boi of the class key line, and aref 1
8336 ;; contains the bufpos of the open brace. This function is an
8337 ;; obsolete wrapper for `c-looking-at-decl-block'.
8338 ;;
8339 ;; This function might do hidden buffer changes.
8340 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
8341 (when open-paren-pos
8342 (save-excursion
8343 (goto-char open-paren-pos)
8344 (when (and (eq (char-after) ?{)
8345 (c-looking-at-decl-block
8346 (c-safe-position open-paren-pos paren-state)
8347 nil))
8348 (back-to-indentation)
8349 (vector (point) open-paren-pos))))))
8350
8351 (defmacro c-pull-open-brace (ps)
8352 ;; Pull the next open brace from PS (which has the form of paren-state),
8353 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
8354 `(progn
8355 (while (consp (car ,ps))
8356 (setq ,ps (cdr ,ps)))
8357 (prog1 (car ,ps)
8358 (setq ,ps (cdr ,ps)))))
8359
8360 (defun c-most-enclosing-decl-block (paren-state)
8361 ;; Return the buffer position of the most enclosing decl-block brace (in the
8362 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
8363 ;; none was found.
8364 (let* ((open-brace (c-pull-open-brace paren-state))
8365 (next-open-brace (c-pull-open-brace paren-state)))
8366 (while (and open-brace
8367 (save-excursion
8368 (goto-char open-brace)
8369 (not (c-looking-at-decl-block next-open-brace nil))))
8370 (setq open-brace next-open-brace
8371 next-open-brace (c-pull-open-brace paren-state)))
8372 open-brace))
8373
8374 (defun c-cheap-inside-bracelist-p (paren-state)
8375 ;; Return the position of the L-brace if point is inside a brace list
8376 ;; initialization of an array, etc. This is an approximate function,
8377 ;; designed for speed over accuracy. It will not find every bracelist, but
8378 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
8379 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
8380 ;; is everywhere else.
8381 (let (b-pos)
8382 (save-excursion
8383 (while
8384 (and (setq b-pos (c-pull-open-brace paren-state))
8385 (progn (goto-char b-pos)
8386 (c-backward-sws)
8387 (c-backward-token-2)
8388 (not (looking-at "=")))))
8389 b-pos)))
8390
8391 (defun c-inside-bracelist-p (containing-sexp paren-state)
8392 ;; return the buffer position of the beginning of the brace list
8393 ;; statement if we're inside a brace list, otherwise return nil.
8394 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
8395 ;; paren. PAREN-STATE is the remainder of the state of enclosing
8396 ;; braces
8397 ;;
8398 ;; N.B.: This algorithm can potentially get confused by cpp macros
8399 ;; placed in inconvenient locations. It's a trade-off we make for
8400 ;; speed.
8401 ;;
8402 ;; This function might do hidden buffer changes.
8403 (or
8404 ;; This will pick up brace list declarations.
8405 (c-safe
8406 (save-excursion
8407 (goto-char containing-sexp)
8408 (c-forward-sexp -1)
8409 (let (bracepos)
8410 (if (and (or (looking-at c-brace-list-key)
8411 (progn (c-forward-sexp -1)
8412 (looking-at c-brace-list-key)))
8413 (setq bracepos (c-down-list-forward (point)))
8414 (not (c-crosses-statement-barrier-p (point)
8415 (- bracepos 2))))
8416 (point)))))
8417 ;; this will pick up array/aggregate init lists, even if they are nested.
8418 (save-excursion
8419 (let ((class-key
8420 ;; Pike can have class definitions anywhere, so we must
8421 ;; check for the class key here.
8422 (and (c-major-mode-is 'pike-mode)
8423 c-decl-block-key))
8424 bufpos braceassignp lim next-containing)
8425 (while (and (not bufpos)
8426 containing-sexp)
8427 (when paren-state
8428 (if (consp (car paren-state))
8429 (setq lim (cdr (car paren-state))
8430 paren-state (cdr paren-state))
8431 (setq lim (car paren-state)))
8432 (when paren-state
8433 (setq next-containing (car paren-state)
8434 paren-state (cdr paren-state))))
8435 (goto-char containing-sexp)
8436 (if (c-looking-at-inexpr-block next-containing next-containing)
8437 ;; We're in an in-expression block of some kind. Do not
8438 ;; check nesting. We deliberately set the limit to the
8439 ;; containing sexp, so that c-looking-at-inexpr-block
8440 ;; doesn't check for an identifier before it.
8441 (setq containing-sexp nil)
8442 ;; see if the open brace is preceded by = or [...] in
8443 ;; this statement, but watch out for operator=
8444 (setq braceassignp 'dontknow)
8445 (c-backward-token-2 1 t lim)
8446 ;; Checks to do only on the first sexp before the brace.
8447 (when (and c-opt-inexpr-brace-list-key
8448 (eq (char-after) ?\[))
8449 ;; In Java, an initialization brace list may follow
8450 ;; directly after "new Foo[]", so check for a "new"
8451 ;; earlier.
8452 (while (eq braceassignp 'dontknow)
8453 (setq braceassignp
8454 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
8455 ((looking-at c-opt-inexpr-brace-list-key) t)
8456 ((looking-at "\\sw\\|\\s_\\|[.[]")
8457 ;; Carry on looking if this is an
8458 ;; identifier (may contain "." in Java)
8459 ;; or another "[]" sexp.
8460 'dontknow)
8461 (t nil)))))
8462 ;; Checks to do on all sexps before the brace, up to the
8463 ;; beginning of the statement.
8464 (while (eq braceassignp 'dontknow)
8465 (cond ((eq (char-after) ?\;)
8466 (setq braceassignp nil))
8467 ((and class-key
8468 (looking-at class-key))
8469 (setq braceassignp nil))
8470 ((eq (char-after) ?=)
8471 ;; We've seen a =, but must check earlier tokens so
8472 ;; that it isn't something that should be ignored.
8473 (setq braceassignp 'maybe)
8474 (while (and (eq braceassignp 'maybe)
8475 (zerop (c-backward-token-2 1 t lim)))
8476 (setq braceassignp
8477 (cond
8478 ;; Check for operator =
8479 ((and c-opt-op-identifier-prefix
8480 (looking-at c-opt-op-identifier-prefix))
8481 nil)
8482 ;; Check for `<opchar>= in Pike.
8483 ((and (c-major-mode-is 'pike-mode)
8484 (or (eq (char-after) ?`)
8485 ;; Special case for Pikes
8486 ;; `[]=, since '[' is not in
8487 ;; the punctuation class.
8488 (and (eq (char-after) ?\[)
8489 (eq (char-before) ?`))))
8490 nil)
8491 ((looking-at "\\s.") 'maybe)
8492 ;; make sure we're not in a C++ template
8493 ;; argument assignment
8494 ((and
8495 (c-major-mode-is 'c++-mode)
8496 (save-excursion
8497 (let ((here (point))
8498 (pos< (progn
8499 (skip-chars-backward "^<>")
8500 (point))))
8501 (and (eq (char-before) ?<)
8502 (not (c-crosses-statement-barrier-p
8503 pos< here))
8504 (not (c-in-literal))
8505 ))))
8506 nil)
8507 (t t))))))
8508 (if (and (eq braceassignp 'dontknow)
8509 (/= (c-backward-token-2 1 t lim) 0))
8510 (setq braceassignp nil)))
8511 (if (not braceassignp)
8512 (if (eq (char-after) ?\;)
8513 ;; Brace lists can't contain a semicolon, so we're done.
8514 (setq containing-sexp nil)
8515 ;; Go up one level.
8516 (setq containing-sexp next-containing
8517 lim nil
8518 next-containing nil))
8519 ;; we've hit the beginning of the aggregate list
8520 (c-beginning-of-statement-1
8521 (c-most-enclosing-brace paren-state))
8522 (setq bufpos (point))))
8523 )
8524 bufpos))
8525 ))
8526
8527 (defun c-looking-at-special-brace-list (&optional lim)
8528 ;; If we're looking at the start of a pike-style list, i.e., `({ })',
8529 ;; `([ ])', `(< >)', etc., a cons of a cons of its starting and ending
8530 ;; positions and its entry in c-special-brace-lists is returned, nil
8531 ;; otherwise. The ending position is nil if the list is still open.
8532 ;; LIM is the limit for forward search. The point may either be at
8533 ;; the `(' or at the following paren character. Tries to check the
8534 ;; matching closer, but assumes it's correct if no balanced paren is
8535 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
8536 ;; a special brace list).
8537 ;;
8538 ;; This function might do hidden buffer changes.
8539 (if c-special-brace-lists
8540 (condition-case ()
8541 (save-excursion
8542 (let ((beg (point))
8543 inner-beg end type)
8544 (c-forward-syntactic-ws)
8545 (if (eq (char-after) ?\()
8546 (progn
8547 (forward-char 1)
8548 (c-forward-syntactic-ws)
8549 (setq inner-beg (point))
8550 (setq type (assq (char-after) c-special-brace-lists)))
8551 (if (setq type (assq (char-after) c-special-brace-lists))
8552 (progn
8553 (setq inner-beg (point))
8554 (c-backward-syntactic-ws)
8555 (forward-char -1)
8556 (setq beg (if (eq (char-after) ?\()
8557 (point)
8558 nil)))))
8559 (if (and beg type)
8560 (if (and (c-safe
8561 (goto-char beg)
8562 (c-forward-sexp 1)
8563 (setq end (point))
8564 (= (char-before) ?\)))
8565 (c-safe
8566 (goto-char inner-beg)
8567 (if (looking-at "\\s(")
8568 ;; Check balancing of the inner paren
8569 ;; below.
8570 (progn
8571 (c-forward-sexp 1)
8572 t)
8573 ;; If the inner char isn't a paren then
8574 ;; we can't check balancing, so just
8575 ;; check the char before the outer
8576 ;; closing paren.
8577 (goto-char end)
8578 (backward-char)
8579 (c-backward-syntactic-ws)
8580 (= (char-before) (cdr type)))))
8581 (if (or (/= (char-syntax (char-before)) ?\))
8582 (= (progn
8583 (c-forward-syntactic-ws)
8584 (point))
8585 (1- end)))
8586 (cons (cons beg end) type))
8587 (cons (list beg) type)))))
8588 (error nil))))
8589
8590 (defun c-looking-at-bos (&optional lim)
8591 ;; Return non-nil if between two statements or declarations, assuming
8592 ;; point is not inside a literal or comment.
8593 ;;
8594 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
8595 ;; are recommended instead.
8596 ;;
8597 ;; This function might do hidden buffer changes.
8598 (c-at-statement-start-p))
8599 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
8600
8601 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
8602 ;; Return non-nil if we're looking at the beginning of a block
8603 ;; inside an expression. The value returned is actually a cons of
8604 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
8605 ;; position of the beginning of the construct.
8606 ;;
8607 ;; LIM limits the backward search. CONTAINING-SEXP is the start
8608 ;; position of the closest containing list. If it's nil, the
8609 ;; containing paren isn't used to decide whether we're inside an
8610 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
8611 ;; needs to be farther back.
8612 ;;
8613 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
8614 ;; brace block might be done. It should only be used when the
8615 ;; construct can be assumed to be complete, i.e. when the original
8616 ;; starting position was further down than that.
8617 ;;
8618 ;; This function might do hidden buffer changes.
8619
8620 (save-excursion
8621 (let ((res 'maybe) passed-paren
8622 (closest-lim (or containing-sexp lim (point-min)))
8623 ;; Look at the character after point only as a last resort
8624 ;; when we can't disambiguate.
8625 (block-follows (and (eq (char-after) ?{) (point))))
8626
8627 (while (and (eq res 'maybe)
8628 (progn (c-backward-syntactic-ws)
8629 (> (point) closest-lim))
8630 (not (bobp))
8631 (progn (backward-char)
8632 (looking-at "[\]\).]\\|\\w\\|\\s_"))
8633 (c-safe (forward-char)
8634 (goto-char (scan-sexps (point) -1))))
8635
8636 (setq res
8637 (if (looking-at c-keywords-regexp)
8638 (let ((kw-sym (c-keyword-sym (match-string 1))))
8639 (cond
8640 ((and block-follows
8641 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
8642 (and (not (eq passed-paren ?\[))
8643 (or (not (looking-at c-class-key))
8644 ;; If the class definition is at the start of
8645 ;; a statement, we don't consider it an
8646 ;; in-expression class.
8647 (let ((prev (point)))
8648 (while (and
8649 (= (c-backward-token-2 1 nil closest-lim) 0)
8650 (eq (char-syntax (char-after)) ?w))
8651 (setq prev (point)))
8652 (goto-char prev)
8653 (not (c-at-statement-start-p)))
8654 ;; Also, in Pike we treat it as an
8655 ;; in-expression class if it's used in an
8656 ;; object clone expression.
8657 (save-excursion
8658 (and check-at-end
8659 (c-major-mode-is 'pike-mode)
8660 (progn (goto-char block-follows)
8661 (zerop (c-forward-token-2 1 t)))
8662 (eq (char-after) ?\())))
8663 (cons 'inexpr-class (point))))
8664 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
8665 (when (not passed-paren)
8666 (cons 'inexpr-statement (point))))
8667 ((c-keyword-member kw-sym 'c-lambda-kwds)
8668 (when (or (not passed-paren)
8669 (eq passed-paren ?\())
8670 (cons 'inlambda (point))))
8671 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
8672 nil)
8673 (t
8674 'maybe)))
8675
8676 (if (looking-at "\\s(")
8677 (if passed-paren
8678 (if (and (eq passed-paren ?\[)
8679 (eq (char-after) ?\[))
8680 ;; Accept several square bracket sexps for
8681 ;; Java array initializations.
8682 'maybe)
8683 (setq passed-paren (char-after))
8684 'maybe)
8685 'maybe))))
8686
8687 (if (eq res 'maybe)
8688 (when (and c-recognize-paren-inexpr-blocks
8689 block-follows
8690 containing-sexp
8691 (eq (char-after containing-sexp) ?\())
8692 (goto-char containing-sexp)
8693 (if (or (save-excursion
8694 (c-backward-syntactic-ws lim)
8695 (and (> (point) (or lim (point-min)))
8696 (c-on-identifier)))
8697 (and c-special-brace-lists
8698 (c-looking-at-special-brace-list)))
8699 nil
8700 (cons 'inexpr-statement (point))))
8701
8702 res))))
8703
8704 (defun c-looking-at-inexpr-block-backward (paren-state)
8705 ;; Returns non-nil if we're looking at the end of an in-expression
8706 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
8707 ;; PAREN-STATE is the paren state relevant at the current position.
8708 ;;
8709 ;; This function might do hidden buffer changes.
8710 (save-excursion
8711 ;; We currently only recognize a block.
8712 (let ((here (point))
8713 (elem (car-safe paren-state))
8714 containing-sexp)
8715 (when (and (consp elem)
8716 (progn (goto-char (cdr elem))
8717 (c-forward-syntactic-ws here)
8718 (= (point) here)))
8719 (goto-char (car elem))
8720 (if (setq paren-state (cdr paren-state))
8721 (setq containing-sexp (car-safe paren-state)))
8722 (c-looking-at-inexpr-block (c-safe-position containing-sexp
8723 paren-state)
8724 containing-sexp)))))
8725
8726 (defun c-at-macro-vsemi-p (&optional pos)
8727 ;; Is there a "virtual semicolon" at POS or point?
8728 ;; (See cc-defs.el for full details of "virtual semicolons".)
8729 ;;
8730 ;; This is true when point is at the last non syntactic WS position on the
8731 ;; line, there is a macro call last on the line, and this particular macro's
8732 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
8733 ;; semicolon.
8734 (save-excursion
8735 (save-restriction
8736 (widen)
8737 (if pos
8738 (goto-char pos)
8739 (setq pos (point)))
8740 (and
8741 c-macro-with-semi-re
8742 (eq (skip-chars-backward " \t") 0)
8743
8744 ;; Check we've got nothing after this except comments and empty lines
8745 ;; joined by escaped EOLs.
8746 (skip-chars-forward " \t") ; always returns non-nil.
8747 (progn
8748 (while ; go over 1 block comment per iteration.
8749 (and
8750 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
8751 (goto-char (match-end 0))
8752 (cond
8753 ((looking-at c-block-comment-start-regexp)
8754 (and (forward-comment 1)
8755 (skip-chars-forward " \t"))) ; always returns non-nil
8756 ((looking-at c-line-comment-start-regexp)
8757 (end-of-line)
8758 nil)
8759 (t nil))))
8760 (eolp))
8761
8762 (goto-char pos)
8763 (progn (c-backward-syntactic-ws)
8764 (eq (point) pos))
8765
8766 ;; Check for one of the listed macros being before point.
8767 (or (not (eq (char-before) ?\)))
8768 (when (c-go-list-backward)
8769 (c-backward-syntactic-ws)
8770 t))
8771 (c-simple-skip-symbol-backward)
8772 (looking-at c-macro-with-semi-re)
8773 (goto-char pos)
8774 (not (c-in-literal)))))) ; The most expensive check last.
8775
8776 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
8777
8778 \f
8779 ;; `c-guess-basic-syntax' and the functions that precedes it below
8780 ;; implements the main decision tree for determining the syntactic
8781 ;; analysis of the current line of code.
8782
8783 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
8784 ;; auto newline analysis.
8785 (defvar c-auto-newline-analysis nil)
8786
8787 (defun c-brace-anchor-point (bracepos)
8788 ;; BRACEPOS is the position of a brace in a construct like "namespace
8789 ;; Bar {". Return the anchor point in this construct; this is the
8790 ;; earliest symbol on the brace's line which isn't earlier than
8791 ;; "namespace".
8792 ;;
8793 ;; Currently (2007-08-17), "like namespace" means "matches
8794 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
8795 ;; or anything like that.
8796 (save-excursion
8797 (let ((boi (c-point 'boi bracepos)))
8798 (goto-char bracepos)
8799 (while (and (> (point) boi)
8800 (not (looking-at c-other-decl-block-key)))
8801 (c-backward-token-2))
8802 (if (> (point) boi) (point) boi))))
8803
8804 (defsubst c-add-syntax (symbol &rest args)
8805 ;; A simple function to prepend a new syntax element to
8806 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
8807 ;; should always be dynamically bound but since we read it first
8808 ;; we'll fail properly anyway if this function is misused.
8809 (setq c-syntactic-context (cons (cons symbol args)
8810 c-syntactic-context)))
8811
8812 (defsubst c-append-syntax (symbol &rest args)
8813 ;; Like `c-add-syntax' but appends to the end of the syntax list.
8814 ;; (Normally not necessary.)
8815 (setq c-syntactic-context (nconc c-syntactic-context
8816 (list (cons symbol args)))))
8817
8818 (defun c-add-stmt-syntax (syntax-symbol
8819 syntax-extra-args
8820 stop-at-boi-only
8821 containing-sexp
8822 paren-state)
8823 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
8824 ;; needed with further syntax elements of the types `substatement',
8825 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
8826 ;; `defun-block-intro'.
8827 ;;
8828 ;; Do the generic processing to anchor the given syntax symbol on
8829 ;; the preceding statement: Skip over any labels and containing
8830 ;; statements on the same line, and then search backward until we
8831 ;; find a statement or block start that begins at boi without a
8832 ;; label or comment.
8833 ;;
8834 ;; Point is assumed to be at the prospective anchor point for the
8835 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
8836 ;; skip past open parens and containing statements. Most of the added
8837 ;; syntax elements will get the same anchor point - the exception is
8838 ;; for an anchor in a construct like "namespace"[*] - this is as early
8839 ;; as possible in the construct but on the same line as the {.
8840 ;;
8841 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
8842 ;;
8843 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
8844 ;; syntax symbol. They are appended after the anchor point.
8845 ;;
8846 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
8847 ;; if the current statement starts there.
8848 ;;
8849 ;; Note: It's not a problem if PAREN-STATE "overshoots"
8850 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
8851 ;;
8852 ;; This function might do hidden buffer changes.
8853
8854 (if (= (point) (c-point 'boi))
8855 ;; This is by far the most common case, so let's give it special
8856 ;; treatment.
8857 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
8858
8859 (let ((syntax-last c-syntactic-context)
8860 (boi (c-point 'boi))
8861 ;; Set when we're on a label, so that we don't stop there.
8862 ;; FIXME: To be complete we should check if we're on a label
8863 ;; now at the start.
8864 on-label)
8865
8866 ;; Use point as the anchor point for "namespace", "extern", etc.
8867 (apply 'c-add-syntax syntax-symbol
8868 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
8869 (point) nil)
8870 syntax-extra-args)
8871
8872 ;; Loop while we have to back out of containing blocks.
8873 (while
8874 (and
8875 (catch 'back-up-block
8876
8877 ;; Loop while we have to back up statements.
8878 (while (or (/= (point) boi)
8879 on-label
8880 (looking-at c-comment-start-regexp))
8881
8882 ;; Skip past any comments that stands between the
8883 ;; statement start and boi.
8884 (let ((savepos (point)))
8885 (while (and (/= savepos boi)
8886 (c-backward-single-comment))
8887 (setq savepos (point)
8888 boi (c-point 'boi)))
8889 (goto-char savepos))
8890
8891 ;; Skip to the beginning of this statement or backward
8892 ;; another one.
8893 (let ((old-pos (point))
8894 (old-boi boi)
8895 (step-type (c-beginning-of-statement-1 containing-sexp)))
8896 (setq boi (c-point 'boi)
8897 on-label (eq step-type 'label))
8898
8899 (cond ((= (point) old-pos)
8900 ;; If we didn't move we're at the start of a block and
8901 ;; have to continue outside it.
8902 (throw 'back-up-block t))
8903
8904 ((and (eq step-type 'up)
8905 (>= (point) old-boi)
8906 (looking-at "else\\>[^_]")
8907 (save-excursion
8908 (goto-char old-pos)
8909 (looking-at "if\\>[^_]")))
8910 ;; Special case to avoid deeper and deeper indentation
8911 ;; of "else if" clauses.
8912 )
8913
8914 ((and (not stop-at-boi-only)
8915 (/= old-pos old-boi)
8916 (memq step-type '(up previous)))
8917 ;; If stop-at-boi-only is nil, we shouldn't back up
8918 ;; over previous or containing statements to try to
8919 ;; reach boi, so go back to the last position and
8920 ;; exit.
8921 (goto-char old-pos)
8922 (throw 'back-up-block nil))
8923
8924 (t
8925 (if (and (not stop-at-boi-only)
8926 (memq step-type '(up previous beginning)))
8927 ;; If we've moved into another statement then we
8928 ;; should no longer try to stop in the middle of a
8929 ;; line.
8930 (setq stop-at-boi-only t))
8931
8932 ;; Record this as a substatement if we skipped up one
8933 ;; level.
8934 (when (eq step-type 'up)
8935 (c-add-syntax 'substatement nil))))
8936 )))
8937
8938 containing-sexp)
8939
8940 ;; Now we have to go out of this block.
8941 (goto-char containing-sexp)
8942
8943 ;; Don't stop in the middle of a special brace list opener
8944 ;; like "({".
8945 (when c-special-brace-lists
8946 (let ((special-list (c-looking-at-special-brace-list)))
8947 (when (and special-list
8948 (< (car (car special-list)) (point)))
8949 (setq containing-sexp (car (car special-list)))
8950 (goto-char containing-sexp))))
8951
8952 (setq paren-state (c-whack-state-after containing-sexp paren-state)
8953 containing-sexp (c-most-enclosing-brace paren-state)
8954 boi (c-point 'boi))
8955
8956 ;; Analyze the construct in front of the block we've stepped out
8957 ;; from and add the right syntactic element for it.
8958 (let ((paren-pos (point))
8959 (paren-char (char-after))
8960 step-type)
8961
8962 (if (eq paren-char ?\()
8963 ;; Stepped out of a parenthesis block, so we're in an
8964 ;; expression now.
8965 (progn
8966 (when (/= paren-pos boi)
8967 (if (and c-recognize-paren-inexpr-blocks
8968 (progn
8969 (c-backward-syntactic-ws containing-sexp)
8970 (or (not (looking-at "\\>"))
8971 (not (c-on-identifier))))
8972 (save-excursion
8973 (goto-char (1+ paren-pos))
8974 (c-forward-syntactic-ws)
8975 (eq (char-after) ?{)))
8976 ;; Stepped out of an in-expression statement. This
8977 ;; syntactic element won't get an anchor pos.
8978 (c-add-syntax 'inexpr-statement)
8979
8980 ;; A parenthesis normally belongs to an arglist.
8981 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
8982
8983 (goto-char (max boi
8984 (if containing-sexp
8985 (1+ containing-sexp)
8986 (point-min))))
8987 (setq step-type 'same
8988 on-label nil))
8989
8990 ;; Stepped out of a brace block.
8991 (setq step-type (c-beginning-of-statement-1 containing-sexp)
8992 on-label (eq step-type 'label))
8993
8994 (if (and (eq step-type 'same)
8995 (/= paren-pos (point)))
8996 (let (inexpr)
8997 (cond
8998 ((save-excursion
8999 (goto-char paren-pos)
9000 (setq inexpr (c-looking-at-inexpr-block
9001 (c-safe-position containing-sexp paren-state)
9002 containing-sexp)))
9003 (c-add-syntax (if (eq (car inexpr) 'inlambda)
9004 'defun-block-intro
9005 'statement-block-intro)
9006 nil))
9007 ((looking-at c-other-decl-block-key)
9008 (c-add-syntax
9009 (cdr (assoc (match-string 1)
9010 c-other-decl-block-key-in-symbols-alist))
9011 (max (c-point 'boi paren-pos) (point))))
9012 (t (c-add-syntax 'defun-block-intro nil))))
9013
9014 (c-add-syntax 'statement-block-intro nil)))
9015
9016 (if (= paren-pos boi)
9017 ;; Always done if the open brace was at boi. The
9018 ;; c-beginning-of-statement-1 call above is necessary
9019 ;; anyway, to decide the type of block-intro to add.
9020 (goto-char paren-pos)
9021 (setq boi (c-point 'boi)))
9022 ))
9023
9024 ;; Fill in the current point as the anchor for all the symbols
9025 ;; added above.
9026 (let ((p c-syntactic-context) q)
9027 (while (not (eq p syntax-last))
9028 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
9029 (while q
9030 (unless (car q)
9031 (setcar q (point)))
9032 (setq q (cdr q)))
9033 (setq p (cdr p))))
9034 )))
9035
9036 (defun c-add-class-syntax (symbol
9037 containing-decl-open
9038 containing-decl-start
9039 containing-decl-kwd
9040 paren-state)
9041 ;; The inclass and class-close syntactic symbols are added in
9042 ;; several places and some work is needed to fix everything.
9043 ;; Therefore it's collected here.
9044 ;;
9045 ;; This function might do hidden buffer changes.
9046 (goto-char containing-decl-open)
9047 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
9048 (progn
9049 (c-add-syntax symbol containing-decl-open)
9050 containing-decl-open)
9051 (goto-char containing-decl-start)
9052 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
9053 ;; here, but we have to do like this for compatibility.
9054 (back-to-indentation)
9055 (c-add-syntax symbol (point))
9056 (if (and (c-keyword-member containing-decl-kwd
9057 'c-inexpr-class-kwds)
9058 (/= containing-decl-start (c-point 'boi containing-decl-start)))
9059 (c-add-syntax 'inexpr-class))
9060 (point)))
9061
9062 (defun c-guess-continued-construct (indent-point
9063 char-after-ip
9064 beg-of-same-or-containing-stmt
9065 containing-sexp
9066 paren-state)
9067 ;; This function contains the decision tree reached through both
9068 ;; cases 18 and 10. It's a continued statement or top level
9069 ;; construct of some kind.
9070 ;;
9071 ;; This function might do hidden buffer changes.
9072
9073 (let (special-brace-list placeholder)
9074 (goto-char indent-point)
9075 (skip-chars-forward " \t")
9076
9077 (cond
9078 ;; (CASE A removed.)
9079 ;; CASE B: open braces for class or brace-lists
9080 ((setq special-brace-list
9081 (or (and c-special-brace-lists
9082 (c-looking-at-special-brace-list))
9083 (eq char-after-ip ?{)))
9084
9085 (cond
9086 ;; CASE B.1: class-open
9087 ((save-excursion
9088 (and (eq (char-after) ?{)
9089 (c-looking-at-decl-block containing-sexp t)
9090 (setq beg-of-same-or-containing-stmt (point))))
9091 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
9092
9093 ;; CASE B.2: brace-list-open
9094 ((or (consp special-brace-list)
9095 (save-excursion
9096 (goto-char beg-of-same-or-containing-stmt)
9097 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
9098 indent-point t t t)))
9099 ;; The most semantically accurate symbol here is
9100 ;; brace-list-open, but we normally report it simply as a
9101 ;; statement-cont. The reason is that one normally adjusts
9102 ;; brace-list-open for brace lists as top-level constructs,
9103 ;; and brace lists inside statements is a completely different
9104 ;; context. C.f. case 5A.3.
9105 (c-beginning-of-statement-1 containing-sexp)
9106 (c-add-stmt-syntax (if c-auto-newline-analysis
9107 ;; Turn off the dwim above when we're
9108 ;; analyzing the nature of the brace
9109 ;; for the auto newline feature.
9110 'brace-list-open
9111 'statement-cont)
9112 nil nil
9113 containing-sexp paren-state))
9114
9115 ;; CASE B.3: The body of a function declared inside a normal
9116 ;; block. Can occur e.g. in Pike and when using gcc
9117 ;; extensions, but watch out for macros followed by blocks.
9118 ;; C.f. cases E, 16F and 17G.
9119 ((and (not (c-at-statement-start-p))
9120 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9121 'same)
9122 (save-excursion
9123 (let ((c-recognize-typeless-decls nil))
9124 ;; Turn off recognition of constructs that lacks a
9125 ;; type in this case, since that's more likely to be
9126 ;; a macro followed by a block.
9127 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9128 (c-add-stmt-syntax 'defun-open nil t
9129 containing-sexp paren-state))
9130
9131 ;; CASE B.4: Continued statement with block open. The most
9132 ;; accurate analysis is perhaps `statement-cont' together with
9133 ;; `block-open' but we play DWIM and use `substatement-open'
9134 ;; instead. The rationale is that this typically is a macro
9135 ;; followed by a block which makes it very similar to a
9136 ;; statement with a substatement block.
9137 (t
9138 (c-add-stmt-syntax 'substatement-open nil nil
9139 containing-sexp paren-state))
9140 ))
9141
9142 ;; CASE C: iostream insertion or extraction operator
9143 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
9144 (save-excursion
9145 (goto-char beg-of-same-or-containing-stmt)
9146 ;; If there is no preceding streamop in the statement
9147 ;; then indent this line as a normal statement-cont.
9148 (when (c-syntactic-re-search-forward
9149 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
9150 (c-add-syntax 'stream-op (c-point 'boi))
9151 t))))
9152
9153 ;; CASE E: In the "K&R region" of a function declared inside a
9154 ;; normal block. C.f. case B.3.
9155 ((and (save-excursion
9156 ;; Check that the next token is a '{'. This works as
9157 ;; long as no language that allows nested function
9158 ;; definitions allows stuff like member init lists, K&R
9159 ;; declarations or throws clauses there.
9160 ;;
9161 ;; Note that we do a forward search for something ahead
9162 ;; of the indentation line here. That's not good since
9163 ;; the user might not have typed it yet. Unfortunately
9164 ;; it's exceedingly tricky to recognize a function
9165 ;; prototype in a code block without resorting to this.
9166 (c-forward-syntactic-ws)
9167 (eq (char-after) ?{))
9168 (not (c-at-statement-start-p))
9169 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
9170 'same)
9171 (save-excursion
9172 (let ((c-recognize-typeless-decls nil))
9173 ;; Turn off recognition of constructs that lacks a
9174 ;; type in this case, since that's more likely to be
9175 ;; a macro followed by a block.
9176 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
9177 (c-add-stmt-syntax 'func-decl-cont nil t
9178 containing-sexp paren-state))
9179
9180 ;;CASE F: continued statement and the only preceding items are
9181 ;;annotations.
9182 ((and (c-major-mode-is 'java-mode)
9183 (setq placeholder (point))
9184 (c-beginning-of-statement-1)
9185 (progn
9186 (while (and (c-forward-annotation)
9187 (< (point) placeholder))
9188 (c-forward-syntactic-ws))
9189 t)
9190 (prog1
9191 (>= (point) placeholder)
9192 (goto-char placeholder)))
9193 (c-beginning-of-statement-1 containing-sexp)
9194 (c-add-syntax 'annotation-var-cont (point)))
9195
9196 ;; CASE G: a template list continuation?
9197 ;; Mostly a duplication of case 5D.3 to fix templates-19:
9198 ((and (c-major-mode-is 'c++-mode)
9199 (save-excursion
9200 (goto-char indent-point)
9201 (c-with-syntax-table c++-template-syntax-table
9202 (setq placeholder (c-up-list-backward)))
9203 (and placeholder
9204 (eq (char-after placeholder) ?<)
9205 (/= (char-before placeholder) ?<)
9206 (progn
9207 (goto-char (1+ placeholder))
9208 (not (looking-at c-<-op-cont-regexp))))))
9209 (c-with-syntax-table c++-template-syntax-table
9210 (goto-char placeholder)
9211 (c-beginning-of-statement-1 containing-sexp t)
9212 (if (save-excursion
9213 (c-backward-syntactic-ws containing-sexp)
9214 (eq (char-before) ?<))
9215 ;; In a nested template arglist.
9216 (progn
9217 (goto-char placeholder)
9218 (c-syntactic-skip-backward "^,;" containing-sexp t)
9219 (c-forward-syntactic-ws))
9220 (back-to-indentation)))
9221 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9222 ;; template aware.
9223 (c-add-syntax 'template-args-cont (point) placeholder))
9224
9225 ;; CASE D: continued statement.
9226 (t
9227 (c-beginning-of-statement-1 containing-sexp)
9228 (c-add-stmt-syntax 'statement-cont nil nil
9229 containing-sexp paren-state))
9230 )))
9231
9232 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
9233 ;; 2005/11/29).
9234 ;;;###autoload
9235 (defun c-guess-basic-syntax ()
9236 "Return the syntactic context of the current line."
9237 (save-excursion
9238 (beginning-of-line)
9239 (c-save-buffer-state
9240 ((indent-point (point))
9241 (case-fold-search nil)
9242 ;; A whole ugly bunch of various temporary variables. Have
9243 ;; to declare them here since it's not possible to declare
9244 ;; a variable with only the scope of a cond test and the
9245 ;; following result clauses, and most of this function is a
9246 ;; single gigantic cond. :P
9247 literal char-before-ip before-ws-ip char-after-ip macro-start
9248 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
9249 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
9250 containing-<
9251 ;; The following record some positions for the containing
9252 ;; declaration block if we're directly within one:
9253 ;; `containing-decl-open' is the position of the open
9254 ;; brace. `containing-decl-start' is the start of the
9255 ;; declaration. `containing-decl-kwd' is the keyword
9256 ;; symbol of the keyword that tells what kind of block it
9257 ;; is.
9258 containing-decl-open
9259 containing-decl-start
9260 containing-decl-kwd
9261 ;; The open paren of the closest surrounding sexp or nil if
9262 ;; there is none.
9263 containing-sexp
9264 ;; The position after the closest preceding brace sexp
9265 ;; (nested sexps are ignored), or the position after
9266 ;; `containing-sexp' if there is none, or (point-min) if
9267 ;; `containing-sexp' is nil.
9268 lim
9269 ;; The paren state outside `containing-sexp', or at
9270 ;; `indent-point' if `containing-sexp' is nil.
9271 (paren-state (c-parse-state))
9272 ;; There's always at most one syntactic element which got
9273 ;; an anchor pos. It's stored in syntactic-relpos.
9274 syntactic-relpos
9275 (c-stmt-delim-chars c-stmt-delim-chars))
9276
9277 ;; Check if we're directly inside an enclosing declaration
9278 ;; level block.
9279 (when (and (setq containing-sexp
9280 (c-most-enclosing-brace paren-state))
9281 (progn
9282 (goto-char containing-sexp)
9283 (eq (char-after) ?{))
9284 (setq placeholder
9285 (c-looking-at-decl-block
9286 (c-most-enclosing-brace paren-state
9287 containing-sexp)
9288 t)))
9289 (setq containing-decl-open containing-sexp
9290 containing-decl-start (point)
9291 containing-sexp nil)
9292 (goto-char placeholder)
9293 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
9294 (c-keyword-sym (match-string 1)))))
9295
9296 ;; Init some position variables.
9297 (if c-state-cache
9298 (progn
9299 (setq containing-sexp (car paren-state)
9300 paren-state (cdr paren-state))
9301 (if (consp containing-sexp)
9302 (progn
9303 (setq lim (cdr containing-sexp))
9304 (if (cdr c-state-cache)
9305 ;; Ignore balanced paren. The next entry
9306 ;; can't be another one.
9307 (setq containing-sexp (car (cdr c-state-cache))
9308 paren-state (cdr paren-state))
9309 ;; If there is no surrounding open paren then
9310 ;; put the last balanced pair back on paren-state.
9311 (setq paren-state (cons containing-sexp paren-state)
9312 containing-sexp nil)))
9313 (setq lim (1+ containing-sexp))))
9314 (setq lim (point-min)))
9315 (when (c-beginning-of-macro)
9316 (goto-char indent-point)
9317 (let ((lim1 (c-determine-limit 2000)))
9318 (setq lim (max lim lim1))))
9319
9320 ;; If we're in a parenthesis list then ',' delimits the
9321 ;; "statements" rather than being an operator (with the
9322 ;; exception of the "for" clause). This difference is
9323 ;; typically only noticeable when statements are used in macro
9324 ;; arglists.
9325 (when (and containing-sexp
9326 (eq (char-after containing-sexp) ?\())
9327 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
9328 ;; cache char before and after indent point, and move point to
9329 ;; the most likely position to perform the majority of tests
9330 (goto-char indent-point)
9331 (c-backward-syntactic-ws lim)
9332 (setq before-ws-ip (point)
9333 char-before-ip (char-before))
9334 (goto-char indent-point)
9335 (skip-chars-forward " \t")
9336 (setq char-after-ip (char-after))
9337
9338 ;; are we in a literal?
9339 (setq literal (c-in-literal lim))
9340
9341 ;; now figure out syntactic qualities of the current line
9342 (cond
9343
9344 ;; CASE 1: in a string.
9345 ((eq literal 'string)
9346 (c-add-syntax 'string (c-point 'bopl)))
9347
9348 ;; CASE 2: in a C or C++ style comment.
9349 ((and (memq literal '(c c++))
9350 ;; This is a kludge for XEmacs where we use
9351 ;; `buffer-syntactic-context', which doesn't correctly
9352 ;; recognize "\*/" to end a block comment.
9353 ;; `parse-partial-sexp' which is used by
9354 ;; `c-literal-limits' will however do that in most
9355 ;; versions, which results in that we get nil from
9356 ;; `c-literal-limits' even when `c-in-literal' claims
9357 ;; we're inside a comment.
9358 (setq placeholder (c-literal-limits lim)))
9359 (c-add-syntax literal (car placeholder)))
9360
9361 ;; CASE 3: in a cpp preprocessor macro continuation.
9362 ((and (save-excursion
9363 (when (c-beginning-of-macro)
9364 (setq macro-start (point))))
9365 (/= macro-start (c-point 'boi))
9366 (progn
9367 (setq tmpsymbol 'cpp-macro-cont)
9368 (or (not c-syntactic-indentation-in-macros)
9369 (save-excursion
9370 (goto-char macro-start)
9371 ;; If at the beginning of the body of a #define
9372 ;; directive then analyze as cpp-define-intro
9373 ;; only. Go on with the syntactic analysis
9374 ;; otherwise. in-macro-expr is set if we're in a
9375 ;; cpp expression, i.e. before the #define body
9376 ;; or anywhere in a non-#define directive.
9377 (if (c-forward-to-cpp-define-body)
9378 (let ((indent-boi (c-point 'boi indent-point)))
9379 (setq in-macro-expr (> (point) indent-boi)
9380 tmpsymbol 'cpp-define-intro)
9381 (= (point) indent-boi))
9382 (setq in-macro-expr t)
9383 nil)))))
9384 (c-add-syntax tmpsymbol macro-start)
9385 (setq macro-start nil))
9386
9387 ;; CASE 11: an else clause?
9388 ((looking-at "else\\>[^_]")
9389 (c-beginning-of-statement-1 containing-sexp)
9390 (c-add-stmt-syntax 'else-clause nil t
9391 containing-sexp paren-state))
9392
9393 ;; CASE 12: while closure of a do/while construct?
9394 ((and (looking-at "while\\>[^_]")
9395 (save-excursion
9396 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
9397 'beginning)
9398 (setq placeholder (point)))))
9399 (goto-char placeholder)
9400 (c-add-stmt-syntax 'do-while-closure nil t
9401 containing-sexp paren-state))
9402
9403 ;; CASE 13: A catch or finally clause? This case is simpler
9404 ;; than if-else and do-while, because a block is required
9405 ;; after every try, catch and finally.
9406 ((save-excursion
9407 (and (cond ((c-major-mode-is 'c++-mode)
9408 (looking-at "catch\\>[^_]"))
9409 ((c-major-mode-is 'java-mode)
9410 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
9411 (and (c-safe (c-backward-syntactic-ws)
9412 (c-backward-sexp)
9413 t)
9414 (eq (char-after) ?{)
9415 (c-safe (c-backward-syntactic-ws)
9416 (c-backward-sexp)
9417 t)
9418 (if (eq (char-after) ?\()
9419 (c-safe (c-backward-sexp) t)
9420 t))
9421 (looking-at "\\(try\\|catch\\)\\>[^_]")
9422 (setq placeholder (point))))
9423 (goto-char placeholder)
9424 (c-add-stmt-syntax 'catch-clause nil t
9425 containing-sexp paren-state))
9426
9427 ;; CASE 18: A substatement we can recognize by keyword.
9428 ((save-excursion
9429 (and c-opt-block-stmt-key
9430 (not (eq char-before-ip ?\;))
9431 (not (c-at-vsemi-p before-ws-ip))
9432 (not (memq char-after-ip '(?\) ?\] ?,)))
9433 (or (not (eq char-before-ip ?}))
9434 (c-looking-at-inexpr-block-backward c-state-cache))
9435 (> (point)
9436 (progn
9437 ;; Ought to cache the result from the
9438 ;; c-beginning-of-statement-1 calls here.
9439 (setq placeholder (point))
9440 (while (eq (setq step-type
9441 (c-beginning-of-statement-1 lim))
9442 'label))
9443 (if (eq step-type 'previous)
9444 (goto-char placeholder)
9445 (setq placeholder (point))
9446 (if (and (eq step-type 'same)
9447 (not (looking-at c-opt-block-stmt-key)))
9448 ;; Step up to the containing statement if we
9449 ;; stayed in the same one.
9450 (let (step)
9451 (while (eq
9452 (setq step
9453 (c-beginning-of-statement-1 lim))
9454 'label))
9455 (if (eq step 'up)
9456 (setq placeholder (point))
9457 ;; There was no containing statement after all.
9458 (goto-char placeholder)))))
9459 placeholder))
9460 (if (looking-at c-block-stmt-2-key)
9461 ;; Require a parenthesis after these keywords.
9462 ;; Necessary to catch e.g. synchronized in Java,
9463 ;; which can be used both as statement and
9464 ;; modifier.
9465 (and (zerop (c-forward-token-2 1 nil))
9466 (eq (char-after) ?\())
9467 (looking-at c-opt-block-stmt-key))))
9468
9469 (if (eq step-type 'up)
9470 ;; CASE 18A: Simple substatement.
9471 (progn
9472 (goto-char placeholder)
9473 (cond
9474 ((eq char-after-ip ?{)
9475 (c-add-stmt-syntax 'substatement-open nil nil
9476 containing-sexp paren-state))
9477 ((save-excursion
9478 (goto-char indent-point)
9479 (back-to-indentation)
9480 (c-forward-label))
9481 (c-add-stmt-syntax 'substatement-label nil nil
9482 containing-sexp paren-state))
9483 (t
9484 (c-add-stmt-syntax 'substatement nil nil
9485 containing-sexp paren-state))))
9486
9487 ;; CASE 18B: Some other substatement. This is shared
9488 ;; with case 10.
9489 (c-guess-continued-construct indent-point
9490 char-after-ip
9491 placeholder
9492 lim
9493 paren-state)))
9494
9495 ;; CASE 14: A case or default label
9496 ((looking-at c-label-kwds-regexp)
9497 (if containing-sexp
9498 (progn
9499 (goto-char containing-sexp)
9500 (setq lim (c-most-enclosing-brace c-state-cache
9501 containing-sexp))
9502 (c-backward-to-block-anchor lim)
9503 (c-add-stmt-syntax 'case-label nil t lim paren-state))
9504 ;; Got a bogus label at the top level. In lack of better
9505 ;; alternatives, anchor it on (point-min).
9506 (c-add-syntax 'case-label (point-min))))
9507
9508 ;; CASE 15: any other label
9509 ((save-excursion
9510 (back-to-indentation)
9511 (and (not (looking-at c-syntactic-ws-start))
9512 (c-forward-label)))
9513 (cond (containing-decl-open
9514 (setq placeholder (c-add-class-syntax 'inclass
9515 containing-decl-open
9516 containing-decl-start
9517 containing-decl-kwd
9518 paren-state))
9519 ;; Append access-label with the same anchor point as
9520 ;; inclass gets.
9521 (c-append-syntax 'access-label placeholder))
9522
9523 (containing-sexp
9524 (goto-char containing-sexp)
9525 (setq lim (c-most-enclosing-brace c-state-cache
9526 containing-sexp))
9527 (save-excursion
9528 (setq tmpsymbol
9529 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
9530 (looking-at "switch\\>[^_]"))
9531 ;; If the surrounding statement is a switch then
9532 ;; let's analyze all labels as switch labels, so
9533 ;; that they get lined up consistently.
9534 'case-label
9535 'label)))
9536 (c-backward-to-block-anchor lim)
9537 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
9538
9539 (t
9540 ;; A label on the top level. Treat it as a class
9541 ;; context. (point-min) is the closest we get to the
9542 ;; class open brace.
9543 (c-add-syntax 'access-label (point-min)))))
9544
9545 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
9546 ;; 17E.
9547 ((setq placeholder (c-looking-at-inexpr-block
9548 (c-safe-position containing-sexp paren-state)
9549 containing-sexp
9550 ;; Have to turn on the heuristics after
9551 ;; the point even though it doesn't work
9552 ;; very well. C.f. test case class-16.pike.
9553 t))
9554 (setq tmpsymbol (assq (car placeholder)
9555 '((inexpr-class . class-open)
9556 (inexpr-statement . block-open))))
9557 (if tmpsymbol
9558 ;; It's a statement block or an anonymous class.
9559 (setq tmpsymbol (cdr tmpsymbol))
9560 ;; It's a Pike lambda. Check whether we are between the
9561 ;; lambda keyword and the argument list or at the defun
9562 ;; opener.
9563 (setq tmpsymbol (if (eq char-after-ip ?{)
9564 'inline-open
9565 'lambda-intro-cont)))
9566 (goto-char (cdr placeholder))
9567 (back-to-indentation)
9568 (c-add-stmt-syntax tmpsymbol nil t
9569 (c-most-enclosing-brace c-state-cache (point))
9570 paren-state)
9571 (unless (eq (point) (cdr placeholder))
9572 (c-add-syntax (car placeholder))))
9573
9574 ;; CASE 5: Line is inside a declaration level block or at top level.
9575 ((or containing-decl-open (null containing-sexp))
9576 (cond
9577
9578 ;; CASE 5A: we are looking at a defun, brace list, class,
9579 ;; or inline-inclass method opening brace
9580 ((setq special-brace-list
9581 (or (and c-special-brace-lists
9582 (c-looking-at-special-brace-list))
9583 (eq char-after-ip ?{)))
9584 (cond
9585
9586 ;; CASE 5A.1: Non-class declaration block open.
9587 ((save-excursion
9588 (let (tmp)
9589 (and (eq char-after-ip ?{)
9590 (setq tmp (c-looking-at-decl-block containing-sexp t))
9591 (progn
9592 (setq placeholder (point))
9593 (goto-char tmp)
9594 (looking-at c-symbol-key))
9595 (c-keyword-member
9596 (c-keyword-sym (setq keyword (match-string 0)))
9597 'c-other-block-decl-kwds))))
9598 (goto-char placeholder)
9599 (c-add-stmt-syntax
9600 (if (string-equal keyword "extern")
9601 ;; Special case for extern-lang-open.
9602 'extern-lang-open
9603 (intern (concat keyword "-open")))
9604 nil t containing-sexp paren-state))
9605
9606 ;; CASE 5A.2: we are looking at a class opening brace
9607 ((save-excursion
9608 (goto-char indent-point)
9609 (skip-chars-forward " \t")
9610 (and (eq (char-after) ?{)
9611 (c-looking-at-decl-block containing-sexp t)
9612 (setq placeholder (point))))
9613 (c-add-syntax 'class-open placeholder))
9614
9615 ;; CASE 5A.3: brace list open
9616 ((save-excursion
9617 (c-beginning-of-decl-1 lim)
9618 (while (looking-at c-specifier-key)
9619 (goto-char (match-end 1))
9620 (c-forward-syntactic-ws indent-point))
9621 (setq placeholder (c-point 'boi))
9622 (or (consp special-brace-list)
9623 (and (or (save-excursion
9624 (goto-char indent-point)
9625 (setq tmpsymbol nil)
9626 (while (and (> (point) placeholder)
9627 (zerop (c-backward-token-2 1 t))
9628 (not (looking-at "=\\([^=]\\|$\\)")))
9629 (and c-opt-inexpr-brace-list-key
9630 (not tmpsymbol)
9631 (looking-at c-opt-inexpr-brace-list-key)
9632 (setq tmpsymbol 'topmost-intro-cont)))
9633 (looking-at "=\\([^=]\\|$\\)"))
9634 (looking-at c-brace-list-key))
9635 (save-excursion
9636 (while (and (< (point) indent-point)
9637 (zerop (c-forward-token-2 1 t))
9638 (not (memq (char-after) '(?\; ?\()))))
9639 (not (memq (char-after) '(?\; ?\()))
9640 ))))
9641 (if (and (not c-auto-newline-analysis)
9642 (c-major-mode-is 'java-mode)
9643 (eq tmpsymbol 'topmost-intro-cont))
9644 ;; We're in Java and have found that the open brace
9645 ;; belongs to a "new Foo[]" initialization list,
9646 ;; which means the brace list is part of an
9647 ;; expression and not a top level definition. We
9648 ;; therefore treat it as any topmost continuation
9649 ;; even though the semantically correct symbol still
9650 ;; is brace-list-open, on the same grounds as in
9651 ;; case B.2.
9652 (progn
9653 (c-beginning-of-statement-1 lim)
9654 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
9655 (c-add-syntax 'brace-list-open placeholder)))
9656
9657 ;; CASE 5A.4: inline defun open
9658 ((and containing-decl-open
9659 (not (c-keyword-member containing-decl-kwd
9660 'c-other-block-decl-kwds)))
9661 (c-add-syntax 'inline-open)
9662 (c-add-class-syntax 'inclass
9663 containing-decl-open
9664 containing-decl-start
9665 containing-decl-kwd
9666 paren-state))
9667
9668 ;; CASE 5A.5: ordinary defun open
9669 (t
9670 (save-excursion
9671 (c-beginning-of-decl-1 lim)
9672 (while (looking-at c-specifier-key)
9673 (goto-char (match-end 1))
9674 (c-forward-syntactic-ws indent-point))
9675 (c-add-syntax 'defun-open (c-point 'boi))
9676 ;; Bogus to use bol here, but it's the legacy. (Resolved,
9677 ;; 2007-11-09)
9678 ))))
9679
9680 ;; CASE 5B: After a function header but before the body (or
9681 ;; the ending semicolon if there's no body).
9682 ((save-excursion
9683 (when (setq placeholder (c-just-after-func-arglist-p
9684 (max lim (c-determine-limit 500))))
9685 (setq tmp-pos (point))))
9686 (cond
9687
9688 ;; CASE 5B.1: Member init list.
9689 ((eq (char-after tmp-pos) ?:)
9690 (if (or (>= tmp-pos indent-point)
9691 (= (c-point 'bosws) (1+ tmp-pos)))
9692 (progn
9693 ;; There is no preceding member init clause.
9694 ;; Indent relative to the beginning of indentation
9695 ;; for the topmost-intro line that contains the
9696 ;; prototype's open paren.
9697 (goto-char placeholder)
9698 (c-add-syntax 'member-init-intro (c-point 'boi)))
9699 ;; Indent relative to the first member init clause.
9700 (goto-char (1+ tmp-pos))
9701 (c-forward-syntactic-ws)
9702 (c-add-syntax 'member-init-cont (point))))
9703
9704 ;; CASE 5B.2: K&R arg decl intro
9705 ((and c-recognize-knr-p
9706 (c-in-knr-argdecl lim))
9707 (c-beginning-of-statement-1 lim)
9708 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
9709 (if containing-decl-open
9710 (c-add-class-syntax 'inclass
9711 containing-decl-open
9712 containing-decl-start
9713 containing-decl-kwd
9714 paren-state)))
9715
9716 ;; CASE 5B.4: Nether region after a C++ or Java func
9717 ;; decl, which could include a `throws' declaration.
9718 (t
9719 (c-beginning-of-statement-1 lim)
9720 (c-add-syntax 'func-decl-cont (c-point 'boi))
9721 )))
9722
9723 ;; CASE 5C: inheritance line. could be first inheritance
9724 ;; line, or continuation of a multiple inheritance
9725 ((or (and (c-major-mode-is 'c++-mode)
9726 (progn
9727 (when (eq char-after-ip ?,)
9728 (skip-chars-forward " \t")
9729 (forward-char))
9730 (looking-at c-opt-postfix-decl-spec-key)))
9731 (and (or (eq char-before-ip ?:)
9732 ;; watch out for scope operator
9733 (save-excursion
9734 (and (eq char-after-ip ?:)
9735 (c-safe (forward-char 1) t)
9736 (not (eq (char-after) ?:))
9737 )))
9738 (save-excursion
9739 (c-backward-syntactic-ws lim)
9740 (if (eq char-before-ip ?:)
9741 (progn
9742 (forward-char -1)
9743 (c-backward-syntactic-ws lim)))
9744 (back-to-indentation)
9745 (looking-at c-class-key)))
9746 ;; for Java
9747 (and (c-major-mode-is 'java-mode)
9748 (let ((fence (save-excursion
9749 (c-beginning-of-statement-1 lim)
9750 (point)))
9751 cont done)
9752 (save-excursion
9753 (while (not done)
9754 (cond ((looking-at c-opt-postfix-decl-spec-key)
9755 (setq injava-inher (cons cont (point))
9756 done t))
9757 ((or (not (c-safe (c-forward-sexp -1) t))
9758 (<= (point) fence))
9759 (setq done t))
9760 )
9761 (setq cont t)))
9762 injava-inher)
9763 (not (c-crosses-statement-barrier-p (cdr injava-inher)
9764 (point)))
9765 ))
9766 (cond
9767
9768 ;; CASE 5C.1: non-hanging colon on an inher intro
9769 ((eq char-after-ip ?:)
9770 (c-beginning-of-statement-1 lim)
9771 (c-add-syntax 'inher-intro (c-point 'boi))
9772 ;; don't add inclass symbol since relative point already
9773 ;; contains any class offset
9774 )
9775
9776 ;; CASE 5C.2: hanging colon on an inher intro
9777 ((eq char-before-ip ?:)
9778 (c-beginning-of-statement-1 lim)
9779 (c-add-syntax 'inher-intro (c-point 'boi))
9780 (if containing-decl-open
9781 (c-add-class-syntax 'inclass
9782 containing-decl-open
9783 containing-decl-start
9784 containing-decl-kwd
9785 paren-state)))
9786
9787 ;; CASE 5C.3: in a Java implements/extends
9788 (injava-inher
9789 (let ((where (cdr injava-inher))
9790 (cont (car injava-inher)))
9791 (goto-char where)
9792 (cond ((looking-at "throws\\>[^_]")
9793 (c-add-syntax 'func-decl-cont
9794 (progn (c-beginning-of-statement-1 lim)
9795 (c-point 'boi))))
9796 (cont (c-add-syntax 'inher-cont where))
9797 (t (c-add-syntax 'inher-intro
9798 (progn (goto-char (cdr injava-inher))
9799 (c-beginning-of-statement-1 lim)
9800 (point))))
9801 )))
9802
9803 ;; CASE 5C.4: a continued inheritance line
9804 (t
9805 (c-beginning-of-inheritance-list lim)
9806 (c-add-syntax 'inher-cont (point))
9807 ;; don't add inclass symbol since relative point already
9808 ;; contains any class offset
9809 )))
9810
9811 ;; CASE 5P: AWK pattern or function or continuation
9812 ;; thereof.
9813 ((c-major-mode-is 'awk-mode)
9814 (setq placeholder (point))
9815 (c-add-stmt-syntax
9816 (if (and (eq (c-beginning-of-statement-1) 'same)
9817 (/= (point) placeholder))
9818 'topmost-intro-cont
9819 'topmost-intro)
9820 nil nil
9821 containing-sexp paren-state))
9822
9823 ;; CASE 5D: this could be a top-level initialization, a
9824 ;; member init list continuation, or a template argument
9825 ;; list continuation.
9826 ((save-excursion
9827 ;; Note: We use the fact that lim is always after any
9828 ;; preceding brace sexp.
9829 (if c-recognize-<>-arglists
9830 (while (and
9831 (progn
9832 (c-syntactic-skip-backward "^;,=<>" lim t)
9833 (> (point) lim))
9834 (or
9835 (when c-overloadable-operators-regexp
9836 (when (setq placeholder (c-after-special-operator-id lim))
9837 (goto-char placeholder)
9838 t))
9839 (cond
9840 ((eq (char-before) ?>)
9841 (or (c-backward-<>-arglist nil lim)
9842 (backward-char))
9843 t)
9844 ((eq (char-before) ?<)
9845 (backward-char)
9846 (if (save-excursion
9847 (c-forward-<>-arglist nil))
9848 (progn (forward-char)
9849 nil)
9850 t))
9851 (t nil)))))
9852 ;; NB: No c-after-special-operator-id stuff in this
9853 ;; clause - we assume only C++ needs it.
9854 (c-syntactic-skip-backward "^;,=" lim t))
9855 (memq (char-before) '(?, ?= ?<)))
9856 (cond
9857
9858 ;; CASE 5D.3: perhaps a template list continuation?
9859 ((and (c-major-mode-is 'c++-mode)
9860 (save-excursion
9861 (save-restriction
9862 (c-with-syntax-table c++-template-syntax-table
9863 (goto-char indent-point)
9864 (setq placeholder (c-up-list-backward))
9865 (and placeholder
9866 (eq (char-after placeholder) ?<))))))
9867 (c-with-syntax-table c++-template-syntax-table
9868 (goto-char placeholder)
9869 (c-beginning-of-statement-1 lim t)
9870 (if (save-excursion
9871 (c-backward-syntactic-ws lim)
9872 (eq (char-before) ?<))
9873 ;; In a nested template arglist.
9874 (progn
9875 (goto-char placeholder)
9876 (c-syntactic-skip-backward "^,;" lim t)
9877 (c-forward-syntactic-ws))
9878 (back-to-indentation)))
9879 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
9880 ;; template aware.
9881 (c-add-syntax 'template-args-cont (point) placeholder))
9882
9883 ;; CASE 5D.4: perhaps a multiple inheritance line?
9884 ((and (c-major-mode-is 'c++-mode)
9885 (save-excursion
9886 (c-beginning-of-statement-1 lim)
9887 (setq placeholder (point))
9888 (if (looking-at "static\\>[^_]")
9889 (c-forward-token-2 1 nil indent-point))
9890 (and (looking-at c-class-key)
9891 (zerop (c-forward-token-2 2 nil indent-point))
9892 (if (eq (char-after) ?<)
9893 (c-with-syntax-table c++-template-syntax-table
9894 (zerop (c-forward-token-2 1 t indent-point)))
9895 t)
9896 (eq (char-after) ?:))))
9897 (goto-char placeholder)
9898 (c-add-syntax 'inher-cont (c-point 'boi)))
9899
9900 ;; CASE 5D.5: Continuation of the "expression part" of a
9901 ;; top level construct. Or, perhaps, an unrecognized construct.
9902 (t
9903 (while (and (setq placeholder (point))
9904 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
9905 'same)
9906 (save-excursion
9907 (c-backward-syntactic-ws)
9908 (eq (char-before) ?}))
9909 (< (point) placeholder)))
9910 (c-add-stmt-syntax
9911 (cond
9912 ((eq (point) placeholder) 'statement) ; unrecognized construct
9913 ;; A preceding comma at the top level means that a
9914 ;; new variable declaration starts here. Use
9915 ;; topmost-intro-cont for it, for consistency with
9916 ;; the first variable declaration. C.f. case 5N.
9917 ((eq char-before-ip ?,) 'topmost-intro-cont)
9918 (t 'statement-cont))
9919 nil nil containing-sexp paren-state))
9920 ))
9921
9922 ;; CASE 5F: Close of a non-class declaration level block.
9923 ((and (eq char-after-ip ?})
9924 (c-keyword-member containing-decl-kwd
9925 'c-other-block-decl-kwds))
9926 ;; This is inconsistent: Should use `containing-decl-open'
9927 ;; here if it's at boi, like in case 5J.
9928 (goto-char containing-decl-start)
9929 (c-add-stmt-syntax
9930 (if (string-equal (symbol-name containing-decl-kwd) "extern")
9931 ;; Special case for compatibility with the
9932 ;; extern-lang syntactic symbols.
9933 'extern-lang-close
9934 (intern (concat (symbol-name containing-decl-kwd)
9935 "-close")))
9936 nil t
9937 (c-most-enclosing-brace paren-state (point))
9938 paren-state))
9939
9940 ;; CASE 5G: we are looking at the brace which closes the
9941 ;; enclosing nested class decl
9942 ((and containing-sexp
9943 (eq char-after-ip ?})
9944 (eq containing-decl-open containing-sexp))
9945 (c-add-class-syntax 'class-close
9946 containing-decl-open
9947 containing-decl-start
9948 containing-decl-kwd
9949 paren-state))
9950
9951 ;; CASE 5H: we could be looking at subsequent knr-argdecls
9952 ((and c-recognize-knr-p
9953 (not containing-sexp) ; can't be knr inside braces.
9954 (not (eq char-before-ip ?}))
9955 (save-excursion
9956 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
9957 (and placeholder
9958 ;; Do an extra check to avoid tripping up on
9959 ;; statements that occur in invalid contexts
9960 ;; (e.g. in macro bodies where we don't really
9961 ;; know the context of what we're looking at).
9962 (not (and c-opt-block-stmt-key
9963 (looking-at c-opt-block-stmt-key)))))
9964 (< placeholder indent-point))
9965 (goto-char placeholder)
9966 (c-add-syntax 'knr-argdecl (point)))
9967
9968 ;; CASE 5I: ObjC method definition.
9969 ((and c-opt-method-key
9970 (looking-at c-opt-method-key))
9971 (c-beginning-of-statement-1 nil t)
9972 (if (= (point) indent-point)
9973 ;; Handle the case when it's the first (non-comment)
9974 ;; thing in the buffer. Can't look for a 'same return
9975 ;; value from cbos1 since ObjC directives currently
9976 ;; aren't recognized fully, so that we get 'same
9977 ;; instead of 'previous if it moved over a preceding
9978 ;; directive.
9979 (goto-char (point-min)))
9980 (c-add-syntax 'objc-method-intro (c-point 'boi)))
9981
9982 ;; CASE 5N: At a variable declaration that follows a class
9983 ;; definition or some other block declaration that doesn't
9984 ;; end at the closing '}'. C.f. case 5D.5.
9985 ((progn
9986 (c-backward-syntactic-ws lim)
9987 (and (eq (char-before) ?})
9988 (save-excursion
9989 (let ((start (point)))
9990 (if (and c-state-cache
9991 (consp (car c-state-cache))
9992 (eq (cdar c-state-cache) (point)))
9993 ;; Speed up the backward search a bit.
9994 (goto-char (caar c-state-cache)))
9995 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
9996 (setq placeholder (point))
9997 (if (= start (point))
9998 ;; The '}' is unbalanced.
9999 nil
10000 (c-end-of-decl-1)
10001 (>= (point) indent-point))))))
10002 (goto-char placeholder)
10003 (c-add-stmt-syntax 'topmost-intro-cont nil nil
10004 containing-sexp paren-state))
10005
10006 ;; NOTE: The point is at the end of the previous token here.
10007
10008 ;; CASE 5J: we are at the topmost level, make
10009 ;; sure we skip back past any access specifiers
10010 ((and
10011 ;; A macro continuation line is never at top level.
10012 (not (and macro-start
10013 (> indent-point macro-start)))
10014 (save-excursion
10015 (setq placeholder (point))
10016 (or (memq char-before-ip '(?\; ?{ ?} nil))
10017 (c-at-vsemi-p before-ws-ip)
10018 (when (and (eq char-before-ip ?:)
10019 (eq (c-beginning-of-statement-1 lim)
10020 'label))
10021 (c-backward-syntactic-ws lim)
10022 (setq placeholder (point)))
10023 (and (c-major-mode-is 'objc-mode)
10024 (catch 'not-in-directive
10025 (c-beginning-of-statement-1 lim)
10026 (setq placeholder (point))
10027 (while (and (c-forward-objc-directive)
10028 (< (point) indent-point))
10029 (c-forward-syntactic-ws)
10030 (if (>= (point) indent-point)
10031 (throw 'not-in-directive t))
10032 (setq placeholder (point)))
10033 nil)))))
10034 ;; For historic reasons we anchor at bol of the last
10035 ;; line of the previous declaration. That's clearly
10036 ;; highly bogus and useless, and it makes our lives hard
10037 ;; to remain compatible. :P
10038 (goto-char placeholder)
10039 (c-add-syntax 'topmost-intro (c-point 'bol))
10040 (if containing-decl-open
10041 (if (c-keyword-member containing-decl-kwd
10042 'c-other-block-decl-kwds)
10043 (progn
10044 (goto-char (c-brace-anchor-point containing-decl-open))
10045 (c-add-stmt-syntax
10046 (if (string-equal (symbol-name containing-decl-kwd)
10047 "extern")
10048 ;; Special case for compatibility with the
10049 ;; extern-lang syntactic symbols.
10050 'inextern-lang
10051 (intern (concat "in"
10052 (symbol-name containing-decl-kwd))))
10053 nil t
10054 (c-most-enclosing-brace paren-state (point))
10055 paren-state))
10056 (c-add-class-syntax 'inclass
10057 containing-decl-open
10058 containing-decl-start
10059 containing-decl-kwd
10060 paren-state)))
10061 (when (and c-syntactic-indentation-in-macros
10062 macro-start
10063 (/= macro-start (c-point 'boi indent-point)))
10064 (c-add-syntax 'cpp-define-intro)
10065 (setq macro-start nil)))
10066
10067 ;; CASE 5K: we are at an ObjC method definition
10068 ;; continuation line.
10069 ((and c-opt-method-key
10070 (save-excursion
10071 (c-beginning-of-statement-1 lim)
10072 (beginning-of-line)
10073 (when (looking-at c-opt-method-key)
10074 (setq placeholder (point)))))
10075 (c-add-syntax 'objc-method-args-cont placeholder))
10076
10077 ;; CASE 5L: we are at the first argument of a template
10078 ;; arglist that begins on the previous line.
10079 ((and c-recognize-<>-arglists
10080 (eq (char-before) ?<)
10081 (not (and c-overloadable-operators-regexp
10082 (c-after-special-operator-id lim))))
10083 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10084 (c-add-syntax 'template-args-cont (c-point 'boi)))
10085
10086 ;; CASE 5Q: we are at a statement within a macro.
10087 (macro-start
10088 (c-beginning-of-statement-1 containing-sexp)
10089 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
10090
10091 ;;CASE 5N: We are at a topmost continuation line and the only
10092 ;;preceding items are annotations.
10093 ((and (c-major-mode-is 'java-mode)
10094 (setq placeholder (point))
10095 (c-beginning-of-statement-1)
10096 (progn
10097 (while (and (c-forward-annotation))
10098 (c-forward-syntactic-ws))
10099 t)
10100 (prog1
10101 (>= (point) placeholder)
10102 (goto-char placeholder)))
10103 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
10104
10105 ;; CASE 5M: we are at a topmost continuation line
10106 (t
10107 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
10108 (when (c-major-mode-is 'objc-mode)
10109 (setq placeholder (point))
10110 (while (and (c-forward-objc-directive)
10111 (< (point) indent-point))
10112 (c-forward-syntactic-ws)
10113 (setq placeholder (point)))
10114 (goto-char placeholder))
10115 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10116 ))
10117
10118
10119 ;; (CASE 6 has been removed.)
10120
10121 ;; CASE 7: line is an expression, not a statement. Most
10122 ;; likely we are either in a function prototype or a function
10123 ;; call argument list
10124 ((not (or (and c-special-brace-lists
10125 (save-excursion
10126 (goto-char containing-sexp)
10127 (c-looking-at-special-brace-list)))
10128 (eq (char-after containing-sexp) ?{)))
10129 (cond
10130
10131 ;; CASE 7A: we are looking at the arglist closing paren.
10132 ;; C.f. case 7F.
10133 ((memq char-after-ip '(?\) ?\]))
10134 (goto-char containing-sexp)
10135 (setq placeholder (c-point 'boi))
10136 (if (and (c-safe (backward-up-list 1) t)
10137 (>= (point) placeholder))
10138 (progn
10139 (forward-char)
10140 (skip-chars-forward " \t"))
10141 (goto-char placeholder))
10142 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
10143 (c-most-enclosing-brace paren-state (point))
10144 paren-state))
10145
10146 ;; CASE 7B: Looking at the opening brace of an
10147 ;; in-expression block or brace list. C.f. cases 4, 16A
10148 ;; and 17E.
10149 ((and (eq char-after-ip ?{)
10150 (progn
10151 (setq placeholder (c-inside-bracelist-p (point)
10152 paren-state))
10153 (if placeholder
10154 (setq tmpsymbol '(brace-list-open . inexpr-class))
10155 (setq tmpsymbol '(block-open . inexpr-statement)
10156 placeholder
10157 (cdr-safe (c-looking-at-inexpr-block
10158 (c-safe-position containing-sexp
10159 paren-state)
10160 containing-sexp)))
10161 ;; placeholder is nil if it's a block directly in
10162 ;; a function arglist. That makes us skip out of
10163 ;; this case.
10164 )))
10165 (goto-char placeholder)
10166 (back-to-indentation)
10167 (c-add-stmt-syntax (car tmpsymbol) nil t
10168 (c-most-enclosing-brace paren-state (point))
10169 paren-state)
10170 (if (/= (point) placeholder)
10171 (c-add-syntax (cdr tmpsymbol))))
10172
10173 ;; CASE 7C: we are looking at the first argument in an empty
10174 ;; argument list. Use arglist-close if we're actually
10175 ;; looking at a close paren or bracket.
10176 ((memq char-before-ip '(?\( ?\[))
10177 (goto-char containing-sexp)
10178 (setq placeholder (c-point 'boi))
10179 (if (and (c-safe (backward-up-list 1) t)
10180 (>= (point) placeholder))
10181 (progn
10182 (forward-char)
10183 (skip-chars-forward " \t"))
10184 (goto-char placeholder))
10185 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
10186 (c-most-enclosing-brace paren-state (point))
10187 paren-state))
10188
10189 ;; CASE 7D: we are inside a conditional test clause. treat
10190 ;; these things as statements
10191 ((progn
10192 (goto-char containing-sexp)
10193 (and (c-safe (c-forward-sexp -1) t)
10194 (looking-at "\\<for\\>[^_]")))
10195 (goto-char (1+ containing-sexp))
10196 (c-forward-syntactic-ws indent-point)
10197 (if (eq char-before-ip ?\;)
10198 (c-add-syntax 'statement (point))
10199 (c-add-syntax 'statement-cont (point))
10200 ))
10201
10202 ;; CASE 7E: maybe a continued ObjC method call. This is the
10203 ;; case when we are inside a [] bracketed exp, and what
10204 ;; precede the opening bracket is not an identifier.
10205 ((and c-opt-method-key
10206 (eq (char-after containing-sexp) ?\[)
10207 (progn
10208 (goto-char (1- containing-sexp))
10209 (c-backward-syntactic-ws (c-point 'bod))
10210 (if (not (looking-at c-symbol-key))
10211 (c-add-syntax 'objc-method-call-cont containing-sexp))
10212 )))
10213
10214 ;; CASE 7F: we are looking at an arglist continuation line,
10215 ;; but the preceding argument is on the same line as the
10216 ;; opening paren. This case includes multi-line
10217 ;; mathematical paren groupings, but we could be on a
10218 ;; for-list continuation line. C.f. case 7A.
10219 ((progn
10220 (goto-char (1+ containing-sexp))
10221 (< (save-excursion
10222 (c-forward-syntactic-ws)
10223 (point))
10224 (c-point 'bonl)))
10225 (goto-char containing-sexp) ; paren opening the arglist
10226 (setq placeholder (c-point 'boi))
10227 (if (and (c-safe (backward-up-list 1) t)
10228 (>= (point) placeholder))
10229 (progn
10230 (forward-char)
10231 (skip-chars-forward " \t"))
10232 (goto-char placeholder))
10233 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
10234 (c-most-enclosing-brace c-state-cache (point))
10235 paren-state))
10236
10237 ;; CASE 7G: we are looking at just a normal arglist
10238 ;; continuation line
10239 (t (c-forward-syntactic-ws indent-point)
10240 (c-add-syntax 'arglist-cont (c-point 'boi)))
10241 ))
10242
10243 ;; CASE 8: func-local multi-inheritance line
10244 ((and (c-major-mode-is 'c++-mode)
10245 (save-excursion
10246 (goto-char indent-point)
10247 (skip-chars-forward " \t")
10248 (looking-at c-opt-postfix-decl-spec-key)))
10249 (goto-char indent-point)
10250 (skip-chars-forward " \t")
10251 (cond
10252
10253 ;; CASE 8A: non-hanging colon on an inher intro
10254 ((eq char-after-ip ?:)
10255 (c-backward-syntactic-ws lim)
10256 (c-add-syntax 'inher-intro (c-point 'boi)))
10257
10258 ;; CASE 8B: hanging colon on an inher intro
10259 ((eq char-before-ip ?:)
10260 (c-add-syntax 'inher-intro (c-point 'boi)))
10261
10262 ;; CASE 8C: a continued inheritance line
10263 (t
10264 (c-beginning-of-inheritance-list lim)
10265 (c-add-syntax 'inher-cont (point))
10266 )))
10267
10268 ;; CASE 9: we are inside a brace-list
10269 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
10270 (setq special-brace-list
10271 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
10272 (save-excursion
10273 (goto-char containing-sexp)
10274 (c-looking-at-special-brace-list)))
10275 (c-inside-bracelist-p containing-sexp paren-state))))
10276 (cond
10277
10278 ;; CASE 9A: In the middle of a special brace list opener.
10279 ((and (consp special-brace-list)
10280 (save-excursion
10281 (goto-char containing-sexp)
10282 (eq (char-after) ?\())
10283 (eq char-after-ip (car (cdr special-brace-list))))
10284 (goto-char (car (car special-brace-list)))
10285 (skip-chars-backward " \t")
10286 (if (and (bolp)
10287 (assoc 'statement-cont
10288 (setq placeholder (c-guess-basic-syntax))))
10289 (setq c-syntactic-context placeholder)
10290 (c-beginning-of-statement-1
10291 (c-safe-position (1- containing-sexp) paren-state))
10292 (c-forward-token-2 0)
10293 (while (looking-at c-specifier-key)
10294 (goto-char (match-end 1))
10295 (c-forward-syntactic-ws))
10296 (c-add-syntax 'brace-list-open (c-point 'boi))))
10297
10298 ;; CASE 9B: brace-list-close brace
10299 ((if (consp special-brace-list)
10300 ;; Check special brace list closer.
10301 (progn
10302 (goto-char (car (car special-brace-list)))
10303 (save-excursion
10304 (goto-char indent-point)
10305 (back-to-indentation)
10306 (or
10307 ;; We were between the special close char and the `)'.
10308 (and (eq (char-after) ?\))
10309 (eq (1+ (point)) (cdr (car special-brace-list))))
10310 ;; We were before the special close char.
10311 (and (eq (char-after) (cdr (cdr special-brace-list)))
10312 (zerop (c-forward-token-2))
10313 (eq (1+ (point)) (cdr (car special-brace-list)))))))
10314 ;; Normal brace list check.
10315 (and (eq char-after-ip ?})
10316 (c-safe (goto-char (c-up-list-backward (point))) t)
10317 (= (point) containing-sexp)))
10318 (if (eq (point) (c-point 'boi))
10319 (c-add-syntax 'brace-list-close (point))
10320 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10321 (c-beginning-of-statement-1 lim)
10322 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
10323
10324 (t
10325 ;; Prepare for the rest of the cases below by going to the
10326 ;; token following the opening brace
10327 (if (consp special-brace-list)
10328 (progn
10329 (goto-char (car (car special-brace-list)))
10330 (c-forward-token-2 1 nil indent-point))
10331 (goto-char containing-sexp))
10332 (forward-char)
10333 (let ((start (point)))
10334 (c-forward-syntactic-ws indent-point)
10335 (goto-char (max start (c-point 'bol))))
10336 (c-skip-ws-forward indent-point)
10337 (cond
10338
10339 ;; CASE 9C: we're looking at the first line in a brace-list
10340 ((= (point) indent-point)
10341 (if (consp special-brace-list)
10342 (goto-char (car (car special-brace-list)))
10343 (goto-char containing-sexp))
10344 (if (eq (point) (c-point 'boi))
10345 (c-add-syntax 'brace-list-intro (point))
10346 (setq lim (c-most-enclosing-brace c-state-cache (point)))
10347 (c-beginning-of-statement-1 lim)
10348 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
10349
10350 ;; CASE 9D: this is just a later brace-list-entry or
10351 ;; brace-entry-open
10352 (t (if (or (eq char-after-ip ?{)
10353 (and c-special-brace-lists
10354 (save-excursion
10355 (goto-char indent-point)
10356 (c-forward-syntactic-ws (c-point 'eol))
10357 (c-looking-at-special-brace-list (point)))))
10358 (c-add-syntax 'brace-entry-open (point))
10359 (c-add-syntax 'brace-list-entry (point))
10360 ))
10361 ))))
10362
10363 ;; CASE 10: A continued statement or top level construct.
10364 ((and (not (memq char-before-ip '(?\; ?:)))
10365 (not (c-at-vsemi-p before-ws-ip))
10366 (or (not (eq char-before-ip ?}))
10367 (c-looking-at-inexpr-block-backward c-state-cache))
10368 (> (point)
10369 (save-excursion
10370 (c-beginning-of-statement-1 containing-sexp)
10371 (setq placeholder (point))))
10372 (/= placeholder containing-sexp))
10373 ;; This is shared with case 18.
10374 (c-guess-continued-construct indent-point
10375 char-after-ip
10376 placeholder
10377 containing-sexp
10378 paren-state))
10379
10380 ;; CASE 16: block close brace, possibly closing the defun or
10381 ;; the class
10382 ((eq char-after-ip ?})
10383 ;; From here on we have the next containing sexp in lim.
10384 (setq lim (c-most-enclosing-brace paren-state))
10385 (goto-char containing-sexp)
10386 (cond
10387
10388 ;; CASE 16E: Closing a statement block? This catches
10389 ;; cases where it's preceded by a statement keyword,
10390 ;; which works even when used in an "invalid" context,
10391 ;; e.g. a macro argument.
10392 ((c-after-conditional)
10393 (c-backward-to-block-anchor lim)
10394 (c-add-stmt-syntax 'block-close nil t lim paren-state))
10395
10396 ;; CASE 16A: closing a lambda defun or an in-expression
10397 ;; block? C.f. cases 4, 7B and 17E.
10398 ((setq placeholder (c-looking-at-inexpr-block
10399 (c-safe-position containing-sexp paren-state)
10400 nil))
10401 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10402 'inline-close
10403 'block-close))
10404 (goto-char containing-sexp)
10405 (back-to-indentation)
10406 (if (= containing-sexp (point))
10407 (c-add-syntax tmpsymbol (point))
10408 (goto-char (cdr placeholder))
10409 (back-to-indentation)
10410 (c-add-stmt-syntax tmpsymbol nil t
10411 (c-most-enclosing-brace paren-state (point))
10412 paren-state)
10413 (if (/= (point) (cdr placeholder))
10414 (c-add-syntax (car placeholder)))))
10415
10416 ;; CASE 16B: does this close an inline or a function in
10417 ;; a non-class declaration level block?
10418 ((save-excursion
10419 (and lim
10420 (progn
10421 (goto-char lim)
10422 (c-looking-at-decl-block
10423 (c-most-enclosing-brace paren-state lim)
10424 nil))
10425 (setq placeholder (point))))
10426 (c-backward-to-decl-anchor lim)
10427 (back-to-indentation)
10428 (if (save-excursion
10429 (goto-char placeholder)
10430 (looking-at c-other-decl-block-key))
10431 (c-add-syntax 'defun-close (point))
10432 (c-add-syntax 'inline-close (point))))
10433
10434 ;; CASE 16F: Can be a defun-close of a function declared
10435 ;; in a statement block, e.g. in Pike or when using gcc
10436 ;; extensions, but watch out for macros followed by
10437 ;; blocks. Let it through to be handled below.
10438 ;; C.f. cases B.3 and 17G.
10439 ((save-excursion
10440 (and (not (c-at-statement-start-p))
10441 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10442 (setq placeholder (point))
10443 (let ((c-recognize-typeless-decls nil))
10444 ;; Turn off recognition of constructs that
10445 ;; lacks a type in this case, since that's more
10446 ;; likely to be a macro followed by a block.
10447 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10448 (back-to-indentation)
10449 (if (/= (point) containing-sexp)
10450 (goto-char placeholder))
10451 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
10452
10453 ;; CASE 16C: If there is an enclosing brace then this is
10454 ;; a block close since defun closes inside declaration
10455 ;; level blocks have been handled above.
10456 (lim
10457 ;; If the block is preceded by a case/switch label on
10458 ;; the same line, we anchor at the first preceding label
10459 ;; at boi. The default handling in c-add-stmt-syntax
10460 ;; really fixes it better, but we do like this to keep
10461 ;; the indentation compatible with version 5.28 and
10462 ;; earlier. C.f. case 17H.
10463 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10464 (eq (c-beginning-of-statement-1 lim) 'label)))
10465 (goto-char placeholder)
10466 (if (looking-at c-label-kwds-regexp)
10467 (c-add-syntax 'block-close (point))
10468 (goto-char containing-sexp)
10469 ;; c-backward-to-block-anchor not necessary here; those
10470 ;; situations are handled in case 16E above.
10471 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
10472
10473 ;; CASE 16D: Only top level defun close left.
10474 (t
10475 (goto-char containing-sexp)
10476 (c-backward-to-decl-anchor lim)
10477 (c-add-stmt-syntax 'defun-close nil nil
10478 (c-most-enclosing-brace paren-state)
10479 paren-state))
10480 ))
10481
10482 ;; CASE 19: line is an expression, not a statement, and is directly
10483 ;; contained by a template delimiter. Most likely, we are in a
10484 ;; template arglist within a statement. This case is based on CASE
10485 ;; 7. At some point in the future, we may wish to create more
10486 ;; syntactic symbols such as `template-intro',
10487 ;; `template-cont-nonempty', etc., and distinguish between them as we
10488 ;; do for `arglist-intro' etc. (2009-12-07).
10489 ((and c-recognize-<>-arglists
10490 (setq containing-< (c-up-list-backward indent-point containing-sexp))
10491 (eq (char-after containing-<) ?\<))
10492 (setq placeholder (c-point 'boi containing-<))
10493 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
10494 ; '<') before indent-point.
10495 (if (>= (point) placeholder)
10496 (progn
10497 (forward-char)
10498 (skip-chars-forward " \t"))
10499 (goto-char placeholder))
10500 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
10501 (c-most-enclosing-brace c-state-cache (point))
10502 paren-state))
10503
10504 ;; CASE 17: Statement or defun catchall.
10505 (t
10506 (goto-char indent-point)
10507 ;; Back up statements until we find one that starts at boi.
10508 (while (let* ((prev-point (point))
10509 (last-step-type (c-beginning-of-statement-1
10510 containing-sexp)))
10511 (if (= (point) prev-point)
10512 (progn
10513 (setq step-type (or step-type last-step-type))
10514 nil)
10515 (setq step-type last-step-type)
10516 (/= (point) (c-point 'boi)))))
10517 (cond
10518
10519 ;; CASE 17B: continued statement
10520 ((and (eq step-type 'same)
10521 (/= (point) indent-point))
10522 (c-add-stmt-syntax 'statement-cont nil nil
10523 containing-sexp paren-state))
10524
10525 ;; CASE 17A: After a case/default label?
10526 ((progn
10527 (while (and (eq step-type 'label)
10528 (not (looking-at c-label-kwds-regexp)))
10529 (setq step-type
10530 (c-beginning-of-statement-1 containing-sexp)))
10531 (eq step-type 'label))
10532 (c-add-stmt-syntax (if (eq char-after-ip ?{)
10533 'statement-case-open
10534 'statement-case-intro)
10535 nil t containing-sexp paren-state))
10536
10537 ;; CASE 17D: any old statement
10538 ((progn
10539 (while (eq step-type 'label)
10540 (setq step-type
10541 (c-beginning-of-statement-1 containing-sexp)))
10542 (eq step-type 'previous))
10543 (c-add-stmt-syntax 'statement nil t
10544 containing-sexp paren-state)
10545 (if (eq char-after-ip ?{)
10546 (c-add-syntax 'block-open)))
10547
10548 ;; CASE 17I: Inside a substatement block.
10549 ((progn
10550 ;; The following tests are all based on containing-sexp.
10551 (goto-char containing-sexp)
10552 ;; From here on we have the next containing sexp in lim.
10553 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
10554 (c-after-conditional))
10555 (c-backward-to-block-anchor lim)
10556 (c-add-stmt-syntax 'statement-block-intro nil t
10557 lim paren-state)
10558 (if (eq char-after-ip ?{)
10559 (c-add-syntax 'block-open)))
10560
10561 ;; CASE 17E: first statement in an in-expression block.
10562 ;; C.f. cases 4, 7B and 16A.
10563 ((setq placeholder (c-looking-at-inexpr-block
10564 (c-safe-position containing-sexp paren-state)
10565 nil))
10566 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
10567 'defun-block-intro
10568 'statement-block-intro))
10569 (back-to-indentation)
10570 (if (= containing-sexp (point))
10571 (c-add-syntax tmpsymbol (point))
10572 (goto-char (cdr placeholder))
10573 (back-to-indentation)
10574 (c-add-stmt-syntax tmpsymbol nil t
10575 (c-most-enclosing-brace c-state-cache (point))
10576 paren-state)
10577 (if (/= (point) (cdr placeholder))
10578 (c-add-syntax (car placeholder))))
10579 (if (eq char-after-ip ?{)
10580 (c-add-syntax 'block-open)))
10581
10582 ;; CASE 17F: first statement in an inline, or first
10583 ;; statement in a top-level defun. we can tell this is it
10584 ;; if there are no enclosing braces that haven't been
10585 ;; narrowed out by a class (i.e. don't use bod here).
10586 ((save-excursion
10587 (or (not (setq placeholder (c-most-enclosing-brace
10588 paren-state)))
10589 (and (progn
10590 (goto-char placeholder)
10591 (eq (char-after) ?{))
10592 (c-looking-at-decl-block (c-most-enclosing-brace
10593 paren-state (point))
10594 nil))))
10595 (c-backward-to-decl-anchor lim)
10596 (back-to-indentation)
10597 (c-add-syntax 'defun-block-intro (point)))
10598
10599 ;; CASE 17G: First statement in a function declared inside
10600 ;; a normal block. This can occur in Pike and with
10601 ;; e.g. the gcc extensions, but watch out for macros
10602 ;; followed by blocks. C.f. cases B.3 and 16F.
10603 ((save-excursion
10604 (and (not (c-at-statement-start-p))
10605 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
10606 (setq placeholder (point))
10607 (let ((c-recognize-typeless-decls nil))
10608 ;; Turn off recognition of constructs that lacks
10609 ;; a type in this case, since that's more likely
10610 ;; to be a macro followed by a block.
10611 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10612 (back-to-indentation)
10613 (if (/= (point) containing-sexp)
10614 (goto-char placeholder))
10615 (c-add-stmt-syntax 'defun-block-intro nil t
10616 lim paren-state))
10617
10618 ;; CASE 17H: First statement in a block.
10619 (t
10620 ;; If the block is preceded by a case/switch label on the
10621 ;; same line, we anchor at the first preceding label at
10622 ;; boi. The default handling in c-add-stmt-syntax is
10623 ;; really fixes it better, but we do like this to keep the
10624 ;; indentation compatible with version 5.28 and earlier.
10625 ;; C.f. case 16C.
10626 (while (and (/= (setq placeholder (point)) (c-point 'boi))
10627 (eq (c-beginning-of-statement-1 lim) 'label)))
10628 (goto-char placeholder)
10629 (if (looking-at c-label-kwds-regexp)
10630 (c-add-syntax 'statement-block-intro (point))
10631 (goto-char containing-sexp)
10632 ;; c-backward-to-block-anchor not necessary here; those
10633 ;; situations are handled in case 17I above.
10634 (c-add-stmt-syntax 'statement-block-intro nil t
10635 lim paren-state))
10636 (if (eq char-after-ip ?{)
10637 (c-add-syntax 'block-open)))
10638 ))
10639 )
10640
10641 ;; now we need to look at any modifiers
10642 (goto-char indent-point)
10643 (skip-chars-forward " \t")
10644
10645 ;; are we looking at a comment only line?
10646 (when (and (looking-at c-comment-start-regexp)
10647 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
10648 (c-append-syntax 'comment-intro))
10649
10650 ;; we might want to give additional offset to friends (in C++).
10651 (when (and c-opt-friend-key
10652 (looking-at c-opt-friend-key))
10653 (c-append-syntax 'friend))
10654
10655 ;; Set syntactic-relpos.
10656 (let ((p c-syntactic-context))
10657 (while (and p
10658 (if (integerp (c-langelem-pos (car p)))
10659 (progn
10660 (setq syntactic-relpos (c-langelem-pos (car p)))
10661 nil)
10662 t))
10663 (setq p (cdr p))))
10664
10665 ;; Start of or a continuation of a preprocessor directive?
10666 (if (and macro-start
10667 (eq macro-start (c-point 'boi))
10668 (not (and (c-major-mode-is 'pike-mode)
10669 (eq (char-after (1+ macro-start)) ?\"))))
10670 (c-append-syntax 'cpp-macro)
10671 (when (and c-syntactic-indentation-in-macros macro-start)
10672 (if in-macro-expr
10673 (when (or
10674 (< syntactic-relpos macro-start)
10675 (not (or
10676 (assq 'arglist-intro c-syntactic-context)
10677 (assq 'arglist-cont c-syntactic-context)
10678 (assq 'arglist-cont-nonempty c-syntactic-context)
10679 (assq 'arglist-close c-syntactic-context))))
10680 ;; If inside a cpp expression, i.e. anywhere in a
10681 ;; cpp directive except a #define body, we only let
10682 ;; through the syntactic analysis that is internal
10683 ;; in the expression. That means the arglist
10684 ;; elements, if they are anchored inside the cpp
10685 ;; expression.
10686 (setq c-syntactic-context nil)
10687 (c-add-syntax 'cpp-macro-cont macro-start))
10688 (when (and (eq macro-start syntactic-relpos)
10689 (not (assq 'cpp-define-intro c-syntactic-context))
10690 (save-excursion
10691 (goto-char macro-start)
10692 (or (not (c-forward-to-cpp-define-body))
10693 (<= (point) (c-point 'boi indent-point)))))
10694 ;; Inside a #define body and the syntactic analysis is
10695 ;; anchored on the start of the #define. In this case
10696 ;; we add cpp-define-intro to get the extra
10697 ;; indentation of the #define body.
10698 (c-add-syntax 'cpp-define-intro)))))
10699
10700 ;; return the syntax
10701 c-syntactic-context)))
10702
10703 \f
10704 ;; Indentation calculation.
10705
10706 (defun c-evaluate-offset (offset langelem symbol)
10707 ;; offset can be a number, a function, a variable, a list, or one of
10708 ;; the symbols + or -
10709 ;;
10710 ;; This function might do hidden buffer changes.
10711 (let ((res
10712 (cond
10713 ((numberp offset) offset)
10714 ((vectorp offset) offset)
10715 ((null offset) nil)
10716
10717 ((eq offset '+) c-basic-offset)
10718 ((eq offset '-) (- c-basic-offset))
10719 ((eq offset '++) (* 2 c-basic-offset))
10720 ((eq offset '--) (* 2 (- c-basic-offset)))
10721 ((eq offset '*) (/ c-basic-offset 2))
10722 ((eq offset '/) (/ (- c-basic-offset) 2))
10723
10724 ((functionp offset)
10725 (c-evaluate-offset
10726 (funcall offset
10727 (cons (c-langelem-sym langelem)
10728 (c-langelem-pos langelem)))
10729 langelem symbol))
10730
10731 ((listp offset)
10732 (cond
10733 ((eq (car offset) 'quote)
10734 (c-benign-error "The offset %S for %s was mistakenly quoted"
10735 offset symbol)
10736 nil)
10737
10738 ((memq (car offset) '(min max))
10739 (let (res val (method (car offset)))
10740 (setq offset (cdr offset))
10741 (while offset
10742 (setq val (c-evaluate-offset (car offset) langelem symbol))
10743 (cond
10744 ((not val))
10745 ((not res)
10746 (setq res val))
10747 ((integerp val)
10748 (if (vectorp res)
10749 (c-benign-error "\
10750 Error evaluating offset %S for %s: \
10751 Cannot combine absolute offset %S with relative %S in `%s' method"
10752 (car offset) symbol res val method)
10753 (setq res (funcall method res val))))
10754 (t
10755 (if (integerp res)
10756 (c-benign-error "\
10757 Error evaluating offset %S for %s: \
10758 Cannot combine relative offset %S with absolute %S in `%s' method"
10759 (car offset) symbol res val method)
10760 (setq res (vector (funcall method (aref res 0)
10761 (aref val 0)))))))
10762 (setq offset (cdr offset)))
10763 res))
10764
10765 ((eq (car offset) 'add)
10766 (let (res val)
10767 (setq offset (cdr offset))
10768 (while offset
10769 (setq val (c-evaluate-offset (car offset) langelem symbol))
10770 (cond
10771 ((not val))
10772 ((not res)
10773 (setq res val))
10774 ((integerp val)
10775 (if (vectorp res)
10776 (setq res (vector (+ (aref res 0) val)))
10777 (setq res (+ res val))))
10778 (t
10779 (if (vectorp res)
10780 (c-benign-error "\
10781 Error evaluating offset %S for %s: \
10782 Cannot combine absolute offsets %S and %S in `add' method"
10783 (car offset) symbol res val)
10784 (setq res val)))) ; Override.
10785 (setq offset (cdr offset)))
10786 res))
10787
10788 (t
10789 (let (res)
10790 (when (eq (car offset) 'first)
10791 (setq offset (cdr offset)))
10792 (while (and (not res) offset)
10793 (setq res (c-evaluate-offset (car offset) langelem symbol)
10794 offset (cdr offset)))
10795 res))))
10796
10797 ((and (symbolp offset) (boundp offset))
10798 (symbol-value offset))
10799
10800 (t
10801 (c-benign-error "Unknown offset format %S for %s" offset symbol)
10802 nil))))
10803
10804 (if (or (null res) (integerp res)
10805 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
10806 res
10807 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
10808 offset symbol res)
10809 nil)))
10810
10811 (defun c-calc-offset (langelem)
10812 ;; Get offset from LANGELEM which is a list beginning with the
10813 ;; syntactic symbol and followed by any analysis data it provides.
10814 ;; That data may be zero or more elements, but if at least one is
10815 ;; given then the first is the anchor position (or nil). The symbol
10816 ;; is matched against `c-offsets-alist' and the offset calculated
10817 ;; from that is returned.
10818 ;;
10819 ;; This function might do hidden buffer changes.
10820 (let* ((symbol (c-langelem-sym langelem))
10821 (match (assq symbol c-offsets-alist))
10822 (offset (cdr-safe match)))
10823 (if match
10824 (setq offset (c-evaluate-offset offset langelem symbol))
10825 (if c-strict-syntax-p
10826 (c-benign-error "No offset found for syntactic symbol %s" symbol))
10827 (setq offset 0))
10828 (if (vectorp offset)
10829 offset
10830 (or (and (numberp offset) offset)
10831 (and (symbolp offset) (symbol-value offset))
10832 0))
10833 ))
10834
10835 (defun c-get-offset (langelem)
10836 ;; This is a compatibility wrapper for `c-calc-offset' in case
10837 ;; someone is calling it directly. It takes an old style syntactic
10838 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
10839 ;; new list form.
10840 ;;
10841 ;; This function might do hidden buffer changes.
10842 (if (c-langelem-pos langelem)
10843 (c-calc-offset (list (c-langelem-sym langelem)
10844 (c-langelem-pos langelem)))
10845 (c-calc-offset langelem)))
10846
10847 (defun c-get-syntactic-indentation (langelems)
10848 ;; Calculate the syntactic indentation from a syntactic description
10849 ;; as returned by `c-guess-syntax'.
10850 ;;
10851 ;; Note that topmost-intro always has an anchor position at bol, for
10852 ;; historical reasons. It's often used together with other symbols
10853 ;; that has more sane positions. Since we always use the first
10854 ;; found anchor position, we rely on that these other symbols always
10855 ;; precede topmost-intro in the LANGELEMS list.
10856 ;;
10857 ;; This function might do hidden buffer changes.
10858 (let ((indent 0) anchor)
10859
10860 (while langelems
10861 (let* ((c-syntactic-element (car langelems))
10862 (res (c-calc-offset c-syntactic-element)))
10863
10864 (if (vectorp res)
10865 ;; Got an absolute column that overrides any indentation
10866 ;; we've collected so far, but not the relative
10867 ;; indentation we might get for the nested structures
10868 ;; further down the langelems list.
10869 (setq indent (elt res 0)
10870 anchor (point-min)) ; A position at column 0.
10871
10872 ;; Got a relative change of the current calculated
10873 ;; indentation.
10874 (setq indent (+ indent res))
10875
10876 ;; Use the anchor position from the first syntactic
10877 ;; element with one.
10878 (unless anchor
10879 (setq anchor (c-langelem-pos (car langelems)))))
10880
10881 (setq langelems (cdr langelems))))
10882
10883 (if anchor
10884 (+ indent (save-excursion
10885 (goto-char anchor)
10886 (current-column)))
10887 indent)))
10888
10889 \f
10890 (cc-provide 'cc-engine)
10891
10892 ;;; cc-engine.el ends here