]> code.delx.au - gnu-emacs/blob - lisp/progmodes/cc-engine.el
; Merge from origin/emacs-25
[gnu-emacs] / lisp / progmodes / cc-engine.el
1 ;;; cc-engine.el --- core syntax guessing engine for CC mode -*- coding: utf-8 -*-
2
3 ;; Copyright (C) 1985, 1987, 1992-2016 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, to
87 ;; "hide" obtrusive characters in preprocessor lines, and to mark C++
88 ;; raw strings to enable their fontification.
89 ;;
90 ;; This property is used on single characters and is therefore
91 ;; always treated as front and rear nonsticky (or start and end open
92 ;; in XEmacs vocabulary). It's therefore installed on
93 ;; `text-property-default-nonsticky' if that variable exists (Emacs
94 ;; >= 21).
95 ;;
96 ;; 'c-is-sws and 'c-in-sws
97 ;; Used by `c-forward-syntactic-ws' and `c-backward-syntactic-ws' to
98 ;; speed them up. See the comment blurb before `c-put-is-sws'
99 ;; below for further details.
100 ;;
101 ;; 'c-type
102 ;; This property is used on single characters to mark positions with
103 ;; special syntactic relevance of various sorts. Its primary use is
104 ;; to avoid glitches when multiline constructs are refontified
105 ;; interactively (on font lock decoration level 3). It's cleared in
106 ;; a region before it's fontified and is then put on relevant chars
107 ;; in that region as they are encountered during the fontification.
108 ;; The value specifies the kind of position:
109 ;;
110 ;; 'c-decl-arg-start
111 ;; Put on the last char of the token preceding each declaration
112 ;; inside a declaration style arglist (typically in a function
113 ;; prototype).
114 ;;
115 ;; 'c-decl-end
116 ;; Put on the last char of the token preceding a declaration.
117 ;; This is used in cases where declaration boundaries can't be
118 ;; recognized simply by looking for a token like ";" or "}".
119 ;; `c-type-decl-end-used' must be set if this is used (see also
120 ;; `c-find-decl-spots').
121 ;;
122 ;; 'c-<>-arg-sep
123 ;; Put on the commas that separate arguments in angle bracket
124 ;; arglists like C++ template arglists.
125 ;;
126 ;; 'c-decl-id-start and 'c-decl-type-start
127 ;; Put on the last char of the token preceding each declarator
128 ;; in the declarator list of a declaration. They are also used
129 ;; between the identifiers cases like enum declarations.
130 ;; 'c-decl-type-start is used when the declarators are types,
131 ;; 'c-decl-id-start otherwise.
132 ;;
133 ;; 'c-awk-NL-prop
134 ;; Used in AWK mode to mark the various kinds of newlines. See
135 ;; cc-awk.el.
136
137 ;;; Code:
138
139 (eval-when-compile
140 (let ((load-path
141 (if (and (boundp 'byte-compile-dest-file)
142 (stringp byte-compile-dest-file))
143 (cons (file-name-directory byte-compile-dest-file) load-path)
144 load-path)))
145 (load "cc-bytecomp" nil t)))
146
147 (cc-require 'cc-defs)
148 (cc-require-when-compile 'cc-langs)
149 (cc-require 'cc-vars)
150
151 (eval-when-compile (require 'cl))
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 ,@(c--mapcan (lambda (init)
159 `(,(if (elt init 2)
160 `(defvar ,(car init) nil ,(elt init 2))
161 `(defvar ,(car init) nil))
162 (make-variable-buffer-local ',(car init))))
163 (cdr c-lang-variable-inits))))
164 (c-declare-lang-variables)
165
166 \f
167 ;;; Internal state variables.
168
169 ;; Internal state of hungry delete key feature
170 (defvar c-hungry-delete-key nil)
171 (make-variable-buffer-local 'c-hungry-delete-key)
172
173 ;; The electric flag (toggled by `c-toggle-electric-state').
174 ;; If t, electric actions (like automatic reindentation, and (if
175 ;; c-auto-newline is also set) auto newlining) will happen when an electric
176 ;; key like `{' is pressed (or an electric keyword like `else').
177 (defvar c-electric-flag t)
178 (make-variable-buffer-local 'c-electric-flag)
179
180 ;; Internal state of auto newline feature.
181 (defvar c-auto-newline nil)
182 (make-variable-buffer-local 'c-auto-newline)
183
184 ;; Included in the mode line to indicate the active submodes.
185 ;; (defvar c-submode-indicators nil)
186 ;; (make-variable-buffer-local 'c-submode-indicators)
187
188 (defun c-calculate-state (arg prevstate)
189 ;; Calculate the new state of PREVSTATE, t or nil, based on arg. If
190 ;; arg is nil or zero, toggle the state. If arg is negative, turn
191 ;; the state off, and if arg is positive, turn the state on
192 (if (or (not arg)
193 (zerop (setq arg (prefix-numeric-value arg))))
194 (not prevstate)
195 (> arg 0)))
196
197 \f
198 ;; Basic handling of preprocessor directives.
199
200 ;; This is a dynamically bound cache used together with
201 ;; `c-query-macro-start' and `c-query-and-set-macro-start'. It only
202 ;; works as long as point doesn't cross a macro boundary.
203 (defvar c-macro-start 'unknown)
204
205 (defsubst c-query-and-set-macro-start ()
206 (if (symbolp c-macro-start)
207 (setq c-macro-start (save-excursion
208 (c-save-buffer-state ()
209 (and (c-beginning-of-macro)
210 (point)))))
211 c-macro-start))
212
213 (defsubst c-query-macro-start ()
214 (if (symbolp c-macro-start)
215 (save-excursion
216 (c-save-buffer-state ()
217 (and (c-beginning-of-macro)
218 (point))))
219 c-macro-start))
220
221 ;; One element macro cache to cope with continual movement within very large
222 ;; CPP macros.
223 (defvar c-macro-cache nil)
224 (make-variable-buffer-local 'c-macro-cache)
225 ;; Nil or cons of the bounds of the most recent CPP form probed by
226 ;; `c-beginning-of-macro', `c-end-of-macro' or `c-syntactic-end-of-macro'.
227 ;; The cdr will be nil if we know only the start of the CPP form.
228 (defvar c-macro-cache-start-pos nil)
229 (make-variable-buffer-local 'c-macro-cache-start-pos)
230 ;; The starting position from where we determined `c-macro-cache'.
231 (defvar c-macro-cache-syntactic nil)
232 (make-variable-buffer-local 'c-macro-cache-syntactic)
233 ;; Either nil, or the syntactic end of the macro currently represented by
234 ;; `c-macro-cache'.
235 (defvar c-macro-cache-no-comment nil)
236 (make-variable-buffer-local 'c-macro-cache-no-comment)
237 ;; Either nil, or the last character of the macro currently represented by
238 ;; `c-macro-cache' which isn't in a comment. */
239
240 (defun c-invalidate-macro-cache (beg end)
241 ;; Called from a before-change function. If the change region is before or
242 ;; in the macro characterized by `c-macro-cache' etc., nullify it
243 ;; appropriately. BEG and END are the standard before-change-functions
244 ;; parameters. END isn't used.
245 (cond
246 ((null c-macro-cache))
247 ((< beg (car c-macro-cache))
248 (setq c-macro-cache nil
249 c-macro-cache-start-pos nil
250 c-macro-cache-syntactic nil
251 c-macro-cache-no-comment nil))
252 ((and (cdr c-macro-cache)
253 (< beg (cdr c-macro-cache)))
254 (setcdr c-macro-cache nil)
255 (setq c-macro-cache-start-pos beg
256 c-macro-cache-syntactic nil
257 c-macro-cache-no-comment nil))))
258
259 (defun c-macro-is-genuine-p ()
260 ;; Check that the ostensible CPP construct at point is a real one. In
261 ;; particular, if point is on the first line of a narrowed buffer, make sure
262 ;; that the "#" isn't, say, the second character of a "##" operator. Return
263 ;; t when the macro is real, nil otherwise.
264 (let ((here (point)))
265 (beginning-of-line)
266 (prog1
267 (if (and (eq (point) (point-min))
268 (/= (point) 1))
269 (save-restriction
270 (widen)
271 (beginning-of-line)
272 (and (looking-at c-anchored-cpp-prefix)
273 (eq (match-beginning 1) here)))
274 t)
275 (goto-char here))))
276
277 (defun c-beginning-of-macro (&optional lim)
278 "Go to the beginning of a preprocessor directive.
279 Leave point at the beginning of the directive and return t if in one,
280 otherwise return nil and leave point unchanged.
281
282 Note that this function might do hidden buffer changes. See the
283 comment at the start of cc-engine.el for more info."
284 (let ((here (point)))
285 (when c-opt-cpp-prefix
286 (if (and (car c-macro-cache)
287 (>= (point) (car c-macro-cache))
288 (or (and (cdr c-macro-cache)
289 (<= (point) (cdr c-macro-cache)))
290 (<= (point) c-macro-cache-start-pos)))
291 (unless (< (car c-macro-cache) (or lim (point-min)))
292 (progn (goto-char (max (or lim (point-min)) (car c-macro-cache)))
293 (setq c-macro-cache-start-pos
294 (max c-macro-cache-start-pos here))
295 t))
296 (setq c-macro-cache nil
297 c-macro-cache-start-pos nil
298 c-macro-cache-syntactic nil
299 c-macro-cache-no-comment nil)
300
301 (save-restriction
302 (if lim (narrow-to-region lim (point-max)))
303 (beginning-of-line)
304 (while (eq (char-before (1- (point))) ?\\)
305 (forward-line -1))
306 (back-to-indentation)
307 (if (and (<= (point) here)
308 (looking-at c-opt-cpp-start)
309 (c-macro-is-genuine-p))
310 (progn
311 (setq c-macro-cache (cons (point) nil)
312 c-macro-cache-start-pos here)
313 t)
314 (goto-char here)
315 nil))))))
316
317 (defun c-end-of-macro ()
318 "Go to the end of a preprocessor directive.
319 More accurately, move the point to the end of the closest following
320 line that doesn't end with a line continuation backslash - no check is
321 done that the point is inside a cpp directive to begin with.
322
323 Note that this function might do hidden buffer changes. See the
324 comment at the start of cc-engine.el for more info."
325 (if (and (cdr c-macro-cache)
326 (<= (point) (cdr c-macro-cache))
327 (>= (point) (car c-macro-cache)))
328 (goto-char (cdr c-macro-cache))
329 (unless (and (car c-macro-cache)
330 (<= (point) c-macro-cache-start-pos)
331 (>= (point) (car c-macro-cache)))
332 (setq c-macro-cache nil
333 c-macro-cache-start-pos nil
334 c-macro-cache-syntactic nil
335 c-macro-cache-no-comment nil))
336 (while (progn
337 (end-of-line)
338 (when (and (eq (char-before) ?\\)
339 (not (eobp)))
340 (forward-char)
341 t)))
342 (when (car c-macro-cache)
343 (setcdr c-macro-cache (point)))))
344
345 (defun c-syntactic-end-of-macro ()
346 ;; Go to the end of a CPP directive, or a "safe" pos just before.
347 ;;
348 ;; This is normally the end of the next non-escaped line. A "safe"
349 ;; position is one not within a string or comment. (The EOL on a line
350 ;; comment is NOT "safe").
351 ;;
352 ;; This function must only be called from the beginning of a CPP construct.
353 ;;
354 ;; Note that this function might do hidden buffer changes. See the comment
355 ;; at the start of cc-engine.el for more info.
356 (let* ((here (point))
357 (there (progn (c-end-of-macro) (point)))
358 s)
359 (if c-macro-cache-syntactic
360 (goto-char c-macro-cache-syntactic)
361 (setq s (parse-partial-sexp here there))
362 (while (and (or (nth 3 s) ; in a string
363 (nth 4 s)) ; in a comment (maybe at end of line comment)
364 (> there here)) ; No infinite loops, please.
365 (setq there (1- (nth 8 s)))
366 (setq s (parse-partial-sexp here there)))
367 (setq c-macro-cache-syntactic (point)))
368 (point)))
369
370 (defun c-no-comment-end-of-macro ()
371 ;; Go to the end of a CPP directive, or a pos just before which isn't in a
372 ;; comment. For this purpose, open strings are ignored.
373 ;;
374 ;; This function must only be called from the beginning of a CPP construct.
375 ;;
376 ;; Note that this function might do hidden buffer changes. See the comment
377 ;; at the start of cc-engine.el for more info.
378 (let* ((here (point))
379 (there (progn (c-end-of-macro) (point)))
380 s)
381 (if c-macro-cache-no-comment
382 (goto-char c-macro-cache-no-comment)
383 (setq s (parse-partial-sexp here there))
384 (while (and (nth 3 s) ; in a string
385 (> there here)) ; No infinite loops, please.
386 (setq here (1+ (nth 8 s)))
387 (setq s (parse-partial-sexp here there)))
388 (when (nth 4 s)
389 (goto-char (1- (nth 8 s))))
390 (setq c-macro-cache-no-comment (point)))
391 (point)))
392
393 (defun c-forward-over-cpp-define-id ()
394 ;; Assuming point is at the "#" that introduces a preprocessor
395 ;; directive, it's moved forward to the end of the identifier which is
396 ;; "#define"d (or whatever c-opt-cpp-macro-define specifies). Non-nil
397 ;; is returned in this case, in all other cases nil is returned and
398 ;; point isn't moved.
399 ;;
400 ;; This function might do hidden buffer changes.
401 (when (and c-opt-cpp-macro-define-id
402 (looking-at c-opt-cpp-macro-define-id))
403 (goto-char (match-end 0))))
404
405 (defun c-forward-to-cpp-define-body ()
406 ;; Assuming point is at the "#" that introduces a preprocessor
407 ;; directive, it's moved forward to the start of the definition body
408 ;; if it's a "#define" (or whatever c-opt-cpp-macro-define
409 ;; specifies). Non-nil is returned in this case, in all other cases
410 ;; nil is returned and point isn't moved.
411 ;;
412 ;; This function might do hidden buffer changes.
413 (when (and c-opt-cpp-macro-define-start
414 (looking-at c-opt-cpp-macro-define-start)
415 (not (= (match-end 0) (c-point 'eol))))
416 (goto-char (match-end 0))))
417
418 \f
419 ;;; Basic utility functions.
420
421 (defun c-delq-from-dotted-list (elt dlist)
422 ;; If ELT is a member of the (possibly dotted) list DLIST, remove all
423 ;; occurrences of it (except for any in the last cdr of DLIST).
424 ;;
425 ;; Call this as (setq DLIST (c-delq-from-dotted-list ELT DLIST)), as
426 ;; sometimes the original structure is changed, sometimes it's not.
427 ;;
428 ;; This function is needed in Emacs < 24.5, and possibly XEmacs, because
429 ;; `delq' throws an error in these versions when given a dotted list.
430 (let ((tail dlist) prev)
431 (while (consp tail)
432 (if (eq (car tail) elt)
433 (if prev
434 (setcdr prev (cdr tail))
435 (setq dlist (cdr dlist)))
436 (setq prev tail))
437 (setq tail (cdr tail)))
438 dlist))
439
440 (defun c-syntactic-content (from to paren-level)
441 ;; Return the given region as a string where all syntactic
442 ;; whitespace is removed or, where necessary, replaced with a single
443 ;; space. If PAREN-LEVEL is given then all parens in the region are
444 ;; collapsed to "()", "[]" etc.
445 ;;
446 ;; This function might do hidden buffer changes.
447
448 (save-excursion
449 (save-restriction
450 (narrow-to-region from to)
451 (goto-char from)
452 (let* ((parts (list nil)) (tail parts) pos in-paren)
453
454 (while (re-search-forward c-syntactic-ws-start to t)
455 (goto-char (setq pos (match-beginning 0)))
456 (c-forward-syntactic-ws)
457 (if (= (point) pos)
458 (forward-char)
459
460 (when paren-level
461 (save-excursion
462 (setq in-paren (= (car (parse-partial-sexp from pos 1)) 1)
463 pos (point))))
464
465 (if (and (> pos from)
466 (< (point) to)
467 (looking-at "\\w\\|\\s_")
468 (save-excursion
469 (goto-char (1- pos))
470 (looking-at "\\w\\|\\s_")))
471 (progn
472 (setcdr tail (list (buffer-substring-no-properties from pos)
473 " "))
474 (setq tail (cddr tail)))
475 (setcdr tail (list (buffer-substring-no-properties from pos)))
476 (setq tail (cdr tail)))
477
478 (when in-paren
479 (when (= (car (parse-partial-sexp pos to -1)) -1)
480 (setcdr tail (list (buffer-substring-no-properties
481 (1- (point)) (point))))
482 (setq tail (cdr tail))))
483
484 (setq from (point))))
485
486 (setcdr tail (list (buffer-substring-no-properties from to)))
487 (apply 'concat (cdr parts))))))
488
489 (defun c-shift-line-indentation (shift-amt)
490 ;; Shift the indentation of the current line with the specified
491 ;; amount (positive inwards). The buffer is modified only if
492 ;; SHIFT-AMT isn't equal to zero.
493 (let ((pos (- (point-max) (point)))
494 (c-macro-start c-macro-start)
495 tmp-char-inserted)
496 (if (zerop shift-amt)
497 nil
498 ;; If we're on an empty line inside a macro, we take the point
499 ;; to be at the current indentation and shift it to the
500 ;; appropriate column. This way we don't treat the extra
501 ;; whitespace out to the line continuation as indentation.
502 (when (and (c-query-and-set-macro-start)
503 (looking-at "[ \t]*\\\\$")
504 (save-excursion
505 (skip-chars-backward " \t")
506 (bolp)))
507 (insert ?x)
508 (backward-char)
509 (setq tmp-char-inserted t))
510 (unwind-protect
511 (let ((col (current-indentation)))
512 (delete-region (c-point 'bol) (c-point 'boi))
513 (beginning-of-line)
514 (indent-to (+ col shift-amt)))
515 (when tmp-char-inserted
516 (delete-char 1))))
517 ;; If initial point was within line's indentation and we're not on
518 ;; a line with a line continuation in a macro, position after the
519 ;; indentation. Else stay at same point in text.
520 (if (and (< (point) (c-point 'boi))
521 (not tmp-char-inserted))
522 (back-to-indentation)
523 (if (> (- (point-max) pos) (point))
524 (goto-char (- (point-max) pos))))))
525
526 (defsubst c-keyword-sym (keyword)
527 ;; Return non-nil if the string KEYWORD is a known keyword. More
528 ;; precisely, the value is the symbol for the keyword in
529 ;; `c-keywords-obarray'.
530 (intern-soft keyword c-keywords-obarray))
531
532 (defsubst c-keyword-member (keyword-sym lang-constant)
533 ;; Return non-nil if the symbol KEYWORD-SYM, as returned by
534 ;; `c-keyword-sym', is a member of LANG-CONSTANT, which is the name
535 ;; of a language constant that ends with "-kwds". If KEYWORD-SYM is
536 ;; nil then the result is nil.
537 (get keyword-sym lang-constant))
538
539 ;; String syntax chars, suitable for skip-syntax-(forward|backward).
540 (defconst c-string-syntax (if (memq 'gen-string-delim c-emacs-features)
541 "\"|"
542 "\""))
543
544 ;; Regexp matching string limit syntax.
545 (defconst c-string-limit-regexp (if (memq 'gen-string-delim c-emacs-features)
546 "\\s\"\\|\\s|"
547 "\\s\""))
548
549 ;; Regexp matching WS followed by string limit syntax.
550 (defconst c-ws*-string-limit-regexp
551 (concat "[ \t]*\\(" c-string-limit-regexp "\\)"))
552
553 ;; Holds formatted error strings for the few cases where parse errors
554 ;; are reported.
555 (defvar c-parsing-error nil)
556 (make-variable-buffer-local 'c-parsing-error)
557
558 (defun c-echo-parsing-error (&optional quiet)
559 (when (and c-report-syntactic-errors c-parsing-error (not quiet))
560 (c-benign-error "%s" c-parsing-error))
561 c-parsing-error)
562
563 ;; Faces given to comments and string literals. This is used in some
564 ;; situations to speed up recognition; it isn't mandatory that font
565 ;; locking is in use. This variable is extended with the face in
566 ;; `c-doc-face-name' when fontification is activated in cc-fonts.el.
567 (defvar c-literal-faces
568 (append '(font-lock-comment-face font-lock-string-face)
569 (when (facep 'font-lock-comment-delimiter-face)
570 ;; New in Emacs 22.
571 '(font-lock-comment-delimiter-face))))
572
573 (defsubst c-put-c-type-property (pos value)
574 ;; Put a c-type property with the given value at POS.
575 (c-put-char-property pos 'c-type value))
576
577 (defun c-clear-c-type-property (from to value)
578 ;; Remove all occurrences of the c-type property that has the given
579 ;; value in the region between FROM and TO. VALUE is assumed to not
580 ;; be nil.
581 ;;
582 ;; Note: This assumes that c-type is put on single chars only; it's
583 ;; very inefficient if matching properties cover large regions.
584 (save-excursion
585 (goto-char from)
586 (while (progn
587 (when (eq (get-text-property (point) 'c-type) value)
588 (c-clear-char-property (point) 'c-type))
589 (goto-char (c-next-single-property-change (point) 'c-type nil to))
590 (< (point) to)))))
591
592 \f
593 ;; Some debug tools to visualize various special positions. This
594 ;; debug code isn't as portable as the rest of CC Mode.
595
596 (cc-bytecomp-defun overlays-in)
597 (cc-bytecomp-defun overlay-get)
598 (cc-bytecomp-defun overlay-start)
599 (cc-bytecomp-defun overlay-end)
600 (cc-bytecomp-defun delete-overlay)
601 (cc-bytecomp-defun overlay-put)
602 (cc-bytecomp-defun make-overlay)
603
604 (defun c-debug-add-face (beg end face)
605 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay)
606 (while overlays
607 (setq overlay (car overlays)
608 overlays (cdr overlays))
609 (when (eq (overlay-get overlay 'face) face)
610 (setq beg (min beg (overlay-start overlay))
611 end (max end (overlay-end overlay)))
612 (delete-overlay overlay)))
613 (overlay-put (make-overlay beg end) 'face face)))
614
615 (defun c-debug-remove-face (beg end face)
616 (c-save-buffer-state ((overlays (overlays-in beg end)) overlay
617 (ol-beg beg) (ol-end end))
618 (while overlays
619 (setq overlay (car overlays)
620 overlays (cdr overlays))
621 (when (eq (overlay-get overlay 'face) face)
622 (setq ol-beg (min ol-beg (overlay-start overlay))
623 ol-end (max ol-end (overlay-end overlay)))
624 (delete-overlay overlay)))
625 (when (< ol-beg beg)
626 (overlay-put (make-overlay ol-beg beg) 'face face))
627 (when (> ol-end end)
628 (overlay-put (make-overlay end ol-end) 'face face))))
629
630 \f
631 ;; `c-beginning-of-statement-1' and accompanying stuff.
632
633 ;; KLUDGE ALERT: c-maybe-labelp is used to pass information between
634 ;; c-crosses-statement-barrier-p and c-beginning-of-statement-1. A
635 ;; better way should be implemented, but this will at least shut up
636 ;; the byte compiler.
637 (defvar c-maybe-labelp)
638
639 ;; New awk-compatible version of c-beginning-of-statement-1, ACM 2002/6/22
640
641 ;; Macros used internally in c-beginning-of-statement-1 for the
642 ;; automaton actions.
643 (defmacro c-bos-push-state ()
644 '(setq stack (cons (cons state saved-pos)
645 stack)))
646 (defmacro c-bos-pop-state (&optional do-if-done)
647 `(if (setq state (car (car stack))
648 saved-pos (cdr (car stack))
649 stack (cdr stack))
650 t
651 ,do-if-done
652 (throw 'loop nil)))
653 (defmacro c-bos-pop-state-and-retry ()
654 '(throw 'loop (setq state (car (car stack))
655 saved-pos (cdr (car stack))
656 ;; Throw nil if stack is empty, else throw non-nil.
657 stack (cdr stack))))
658 (defmacro c-bos-save-pos ()
659 '(setq saved-pos (vector pos tok ptok pptok)))
660 (defmacro c-bos-restore-pos ()
661 '(unless (eq (elt saved-pos 0) start)
662 (setq pos (elt saved-pos 0)
663 tok (elt saved-pos 1)
664 ptok (elt saved-pos 2)
665 pptok (elt saved-pos 3))
666 (goto-char pos)
667 (setq sym nil)))
668 (defmacro c-bos-save-error-info (missing got)
669 `(setq saved-pos (vector pos ,missing ,got)))
670 (defmacro c-bos-report-error ()
671 '(unless noerror
672 (setq c-parsing-error
673 (format-message
674 "No matching `%s' found for `%s' on line %d"
675 (elt saved-pos 1)
676 (elt saved-pos 2)
677 (1+ (count-lines (point-min)
678 (c-point 'bol (elt saved-pos 0))))))))
679
680 (defun c-beginning-of-statement-1 (&optional lim ignore-labels
681 noerror comma-delim)
682 "Move to the start of the current statement or declaration, or to
683 the previous one if already at the beginning of one. Only
684 statements/declarations on the same level are considered, i.e. don't
685 move into or out of sexps (not even normal expression parentheses).
686
687 If point is already at the earliest statement within braces or parens,
688 this function doesn't move back into any whitespace preceding it; it
689 returns `same' in this case.
690
691 Stop at statement continuation tokens like \"else\", \"catch\",
692 \"finally\" and the \"while\" in \"do ... while\" if the start point
693 is within the continuation. If starting at such a token, move to the
694 corresponding statement start. If at the beginning of a statement,
695 move to the closest containing statement if there is any. This might
696 also stop at a continuation clause.
697
698 Labels are treated as part of the following statements if
699 IGNORE-LABELS is non-nil. (FIXME: Doesn't work if we stop at a known
700 statement start keyword.) Otherwise, each label is treated as a
701 separate statement.
702
703 Macros are ignored \(i.e. skipped over) unless point is within one, in
704 which case the content of the macro is treated as normal code. Aside
705 from any normal statement starts found in it, stop at the first token
706 of the content in the macro, i.e. the expression of an \"#if\" or the
707 start of the definition in a \"#define\". Also stop at start of
708 macros before leaving them.
709
710 Return:
711 `label' if stopped at a label or \"case...:\" or \"default:\";
712 `same' if stopped at the beginning of the current statement;
713 `up' if stepped to a containing statement;
714 `previous' if stepped to a preceding statement;
715 `beginning' if stepped from a statement continuation clause to
716 its start clause; or
717 `macro' if stepped to a macro start.
718 Note that `same' and not `label' is returned if stopped at the same
719 label without crossing the colon character.
720
721 LIM may be given to limit the search. If the search hits the limit,
722 point will be left at the closest following token, or at the start
723 position if that is less (`same' is returned in this case).
724
725 NOERROR turns off error logging to `c-parsing-error'.
726
727 Normally only `;' and virtual semicolons are considered to delimit
728 statements, but if COMMA-DELIM is non-nil then `,' is treated
729 as a delimiter too.
730
731 Note that this function might do hidden buffer changes. See the
732 comment at the start of cc-engine.el for more info."
733
734 ;; The bulk of this function is a pushdown automaton that looks at statement
735 ;; boundaries and the tokens (such as "while") in c-opt-block-stmt-key. Its
736 ;; purpose is to keep track of nested statements, ensuring that such
737 ;; statements are skipped over in their entirety (somewhat akin to what C-M-p
738 ;; does with nested braces/brackets/parentheses).
739 ;;
740 ;; Note: The position of a boundary is the following token.
741 ;;
742 ;; Beginning with the current token (the one following point), move back one
743 ;; sexp at a time (where a sexp is, more or less, either a token or the
744 ;; entire contents of a brace/bracket/paren pair). Each time a statement
745 ;; boundary is crossed or a "while"-like token is found, update the state of
746 ;; the PDA. Stop at the beginning of a statement when the stack (holding
747 ;; nested statement info) is empty and the position has been moved.
748 ;;
749 ;; The following variables constitute the PDA:
750 ;;
751 ;; sym: This is either the "while"-like token (e.g. 'for) we've just
752 ;; scanned back over, 'boundary if we've just gone back over a
753 ;; statement boundary, or nil otherwise.
754 ;; state: takes one of the values (nil else else-boundary while
755 ;; while-boundary catch catch-boundary).
756 ;; nil means "no "while"-like token yet scanned".
757 ;; 'else, for example, means "just gone back over an else".
758 ;; 'else-boundary means "just gone back over a statement boundary
759 ;; immediately after having gone back over an else".
760 ;; saved-pos: A vector of either saved positions (tok ptok pptok, etc.) or
761 ;; of error reporting information.
762 ;; stack: The stack onto which the PDA pushes its state. Each entry
763 ;; consists of a saved value of state and saved-pos. An entry is
764 ;; pushed when we move back over a "continuation" token (e.g. else)
765 ;; and popped when we encounter the corresponding opening token
766 ;; (e.g. if).
767 ;;
768 ;;
769 ;; The following diagram briefly outlines the PDA.
770 ;;
771 ;; Common state:
772 ;; "else": Push state, goto state `else'.
773 ;; "while": Push state, goto state `while'.
774 ;; "catch" or "finally": Push state, goto state `catch'.
775 ;; boundary: Pop state.
776 ;; other: Do nothing special.
777 ;;
778 ;; State `else':
779 ;; boundary: Goto state `else-boundary'.
780 ;; other: Error, pop state, retry token.
781 ;;
782 ;; State `else-boundary':
783 ;; "if": Pop state.
784 ;; boundary: Error, pop state.
785 ;; other: See common state.
786 ;;
787 ;; State `while':
788 ;; boundary: Save position, goto state `while-boundary'.
789 ;; other: Pop state, retry token.
790 ;;
791 ;; State `while-boundary':
792 ;; "do": Pop state.
793 ;; boundary: Restore position if it's not at start, pop state. [*see below]
794 ;; other: See common state.
795 ;;
796 ;; State `catch':
797 ;; boundary: Goto state `catch-boundary'.
798 ;; other: Error, pop state, retry token.
799 ;;
800 ;; State `catch-boundary':
801 ;; "try": Pop state.
802 ;; "catch": Goto state `catch'.
803 ;; boundary: Error, pop state.
804 ;; other: See common state.
805 ;;
806 ;; [*] In the `while-boundary' state, we had pushed a 'while state, and were
807 ;; searching for a "do" which would have opened a do-while. If we didn't
808 ;; find it, we discard the analysis done since the "while", go back to this
809 ;; token in the buffer and restart the scanning there, this time WITHOUT
810 ;; pushing the 'while state onto the stack.
811 ;;
812 ;; In addition to the above there is some special handling of labels
813 ;; and macros.
814
815 (let ((case-fold-search nil)
816 (start (point))
817 macro-start
818 (delims (if comma-delim '(?\; ?,) '(?\;)))
819 (c-stmt-delim-chars (if comma-delim
820 c-stmt-delim-chars-with-comma
821 c-stmt-delim-chars))
822 c-in-literal-cache c-maybe-labelp after-case:-pos saved
823 ;; Current position.
824 pos
825 ;; Position of last stmt boundary character (e.g. ;).
826 boundary-pos
827 ;; The position of the last sexp or bound that follows the
828 ;; first found colon, i.e. the start of the nonlabel part of
829 ;; the statement. It's `start' if a colon is found just after
830 ;; the start.
831 after-labels-pos
832 ;; Like `after-labels-pos', but the first such position inside
833 ;; a label, i.e. the start of the last label before the start
834 ;; of the nonlabel part of the statement.
835 last-label-pos
836 ;; The last position where a label is possible provided the
837 ;; statement started there. It's nil as long as no invalid
838 ;; label content has been found (according to
839 ;; `c-nonlabel-token-key'). It's `start' if no valid label
840 ;; content was found in the label. Note that we might still
841 ;; regard it a label if it starts with `c-label-kwds'.
842 label-good-pos
843 ;; Putative positions of the components of a bitfield declaration,
844 ;; e.g. "int foo : NUM_FOO_BITS ;"
845 bitfield-type-pos bitfield-id-pos bitfield-size-pos
846 ;; Symbol just scanned back over (e.g. 'while or 'boundary).
847 ;; See above.
848 sym
849 ;; Current state in the automaton. See above.
850 state
851 ;; Current saved positions. See above.
852 saved-pos
853 ;; Stack of conses (state . saved-pos).
854 stack
855 ;; Regexp which matches "for", "if", etc.
856 (cond-key (or c-opt-block-stmt-key
857 "\\<\\>")) ; Matches nothing.
858 ;; Return value.
859 (ret 'same)
860 ;; Positions of the last three sexps or bounds we've stopped at.
861 tok ptok pptok)
862
863 (save-restriction
864 (if lim (narrow-to-region lim (point-max)))
865
866 (if (save-excursion
867 (and (c-beginning-of-macro)
868 (/= (point) start)))
869 (setq macro-start (point)))
870
871 ;; Try to skip back over unary operator characters, to register
872 ;; that we've moved.
873 (while (progn
874 (setq pos (point))
875 (c-backward-syntactic-ws)
876 ;; Protect post-++/-- operators just before a virtual semicolon.
877 (and (not (c-at-vsemi-p))
878 (/= (skip-chars-backward "-+!*&~@`#") 0))))
879
880 ;; Skip back over any semicolon here. If it was a bare semicolon, we're
881 ;; done. Later on we ignore the boundaries for statements that don't
882 ;; contain any sexp. The only thing that is affected is that the error
883 ;; checking is a little less strict, and we really don't bother.
884 (if (and (memq (char-before) delims)
885 (progn (forward-char -1)
886 (setq saved (point))
887 (c-backward-syntactic-ws)
888 (or (memq (char-before) delims)
889 (memq (char-before) '(?: nil))
890 (eq (char-syntax (char-before)) ?\()
891 (c-at-vsemi-p))))
892 (setq ret 'previous
893 pos saved)
894
895 ;; Begin at start and not pos to detect macros if we stand
896 ;; directly after the #.
897 (goto-char start)
898 (if (looking-at "\\<\\|\\W")
899 ;; Record this as the first token if not starting inside it.
900 (setq tok start))
901
902 ;; The following while loop goes back one sexp (balanced parens,
903 ;; etc. with contents, or symbol or suchlike) each iteration. This
904 ;; movement is accomplished with a call to c-backward-sexp approx 170
905 ;; lines below.
906 ;;
907 ;; The loop is exited only by throwing nil to the (catch 'loop ...):
908 ;; 1. On reaching the start of a macro;
909 ;; 2. On having passed a stmt boundary with the PDA stack empty;
910 ;; 3. On reaching the start of an Objective C method def;
911 ;; 4. From macro `c-bos-pop-state'; when the stack is empty;
912 ;; 5. From macro `c-bos-pop-state-and-retry' when the stack is empty.
913 (while
914 (catch 'loop ;; Throw nil to break, non-nil to continue.
915 (cond
916 ;; Are we in a macro, just after the opening #?
917 ((save-excursion
918 (and macro-start ; Always NIL for AWK.
919 (progn (skip-chars-backward " \t")
920 (eq (char-before) ?#))
921 (progn (setq saved (1- (point)))
922 (beginning-of-line)
923 (not (eq (char-before (1- (point))) ?\\)))
924 (looking-at c-opt-cpp-start)
925 (progn (skip-chars-forward " \t")
926 (eq (point) saved))))
927 (goto-char saved)
928 (if (and (c-forward-to-cpp-define-body)
929 (progn (c-forward-syntactic-ws start)
930 (< (point) start)))
931 ;; Stop at the first token in the content of the macro.
932 (setq pos (point)
933 ignore-labels t) ; Avoid the label check on exit.
934 (setq pos saved
935 ret 'macro
936 ignore-labels t))
937 (throw 'loop nil)) ; 1. Start of macro.
938
939 ;; Do a round through the automaton if we've just passed a
940 ;; statement boundary or passed a "while"-like token.
941 ((or sym
942 (and (looking-at cond-key)
943 (setq sym (intern (match-string 1)))))
944
945 (when (and (< pos start) (null stack))
946 (throw 'loop nil)) ; 2. Statement boundary.
947
948 ;; The PDA state handling.
949 ;;
950 ;; Refer to the description of the PDA in the opening
951 ;; comments. In the following OR form, the first leaf
952 ;; attempts to handles one of the specific actions detailed
953 ;; (e.g., finding token "if" whilst in state `else-boundary').
954 ;; We drop through to the second leaf (which handles common
955 ;; state) if no specific handler is found in the first cond.
956 ;; If a parsing error is detected (e.g. an "else" with no
957 ;; preceding "if"), we throw to the enclosing catch.
958 ;;
959 ;; Note that the (eq state 'else) means
960 ;; "we've just passed an else", NOT "we're looking for an
961 ;; else".
962 (or (cond
963 ((eq state 'else)
964 (if (eq sym 'boundary)
965 (setq state 'else-boundary)
966 (c-bos-report-error)
967 (c-bos-pop-state-and-retry)))
968
969 ((eq state 'else-boundary)
970 (cond ((eq sym 'if)
971 (c-bos-pop-state (setq ret 'beginning)))
972 ((eq sym 'boundary)
973 (c-bos-report-error)
974 (c-bos-pop-state))))
975
976 ((eq state 'while)
977 (if (and (eq sym 'boundary)
978 ;; Since this can cause backtracking we do a
979 ;; little more careful analysis to avoid it:
980 ;; If there's a label in front of the while
981 ;; it can't be part of a do-while.
982 (not after-labels-pos))
983 (progn (c-bos-save-pos)
984 (setq state 'while-boundary))
985 (c-bos-pop-state-and-retry))) ; Can't be a do-while
986
987 ((eq state 'while-boundary)
988 (cond ((eq sym 'do)
989 (c-bos-pop-state (setq ret 'beginning)))
990 ((eq sym 'boundary) ; isn't a do-while
991 (c-bos-restore-pos) ; the position of the while
992 (c-bos-pop-state)))) ; no longer searching for do.
993
994 ((eq state 'catch)
995 (if (eq sym 'boundary)
996 (setq state 'catch-boundary)
997 (c-bos-report-error)
998 (c-bos-pop-state-and-retry)))
999
1000 ((eq state 'catch-boundary)
1001 (cond
1002 ((eq sym 'try)
1003 (c-bos-pop-state (setq ret 'beginning)))
1004 ((eq sym 'catch)
1005 (setq state 'catch))
1006 ((eq sym 'boundary)
1007 (c-bos-report-error)
1008 (c-bos-pop-state)))))
1009
1010 ;; This is state common. We get here when the previous
1011 ;; cond statement found no particular state handler.
1012 (cond ((eq sym 'boundary)
1013 ;; If we have a boundary at the start
1014 ;; position we push a frame to go to the
1015 ;; previous statement.
1016 (if (>= pos start)
1017 (c-bos-push-state)
1018 (c-bos-pop-state)))
1019 ((eq sym 'else)
1020 (c-bos-push-state)
1021 (c-bos-save-error-info 'if 'else)
1022 (setq state 'else))
1023 ((eq sym 'while)
1024 ;; Is this a real while, or a do-while?
1025 ;; The next `when' triggers unless we are SURE that
1026 ;; the `while' is not the tail end of a `do-while'.
1027 (when (or (not pptok)
1028 (memq (char-after pptok) delims)
1029 ;; The following kludge is to prevent
1030 ;; infinite recursion when called from
1031 ;; c-awk-after-if-for-while-condition-p,
1032 ;; or the like.
1033 (and (eq (point) start)
1034 (c-vsemi-status-unknown-p))
1035 (c-at-vsemi-p pptok))
1036 ;; Since this can cause backtracking we do a
1037 ;; little more careful analysis to avoid it: If
1038 ;; the while isn't followed by a (possibly
1039 ;; virtual) semicolon it can't be a do-while.
1040 (c-bos-push-state)
1041 (setq state 'while)))
1042 ((memq sym '(catch finally))
1043 (c-bos-push-state)
1044 (c-bos-save-error-info 'try sym)
1045 (setq state 'catch))))
1046
1047 (when c-maybe-labelp
1048 ;; We're either past a statement boundary or at the
1049 ;; start of a statement, so throw away any label data
1050 ;; for the previous one.
1051 (setq after-labels-pos nil
1052 last-label-pos nil
1053 c-maybe-labelp nil))))
1054
1055 ;; Step to the previous sexp, but not if we crossed a
1056 ;; boundary, since that doesn't consume an sexp.
1057 (if (eq sym 'boundary)
1058 (setq ret 'previous)
1059
1060 ;; HERE IS THE SINGLE PLACE INSIDE THE PDA LOOP WHERE WE MOVE
1061 ;; BACKWARDS THROUGH THE SOURCE.
1062
1063 (c-backward-syntactic-ws)
1064 (let ((before-sws-pos (point))
1065 ;; The end position of the area to search for statement
1066 ;; barriers in this round.
1067 (maybe-after-boundary-pos pos))
1068
1069 ;; Go back over exactly one logical sexp, taking proper
1070 ;; account of macros and escaped EOLs.
1071 (while
1072 (progn
1073 (unless (c-safe (c-backward-sexp) t)
1074 ;; Give up if we hit an unbalanced block. Since the
1075 ;; stack won't be empty the code below will report a
1076 ;; suitable error.
1077 (throw 'loop nil))
1078 (cond
1079 ;; Have we moved into a macro?
1080 ((and (not macro-start)
1081 (c-beginning-of-macro))
1082 ;; Have we crossed a statement boundary? If not,
1083 ;; keep going back until we find one or a "real" sexp.
1084 (and
1085 (save-excursion
1086 (c-end-of-macro)
1087 (not (c-crosses-statement-barrier-p
1088 (point) maybe-after-boundary-pos)))
1089 (setq maybe-after-boundary-pos (point))))
1090 ;; Have we just gone back over an escaped NL? This
1091 ;; doesn't count as a sexp.
1092 ((looking-at "\\\\$")))))
1093
1094 ;; Have we crossed a statement boundary?
1095 (setq boundary-pos
1096 (cond
1097 ;; Are we at a macro beginning?
1098 ((and (not macro-start)
1099 c-opt-cpp-prefix
1100 (looking-at c-opt-cpp-prefix))
1101 (save-excursion
1102 (c-end-of-macro)
1103 (c-crosses-statement-barrier-p
1104 (point) maybe-after-boundary-pos)))
1105 ;; Just gone back over a brace block?
1106 ((and
1107 (eq (char-after) ?{)
1108 (not (c-looking-at-inexpr-block lim nil t))
1109 (save-excursion
1110 (c-backward-token-2 1 t nil)
1111 (not (looking-at "=\\([^=]\\|$\\)"))))
1112 (save-excursion
1113 (c-forward-sexp) (point)))
1114 ;; Just gone back over some paren block?
1115 ((looking-at "\\s(")
1116 (save-excursion
1117 (goto-char (1+ (c-down-list-backward
1118 before-sws-pos)))
1119 (c-crosses-statement-barrier-p
1120 (point) maybe-after-boundary-pos)))
1121 ;; Just gone back over an ordinary symbol of some sort?
1122 (t (c-crosses-statement-barrier-p
1123 (point) maybe-after-boundary-pos))))
1124
1125 (when boundary-pos
1126 (setq pptok ptok
1127 ptok tok
1128 tok boundary-pos
1129 sym 'boundary)
1130 ;; Like a C "continue". Analyze the next sexp.
1131 (throw 'loop t))))
1132
1133 ;; ObjC method def?
1134 (when (and c-opt-method-key
1135 (setq saved (c-in-method-def-p)))
1136 (setq pos saved
1137 ignore-labels t) ; Avoid the label check on exit.
1138 (throw 'loop nil)) ; 3. ObjC method def.
1139
1140 ;; Might we have a bitfield declaration, "<type> <id> : <size>"?
1141 (if c-has-bitfields
1142 (cond
1143 ;; The : <size> and <id> fields?
1144 ((and (numberp c-maybe-labelp)
1145 (not bitfield-size-pos)
1146 (save-excursion
1147 (goto-char (or tok start))
1148 (not (looking-at c-keywords-regexp)))
1149 (not (looking-at c-keywords-regexp))
1150 (not (c-punctuation-in (point) c-maybe-labelp)))
1151 (setq bitfield-size-pos (or tok start)
1152 bitfield-id-pos (point)))
1153 ;; The <type> field?
1154 ((and bitfield-id-pos
1155 (not bitfield-type-pos))
1156 (if (and (looking-at c-symbol-key) ; Can only be an integer type. :-)
1157 (not (looking-at c-not-primitive-type-keywords-regexp))
1158 (not (c-punctuation-in (point) tok)))
1159 (setq bitfield-type-pos (point))
1160 (setq bitfield-size-pos nil
1161 bitfield-id-pos nil)))))
1162
1163 ;; Handle labels.
1164 (unless (eq ignore-labels t)
1165 (when (numberp c-maybe-labelp)
1166 ;; `c-crosses-statement-barrier-p' has found a colon, so we
1167 ;; might be in a label now. Have we got a real label
1168 ;; (including a case label) or something like C++'s "public:"?
1169 ;; A case label might use an expression rather than a token.
1170 (setq after-case:-pos (or tok start))
1171 (if (or (looking-at c-nonlabel-token-key) ; e.g. "while" or "'a'"
1172 ;; Catch C++'s inheritance construct "class foo : bar".
1173 (save-excursion
1174 (and
1175 (c-safe (c-backward-sexp) t)
1176 (looking-at c-nonlabel-token-2-key))))
1177 (setq c-maybe-labelp nil)
1178 (if after-labels-pos ; Have we already encountered a label?
1179 (if (not last-label-pos)
1180 (setq last-label-pos (or tok start)))
1181 (setq after-labels-pos (or tok start)))
1182 (setq c-maybe-labelp t
1183 label-good-pos nil))) ; bogus "label"
1184
1185 (when (and (not label-good-pos) ; i.e. no invalid "label"'s yet
1186 ; been found.
1187 (looking-at c-nonlabel-token-key)) ; e.g. "while :"
1188 ;; We're in a potential label and it's the first
1189 ;; time we've found something that isn't allowed in
1190 ;; one.
1191 (setq label-good-pos (or tok start))))
1192
1193 ;; We've moved back by a sexp, so update the token positions.
1194 (setq sym nil
1195 pptok ptok
1196 ptok tok
1197 tok (point)
1198 pos tok) ; always non-nil
1199 ) ; end of (catch loop ....)
1200 ) ; end of sexp-at-a-time (while ....)
1201
1202 ;; If the stack isn't empty there might be errors to report.
1203 (while stack
1204 (if (and (vectorp saved-pos) (eq (length saved-pos) 3))
1205 (c-bos-report-error))
1206 (setq saved-pos (cdr (car stack))
1207 stack (cdr stack)))
1208
1209 (when (and (eq ret 'same)
1210 (not (memq sym '(boundary ignore nil))))
1211 ;; Need to investigate closer whether we've crossed
1212 ;; between a substatement and its containing statement.
1213 (if (setq saved
1214 (cond ((and (looking-at c-block-stmt-1-2-key)
1215 (eq (char-after ptok) ?\())
1216 pptok)
1217 ((looking-at c-block-stmt-1-key)
1218 ptok)
1219 (t pptok)))
1220 (cond ((> start saved) (setq pos saved))
1221 ((= start saved) (setq ret 'up)))))
1222
1223 (when (and (not ignore-labels)
1224 (eq c-maybe-labelp t)
1225 (not (eq ret 'beginning))
1226 after-labels-pos
1227 (not bitfield-type-pos) ; Bitfields take precedence over labels.
1228 (or (not label-good-pos)
1229 (<= label-good-pos pos)
1230 (progn
1231 (goto-char (if (and last-label-pos
1232 (< last-label-pos start))
1233 last-label-pos
1234 pos))
1235 (looking-at c-label-kwds-regexp))))
1236 ;; We're in a label. Maybe we should step to the statement
1237 ;; after it.
1238 (if (< after-labels-pos start)
1239 (setq pos after-labels-pos)
1240 (setq ret 'label)
1241 (if (and last-label-pos (< last-label-pos start))
1242 ;; Might have jumped over several labels. Go to the last one.
1243 (setq pos last-label-pos)))))
1244
1245 ;; Have we got "case <expression>:"?
1246 (goto-char pos)
1247 (when (and after-case:-pos
1248 (not (eq ret 'beginning))
1249 (looking-at c-case-kwds-regexp))
1250 (if (< after-case:-pos start)
1251 (setq pos after-case:-pos))
1252 (if (eq ret 'same)
1253 (setq ret 'label)))
1254
1255 ;; Skip over the unary operators that can start the statement.
1256 (while (progn
1257 (c-backward-syntactic-ws)
1258 ;; protect AWK post-inc/decrement operators, etc.
1259 (and (not (c-at-vsemi-p (point)))
1260 (/= (skip-chars-backward "-+!*&~@`#") 0)))
1261 (setq pos (point)))
1262 (goto-char pos)
1263 ret)))
1264
1265 (defun c-punctuation-in (from to)
1266 "Return non-nil if there is a non-comment non-macro punctuation character
1267 between FROM and TO. FROM must not be in a string or comment. The returned
1268 value is the position of the first such character."
1269 (save-excursion
1270 (goto-char from)
1271 (let ((pos (point)))
1272 (while (progn (skip-chars-forward c-symbol-chars to)
1273 (c-forward-syntactic-ws to)
1274 (> (point) pos))
1275 (setq pos (point))))
1276 (and (< (point) to) (point))))
1277
1278 (defun c-crosses-statement-barrier-p (from to)
1279 "Return non-nil if buffer positions FROM to TO cross one or more
1280 statement or declaration boundaries. The returned value is actually
1281 the position of the earliest boundary char. FROM must not be within
1282 a string or comment.
1283
1284 The variable `c-maybe-labelp' is set to the position of the first `:' that
1285 might start a label (i.e. not part of `::' and not preceded by `?'). If a
1286 single `?' is found, then `c-maybe-labelp' is cleared.
1287
1288 For AWK, a statement which is terminated by an EOL (not a ; or a }) is
1289 regarded as having a \"virtual semicolon\" immediately after the last token on
1290 the line. If this virtual semicolon is _at_ from, the function recognizes it.
1291
1292 Note that this function might do hidden buffer changes. See the
1293 comment at the start of cc-engine.el for more info."
1294 (let* ((skip-chars
1295 ;; If the current language has CPP macros, insert # into skip-chars.
1296 (if c-opt-cpp-symbol
1297 (concat (substring c-stmt-delim-chars 0 1) ; "^"
1298 c-opt-cpp-symbol ; usually "#"
1299 (substring c-stmt-delim-chars 1)) ; e.g. ";{}?:"
1300 c-stmt-delim-chars))
1301 (non-skip-list
1302 (append (substring skip-chars 1) nil)) ; e.g. (?# ?\; ?{ ?} ?? ?:)
1303 lit-range vsemi-pos)
1304 (save-restriction
1305 (widen)
1306 (save-excursion
1307 (catch 'done
1308 (goto-char from)
1309 (while (progn (skip-chars-forward
1310 skip-chars
1311 (min to (c-point 'bonl)))
1312 (< (point) to))
1313 (cond
1314 ;; Virtual semicolon?
1315 ((and (bolp)
1316 (save-excursion
1317 (progn
1318 (if (setq lit-range (c-literal-limits from)) ; Have we landed in a string/comment?
1319 (goto-char (car lit-range)))
1320 (c-backward-syntactic-ws) ; ? put a limit here, maybe?
1321 (setq vsemi-pos (point))
1322 (c-at-vsemi-p))))
1323 (throw 'done vsemi-pos))
1324 ;; In a string/comment?
1325 ((setq lit-range (c-literal-limits from))
1326 (goto-char (cdr lit-range)))
1327 ((eq (char-after) ?:)
1328 (forward-char)
1329 (if (and (eq (char-after) ?:)
1330 (< (point) to))
1331 ;; Ignore scope operators.
1332 (forward-char)
1333 (setq c-maybe-labelp (1- (point)))))
1334 ((eq (char-after) ??)
1335 ;; A question mark. Can't be a label, so stop
1336 ;; looking for more : and ?.
1337 (setq c-maybe-labelp nil
1338 skip-chars (substring c-stmt-delim-chars 0 -2)))
1339 ;; At a CPP construct or a "#" or "##" operator?
1340 ((and c-opt-cpp-symbol (looking-at c-opt-cpp-symbol))
1341 (if (save-excursion
1342 (skip-chars-backward " \t")
1343 (and (bolp)
1344 (or (bobp)
1345 (not (eq (char-before (1- (point))) ?\\)))))
1346 (c-end-of-macro)
1347 (skip-chars-forward c-opt-cpp-symbol)))
1348 ((memq (char-after) non-skip-list)
1349 (throw 'done (point)))))
1350 ;; In trailing space after an as yet undetected virtual semicolon?
1351 (c-backward-syntactic-ws from)
1352 (when (and (bolp) (not (bobp))) ; Can happen in AWK Mode with an
1353 ; unterminated string/regexp.
1354 (backward-char))
1355 (if (and (< (point) to)
1356 (c-at-vsemi-p))
1357 (point)
1358 nil))))))
1359
1360 (defun c-at-statement-start-p ()
1361 "Return non-nil if the point is at the first token in a statement
1362 or somewhere in the syntactic whitespace before it.
1363
1364 A \"statement\" here is not restricted to those inside code blocks.
1365 Any kind of declaration-like construct that occur outside function
1366 bodies is also considered a \"statement\".
1367
1368 Note that this function might do hidden buffer changes. See the
1369 comment at the start of cc-engine.el for more info."
1370
1371 (save-excursion
1372 (let ((end (point))
1373 c-maybe-labelp)
1374 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1375 (or (bobp)
1376 (eq (char-before) ?})
1377 (and (eq (char-before) ?{)
1378 (not (and c-special-brace-lists
1379 (progn (backward-char)
1380 (c-looking-at-special-brace-list)))))
1381 (c-crosses-statement-barrier-p (point) end)))))
1382
1383 (defun c-at-expression-start-p ()
1384 "Return non-nil if the point is at the first token in an expression or
1385 statement, or somewhere in the syntactic whitespace before it.
1386
1387 An \"expression\" here is a bit different from the normal language
1388 grammar sense: It's any sequence of expression tokens except commas,
1389 unless they are enclosed inside parentheses of some kind. Also, an
1390 expression never continues past an enclosing parenthesis, but it might
1391 contain parenthesis pairs of any sort except braces.
1392
1393 Since expressions never cross statement boundaries, this function also
1394 recognizes statement beginnings, just like `c-at-statement-start-p'.
1395
1396 Note that this function might do hidden buffer changes. See the
1397 comment at the start of cc-engine.el for more info."
1398
1399 (save-excursion
1400 (let ((end (point))
1401 (c-stmt-delim-chars c-stmt-delim-chars-with-comma)
1402 c-maybe-labelp)
1403 (c-syntactic-skip-backward (substring c-stmt-delim-chars 1) nil t)
1404 (or (bobp)
1405 (memq (char-before) '(?{ ?}))
1406 (save-excursion (backward-char)
1407 (looking-at "\\s("))
1408 (c-crosses-statement-barrier-p (point) end)))))
1409
1410 \f
1411 ;; A set of functions that covers various idiosyncrasies in
1412 ;; implementations of `forward-comment'.
1413
1414 ;; Note: Some emacsen considers incorrectly that any line comment
1415 ;; ending with a backslash continues to the next line. I can't think
1416 ;; of any way to work around that in a reliable way without changing
1417 ;; the buffer, though. Suggestions welcome. ;) (No, temporarily
1418 ;; changing the syntax for backslash doesn't work since we must treat
1419 ;; escapes in string literals correctly.)
1420
1421 (defun c-forward-single-comment ()
1422 "Move forward past whitespace and the closest following comment, if any.
1423 Return t if a comment was found, nil otherwise. In either case, the
1424 point is moved past the following whitespace. Line continuations,
1425 i.e. a backslashes followed by line breaks, are treated as whitespace.
1426 The line breaks that end line comments are considered to be the
1427 comment enders, so the point will be put on the beginning of the next
1428 line if it moved past a line comment.
1429
1430 This function does not do any hidden buffer changes."
1431
1432 (let ((start (point)))
1433 (when (looking-at "\\([ \t\n\r\f\v]\\|\\\\[\n\r]\\)+")
1434 (goto-char (match-end 0)))
1435
1436 (when (forward-comment 1)
1437 (if (eobp)
1438 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1439 ;; forwards at eob.
1440 nil
1441
1442 ;; Emacs includes the ending newline in a b-style (c++)
1443 ;; comment, but XEmacs doesn't. We depend on the Emacs
1444 ;; behavior (which also is symmetric).
1445 (if (and (eolp) (elt (parse-partial-sexp start (point)) 7))
1446 (condition-case nil (forward-char 1)))
1447
1448 t))))
1449
1450 (defsubst c-forward-comments ()
1451 "Move forward past all following whitespace and comments.
1452 Line continuations, i.e. a backslashes followed by line breaks, are
1453 treated as whitespace.
1454
1455 Note that this function might do hidden buffer changes. See the
1456 comment at the start of cc-engine.el for more info."
1457
1458 (while (or
1459 ;; If forward-comment in at least XEmacs 21 is given a large
1460 ;; positive value, it'll loop all the way through if it hits
1461 ;; eob.
1462 (and (forward-comment 5)
1463 ;; Some emacsen (e.g. XEmacs 21) return t when moving
1464 ;; forwards at eob.
1465 (not (eobp)))
1466
1467 (when (looking-at "\\\\[\n\r]")
1468 (forward-char 2)
1469 t))))
1470
1471 (defun c-backward-single-comment ()
1472 "Move backward past whitespace and the closest preceding comment, if any.
1473 Return t if a comment was found, nil otherwise. In either case, the
1474 point is moved past the preceding whitespace. Line continuations,
1475 i.e. a backslashes followed by line breaks, are treated as whitespace.
1476 The line breaks that end line comments are considered to be the
1477 comment enders, so the point cannot be at the end of the same line to
1478 move over a line comment.
1479
1480 This function does not do any hidden buffer changes."
1481
1482 (let ((start (point)))
1483 ;; When we got newline terminated comments, forward-comment in all
1484 ;; supported emacsen so far will stop at eol of each line not
1485 ;; ending with a comment when moving backwards. This corrects for
1486 ;; that, and at the same time handles line continuations.
1487 (while (progn
1488 (skip-chars-backward " \t\n\r\f\v")
1489 (and (looking-at "[\n\r]")
1490 (eq (char-before) ?\\)))
1491 (backward-char))
1492
1493 (if (bobp)
1494 ;; Some emacsen (e.g. Emacs 19.34) return t when moving
1495 ;; backwards at bob.
1496 nil
1497
1498 ;; Leave point after the closest following newline if we've
1499 ;; backed up over any above, since forward-comment won't move
1500 ;; backward over a line comment if point is at the end of the
1501 ;; same line.
1502 (re-search-forward "\\=\\s *[\n\r]" start t)
1503
1504 (if (if (forward-comment -1)
1505 (if (eolp)
1506 ;; If forward-comment above succeeded and we're at eol
1507 ;; then the newline we moved over above didn't end a
1508 ;; line comment, so we give it another go.
1509 (forward-comment -1)
1510 t))
1511
1512 ;; Emacs <= 20 and XEmacs move back over the closer of a
1513 ;; block comment that lacks an opener.
1514 (if (looking-at "\\*/")
1515 (progn (forward-char 2) nil)
1516 t)))))
1517
1518 (defsubst c-backward-comments ()
1519 "Move backward past all preceding whitespace and comments.
1520 Line continuations, i.e. a backslashes followed by line breaks, are
1521 treated as whitespace. The line breaks that end line comments are
1522 considered to be the comment enders, so the point cannot be at the end
1523 of the same line to move over a line comment. Unlike
1524 c-backward-syntactic-ws, this function doesn't move back over
1525 preprocessor directives.
1526
1527 Note that this function might do hidden buffer changes. See the
1528 comment at the start of cc-engine.el for more info."
1529
1530 (let ((start (point)))
1531 (while (and
1532 ;; `forward-comment' in some emacsen (e.g. XEmacs 21.4)
1533 ;; return t when moving backwards at bob.
1534 (not (bobp))
1535
1536 (if (let (moved-comment)
1537 (while
1538 (and (not (setq moved-comment (forward-comment -1)))
1539 ;; Cope specifically with ^M^J here -
1540 ;; forward-comment sometimes gets stuck after ^Ms,
1541 ;; sometimes after ^M^J.
1542 (or
1543 (when (eq (char-before) ?\r)
1544 (backward-char)
1545 t)
1546 (when (and (eq (char-before) ?\n)
1547 (eq (char-before (1- (point))) ?\r))
1548 (backward-char 2)
1549 t))))
1550 moved-comment)
1551 (if (looking-at "\\*/")
1552 ;; Emacs <= 20 and XEmacs move back over the
1553 ;; closer of a block comment that lacks an opener.
1554 (progn (forward-char 2) nil)
1555 t)
1556
1557 ;; XEmacs treats line continuations as whitespace but
1558 ;; only in the backward direction, which seems a bit
1559 ;; odd. Anyway, this is necessary for Emacs.
1560 (when (and (looking-at "[\n\r]")
1561 (eq (char-before) ?\\)
1562 (< (point) start))
1563 (backward-char)
1564 t))))))
1565
1566 \f
1567 ;; Tools for skipping over syntactic whitespace.
1568
1569 ;; The following functions use text properties to cache searches over
1570 ;; large regions of syntactic whitespace. It works as follows:
1571 ;;
1572 ;; o If a syntactic whitespace region contains anything but simple
1573 ;; whitespace (i.e. space, tab and line breaks), the text property
1574 ;; `c-in-sws' is put over it. At places where we have stopped
1575 ;; within that region there's also a `c-is-sws' text property.
1576 ;; That since there typically are nested whitespace inside that
1577 ;; must be handled separately, e.g. whitespace inside a comment or
1578 ;; cpp directive. Thus, from one point with `c-is-sws' it's safe
1579 ;; to jump to another point with that property within the same
1580 ;; `c-in-sws' region. It can be likened to a ladder where
1581 ;; `c-in-sws' marks the bars and `c-is-sws' the rungs.
1582 ;;
1583 ;; o The `c-is-sws' property is put on the simple whitespace chars at
1584 ;; a "rung position" and also maybe on the first following char.
1585 ;; As many characters as can be conveniently found in this range
1586 ;; are marked, but no assumption can be made that the whole range
1587 ;; is marked (it could be clobbered by later changes, for
1588 ;; instance).
1589 ;;
1590 ;; Note that some part of the beginning of a sequence of simple
1591 ;; whitespace might be part of the end of a preceding line comment
1592 ;; or cpp directive and must not be considered part of the "rung".
1593 ;; Such whitespace is some amount of horizontal whitespace followed
1594 ;; by a newline. In the case of cpp directives it could also be
1595 ;; two newlines with horizontal whitespace between them.
1596 ;;
1597 ;; The reason to include the first following char is to cope with
1598 ;; "rung positions" that don't have any ordinary whitespace. If
1599 ;; `c-is-sws' is put on a token character it does not have
1600 ;; `c-in-sws' set simultaneously. That's the only case when that
1601 ;; can occur, and the reason for not extending the `c-in-sws'
1602 ;; region to cover it is that the `c-in-sws' region could then be
1603 ;; accidentally merged with a following one if the token is only
1604 ;; one character long.
1605 ;;
1606 ;; o On buffer changes the `c-in-sws' and `c-is-sws' properties are
1607 ;; removed in the changed region. If the change was inside
1608 ;; syntactic whitespace that means that the "ladder" is broken, but
1609 ;; a later call to `c-forward-sws' or `c-backward-sws' will use the
1610 ;; parts on either side and use an ordinary search only to "repair"
1611 ;; the gap.
1612 ;;
1613 ;; Special care needs to be taken if a region is removed: If there
1614 ;; are `c-in-sws' on both sides of it which do not connect inside
1615 ;; the region then they can't be joined. If e.g. a marked macro is
1616 ;; broken, syntactic whitespace inside the new text might be
1617 ;; marked. If those marks would become connected with the old
1618 ;; `c-in-sws' range around the macro then we could get a ladder
1619 ;; with one end outside the macro and the other at some whitespace
1620 ;; within it.
1621 ;;
1622 ;; The main motivation for this system is to increase the speed in
1623 ;; skipping over the large whitespace regions that can occur at the
1624 ;; top level in e.g. header files that contain a lot of comments and
1625 ;; cpp directives. For small comments inside code it's probably
1626 ;; slower than using `forward-comment' straightforwardly, but speed is
1627 ;; not a significant factor there anyway.
1628
1629 ; (defface c-debug-is-sws-face
1630 ; '((t (:background "GreenYellow")))
1631 ; "Debug face to mark the `c-is-sws' property.")
1632 ; (defface c-debug-in-sws-face
1633 ; '((t (:underline t)))
1634 ; "Debug face to mark the `c-in-sws' property.")
1635
1636 ; (defun c-debug-put-sws-faces ()
1637 ; ;; Put the sws debug faces on all the `c-is-sws' and `c-in-sws'
1638 ; ;; properties in the buffer.
1639 ; (interactive)
1640 ; (save-excursion
1641 ; (c-save-buffer-state (in-face)
1642 ; (goto-char (point-min))
1643 ; (setq in-face (if (get-text-property (point) 'c-is-sws)
1644 ; (point)))
1645 ; (while (progn
1646 ; (goto-char (next-single-property-change
1647 ; (point) 'c-is-sws nil (point-max)))
1648 ; (if in-face
1649 ; (progn
1650 ; (c-debug-add-face in-face (point) 'c-debug-is-sws-face)
1651 ; (setq in-face nil))
1652 ; (setq in-face (point)))
1653 ; (not (eobp))))
1654 ; (goto-char (point-min))
1655 ; (setq in-face (if (get-text-property (point) 'c-in-sws)
1656 ; (point)))
1657 ; (while (progn
1658 ; (goto-char (next-single-property-change
1659 ; (point) 'c-in-sws nil (point-max)))
1660 ; (if in-face
1661 ; (progn
1662 ; (c-debug-add-face in-face (point) 'c-debug-in-sws-face)
1663 ; (setq in-face nil))
1664 ; (setq in-face (point)))
1665 ; (not (eobp)))))))
1666
1667 (defmacro c-debug-sws-msg (&rest args)
1668 ;;`(message ,@args)
1669 )
1670
1671 (defmacro c-put-is-sws (beg end)
1672 ;; This macro does a hidden buffer change.
1673 `(let ((beg ,beg) (end ,end))
1674 (put-text-property beg end 'c-is-sws t)
1675 ,@(when (facep 'c-debug-is-sws-face)
1676 `((c-debug-add-face beg end 'c-debug-is-sws-face)))))
1677
1678 (defmacro c-put-in-sws (beg end)
1679 ;; This macro does a hidden buffer change.
1680 `(let ((beg ,beg) (end ,end))
1681 (put-text-property beg end 'c-in-sws t)
1682 ,@(when (facep 'c-debug-is-sws-face)
1683 `((c-debug-add-face beg end 'c-debug-in-sws-face)))))
1684
1685 (defmacro c-remove-is-sws (beg end)
1686 ;; This macro does a hidden buffer change.
1687 `(let ((beg ,beg) (end ,end))
1688 (remove-text-properties beg end '(c-is-sws nil))
1689 ,@(when (facep 'c-debug-is-sws-face)
1690 `((c-debug-remove-face beg end 'c-debug-is-sws-face)))))
1691
1692 (defmacro c-remove-in-sws (beg end)
1693 ;; This macro does a hidden buffer change.
1694 `(let ((beg ,beg) (end ,end))
1695 (remove-text-properties beg end '(c-in-sws nil))
1696 ,@(when (facep 'c-debug-is-sws-face)
1697 `((c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1698
1699 (defmacro c-remove-is-and-in-sws (beg end)
1700 ;; This macro does a hidden buffer change.
1701 `(let ((beg ,beg) (end ,end))
1702 (remove-text-properties beg end '(c-is-sws nil c-in-sws nil))
1703 ,@(when (facep 'c-debug-is-sws-face)
1704 `((c-debug-remove-face beg end 'c-debug-is-sws-face)
1705 (c-debug-remove-face beg end 'c-debug-in-sws-face)))))
1706
1707 (defsubst c-invalidate-sws-region-after (beg end)
1708 ;; Called from `after-change-functions'. Note that if
1709 ;; `c-forward-sws' or `c-backward-sws' are used outside
1710 ;; `c-save-buffer-state' or similar then this will remove the cache
1711 ;; properties right after they're added.
1712 ;;
1713 ;; This function does hidden buffer changes.
1714
1715 (save-excursion
1716 ;; Adjust the end to remove the properties in any following simple
1717 ;; ws up to and including the next line break, if there is any
1718 ;; after the changed region. This is necessary e.g. when a rung
1719 ;; marked empty line is converted to a line comment by inserting
1720 ;; "//" before the line break. In that case the line break would
1721 ;; keep the rung mark which could make a later `c-backward-sws'
1722 ;; move into the line comment instead of over it.
1723 (goto-char end)
1724 (skip-chars-forward " \t\f\v")
1725 (when (and (eolp) (not (eobp)))
1726 (setq end (1+ (point)))))
1727
1728 (when (and (= beg end)
1729 (get-text-property beg 'c-in-sws)
1730 (> beg (point-min))
1731 (get-text-property (1- beg) 'c-in-sws))
1732 ;; Ensure that an `c-in-sws' range gets broken. Note that it isn't
1733 ;; safe to keep a range that was continuous before the change. E.g:
1734 ;;
1735 ;; #define foo
1736 ;; \
1737 ;; bar
1738 ;;
1739 ;; There can be a "ladder" between "#" and "b". Now, if the newline
1740 ;; after "foo" is removed then "bar" will become part of the cpp
1741 ;; directive instead of a syntactically relevant token. In that
1742 ;; case there's no longer syntactic ws from "#" to "b".
1743 (setq beg (1- beg)))
1744
1745 (c-debug-sws-msg "c-invalidate-sws-region-after [%s..%s]" beg end)
1746 (c-remove-is-and-in-sws beg end))
1747
1748 (defun c-forward-sws ()
1749 ;; Used by `c-forward-syntactic-ws' to implement the unbounded search.
1750 ;;
1751 ;; This function might do hidden buffer changes.
1752
1753 (let (;; `rung-pos' is set to a position as early as possible in the
1754 ;; unmarked part of the simple ws region.
1755 (rung-pos (point)) next-rung-pos rung-end-pos last-put-in-sws-pos
1756 rung-is-marked next-rung-is-marked simple-ws-end
1757 ;; `safe-start' is set when it's safe to cache the start position.
1758 ;; It's not set if we've initially skipped over comments and line
1759 ;; continuations since we might have gone out through the end of a
1760 ;; macro then. This provision makes `c-forward-sws' not populate the
1761 ;; cache in the majority of cases, but otoh is `c-backward-sws' by far
1762 ;; more common.
1763 safe-start)
1764
1765 ;; Skip simple ws and do a quick check on the following character to see
1766 ;; if it's anything that can't start syntactic ws, so we can bail out
1767 ;; early in the majority of cases when there just are a few ws chars.
1768 (skip-chars-forward " \t\n\r\f\v")
1769 (when (or (looking-at c-syntactic-ws-start)
1770 (and c-opt-cpp-prefix
1771 (looking-at c-noise-macro-name-re)))
1772
1773 (setq rung-end-pos (min (1+ (point)) (point-max)))
1774 (if (setq rung-is-marked (text-property-any rung-pos rung-end-pos
1775 'c-is-sws t))
1776 ;; Find the last rung position to avoid setting properties in all
1777 ;; the cases when the marked rung is complete.
1778 ;; (`next-single-property-change' is certain to move at least one
1779 ;; step forward.)
1780 (setq rung-pos (1- (c-next-single-property-change
1781 rung-is-marked 'c-is-sws nil rung-end-pos)))
1782 ;; Got no marked rung here. Since the simple ws might have started
1783 ;; inside a line comment or cpp directive we must set `rung-pos' as
1784 ;; high as possible.
1785 (setq rung-pos (point)))
1786
1787 (with-silent-modifications
1788 (while
1789 (progn
1790 ;; In the following while form, we move over a "ladder" and
1791 ;; following simple WS each time round the loop, appending the WS
1792 ;; onto the ladder, joining adjacent ladders, and terminating when
1793 ;; there is no more WS or we reach EOB.
1794 (while
1795 (when (and rung-is-marked
1796 (get-text-property (point) 'c-in-sws))
1797
1798 ;; The following search is the main reason that `c-in-sws'
1799 ;; and `c-is-sws' aren't combined to one property.
1800 (goto-char (c-next-single-property-change
1801 (point) 'c-in-sws nil (point-max)))
1802 (unless (get-text-property (point) 'c-is-sws)
1803 ;; If the `c-in-sws' region extended past the last
1804 ;; `c-is-sws' char we have to go back a bit.
1805 (or (get-text-property (1- (point)) 'c-is-sws)
1806 (goto-char (previous-single-property-change
1807 (point) 'c-is-sws)))
1808 (backward-char))
1809
1810 (c-debug-sws-msg
1811 "c-forward-sws cached move %s -> %s (max %s)"
1812 rung-pos (point) (point-max))
1813
1814 (setq rung-pos (point))
1815 (and (> (skip-chars-forward " \t\n\r\f\v") 0)
1816 (not (eobp))))
1817
1818 ;; We'll loop here if there is simple ws after the last rung.
1819 ;; That means that there's been some change in it and it's
1820 ;; possible that we've stepped into another ladder, so extend
1821 ;; the previous one to join with it if there is one, and try to
1822 ;; use the cache again.
1823 (c-debug-sws-msg
1824 "c-forward-sws extending rung with [%s..%s] (max %s)"
1825 (1+ rung-pos) (1+ (point)) (point-max))
1826 (unless (get-text-property (point) 'c-is-sws)
1827 ;; Remove any `c-in-sws' property from the last char of
1828 ;; the rung before we mark it with `c-is-sws', so that we
1829 ;; won't connect with the remains of a broken "ladder".
1830 (c-remove-in-sws (point) (1+ (point))))
1831 (c-put-is-sws (1+ rung-pos)
1832 (1+ (point)))
1833 (c-put-in-sws rung-pos
1834 (setq rung-pos (point)
1835 last-put-in-sws-pos rung-pos)))
1836
1837 ;; Now move over any comments (x)or a CPP construct.
1838 (setq simple-ws-end (point))
1839 (c-forward-comments)
1840
1841 (cond
1842 ((/= (point) simple-ws-end)
1843 ;; Skipped over comments. Don't cache at eob in case the buffer
1844 ;; is narrowed.
1845 (not (eobp)))
1846
1847 ((save-excursion
1848 (and c-opt-cpp-prefix
1849 (looking-at c-opt-cpp-start)
1850 (progn (skip-chars-backward " \t")
1851 (bolp))
1852 (or (bobp)
1853 (progn (backward-char)
1854 (not (eq (char-before) ?\\))))))
1855 ;; Skip a preprocessor directive.
1856 (end-of-line)
1857 (while (and (eq (char-before) ?\\)
1858 (= (forward-line 1) 0))
1859 (end-of-line))
1860 (forward-line 1)
1861 (setq safe-start t)
1862 ;; Don't cache at eob in case the buffer is narrowed.
1863 (not (eobp)))
1864
1865 ((and c-opt-cpp-prefix
1866 (looking-at c-noise-macro-name-re))
1867 ;; Skip over a noise macro.
1868 (goto-char (match-end 1))
1869 (setq safe-start t)
1870 (not (eobp)))))
1871
1872 ;; We've searched over a piece of non-white syntactic ws. See if this
1873 ;; can be cached.
1874 (setq next-rung-pos (point))
1875 (skip-chars-forward " \t\n\r\f\v")
1876 (setq rung-end-pos (min (1+ (point)) (point-max)))
1877
1878 (if (or
1879 ;; Cache if we haven't skipped comments only, and if we started
1880 ;; either from a marked rung or from a completely uncached
1881 ;; position.
1882 (and safe-start
1883 (or rung-is-marked
1884 (not (get-text-property simple-ws-end 'c-in-sws))))
1885
1886 ;; See if there's a marked rung in the encountered simple ws. If
1887 ;; so then we can cache, unless `safe-start' is nil. Even then
1888 ;; we need to do this to check if the cache can be used for the
1889 ;; next step.
1890 (and (setq next-rung-is-marked
1891 (text-property-any next-rung-pos rung-end-pos
1892 'c-is-sws t))
1893 safe-start))
1894
1895 (progn
1896 (c-debug-sws-msg
1897 "c-forward-sws caching [%s..%s] - [%s..%s] (max %s)"
1898 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1899 (point-max))
1900
1901 ;; Remove the properties for any nested ws that might be cached.
1902 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
1903 ;; anyway.
1904 (c-remove-is-sws (1+ simple-ws-end) next-rung-pos)
1905 (unless (and rung-is-marked (= rung-pos simple-ws-end))
1906 (c-put-is-sws rung-pos
1907 (1+ simple-ws-end))
1908 (setq rung-is-marked t))
1909 (c-put-in-sws rung-pos
1910 (setq rung-pos (point)
1911 last-put-in-sws-pos rung-pos))
1912 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
1913 ;; Remove any `c-in-sws' property from the last char of
1914 ;; the rung before we mark it with `c-is-sws', so that we
1915 ;; won't connect with the remains of a broken "ladder".
1916 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
1917 (c-put-is-sws next-rung-pos
1918 rung-end-pos))
1919
1920 (c-debug-sws-msg
1921 "c-forward-sws not caching [%s..%s] - [%s..%s] (max %s)"
1922 rung-pos (1+ simple-ws-end) next-rung-pos rung-end-pos
1923 (point-max))
1924
1925 ;; Set `rung-pos' for the next rung. It's the same thing here as
1926 ;; initially, except that the rung position is set as early as
1927 ;; possible since we can't be in the ending ws of a line comment or
1928 ;; cpp directive now.
1929 (if (setq rung-is-marked next-rung-is-marked)
1930 (setq rung-pos (1- (c-next-single-property-change
1931 rung-is-marked 'c-is-sws nil rung-end-pos)))
1932 (setq rung-pos next-rung-pos))
1933 (setq safe-start t)))
1934
1935 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
1936 ;; another one after the point (which might occur when editing inside a
1937 ;; comment or macro).
1938 (when (eq last-put-in-sws-pos (point))
1939 (cond ((< last-put-in-sws-pos (point-max))
1940 (c-debug-sws-msg
1941 "c-forward-sws clearing at %s for cache separation"
1942 last-put-in-sws-pos)
1943 (c-remove-in-sws last-put-in-sws-pos
1944 (1+ last-put-in-sws-pos)))
1945 (t
1946 ;; If at eob we have to clear the last character before the end
1947 ;; instead since the buffer might be narrowed and there might
1948 ;; be a `c-in-sws' after (point-max). In this case it's
1949 ;; necessary to clear both properties.
1950 (c-debug-sws-msg
1951 "c-forward-sws clearing thoroughly at %s for cache separation"
1952 (1- last-put-in-sws-pos))
1953 (c-remove-is-and-in-sws (1- last-put-in-sws-pos)
1954 last-put-in-sws-pos))))
1955 ))))
1956
1957 (defun c-backward-sws ()
1958 ;; Used by `c-backward-syntactic-ws' to implement the unbounded search.
1959 ;;
1960 ;; This function might do hidden buffer changes.
1961
1962 (let (;; `rung-pos' is set to a position as late as possible in the unmarked
1963 ;; part of the simple ws region.
1964 (rung-pos (point)) next-rung-pos last-put-in-sws-pos
1965 rung-is-marked simple-ws-beg cmt-skip-pos)
1966
1967 ;; Skip simple horizontal ws and do a quick check on the preceding
1968 ;; character to see if it's anything that can't end syntactic ws, so we can
1969 ;; bail out early in the majority of cases when there just are a few ws
1970 ;; chars. Newlines are complicated in the backward direction, so we can't
1971 ;; skip over them.
1972 (skip-chars-backward " \t\f")
1973 (when (and (not (bobp))
1974 (save-excursion
1975 (backward-char)
1976 (or (looking-at c-syntactic-ws-end)
1977 (and c-opt-cpp-prefix
1978 (looking-at c-symbol-char-key)
1979 (progn (c-beginning-of-current-token)
1980 (looking-at c-noise-macro-name-re))))))
1981 ;; Try to find a rung position in the simple ws preceding point, so that
1982 ;; we can get a cache hit even if the last bit of the simple ws has
1983 ;; changed recently.
1984 (setq simple-ws-beg (point))
1985 (skip-chars-backward " \t\n\r\f\v")
1986 (if (setq rung-is-marked (text-property-any
1987 (point) (min (1+ rung-pos) (point-max))
1988 'c-is-sws t))
1989 ;; `rung-pos' will be the earliest marked position, which means that
1990 ;; there might be later unmarked parts in the simple ws region.
1991 ;; It's not worth the effort to fix that; the last part of the
1992 ;; simple ws is also typically edited often, so it could be wasted.
1993 (goto-char (setq rung-pos rung-is-marked))
1994 (goto-char simple-ws-beg))
1995
1996 (with-silent-modifications
1997 (while
1998 (progn
1999 ;; Each time round the next while form, we move back over a ladder
2000 ;; and append any simple WS preceding it, if possible joining with
2001 ;; the previous ladder.
2002 (while
2003 (when (and rung-is-marked
2004 (not (bobp))
2005 (get-text-property (1- (point)) 'c-in-sws))
2006
2007 ;; The following search is the main reason that `c-in-sws'
2008 ;; and `c-is-sws' aren't combined to one property.
2009 (goto-char (previous-single-property-change
2010 (point) 'c-in-sws nil (point-min)))
2011 (unless (get-text-property (point) 'c-is-sws)
2012 ;; If the `c-in-sws' region extended past the first
2013 ;; `c-is-sws' char we have to go forward a bit.
2014 (goto-char (c-next-single-property-change
2015 (point) 'c-is-sws)))
2016
2017 (c-debug-sws-msg
2018 "c-backward-sws cached move %s <- %s (min %s)"
2019 (point) rung-pos (point-min))
2020
2021 (setq rung-pos (point))
2022 (if (and (< (min (skip-chars-backward " \t\f\v")
2023 (progn
2024 (setq simple-ws-beg (point))
2025 (skip-chars-backward " \t\n\r\f\v")))
2026 0)
2027 (setq rung-is-marked
2028 (text-property-any (point) rung-pos
2029 'c-is-sws t)))
2030 t
2031 (goto-char simple-ws-beg)
2032 nil))
2033
2034 ;; We'll loop here if there is simple ws before the first rung.
2035 ;; That means that there's been some change in it and it's
2036 ;; possible that we've stepped into another ladder, so extend
2037 ;; the previous one to join with it if there is one, and try to
2038 ;; use the cache again.
2039 (c-debug-sws-msg
2040 "c-backward-sws extending rung with [%s..%s] (min %s)"
2041 rung-is-marked rung-pos (point-min))
2042 (unless (get-text-property (1- rung-pos) 'c-is-sws)
2043 ;; Remove any `c-in-sws' property from the last char of
2044 ;; the rung before we mark it with `c-is-sws', so that we
2045 ;; won't connect with the remains of a broken "ladder".
2046 (c-remove-in-sws (1- rung-pos) rung-pos))
2047 (c-put-is-sws rung-is-marked
2048 rung-pos)
2049 (c-put-in-sws rung-is-marked
2050 (1- rung-pos))
2051 (setq rung-pos rung-is-marked
2052 last-put-in-sws-pos rung-pos))
2053
2054 (c-backward-comments)
2055 (setq cmt-skip-pos (point))
2056
2057 (cond
2058 ((and c-opt-cpp-prefix
2059 (/= cmt-skip-pos simple-ws-beg)
2060 (c-beginning-of-macro))
2061 ;; Inside a cpp directive. See if it should be skipped over.
2062 (let ((cpp-beg (point)))
2063
2064 ;; Move back over all line continuations in the region skipped
2065 ;; over by `c-backward-comments'. If we go past it then we
2066 ;; started inside the cpp directive.
2067 (goto-char simple-ws-beg)
2068 (beginning-of-line)
2069 (while (and (> (point) cmt-skip-pos)
2070 (progn (backward-char)
2071 (eq (char-before) ?\\)))
2072 (beginning-of-line))
2073
2074 (if (< (point) cmt-skip-pos)
2075 ;; Don't move past the cpp directive if we began inside
2076 ;; it. Note that the position at the end of the last line
2077 ;; of the macro is also considered to be within it.
2078 (progn (goto-char cmt-skip-pos)
2079 nil)
2080
2081 ;; It's worthwhile to spend a little bit of effort on finding
2082 ;; the end of the macro, to get a good `simple-ws-beg'
2083 ;; position for the cache. Note that `c-backward-comments'
2084 ;; could have stepped over some comments before going into
2085 ;; the macro, and then `simple-ws-beg' must be kept on the
2086 ;; same side of those comments.
2087 (goto-char simple-ws-beg)
2088 (skip-chars-backward " \t\n\r\f\v")
2089 (if (eq (char-before) ?\\)
2090 (forward-char))
2091 (forward-line 1)
2092 (if (< (point) simple-ws-beg)
2093 ;; Might happen if comments after the macro were skipped
2094 ;; over.
2095 (setq simple-ws-beg (point)))
2096
2097 (goto-char cpp-beg)
2098 t)))
2099
2100 ((/= (save-excursion
2101 (skip-chars-forward " \t\n\r\f\v" simple-ws-beg)
2102 (setq next-rung-pos (point)))
2103 simple-ws-beg)
2104 ;; Skipped over comments. Must put point at the end of
2105 ;; the simple ws at point since we might be after a line
2106 ;; comment or cpp directive that's been partially
2107 ;; narrowed out, and we can't risk marking the simple ws
2108 ;; at the end of it.
2109 (goto-char next-rung-pos)
2110 t)
2111
2112 ((and c-opt-cpp-prefix
2113 (save-excursion
2114 (and (< (skip-syntax-backward "w_") 0)
2115 (progn (setq next-rung-pos (point))
2116 (looking-at c-noise-macro-name-re)))))
2117 ;; Skipped over a noise macro
2118 (goto-char next-rung-pos)
2119 t)))
2120
2121 ;; We've searched over a piece of non-white syntactic ws. See if this
2122 ;; can be cached.
2123 (setq next-rung-pos (point))
2124 (skip-chars-backward " \t\f\v")
2125
2126 (if (or
2127 ;; Cache if we started either from a marked rung or from a
2128 ;; completely uncached position.
2129 rung-is-marked
2130 (not (get-text-property (1- simple-ws-beg) 'c-in-sws))
2131
2132 ;; Cache if there's a marked rung in the encountered simple ws.
2133 (save-excursion
2134 (skip-chars-backward " \t\n\r\f\v")
2135 (text-property-any (point) (min (1+ next-rung-pos) (point-max))
2136 'c-is-sws t)))
2137
2138 (progn
2139 (c-debug-sws-msg
2140 "c-backward-sws caching [%s..%s] - [%s..%s] (min %s)"
2141 (point) (1+ next-rung-pos)
2142 simple-ws-beg (min (1+ rung-pos) (point-max))
2143 (point-min))
2144
2145 ;; Remove the properties for any nested ws that might be cached.
2146 ;; Only necessary for `c-is-sws' since `c-in-sws' will be set
2147 ;; anyway.
2148 (c-remove-is-sws (1+ next-rung-pos) simple-ws-beg)
2149 (unless (and rung-is-marked (= simple-ws-beg rung-pos))
2150 (let ((rung-end-pos (min (1+ rung-pos) (point-max))))
2151 (unless (get-text-property (1- rung-end-pos) 'c-is-sws)
2152 ;; Remove any `c-in-sws' property from the last char of
2153 ;; the rung before we mark it with `c-is-sws', so that we
2154 ;; won't connect with the remains of a broken "ladder".
2155 (c-remove-in-sws (1- rung-end-pos) rung-end-pos))
2156 (c-put-is-sws simple-ws-beg
2157 rung-end-pos)
2158 (setq rung-is-marked t)))
2159 (c-put-in-sws (setq simple-ws-beg (point)
2160 last-put-in-sws-pos simple-ws-beg)
2161 rung-pos)
2162 (c-put-is-sws (setq rung-pos simple-ws-beg)
2163 (1+ next-rung-pos)))
2164
2165 (c-debug-sws-msg
2166 "c-backward-sws not caching [%s..%s] - [%s..%s] (min %s)"
2167 (point) (1+ next-rung-pos)
2168 simple-ws-beg (min (1+ rung-pos) (point-max))
2169 (point-min))
2170 (setq rung-pos next-rung-pos
2171 simple-ws-beg (point))
2172 ))
2173
2174 ;; Make sure that the newly marked `c-in-sws' region doesn't connect to
2175 ;; another one before the point (which might occur when editing inside a
2176 ;; comment or macro).
2177 (when (eq last-put-in-sws-pos (point))
2178 (cond ((< (point-min) last-put-in-sws-pos)
2179 (c-debug-sws-msg
2180 "c-backward-sws clearing at %s for cache separation"
2181 (1- last-put-in-sws-pos))
2182 (c-remove-in-sws (1- last-put-in-sws-pos)
2183 last-put-in-sws-pos))
2184 ((> (point-min) 1)
2185 ;; If at bob and the buffer is narrowed, we have to clear the
2186 ;; character we're standing on instead since there might be a
2187 ;; `c-in-sws' before (point-min). In this case it's necessary
2188 ;; to clear both properties.
2189 (c-debug-sws-msg
2190 "c-backward-sws clearing thoroughly at %s for cache separation"
2191 last-put-in-sws-pos)
2192 (c-remove-is-and-in-sws last-put-in-sws-pos
2193 (1+ last-put-in-sws-pos)))))
2194 ))))
2195
2196 \f
2197 ;; Other whitespace tools
2198 (defun c-partial-ws-p (beg end)
2199 ;; Is the region (beg end) WS, and is there WS (or BOB/EOB) next to the
2200 ;; region? This is a "heuristic" function. .....
2201 ;;
2202 ;; The motivation for the second bit is to check whether removing this
2203 ;; region would coalesce two symbols.
2204 ;;
2205 ;; FIXME!!! This function doesn't check virtual semicolons in any way. Be
2206 ;; careful about using this function for, e.g. AWK. (2007/3/7)
2207 (save-excursion
2208 (let ((end+1 (min (1+ end) (point-max))))
2209 (or (progn (goto-char (max (point-min) (1- beg)))
2210 (c-skip-ws-forward end)
2211 (eq (point) end))
2212 (progn (goto-char beg)
2213 (c-skip-ws-forward end+1)
2214 (eq (point) end+1))))))
2215 \f
2216 ;; A system for finding noteworthy parens before the point.
2217
2218 (defconst c-state-cache-too-far 5000)
2219 ;; A maximum comfortable scanning distance, e.g. between
2220 ;; `c-state-cache-good-pos' and "HERE" (where we call c-parse-state). When
2221 ;; this distance is exceeded, we take "emergency measures", e.g. by clearing
2222 ;; the cache and starting again from point-min or a beginning of defun. This
2223 ;; value can be tuned for efficiency or set to a lower value for testing.
2224
2225 (defvar c-state-cache nil)
2226 (make-variable-buffer-local 'c-state-cache)
2227 ;; The state cache used by `c-parse-state' to cut down the amount of
2228 ;; searching. It's the result from some earlier `c-parse-state' call. See
2229 ;; `c-parse-state''s doc string for details of its structure.
2230 ;;
2231 ;; The use of the cached info is more effective if the next
2232 ;; `c-parse-state' call is on a line close by the one the cached state
2233 ;; was made at; the cache can actually slow down a little if the
2234 ;; cached state was made very far back in the buffer. The cache is
2235 ;; most effective if `c-parse-state' is used on each line while moving
2236 ;; forward.
2237
2238 (defvar c-state-cache-good-pos 1)
2239 (make-variable-buffer-local 'c-state-cache-good-pos)
2240 ;; This is a position where `c-state-cache' is known to be correct, or
2241 ;; nil (see below). It's a position inside one of the recorded unclosed
2242 ;; parens or the top level, but not further nested inside any literal or
2243 ;; subparen that is closed before the last recorded position.
2244 ;;
2245 ;; The exact position is chosen to try to be close to yet earlier than
2246 ;; the position where `c-state-cache' will be called next. Right now
2247 ;; the heuristic is to set it to the position after the last found
2248 ;; closing paren (of any type) before the line on which
2249 ;; `c-parse-state' was called. That is chosen primarily to work well
2250 ;; with refontification of the current line.
2251 ;;
2252 ;; 2009-07-28: When `c-state-point-min' and the last position where
2253 ;; `c-parse-state' or for which `c-invalidate-state-cache' was called, are
2254 ;; both in the same literal, there is no such "good position", and
2255 ;; c-state-cache-good-pos is then nil. This is the ONLY circumstance in which
2256 ;; it can be nil. In this case, `c-state-point-min-literal' will be non-nil.
2257 ;;
2258 ;; 2009-06-12: In a brace desert, c-state-cache-good-pos may also be in
2259 ;; the middle of the desert, as long as it is not within a brace pair
2260 ;; recorded in `c-state-cache' or a paren/bracket pair.
2261
2262 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2263 ;; We maintain a simple cache of positions which aren't in a literal, so as to
2264 ;; speed up testing for non-literality.
2265 (defconst c-state-nonlit-pos-interval 3000)
2266 ;; The approximate interval between entries in `c-state-nonlit-pos-cache'.
2267
2268 (defvar c-state-nonlit-pos-cache nil)
2269 (make-variable-buffer-local 'c-state-nonlit-pos-cache)
2270 ;; A list of buffer positions which are known not to be in a literal or a cpp
2271 ;; construct. This is ordered with higher positions at the front of the list.
2272 ;; Only those which are less than `c-state-nonlit-pos-cache-limit' are valid.
2273
2274 (defvar c-state-nonlit-pos-cache-limit 1)
2275 (make-variable-buffer-local 'c-state-nonlit-pos-cache-limit)
2276 ;; An upper limit on valid entries in `c-state-nonlit-pos-cache'. This is
2277 ;; reduced by buffer changes, and increased by invocations of
2278 ;; `c-state-literal-at'.
2279
2280 (defvar c-state-semi-nonlit-pos-cache nil)
2281 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache)
2282 ;; A list of buffer positions which are known not to be in a literal. This is
2283 ;; ordered with higher positions at the front of the list. Only those which
2284 ;; are less than `c-state-semi-nonlit-pos-cache-limit' are valid.
2285
2286 (defvar c-state-semi-nonlit-pos-cache-limit 1)
2287 (make-variable-buffer-local 'c-state-semi-nonlit-pos-cache-limit)
2288 ;; An upper limit on valid entries in `c-state-semi-nonlit-pos-cache'. This is
2289 ;; reduced by buffer changes, and increased by invocations of
2290 ;; `c-state-literal-at'. FIXME!!!
2291
2292 (defsubst c-state-pp-to-literal (from to &optional not-in-delimiter)
2293 ;; Do a parse-partial-sexp from FROM to TO, returning either
2294 ;; (STATE TYPE (BEG . END)) if TO is in a literal; or
2295 ;; (STATE) otherwise,
2296 ;; where STATE is the parsing state at TO, TYPE is the type of the literal
2297 ;; (one of 'c, 'c++, 'string) and (BEG . END) is the boundaries of the literal,
2298 ;; including the delimiters.
2299 ;;
2300 ;; Unless NOT-IN-DELIMITER is non-nil, when TO is inside a two-character
2301 ;; comment opener, this is recognized as being in a comment literal.
2302 ;;
2303 ;; Only elements 3 (in a string), 4 (in a comment), 5 (following a quote),
2304 ;; 7 (comment type) and 8 (start of comment/string) (and possibly 9) of
2305 ;; STATE are valid.
2306 (save-excursion
2307 (let ((s (parse-partial-sexp from to))
2308 ty co-st)
2309 (cond
2310 ((or (nth 3 s) (nth 4 s)) ; in a string or comment
2311 (setq ty (cond
2312 ((nth 3 s) 'string)
2313 ((nth 7 s) 'c++)
2314 (t 'c)))
2315 (parse-partial-sexp (point) (point-max)
2316 nil ; TARGETDEPTH
2317 nil ; STOPBEFORE
2318 s ; OLDSTATE
2319 'syntax-table) ; stop at end of literal
2320 `(,s ,ty (,(nth 8 s) . ,(point))))
2321
2322 ((and (not not-in-delimiter) ; inside a comment starter
2323 (not (bobp))
2324 (progn (backward-char)
2325 (and (not (looking-at "\\s!"))
2326 (looking-at c-comment-start-regexp))))
2327 (setq ty (if (looking-at c-block-comment-start-regexp) 'c 'c++)
2328 co-st (point))
2329 (forward-comment 1)
2330 `(,s ,ty (,co-st . ,(point))))
2331
2332 (t `(,s))))))
2333
2334 (defun c-state-safe-place (here)
2335 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2336 ;; string, comment, or macro.
2337 ;;
2338 ;; NOTE: This function manipulates `c-state-nonlit-pos-cache'. This cache
2339 ;; MAY NOT contain any positions within macros, since macros are frequently
2340 ;; turned into comments by use of the `c-cpp-delimiter' category properties.
2341 ;; We cannot rely on this mechanism whilst determining a cache pos since
2342 ;; this function is also called from outwith `c-parse-state'.
2343 (save-restriction
2344 (widen)
2345 (save-excursion
2346 (let ((c c-state-nonlit-pos-cache)
2347 pos npos high-pos lit macro-beg macro-end)
2348 ;; Trim the cache to take account of buffer changes.
2349 (while (and c (> (car c) c-state-nonlit-pos-cache-limit))
2350 (setq c (cdr c)))
2351 (setq c-state-nonlit-pos-cache c)
2352
2353 (while (and c (> (car c) here))
2354 (setq high-pos (car c))
2355 (setq c (cdr c)))
2356 (setq pos (or (car c) (point-min)))
2357
2358 (unless high-pos
2359 (while
2360 ;; Add an element to `c-state-nonlit-pos-cache' each iteration.
2361 (and
2362 (setq npos
2363 (when (<= (+ pos c-state-nonlit-pos-interval) here)
2364 (+ pos c-state-nonlit-pos-interval)))
2365
2366 ;; Test for being in a literal. If so, go to after it.
2367 (progn
2368 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2369 (or (null lit)
2370 (prog1 (<= (cdr lit) here)
2371 (setq npos (cdr lit)))))
2372
2373 ;; Test for being in a macro. If so, go to after it.
2374 (progn
2375 (goto-char npos)
2376 (setq macro-beg
2377 (and (c-beginning-of-macro) (/= (point) npos) (point)))
2378 (when macro-beg
2379 (c-syntactic-end-of-macro)
2380 (or (eobp) (forward-char))
2381 (setq macro-end (point)))
2382 (or (null macro-beg)
2383 (prog1 (<= macro-end here)
2384 (setq npos macro-end)))))
2385
2386 (setq pos npos)
2387 (setq c-state-nonlit-pos-cache (cons pos c-state-nonlit-pos-cache)))
2388 ;; Add one extra element above HERE so as to to avoid the previous
2389 ;; expensive calculation when the next call is close to the current
2390 ;; one. This is especially useful when inside a large macro.
2391 (when npos
2392 (setq c-state-nonlit-pos-cache
2393 (cons npos c-state-nonlit-pos-cache))))
2394
2395 (if (> pos c-state-nonlit-pos-cache-limit)
2396 (setq c-state-nonlit-pos-cache-limit pos))
2397 pos))))
2398
2399 (defun c-state-semi-safe-place (here)
2400 ;; Return a buffer position before HERE which is "safe", i.e. outside any
2401 ;; string or comment. It may be in a macro.
2402 (save-restriction
2403 (widen)
2404 (save-excursion
2405 (let ((c c-state-semi-nonlit-pos-cache)
2406 pos npos high-pos lit macro-beg macro-end)
2407 ;; Trim the cache to take account of buffer changes.
2408 (while (and c (> (car c) c-state-semi-nonlit-pos-cache-limit))
2409 (setq c (cdr c)))
2410 (setq c-state-semi-nonlit-pos-cache c)
2411
2412 (while (and c (> (car c) here))
2413 (setq high-pos (car c))
2414 (setq c (cdr c)))
2415 (setq pos (or (car c) (point-min)))
2416
2417 (unless high-pos
2418 (while
2419 ;; Add an element to `c-state-semi-nonlit-pos-cache' each iteration.
2420 (and
2421 (<= (setq npos (+ pos c-state-nonlit-pos-interval)) here)
2422
2423 ;; Test for being in a literal. If so, go to after it.
2424 (progn
2425 (setq lit (car (cddr (c-state-pp-to-literal pos npos))))
2426 (or (null lit)
2427 (prog1 (<= (cdr lit) here)
2428 (setq npos (cdr lit))))))
2429
2430 (setq pos npos)
2431 (setq c-state-semi-nonlit-pos-cache
2432 (cons pos c-state-semi-nonlit-pos-cache))))
2433
2434 (if (> pos c-state-semi-nonlit-pos-cache-limit)
2435 (setq c-state-semi-nonlit-pos-cache-limit pos))
2436 pos))))
2437
2438 (defun c-state-literal-at (here)
2439 ;; If position HERE is inside a literal, return (START . END), the
2440 ;; boundaries of the literal (which may be outside the accessible bit of the
2441 ;; buffer). Otherwise, return nil.
2442 ;;
2443 ;; This function is almost the same as `c-literal-limits'. Previously, it
2444 ;; differed in that it was a lower level function, and that it rigorously
2445 ;; followed the syntax from BOB. `c-literal-limits' is now (2011-12)
2446 ;; virtually identical to this function.
2447 (save-restriction
2448 (widen)
2449 (save-excursion
2450 (let ((pos (c-state-safe-place here)))
2451 (car (cddr (c-state-pp-to-literal pos here)))))))
2452
2453 (defsubst c-state-lit-beg (pos)
2454 ;; Return the start of the literal containing POS, or POS itself.
2455 (or (car (c-state-literal-at pos))
2456 pos))
2457
2458 (defsubst c-state-cache-non-literal-place (pos state)
2459 ;; Return a position outside of a string/comment/macro at or before POS.
2460 ;; STATE is the parse-partial-sexp state at POS.
2461 (let ((res (if (or (nth 3 state) ; in a string?
2462 (nth 4 state)) ; in a comment?
2463 (nth 8 state)
2464 pos)))
2465 (save-excursion
2466 (goto-char res)
2467 (if (c-beginning-of-macro)
2468 (point)
2469 res))))
2470
2471 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2472 ;; Stuff to do with point-min, and coping with any literal there.
2473 (defvar c-state-point-min 1)
2474 (make-variable-buffer-local 'c-state-point-min)
2475 ;; This is (point-min) when `c-state-cache' was last calculated. A change of
2476 ;; narrowing is likely to affect the parens that are visible before the point.
2477
2478 (defvar c-state-point-min-lit-type nil)
2479 (make-variable-buffer-local 'c-state-point-min-lit-type)
2480 (defvar c-state-point-min-lit-start nil)
2481 (make-variable-buffer-local 'c-state-point-min-lit-start)
2482 ;; These two variables define the literal, if any, containing point-min.
2483 ;; Their values are, respectively, 'string, c, or c++, and the start of the
2484 ;; literal. If there's no literal there, they're both nil.
2485
2486 (defvar c-state-min-scan-pos 1)
2487 (make-variable-buffer-local 'c-state-min-scan-pos)
2488 ;; This is the earliest buffer-pos from which scanning can be done. It is
2489 ;; either the end of the literal containing point-min, or point-min itself.
2490 ;; It becomes nil if the buffer is changed earlier than this point.
2491 (defun c-state-get-min-scan-pos ()
2492 ;; Return the lowest valid scanning pos. This will be the end of the
2493 ;; literal enclosing point-min, or point-min itself.
2494 (or c-state-min-scan-pos
2495 (save-restriction
2496 (save-excursion
2497 (widen)
2498 (goto-char c-state-point-min-lit-start)
2499 (if (eq c-state-point-min-lit-type 'string)
2500 (forward-sexp)
2501 (forward-comment 1))
2502 (setq c-state-min-scan-pos (point))))))
2503
2504 (defun c-state-mark-point-min-literal ()
2505 ;; Determine the properties of any literal containing POINT-MIN, setting the
2506 ;; variables `c-state-point-min-lit-type', `c-state-point-min-lit-start',
2507 ;; and `c-state-min-scan-pos' accordingly. The return value is meaningless.
2508 (let ((p-min (point-min))
2509 lit)
2510 (save-restriction
2511 (widen)
2512 (setq lit (c-state-literal-at p-min))
2513 (if lit
2514 (setq c-state-point-min-lit-type
2515 (save-excursion
2516 (goto-char (car lit))
2517 (cond
2518 ((looking-at c-block-comment-start-regexp) 'c)
2519 ((looking-at c-line-comment-starter) 'c++)
2520 (t 'string)))
2521 c-state-point-min-lit-start (car lit)
2522 c-state-min-scan-pos (cdr lit))
2523 (setq c-state-point-min-lit-type nil
2524 c-state-point-min-lit-start nil
2525 c-state-min-scan-pos p-min)))))
2526
2527
2528 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2529 ;; A variable which signals a brace dessert - helpful for reducing the number
2530 ;; of fruitless backward scans.
2531 (defvar c-state-brace-pair-desert nil)
2532 (make-variable-buffer-local 'c-state-brace-pair-desert)
2533 ;; Used only in `c-append-lower-brace-pair-to-state-cache'. It is set when
2534 ;; that defun has searched backwards for a brace pair and not found one. Its
2535 ;; value is either nil or a cons (PA . FROM), where PA is the position of the
2536 ;; enclosing opening paren/brace/bracket which bounds the backwards search (or
2537 ;; nil when at top level) and FROM is where the backward search started. It
2538 ;; is reset to nil in `c-invalidate-state-cache'.
2539
2540
2541 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2542 ;; Lowish level functions/macros which work directly on `c-state-cache', or a
2543 ;; list of like structure.
2544 (defmacro c-state-cache-top-lparen (&optional cache)
2545 ;; Return the address of the top left brace/bracket/paren recorded in CACHE
2546 ;; (default `c-state-cache') (or nil).
2547 (let ((cash (or cache 'c-state-cache)))
2548 `(if (consp (car ,cash))
2549 (caar ,cash)
2550 (car ,cash))))
2551
2552 (defmacro c-state-cache-top-paren (&optional cache)
2553 ;; Return the address of the latest brace/bracket/paren (whether left or
2554 ;; right) recorded in CACHE (default `c-state-cache') or nil.
2555 (let ((cash (or cache 'c-state-cache)))
2556 `(if (consp (car ,cash))
2557 (cdar ,cash)
2558 (car ,cash))))
2559
2560 (defmacro c-state-cache-after-top-paren (&optional cache)
2561 ;; Return the position just after the latest brace/bracket/paren (whether
2562 ;; left or right) recorded in CACHE (default `c-state-cache') or nil.
2563 (let ((cash (or cache 'c-state-cache)))
2564 `(if (consp (car ,cash))
2565 (cdar ,cash)
2566 (and (car ,cash)
2567 (1+ (car ,cash))))))
2568
2569 (defun c-get-cache-scan-pos (here)
2570 ;; From the state-cache, determine the buffer position from which we might
2571 ;; scan forward to HERE to update this cache. This position will be just
2572 ;; after a paren/brace/bracket recorded in the cache, if possible, otherwise
2573 ;; return the earliest position in the accessible region which isn't within
2574 ;; a literal. If the visible portion of the buffer is entirely within a
2575 ;; literal, return NIL.
2576 (let ((c c-state-cache) elt)
2577 ;(while (>= (or (c-state-cache-top-lparen c) 1) here)
2578 (while (and c
2579 (>= (c-state-cache-top-lparen c) here))
2580 (setq c (cdr c)))
2581
2582 (setq elt (car c))
2583 (cond
2584 ((consp elt)
2585 (if (> (cdr elt) here)
2586 (1+ (car elt))
2587 (cdr elt)))
2588 (elt (1+ elt))
2589 ((<= (c-state-get-min-scan-pos) here)
2590 (c-state-get-min-scan-pos))
2591 (t nil))))
2592
2593 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2594 ;; Variables which keep track of preprocessor constructs.
2595 (defvar c-state-old-cpp-beg-marker nil)
2596 (make-variable-buffer-local 'c-state-old-cpp-beg-marker)
2597 (defvar c-state-old-cpp-beg nil)
2598 (make-variable-buffer-local 'c-state-old-cpp-beg)
2599 (defvar c-state-old-cpp-end-marker nil)
2600 (make-variable-buffer-local 'c-state-old-cpp-end-marker)
2601 (defvar c-state-old-cpp-end nil)
2602 (make-variable-buffer-local 'c-state-old-cpp-end)
2603 ;; These are the limits of the macro containing point at the previous call of
2604 ;; `c-parse-state', or nil.
2605
2606 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2607 ;; Defuns which analyze the buffer, yet don't change `c-state-cache'.
2608 (defun c-get-fallback-scan-pos (here)
2609 ;; Return a start position for building `c-state-cache' from
2610 ;; scratch. This will be at the top level, 2 defuns back.
2611 (save-excursion
2612 ;; Go back 2 bods, but ignore any bogus positions returned by
2613 ;; beginning-of-defun (i.e. open paren in column zero).
2614 (goto-char here)
2615 (let ((cnt 2))
2616 (while (not (or (bobp) (zerop cnt)))
2617 (c-beginning-of-defun-1) ; Pure elisp BOD.
2618 (if (eq (char-after) ?\{)
2619 (setq cnt (1- cnt)))))
2620 (point)))
2621
2622 (defun c-state-balance-parens-backwards (here- here+ top)
2623 ;; Return the position of the opening paren/brace/bracket before HERE- which
2624 ;; matches the outermost close p/b/b between HERE+ and TOP. Except when
2625 ;; there's a macro, HERE- and HERE+ are the same. Like this:
2626 ;;
2627 ;; ............................................
2628 ;; | |
2629 ;; ( [ ( .........#macro.. ) ( ) ] )
2630 ;; ^ ^ ^ ^
2631 ;; | | | |
2632 ;; return HERE- HERE+ TOP
2633 ;;
2634 ;; If there aren't enough opening paren/brace/brackets, return the position
2635 ;; of the outermost one found, or HERE- if there are none. If there are no
2636 ;; closing p/b/bs between HERE+ and TOP, return HERE-. HERE-/+ and TOP
2637 ;; must not be inside literals. Only the accessible portion of the buffer
2638 ;; will be scanned.
2639
2640 ;; PART 1: scan from `here+' up to `top', accumulating ")"s which enclose
2641 ;; `here'. Go round the next loop each time we pass over such a ")". These
2642 ;; probably match "("s before `here-'.
2643 (let (pos pa ren+1 lonely-rens)
2644 (save-excursion
2645 (save-restriction
2646 (narrow-to-region (point-min) top) ; This can move point, sometimes.
2647 (setq pos here+)
2648 (c-safe
2649 (while
2650 (setq ren+1 (c-sc-scan-lists pos 1 1)) ; might signal
2651 (setq lonely-rens (cons ren+1 lonely-rens)
2652 pos ren+1)))))
2653
2654 ;; PART 2: Scan back before `here-' searching for the "("s
2655 ;; matching/mismatching the ")"s found above. We only need to direct the
2656 ;; caller to scan when we've encountered unmatched right parens.
2657 (setq pos here-)
2658 (when lonely-rens
2659 (c-safe
2660 (while
2661 (and lonely-rens ; actual values aren't used.
2662 (setq pa (c-sc-scan-lists pos -1 1)))
2663 (setq pos pa)
2664 (setq lonely-rens (cdr lonely-rens)))))
2665 pos))
2666
2667 (defun c-parse-state-get-strategy (here good-pos)
2668 ;; Determine the scanning strategy for adjusting `c-parse-state', attempting
2669 ;; to minimize the amount of scanning. HERE is the pertinent position in
2670 ;; the buffer, GOOD-POS is a position where `c-state-cache' (possibly with
2671 ;; its head trimmed) is known to be good, or nil if there is no such
2672 ;; position.
2673 ;;
2674 ;; The return value is a list, one of the following:
2675 ;;
2676 ;; o - ('forward START-POINT) - scan forward from START-POINT,
2677 ;; which is not less than the highest position in `c-state-cache' below HERE,
2678 ;; which is after GOOD-POS.
2679 ;; o - ('backward nil) - scan backwards (from HERE).
2680 ;; o - ('back-and-forward START-POINT) - like 'forward, but when HERE is earlier
2681 ;; than GOOD-POS.
2682 ;; o - ('BOD START-POINT) - scan forwards from START-POINT, which is at the
2683 ;; top level.
2684 ;; o - ('IN-LIT nil) - point is inside the literal containing point-min.
2685 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
2686 BOD-pos ; position of 2nd BOD before HERE.
2687 strategy ; 'forward, 'backward, 'BOD, or 'IN-LIT.
2688 start-point
2689 how-far) ; putative scanning distance.
2690 (setq good-pos (or good-pos (c-state-get-min-scan-pos)))
2691 (cond
2692 ((< here (c-state-get-min-scan-pos))
2693 (setq strategy 'IN-LIT
2694 start-point nil
2695 cache-pos nil
2696 how-far 0))
2697 ((<= good-pos here)
2698 (setq strategy 'forward
2699 start-point (max good-pos cache-pos)
2700 how-far (- here start-point)))
2701 ((< (- good-pos here) (- here cache-pos)) ; FIXME!!! ; apply some sort of weighting.
2702 (setq strategy 'backward
2703 how-far (- good-pos here)))
2704 (t
2705 (setq strategy 'back-and-forward
2706 start-point cache-pos
2707 how-far (- here start-point))))
2708
2709 ;; Might we be better off starting from the top level, two defuns back,
2710 ;; instead? This heuristic no longer works well in C++, where
2711 ;; declarations inside namespace brace blocks are frequently placed at
2712 ;; column zero. (2015-11-10): Remove the condition on C++ Mode.
2713 (when (and (or (not (memq 'col-0-paren c-emacs-features))
2714 open-paren-in-column-0-is-defun-start)
2715 ;; (not (c-major-mode-is 'c++-mode))
2716 (> how-far c-state-cache-too-far))
2717 (setq BOD-pos (c-get-fallback-scan-pos here)) ; somewhat EXPENSIVE!!!
2718 (if (< (- here BOD-pos) how-far)
2719 (setq strategy 'BOD
2720 start-point BOD-pos)))
2721
2722 (list strategy start-point)))
2723
2724
2725 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2726 ;; Routines which change `c-state-cache' and associated values.
2727 (defun c-renarrow-state-cache ()
2728 ;; The region (more precisely, point-min) has changed since we
2729 ;; calculated `c-state-cache'. Amend `c-state-cache' accordingly.
2730 (if (< (point-min) c-state-point-min)
2731 ;; If point-min has MOVED BACKWARDS then we drop the state completely.
2732 ;; It would be possible to do a better job here and recalculate the top
2733 ;; only.
2734 (progn
2735 (c-state-mark-point-min-literal)
2736 (setq c-state-cache nil
2737 c-state-cache-good-pos c-state-min-scan-pos
2738 c-state-brace-pair-desert nil))
2739
2740 ;; point-min has MOVED FORWARD.
2741
2742 ;; Is the new point-min inside a (different) literal?
2743 (unless (and c-state-point-min-lit-start ; at prev. point-min
2744 (< (point-min) (c-state-get-min-scan-pos)))
2745 (c-state-mark-point-min-literal))
2746
2747 ;; Cut off a bit of the tail from `c-state-cache'.
2748 (let ((ptr (cons nil c-state-cache))
2749 pa)
2750 (while (and (setq pa (c-state-cache-top-lparen (cdr ptr)))
2751 (>= pa (point-min)))
2752 (setq ptr (cdr ptr)))
2753
2754 (when (consp ptr)
2755 (if (eq (cdr ptr) c-state-cache)
2756 (setq c-state-cache nil
2757 c-state-cache-good-pos c-state-min-scan-pos)
2758 (setcdr ptr nil)
2759 (setq c-state-cache-good-pos (1+ (c-state-cache-top-lparen))))
2760 )))
2761
2762 (setq c-state-point-min (point-min)))
2763
2764 (defun c-append-lower-brace-pair-to-state-cache (from here &optional upper-lim)
2765 ;; If there is a brace pair preceding FROM in the buffer, at the same level
2766 ;; of nesting (not necessarily immediately preceding), push a cons onto
2767 ;; `c-state-cache' to represent it. FROM must not be inside a literal. If
2768 ;; UPPER-LIM is non-nil, we append the highest brace pair whose "}" is below
2769 ;; UPPER-LIM.
2770 ;;
2771 ;; Return non-nil when this has been done.
2772 ;;
2773 ;; The situation it copes with is this transformation:
2774 ;;
2775 ;; OLD: { (.) {...........}
2776 ;; ^ ^
2777 ;; FROM HERE
2778 ;;
2779 ;; NEW: { {....} (.) {.........
2780 ;; ^ ^ ^
2781 ;; LOWER BRACE PAIR HERE or HERE
2782 ;;
2783 ;; This routine should be fast. Since it can get called a LOT, we maintain
2784 ;; `c-state-brace-pair-desert', a small cache of "failures", such that we
2785 ;; reduce the time wasted in repeated fruitless searches in brace deserts.
2786 (save-excursion
2787 (save-restriction
2788 (let* (new-cons
2789 (cache-pos (c-state-cache-top-lparen)) ; might be nil.
2790 (macro-start-or-from
2791 (progn (goto-char from)
2792 (c-beginning-of-macro)
2793 (point)))
2794 (bra ; Position of "{".
2795 ;; Don't start scanning in the middle of a CPP construct unless
2796 ;; it contains HERE - these constructs, in Emacs, are "commented
2797 ;; out" with category properties.
2798 (if (eq (c-get-char-property macro-start-or-from 'category)
2799 'c-cpp-delimiter)
2800 macro-start-or-from
2801 from))
2802 ce) ; Position of "}"
2803 (or upper-lim (setq upper-lim from))
2804
2805 ;; If we're essentially repeating a fruitless search, just give up.
2806 (unless (and c-state-brace-pair-desert
2807 (eq cache-pos (car c-state-brace-pair-desert))
2808 (or (null (car c-state-brace-pair-desert))
2809 (> from (car c-state-brace-pair-desert)))
2810 (<= from (cdr c-state-brace-pair-desert)))
2811 ;; DESERT-LIM. Avoid repeated searching through the cached desert.
2812 (let ((desert-lim
2813 (and c-state-brace-pair-desert
2814 (eq cache-pos (car c-state-brace-pair-desert))
2815 (>= from (cdr c-state-brace-pair-desert))
2816 (cdr c-state-brace-pair-desert)))
2817 ;; CACHE-LIM. This limit will be necessary when an opening
2818 ;; paren at `cache-pos' has just had its matching close paren
2819 ;; inserted into the buffer. `cache-pos' continues to be a
2820 ;; search bound, even though the algorithm below would skip
2821 ;; over the new paren pair.
2822 (cache-lim (and cache-pos (< cache-pos from) cache-pos)))
2823 (narrow-to-region
2824 (cond
2825 ((and desert-lim cache-lim)
2826 (max desert-lim cache-lim))
2827 (desert-lim)
2828 (cache-lim)
2829 ((point-min)))
2830 ;; The top limit is EOB to ensure that `bra' is inside the
2831 ;; accessible part of the buffer at the next scan operation.
2832 (1+ (buffer-size))))
2833
2834 ;; In the next pair of nested loops, the inner one moves back past a
2835 ;; pair of (mis-)matching parens or brackets; the outer one moves
2836 ;; back over a sequence of unmatched close brace/paren/bracket each
2837 ;; time round.
2838 (while
2839 (progn
2840 (c-safe
2841 (while
2842 (and (setq ce (c-sc-scan-lists bra -1 -1)) ; back past )/]/}; might signal
2843 (setq bra (c-sc-scan-lists ce -1 1)) ; back past (/[/{; might signal
2844 (or (> bra here) ;(> ce here)
2845 (and
2846 (< ce here)
2847 (or (not (eq (char-after bra) ?\{))
2848 (and (goto-char bra)
2849 (c-beginning-of-macro)
2850 (< (point) macro-start-or-from))))))))
2851 (and ce (< ce bra)))
2852 (setq bra ce)) ; If we just backed over an unbalanced closing
2853 ; brace, ignore it.
2854
2855 (if (and ce (< ce here) (< bra ce) (eq (char-after bra) ?\{))
2856 ;; We've found the desired brace-pair.
2857 (progn
2858 (setq new-cons (cons bra (1+ ce)))
2859 (cond
2860 ((consp (car c-state-cache))
2861 (setcar c-state-cache new-cons))
2862 ((and (numberp (car c-state-cache)) ; probably never happens
2863 (< ce (car c-state-cache)))
2864 (setcdr c-state-cache
2865 (cons new-cons (cdr c-state-cache))))
2866 (t (setq c-state-cache (cons new-cons c-state-cache)))))
2867
2868 ;; We haven't found a brace pair. Record this in the cache.
2869 (setq c-state-brace-pair-desert
2870 (cons (if (and ce (< bra ce) (> ce here)) ; {..} straddling HERE?
2871 bra
2872 (point-min))
2873 (min here from)))))))))
2874
2875 (defsubst c-state-push-any-brace-pair (bra+1 macro-start-or-here)
2876 ;; If BRA+1 is nil, do nothing. Otherwise, BRA+1 is the buffer position
2877 ;; following a {, and that brace has a (mis-)matching } (or ]), and we
2878 ;; "push" "a" brace pair onto `c-state-cache'.
2879 ;;
2880 ;; Here "push" means overwrite the top element if it's itself a brace-pair,
2881 ;; otherwise push it normally.
2882 ;;
2883 ;; The brace pair we push is normally the one surrounding BRA+1, but if the
2884 ;; latter is inside a macro, not being a macro containing
2885 ;; MACRO-START-OR-HERE, we scan backwards through the buffer for a non-macro
2886 ;; base pair. This latter case is assumed to be rare.
2887 ;;
2888 ;; Note: POINT is not preserved in this routine.
2889 (if bra+1
2890 (if (or (> bra+1 macro-start-or-here)
2891 (progn (goto-char bra+1)
2892 (not (c-beginning-of-macro))))
2893 (setq c-state-cache
2894 (cons (cons (1- bra+1)
2895 (c-sc-scan-lists bra+1 1 1))
2896 (if (consp (car c-state-cache))
2897 (cdr c-state-cache)
2898 c-state-cache)))
2899 ;; N.B. This defsubst codes one method for the simple, normal case,
2900 ;; and a more sophisticated, slower way for the general case. Don't
2901 ;; eliminate this defsubst - it's a speed optimization.
2902 (c-append-lower-brace-pair-to-state-cache (1- bra+1) (point-max)))))
2903
2904 (defun c-append-to-state-cache (from here)
2905 ;; Scan the buffer from FROM to HERE, adding elements into `c-state-cache'
2906 ;; for braces etc. Return a candidate for `c-state-cache-good-pos'.
2907 ;;
2908 ;; FROM must be after the latest brace/paren/bracket in `c-state-cache', if
2909 ;; any. Typically, it is immediately after it. It must not be inside a
2910 ;; literal.
2911 (let ((here-bol (c-point 'bol here))
2912 (macro-start-or-here
2913 (save-excursion (goto-char here)
2914 (if (c-beginning-of-macro)
2915 (point)
2916 here)))
2917 pa+1 ; pos just after an opening PAren (or brace).
2918 (ren+1 from) ; usually a pos just after an closing paREN etc.
2919 ; Is actually the pos. to scan for a (/{/[ from,
2920 ; which sometimes is after a silly )/}/].
2921 paren+1 ; Pos after some opening or closing paren.
2922 paren+1s ; A list of `paren+1's; used to determine a
2923 ; good-pos.
2924 bra+1 ; just after L bra-ce.
2925 bra+1s ; list of OLD values of bra+1.
2926 mstart) ; start of a macro.
2927
2928 (save-excursion
2929 (save-restriction
2930 (narrow-to-region (point-min) here)
2931 ;; Each time round the following loop, we enter a successively deeper
2932 ;; level of brace/paren nesting. (Except sometimes we "continue at
2933 ;; the existing level".) `pa+1' is a pos inside an opening
2934 ;; brace/paren/bracket, usually just after it.
2935 (while
2936 (progn
2937 ;; Each time round the next loop moves forward over an opening then
2938 ;; a closing brace/bracket/paren. This loop is white hot, so it
2939 ;; plays ugly tricks to go fast. DON'T PUT ANYTHING INTO THIS
2940 ;; LOOP WHICH ISN'T ABSOLUTELY NECESSARY!!! It terminates when a
2941 ;; call of `scan-lists' signals an error, which happens when there
2942 ;; are no more b/b/p's to scan.
2943 (c-safe
2944 (while t
2945 (setq pa+1 (c-sc-scan-lists ren+1 1 -1) ; Into (/{/[; might signal
2946 paren+1s (cons pa+1 paren+1s))
2947 (setq ren+1 (c-sc-scan-lists pa+1 1 1)) ; Out of )/}/]; might signal
2948 (if (and (eq (char-before pa+1) ?{)) ; Check for a macro later.
2949 (setq bra+1 pa+1))
2950 (setcar paren+1s ren+1)))
2951
2952 (if (and pa+1 (> pa+1 ren+1))
2953 ;; We've just entered a deeper nesting level.
2954 (progn
2955 ;; Insert the brace pair (if present) and the single open
2956 ;; paren/brace/bracket into `c-state-cache' It cannot be
2957 ;; inside a macro, except one around point, because of what
2958 ;; `c-neutralize-syntax-in-CPP' has done.
2959 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2960 ;; Insert the opening brace/bracket/paren position.
2961 (setq c-state-cache (cons (1- pa+1) c-state-cache))
2962 ;; Clear admin stuff for the next more nested part of the scan.
2963 (setq ren+1 pa+1 pa+1 nil bra+1 nil bra+1s nil)
2964 t) ; Carry on the loop
2965
2966 ;; All open p/b/b's at this nesting level, if any, have probably
2967 ;; been closed by matching/mismatching ones. We're probably
2968 ;; finished - we just need to check for having found an
2969 ;; unmatched )/}/], which we ignore. Such a )/}/] can't be in a
2970 ;; macro, due the action of `c-neutralize-syntax-in-CPP'.
2971 (c-safe (setq ren+1 (c-sc-scan-lists ren+1 1 1)))))) ; acts as loop control.
2972
2973 ;; Record the final, innermost, brace-pair if there is one.
2974 (c-state-push-any-brace-pair bra+1 macro-start-or-here)
2975
2976 ;; Determine a good pos
2977 (while (and (setq paren+1 (car paren+1s))
2978 (> (if (> paren+1 macro-start-or-here)
2979 paren+1
2980 (goto-char paren+1)
2981 (setq mstart (and (c-beginning-of-macro)
2982 (point)))
2983 (or mstart paren+1))
2984 here-bol))
2985 (setq paren+1s (cdr paren+1s)))
2986 (cond
2987 ((and paren+1 mstart)
2988 (min paren+1 mstart))
2989 (paren+1)
2990 (t from))))))
2991
2992 (defun c-remove-stale-state-cache (start-point here pps-point)
2993 ;; Remove stale entries from the `c-cache-state', i.e. those which will
2994 ;; not be in it when it is amended for position HERE. This may involve
2995 ;; replacing a CONS element for a brace pair containing HERE with its car.
2996 ;; Additionally, the "outermost" open-brace entry before HERE will be
2997 ;; converted to a cons if the matching close-brace is below HERE.
2998 ;;
2999 ;; START-POINT is a "maximal" "safe position" - there must be no open
3000 ;; parens/braces/brackets between START-POINT and HERE.
3001 ;;
3002 ;; As a second thing, calculate the result of parse-partial-sexp at
3003 ;; PPS-POINT, w.r.t. START-POINT. The motivation here is that
3004 ;; `c-state-cache-good-pos' may become PPS-POINT, but the caller may need to
3005 ;; adjust it to get outside a string/comment. (Sorry about this! The code
3006 ;; needs to be FAST).
3007 ;;
3008 ;; Return a list (GOOD-POS SCAN-BACK-POS CONS-SEPARATED PPS-STATE), where
3009 ;; o - GOOD-POS is a position where the new value `c-state-cache' is known
3010 ;; to be good (we aim for this to be as high as possible);
3011 ;; o - SCAN-BACK-POS, if not nil, indicates there may be a brace pair
3012 ;; preceding POS which needs to be recorded in `c-state-cache'. It is a
3013 ;; position to scan backwards from. It is the position of the "{" of the
3014 ;; last element to be removed from `c-state-cache', when that elt is a
3015 ;; cons, otherwise nil.
3016 ;; o - CONS-SEPARATED is t when a cons element in `c-state-cache' has been
3017 ;; replaced by its car because HERE lies inside the brace pair represented
3018 ;; by the cons.
3019 ;; o - PPS-STATE is the parse-partial-sexp state at PPS-POINT.
3020 (save-excursion
3021 (save-restriction
3022 (narrow-to-region 1 (point-max))
3023 (let* ((in-macro-start ; start of macro containing HERE or nil.
3024 (save-excursion
3025 (goto-char here)
3026 (and (c-beginning-of-macro)
3027 (point))))
3028 (start-point-actual-macro-start ; Start of macro containing
3029 ; start-point or nil
3030 (and (< start-point here)
3031 (save-excursion
3032 (goto-char start-point)
3033 (and (c-beginning-of-macro)
3034 (point)))))
3035 (start-point-actual-macro-end ; End of this macro, (maybe
3036 ; HERE), or nil.
3037 (and start-point-actual-macro-start
3038 (save-excursion
3039 (goto-char start-point-actual-macro-start)
3040 (c-end-of-macro)
3041 (point))))
3042 pps-state ; Will be 9 or 10 elements long.
3043 pos
3044 upper-lim ; ,beyond which `c-state-cache' entries are removed
3045 scan-back-pos
3046 cons-separated
3047 pair-beg pps-point-state target-depth)
3048
3049 ;; Remove entries beyond HERE. Also remove any entries inside
3050 ;; a macro, unless HERE is in the same macro.
3051 (setq upper-lim
3052 (if (or (null c-state-old-cpp-beg)
3053 (and (> here c-state-old-cpp-beg)
3054 (< here c-state-old-cpp-end)))
3055 here
3056 (min here c-state-old-cpp-beg)))
3057 (while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
3058 (setq scan-back-pos (car-safe (car c-state-cache)))
3059 (setq c-state-cache (cdr c-state-cache)))
3060
3061 ;; If `upper-lim' is inside the last recorded brace pair, remove its
3062 ;; RBrace and indicate we'll need to search backwards for a previous
3063 ;; brace pair.
3064 (when (and c-state-cache
3065 (consp (car c-state-cache))
3066 (> (cdar c-state-cache) upper-lim))
3067 (setcar c-state-cache (caar c-state-cache))
3068 (setq scan-back-pos (car c-state-cache)
3069 cons-separated t))
3070
3071 ;; The next loop jumps forward out of a nested level of parens each
3072 ;; time round; the corresponding elements in `c-state-cache' are
3073 ;; removed. `pos' is just after the brace-pair or the open paren at
3074 ;; (car c-state-cache). There can be no open parens/braces/brackets
3075 ;; between `start-point'/`start-point-actual-macro-start' and HERE,
3076 ;; due to the interface spec to this function.
3077 (setq pos (if (and start-point-actual-macro-end
3078 (not (eq start-point-actual-macro-start
3079 in-macro-start)))
3080 (1+ start-point-actual-macro-end) ; get outside the macro as
3081 ; marked by a `category' text property.
3082 start-point))
3083 (goto-char pos)
3084 (while (and c-state-cache
3085 (or (numberp (car c-state-cache)) ; Have we a { at all?
3086 (cdr c-state-cache))
3087 (< (point) here))
3088 (cond
3089 ((null pps-state) ; first time through
3090 (setq target-depth -1))
3091 ((eq (car pps-state) target-depth) ; found closing ),},]
3092 (setq target-depth (1- (car pps-state))))
3093 ;; Do nothing when we've merely reached pps-point.
3094 )
3095
3096 ;; Scan!
3097 (setq pps-state
3098 (c-sc-parse-partial-sexp
3099 (point) (if (< (point) pps-point) pps-point here)
3100 target-depth
3101 nil pps-state))
3102
3103 (if (= (point) pps-point)
3104 (setq pps-point-state pps-state))
3105
3106 (when (eq (car pps-state) target-depth)
3107 (setq pos (point)) ; POS is now just after an R-paren/brace.
3108 (cond
3109 ((and (consp (car c-state-cache))
3110 (eq (point) (cdar c-state-cache)))
3111 ;; We've just moved out of the paren pair containing the brace-pair
3112 ;; at (car c-state-cache). `pair-beg' is where the open paren is,
3113 ;; and is potentially where the open brace of a cons in
3114 ;; c-state-cache will be.
3115 (setq pair-beg (car-safe (cdr c-state-cache))
3116 c-state-cache (cdr-safe (cdr c-state-cache)))) ; remove {}pair + containing Lparen.
3117 ((numberp (car c-state-cache))
3118 (setq pair-beg (car c-state-cache)
3119 c-state-cache (cdr c-state-cache))) ; remove this
3120 ; containing Lparen
3121 ((numberp (cadr c-state-cache))
3122 (setq pair-beg (cadr c-state-cache)
3123 c-state-cache (cddr c-state-cache))) ; Remove a paren pair
3124 ; together with enclosed brace pair.
3125 ;; (t nil) ; Ignore an unmated Rparen.
3126 )))
3127
3128 (if (< (point) pps-point)
3129 (setq pps-state (c-sc-parse-partial-sexp
3130 (point) pps-point
3131 nil nil ; TARGETDEPTH, STOPBEFORE
3132 pps-state)))
3133
3134 ;; If the last paren pair we moved out of was actually a brace pair,
3135 ;; insert it into `c-state-cache'.
3136 (when (and pair-beg (eq (char-after pair-beg) ?{))
3137 (if (consp (car-safe c-state-cache))
3138 (setq c-state-cache (cdr c-state-cache)))
3139 (setq c-state-cache (cons (cons pair-beg pos)
3140 c-state-cache)))
3141
3142 (list pos scan-back-pos cons-separated pps-state)))))
3143
3144 (defun c-remove-stale-state-cache-backwards (here)
3145 ;; Strip stale elements of `c-state-cache' by moving backwards through the
3146 ;; buffer, and inform the caller of the scenario detected.
3147 ;;
3148 ;; HERE is the position we're setting `c-state-cache' for.
3149 ;; CACHE-POS (a locally bound variable) is just after the latest recorded
3150 ;; position in `c-state-cache' before HERE, or a position at or near
3151 ;; point-min which isn't in a literal.
3152 ;;
3153 ;; This function must only be called only when (> `c-state-cache-good-pos'
3154 ;; HERE). Usually the gap between CACHE-POS and HERE is large. It is thus
3155 ;; optimized to eliminate (or minimize) scanning between these two
3156 ;; positions.
3157 ;;
3158 ;; Return a three element list (GOOD-POS SCAN-BACK-POS FWD-FLAG), where:
3159 ;; o - GOOD-POS is a "good position", where `c-state-cache' is valid, or
3160 ;; could become so after missing elements are inserted into
3161 ;; `c-state-cache'. This is JUST AFTER an opening or closing
3162 ;; brace/paren/bracket which is already in `c-state-cache' or just before
3163 ;; one otherwise. exceptionally (when there's no such b/p/b handy) the BOL
3164 ;; before `here''s line, or the start of the literal containing it.
3165 ;; o - SCAN-BACK-POS, if non-nil, indicates there may be a brace pair
3166 ;; preceding POS which isn't recorded in `c-state-cache'. It is a position
3167 ;; to scan backwards from.
3168 ;; o - FWD-FLAG, if non-nil, indicates there may be parens/braces between
3169 ;; POS and HERE which aren't recorded in `c-state-cache'.
3170 ;;
3171 ;; The comments in this defun use "paren" to mean parenthesis or square
3172 ;; bracket (as contrasted with a brace), and "(" and ")" likewise.
3173 ;;
3174 ;; . {..} (..) (..) ( .. { } ) (...) ( .... . ..)
3175 ;; | | | | | |
3176 ;; CP E here D C good
3177 (let ((cache-pos (c-get-cache-scan-pos here)) ; highest position below HERE in cache (or 1)
3178 (pos c-state-cache-good-pos)
3179 pa ren ; positions of "(" and ")"
3180 dropped-cons ; whether the last element dropped from `c-state-cache'
3181 ; was a cons (representing a brace-pair)
3182 good-pos ; see above.
3183 lit ; (START . END) of a literal containing some point.
3184 here-lit-start here-lit-end ; bounds of literal containing `here'
3185 ; or `here' itself.
3186 here- here+ ; start/end of macro around HERE, or HERE
3187 (here-bol (c-point 'bol here))
3188 (too-far-back (max (- here c-state-cache-too-far) (point-min))))
3189
3190 ;; Remove completely irrelevant entries from `c-state-cache'.
3191 (while (and c-state-cache
3192 (>= (setq pa (c-state-cache-top-lparen)) here))
3193 (setq dropped-cons (consp (car c-state-cache)))
3194 (setq c-state-cache (cdr c-state-cache))
3195 (setq pos pa))
3196 ;; At this stage, (>= pos here);
3197 ;; (< (c-state-cache-top-lparen) here) (or is nil).
3198
3199 (cond
3200 ((and (consp (car c-state-cache))
3201 (> (cdar c-state-cache) here))
3202 ;; CASE 1: The top of the cache is a brace pair which now encloses
3203 ;; `here'. As good-pos, return the address. of the "{". Since we've no
3204 ;; knowledge of what's inside these braces, we have no alternative but
3205 ;; to direct the caller to scan the buffer from the opening brace.
3206 (setq pos (caar c-state-cache))
3207 (setcar c-state-cache pos)
3208 (list (1+ pos) pos t)) ; return value. We've just converted a brace pair
3209 ; entry into a { entry, so the caller needs to
3210 ; search for a brace pair before the {.
3211
3212 ;; `here' might be inside a literal. Check for this.
3213 ((progn
3214 (setq lit (c-state-literal-at here)
3215 here-lit-start (or (car lit) here)
3216 here-lit-end (or (cdr lit) here))
3217 ;; Has `here' just "newly entered" a macro?
3218 (save-excursion
3219 (goto-char here-lit-start)
3220 (if (and (c-beginning-of-macro)
3221 (or (null c-state-old-cpp-beg)
3222 (not (= (point) c-state-old-cpp-beg))))
3223 (progn
3224 (setq here- (point))
3225 (c-end-of-macro)
3226 (setq here+ (point)))
3227 (setq here- here-lit-start
3228 here+ here-lit-end)))
3229
3230 ;; `here' might be nested inside any depth of parens (or brackets but
3231 ;; not braces). Scan backwards to find the outermost such opening
3232 ;; paren, if there is one. This will be the scan position to return.
3233 (save-restriction
3234 (narrow-to-region cache-pos (point-max))
3235 (setq pos (c-state-balance-parens-backwards here- here+ pos)))
3236 nil)) ; for the cond
3237
3238 ((< pos here-lit-start)
3239 ;; CASE 2: Address of outermost ( or [ which now encloses `here', but
3240 ;; didn't enclose the (previous) `c-state-cache-good-pos'. If there is
3241 ;; a brace pair preceding this, it will already be in `c-state-cache',
3242 ;; unless there was a brace pair after it, i.e. there'll only be one to
3243 ;; scan for if we've just deleted one.
3244 (list pos (and dropped-cons pos) t)) ; Return value.
3245
3246 ;; `here' isn't enclosed in a (previously unrecorded) bracket/paren.
3247 ;; Further forward scanning isn't needed, but we still need to find a
3248 ;; GOOD-POS. Step out of all enclosing "("s on HERE's line.
3249 ((progn
3250 (save-restriction
3251 (narrow-to-region here-bol (point-max))
3252 (setq pos here-lit-start)
3253 (c-safe (while (setq pa (c-sc-scan-lists pos -1 1))
3254 (setq pos pa)))) ; might signal
3255 nil)) ; for the cond
3256
3257 ((save-restriction
3258 (narrow-to-region too-far-back (point-max))
3259 (setq ren (c-safe (c-sc-scan-lists pos -1 -1))))
3260 ;; CASE 3: After a }/)/] before `here''s BOL.
3261 (list (1+ ren) (and dropped-cons pos) nil)) ; Return value
3262
3263 ((progn (setq good-pos (c-state-lit-beg (c-point 'bopl here-bol)))
3264 (>= cache-pos good-pos))
3265 ;; CASE 3.5: Just after an existing entry in `c-state-cache' on `here''s
3266 ;; line or the previous line.
3267 (list cache-pos nil nil))
3268
3269 (t
3270 ;; CASE 4; Best of a bad job: BOL before `here-bol', or beginning of
3271 ;; literal containing it.
3272 (list good-pos (and dropped-cons good-pos) nil)))))
3273
3274
3275 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3276 ;; Externally visible routines.
3277
3278 (defun c-state-cache-init ()
3279 (setq c-state-cache nil
3280 c-state-cache-good-pos 1
3281 c-state-nonlit-pos-cache nil
3282 c-state-nonlit-pos-cache-limit 1
3283 c-state-semi-nonlit-pos-cache nil
3284 c-state-semi-nonlit-pos-cache-limit 1
3285 c-state-brace-pair-desert nil
3286 c-state-point-min 1
3287 c-state-point-min-lit-type nil
3288 c-state-point-min-lit-start nil
3289 c-state-min-scan-pos 1
3290 c-state-old-cpp-beg nil
3291 c-state-old-cpp-end nil)
3292 (c-state-mark-point-min-literal))
3293
3294 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3295 ;; Debugging routines to dump `c-state-cache' in a "replayable" form.
3296 ;; (defmacro c-sc-de (elt) ; "c-state-cache-dump-element"
3297 ;; `(format ,(concat "(setq " (symbol-name elt) " %s) ") ,elt))
3298 ;; (defmacro c-sc-qde (elt) ; "c-state-cache-quote-dump-element"
3299 ;; `(format ,(concat "(setq " (symbol-name elt) " '%s) ") ,elt))
3300 ;; (defun c-state-dump ()
3301 ;; ;; For debugging.
3302 ;; ;(message
3303 ;; (concat
3304 ;; (c-sc-qde c-state-cache)
3305 ;; (c-sc-de c-state-cache-good-pos)
3306 ;; (c-sc-qde c-state-nonlit-pos-cache)
3307 ;; (c-sc-de c-state-nonlit-pos-cache-limit)
3308 ;; (c-sc-qde c-state-brace-pair-desert)
3309 ;; (c-sc-de c-state-point-min)
3310 ;; (c-sc-de c-state-point-min-lit-type)
3311 ;; (c-sc-de c-state-point-min-lit-start)
3312 ;; (c-sc-de c-state-min-scan-pos)
3313 ;; (c-sc-de c-state-old-cpp-beg)
3314 ;; (c-sc-de c-state-old-cpp-end)))
3315 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3316
3317 (defun c-invalidate-state-cache-1 (here)
3318 ;; Invalidate all info on `c-state-cache' that applies to the buffer at HERE
3319 ;; or higher and set `c-state-cache-good-pos' accordingly. The cache is
3320 ;; left in a consistent state.
3321 ;;
3322 ;; This is much like `c-whack-state-after', but it never changes a paren
3323 ;; pair element into an open paren element. Doing that would mean that the
3324 ;; new open paren wouldn't have the required preceding paren pair element.
3325 ;;
3326 ;; This function is called from c-before-change.
3327
3328 ;; The caches of non-literals:
3329 ;; Note that we use "<=" for the possibility of the second char of a two-char
3330 ;; comment opener being typed; this would invalidate any cache position at
3331 ;; HERE.
3332 (if (<= here c-state-nonlit-pos-cache-limit)
3333 (setq c-state-nonlit-pos-cache-limit (1- here)))
3334 (if (<= here c-state-semi-nonlit-pos-cache-limit)
3335 (setq c-state-semi-nonlit-pos-cache-limit (1- here)))
3336
3337 ;; `c-state-cache':
3338 ;; Case 1: if `here' is in a literal containing point-min, everything
3339 ;; becomes (or is already) nil.
3340 (if (or (null c-state-cache-good-pos)
3341 (< here (c-state-get-min-scan-pos)))
3342 (setq c-state-cache nil
3343 c-state-cache-good-pos nil
3344 c-state-min-scan-pos nil)
3345
3346 ;; Truncate `c-state-cache' and set `c-state-cache-good-pos' to a value
3347 ;; below `here'. To maintain its consistency, we may need to insert a new
3348 ;; brace pair.
3349 (let ((here-bol (c-point 'bol here))
3350 too-high-pa ; recorded {/(/[ next above or just below here, or nil.
3351 dropped-cons ; was the last removed element a brace pair?
3352 pa)
3353 ;; The easy bit - knock over-the-top bits off `c-state-cache'.
3354 (while (and c-state-cache
3355 (>= (setq pa (c-state-cache-top-paren)) here))
3356 (setq dropped-cons (consp (car c-state-cache))
3357 too-high-pa (c-state-cache-top-lparen)
3358 c-state-cache (cdr c-state-cache)))
3359
3360 ;; Do we need to add in an earlier brace pair, having lopped one off?
3361 (if (and dropped-cons
3362 (<= too-high-pa here))
3363 (c-append-lower-brace-pair-to-state-cache too-high-pa here here-bol))
3364 (setq c-state-cache-good-pos (or (c-state-cache-after-top-paren)
3365 (c-state-get-min-scan-pos)))))
3366
3367 ;; The brace-pair desert marker:
3368 (when (car c-state-brace-pair-desert)
3369 (if (< here (car c-state-brace-pair-desert))
3370 (setq c-state-brace-pair-desert nil)
3371 (if (< here (cdr c-state-brace-pair-desert))
3372 (setcdr c-state-brace-pair-desert here)))))
3373
3374 (defun c-parse-state-1 ()
3375 ;; Find and record all noteworthy parens between some good point earlier in
3376 ;; the file and point. That good point is at least the beginning of the
3377 ;; top-level construct we are in, or the beginning of the preceding
3378 ;; top-level construct if we aren't in one.
3379 ;;
3380 ;; The returned value is a list of the noteworthy parens with the last one
3381 ;; first. If an element in the list is an integer, it's the position of an
3382 ;; open paren (of any type) which has not been closed before the point. If
3383 ;; an element is a cons, it gives the position of a closed BRACE paren
3384 ;; pair[*]; the car is the start brace position and the cdr is the position
3385 ;; following the closing brace. Only the last closed brace paren pair
3386 ;; before each open paren and before the point is recorded, and thus the
3387 ;; state never contains two cons elements in succession. When a close brace
3388 ;; has no matching open brace (e.g., the matching brace is outside the
3389 ;; visible region), it is not represented in the returned value.
3390 ;;
3391 ;; [*] N.B. The close "brace" might be a mismatching close bracket or paren.
3392 ;; This defun explicitly treats mismatching parens/braces/brackets as
3393 ;; matching. It is the open brace which makes it a "brace" pair.
3394 ;;
3395 ;; If POINT is within a macro, open parens and brace pairs within
3396 ;; THIS macro MIGHT be recorded. This depends on whether their
3397 ;; syntactic properties have been suppressed by
3398 ;; `c-neutralize-syntax-in-CPP'. This might need fixing (2008-12-11).
3399 ;;
3400 ;; Currently no characters which are given paren syntax with the
3401 ;; syntax-table property are recorded, i.e. angle bracket arglist
3402 ;; parens are never present here. Note that this might change.
3403 ;;
3404 ;; BUG: This function doesn't cope entirely well with unbalanced
3405 ;; parens in macros. (2008-12-11: this has probably been resolved
3406 ;; by the function `c-neutralize-syntax-in-CPP'.) E.g. in the
3407 ;; following case the brace before the macro isn't balanced with the
3408 ;; one after it:
3409 ;;
3410 ;; {
3411 ;; #define X {
3412 ;; }
3413 ;;
3414 ;; Note to maintainers: this function DOES get called with point
3415 ;; within comments and strings, so don't assume it doesn't!
3416 ;;
3417 ;; This function might do hidden buffer changes.
3418 (let* ((here (point))
3419 (here-bopl (c-point 'bopl))
3420 strategy ; 'forward, 'backward etc..
3421 ;; Candidate positions to start scanning from:
3422 cache-pos ; highest position below HERE already existing in
3423 ; cache (or 1).
3424 good-pos
3425 start-point ; (when scanning forward) a place below HERE where there
3426 ; are no open parens/braces between it and HERE.
3427 bopl-state
3428 res
3429 cons-separated
3430 scan-backward-pos scan-forward-p) ; used for 'backward.
3431 ;; If POINT-MIN has changed, adjust the cache
3432 (unless (= (point-min) c-state-point-min)
3433 (c-renarrow-state-cache))
3434
3435 ;; Strategy?
3436 (setq res (c-parse-state-get-strategy here c-state-cache-good-pos)
3437 strategy (car res)
3438 start-point (cadr res))
3439
3440 (when (eq strategy 'BOD)
3441 (setq c-state-cache nil
3442 c-state-cache-good-pos start-point))
3443
3444 ;; SCAN!
3445 (cond
3446 ((memq strategy '(forward back-and-forward BOD))
3447 (setq res (c-remove-stale-state-cache start-point here here-bopl))
3448 (setq cache-pos (car res)
3449 scan-backward-pos (cadr res)
3450 cons-separated (car (cddr res))
3451 bopl-state (cadr (cddr res))) ; will be nil if (< here-bopl
3452 ; start-point)
3453 (if (and scan-backward-pos
3454 (or cons-separated (eq strategy 'forward))) ;scan-backward-pos
3455 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3456 (setq good-pos
3457 (c-append-to-state-cache cache-pos here))
3458 (setq c-state-cache-good-pos
3459 (if (and bopl-state
3460 (< good-pos (- here c-state-cache-too-far)))
3461 (c-state-cache-non-literal-place here-bopl bopl-state)
3462 good-pos)))
3463
3464 ((eq strategy 'backward)
3465 (setq res (c-remove-stale-state-cache-backwards here)
3466 good-pos (car res)
3467 scan-backward-pos (cadr res)
3468 scan-forward-p (car (cddr res)))
3469 (if scan-backward-pos
3470 (c-append-lower-brace-pair-to-state-cache scan-backward-pos here))
3471 (setq c-state-cache-good-pos
3472 (if scan-forward-p
3473 (c-append-to-state-cache good-pos here)
3474 good-pos)))
3475
3476 (t ; (eq strategy 'IN-LIT)
3477 (setq c-state-cache nil
3478 c-state-cache-good-pos nil))))
3479
3480 c-state-cache)
3481
3482 (defun c-invalidate-state-cache (here)
3483 ;; This is a wrapper over `c-invalidate-state-cache-1'.
3484 ;;
3485 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3486 ;; of all parens in preprocessor constructs, except for any such construct
3487 ;; containing point. We can then call `c-invalidate-state-cache-1' without
3488 ;; worrying further about macros and template delimiters.
3489 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3490 ;; Emacs
3491 (c-with-<->-as-parens-suppressed
3492 (if (and c-state-old-cpp-beg
3493 (< c-state-old-cpp-beg here))
3494 (c-with-all-but-one-cpps-commented-out
3495 c-state-old-cpp-beg
3496 c-state-old-cpp-end
3497 (c-invalidate-state-cache-1 here))
3498 (c-with-cpps-commented-out
3499 (c-invalidate-state-cache-1 here))))
3500 ;; XEmacs
3501 (c-invalidate-state-cache-1 here)))
3502
3503 (defmacro c-state-maybe-marker (place marker)
3504 ;; If PLACE is non-nil, return a marker marking it, otherwise nil.
3505 ;; We (re)use MARKER.
3506 `(and ,place
3507 (or ,marker (setq ,marker (make-marker)))
3508 (set-marker ,marker ,place)))
3509
3510 (defun c-parse-state ()
3511 ;; This is a wrapper over `c-parse-state-1'. See that function for a
3512 ;; description of the functionality and return value.
3513 ;;
3514 ;; It suppresses the syntactic effect of the < and > (template) brackets and
3515 ;; of all parens in preprocessor constructs, except for any such construct
3516 ;; containing point. We can then call `c-parse-state-1' without worrying
3517 ;; further about macros and template delimiters.
3518 (let (here-cpp-beg here-cpp-end)
3519 (save-excursion
3520 (when (c-beginning-of-macro)
3521 (setq here-cpp-beg (point))
3522 (unless
3523 (> (setq here-cpp-end (c-syntactic-end-of-macro))
3524 here-cpp-beg)
3525 (setq here-cpp-beg nil here-cpp-end nil))))
3526 ;; FIXME!!! Put in a `condition-case' here to protect the integrity of the
3527 ;; subsystem.
3528 (prog1
3529 (if (eval-when-compile (memq 'category-properties c-emacs-features))
3530 ;; Emacs
3531 (c-with-<->-as-parens-suppressed
3532 (if (and here-cpp-beg (> here-cpp-end here-cpp-beg))
3533 (c-with-all-but-one-cpps-commented-out
3534 here-cpp-beg here-cpp-end
3535 (c-parse-state-1))
3536 (c-with-cpps-commented-out
3537 (c-parse-state-1))))
3538 ;; XEmacs
3539 (c-parse-state-1))
3540 (setq c-state-old-cpp-beg
3541 (c-state-maybe-marker here-cpp-beg c-state-old-cpp-beg-marker)
3542 c-state-old-cpp-end
3543 (c-state-maybe-marker here-cpp-end c-state-old-cpp-end-marker)))))
3544
3545 ;; Debug tool to catch cache inconsistencies. This is called from
3546 ;; 000tests.el.
3547 (defvar c-debug-parse-state nil)
3548 (unless (fboundp 'c-real-parse-state)
3549 (fset 'c-real-parse-state (symbol-function 'c-parse-state)))
3550 (cc-bytecomp-defun c-real-parse-state)
3551
3552 (defvar c-parse-state-point nil)
3553 (defvar c-parse-state-state nil)
3554 (make-variable-buffer-local 'c-parse-state-state)
3555 (defun c-record-parse-state-state ()
3556 (setq c-parse-state-point (point))
3557 (when (markerp (cdr (assq 'c-state-old-cpp-beg c-parse-state-state)))
3558 (move-marker (cdr (assq 'c-state-old-cpp-beg c-parse-state-state)) nil)
3559 (move-marker (cdr (assq 'c-state-old-cpp-end c-parse-state-state)) nil))
3560 (setq c-parse-state-state
3561 (mapcar
3562 (lambda (arg)
3563 (let ((val (symbol-value arg)))
3564 (cons arg
3565 (cond ((consp val) (copy-tree val))
3566 ((markerp val) (copy-marker val))
3567 (t val)))))
3568 '(c-state-cache
3569 c-state-cache-good-pos
3570 c-state-nonlit-pos-cache
3571 c-state-nonlit-pos-cache-limit
3572 c-state-semi-nonlit-pos-cache
3573 c-state-semi-nonlit-pos-cache-limit
3574 c-state-brace-pair-desert
3575 c-state-point-min
3576 c-state-point-min-lit-type
3577 c-state-point-min-lit-start
3578 c-state-min-scan-pos
3579 c-state-old-cpp-beg
3580 c-state-old-cpp-end
3581 c-parse-state-point))))
3582 (defun c-replay-parse-state-state ()
3583 (message "%s"
3584 (concat "(setq "
3585 (mapconcat
3586 (lambda (arg)
3587 (format "%s %s%s" (car arg)
3588 (if (atom (cdr arg)) "" "'")
3589 (if (markerp (cdr arg))
3590 (format "(copy-marker %s)" (marker-position (cdr arg)))
3591 (cdr arg))))
3592 c-parse-state-state " ")
3593 ")")))
3594
3595 (defun c-debug-parse-state-double-cons (state)
3596 (let (state-car conses-not-ok)
3597 (while state
3598 (setq state-car (car state)
3599 state (cdr state))
3600 (if (and (consp state-car)
3601 (consp (car state)))
3602 (setq conses-not-ok t)))
3603 conses-not-ok))
3604
3605 (defun c-debug-parse-state ()
3606 (let ((here (point)) (res1 (c-real-parse-state)) res2)
3607 (let ((c-state-cache nil)
3608 (c-state-cache-good-pos 1)
3609 (c-state-nonlit-pos-cache nil)
3610 (c-state-nonlit-pos-cache-limit 1)
3611 (c-state-brace-pair-desert nil)
3612 (c-state-point-min 1)
3613 (c-state-point-min-lit-type nil)
3614 (c-state-point-min-lit-start nil)
3615 (c-state-min-scan-pos 1)
3616 (c-state-old-cpp-beg nil)
3617 (c-state-old-cpp-end nil))
3618 (setq res2 (c-real-parse-state)))
3619 (unless (equal res1 res2)
3620 ;; The cache can actually go further back due to the ad-hoc way
3621 ;; the first paren is found, so try to whack off a bit of its
3622 ;; start before complaining.
3623 ;; (save-excursion
3624 ;; (goto-char (or (c-least-enclosing-brace res2) (point)))
3625 ;; (c-beginning-of-defun-1)
3626 ;; (while (not (or (bobp) (eq (char-after) ?{)))
3627 ;; (c-beginning-of-defun-1))
3628 ;; (unless (equal (c-whack-state-before (point) res1) res2)
3629 ;; (message (concat "c-parse-state inconsistency at %s: "
3630 ;; "using cache: %s, from scratch: %s")
3631 ;; here res1 res2)))
3632 (message (concat "c-parse-state inconsistency at %s: "
3633 "using cache: %s, from scratch: %s")
3634 here res1 res2)
3635 (message "Old state:")
3636 (c-replay-parse-state-state))
3637
3638 (when (c-debug-parse-state-double-cons res1)
3639 (message "c-parse-state INVALIDITY at %s: %s"
3640 here res1)
3641 (message "Old state:")
3642 (c-replay-parse-state-state))
3643
3644 (c-record-parse-state-state)
3645 res2 ; res1 correct a cascading series of errors ASAP
3646 ))
3647
3648 (defun c-toggle-parse-state-debug (&optional arg)
3649 (interactive "P")
3650 (setq c-debug-parse-state (c-calculate-state arg c-debug-parse-state))
3651 (fset 'c-parse-state (symbol-function (if c-debug-parse-state
3652 'c-debug-parse-state
3653 'c-real-parse-state)))
3654 (c-keep-region-active)
3655 (message "c-debug-parse-state %sabled"
3656 (if c-debug-parse-state "en" "dis")))
3657 (when c-debug-parse-state
3658 (c-toggle-parse-state-debug 1))
3659
3660 \f
3661 (defun c-whack-state-before (bufpos paren-state)
3662 ;; Whack off any state information from PAREN-STATE which lies
3663 ;; before BUFPOS. Not destructive on PAREN-STATE.
3664 (let* ((newstate (list nil))
3665 (ptr newstate)
3666 car)
3667 (while paren-state
3668 (setq car (car paren-state)
3669 paren-state (cdr paren-state))
3670 (if (< (if (consp car) (car car) car) bufpos)
3671 (setq paren-state nil)
3672 (setcdr ptr (list car))
3673 (setq ptr (cdr ptr))))
3674 (cdr newstate)))
3675
3676 (defun c-whack-state-after (bufpos paren-state)
3677 ;; Whack off any state information from PAREN-STATE which lies at or
3678 ;; after BUFPOS. Not destructive on PAREN-STATE.
3679 (catch 'done
3680 (while paren-state
3681 (let ((car (car paren-state)))
3682 (if (consp car)
3683 ;; just check the car, because in a balanced brace
3684 ;; expression, it must be impossible for the corresponding
3685 ;; close brace to be before point, but the open brace to
3686 ;; be after.
3687 (if (<= bufpos (car car))
3688 nil ; whack it off
3689 (if (< bufpos (cdr car))
3690 ;; its possible that the open brace is before
3691 ;; bufpos, but the close brace is after. In that
3692 ;; case, convert this to a non-cons element. The
3693 ;; rest of the state is before bufpos, so we're
3694 ;; done.
3695 (throw 'done (cons (car car) (cdr paren-state)))
3696 ;; we know that both the open and close braces are
3697 ;; before bufpos, so we also know that everything else
3698 ;; on state is before bufpos.
3699 (throw 'done paren-state)))
3700 (if (<= bufpos car)
3701 nil ; whack it off
3702 ;; it's before bufpos, so everything else should too.
3703 (throw 'done paren-state)))
3704 (setq paren-state (cdr paren-state)))
3705 nil)))
3706
3707 (defun c-most-enclosing-brace (paren-state &optional bufpos)
3708 ;; Return the bufpos of the innermost enclosing open paren before
3709 ;; bufpos, or nil if none was found.
3710 (let (enclosingp)
3711 (or bufpos (setq bufpos 134217727))
3712 (while paren-state
3713 (setq enclosingp (car paren-state)
3714 paren-state (cdr paren-state))
3715 (if (or (consp enclosingp)
3716 (>= enclosingp bufpos))
3717 (setq enclosingp nil)
3718 (setq paren-state nil)))
3719 enclosingp))
3720
3721 (defun c-least-enclosing-brace (paren-state)
3722 ;; Return the bufpos of the outermost enclosing open paren, or nil
3723 ;; if none was found.
3724 (let (pos elem)
3725 (while paren-state
3726 (setq elem (car paren-state)
3727 paren-state (cdr paren-state))
3728 (if (integerp elem)
3729 (setq pos elem)))
3730 pos))
3731
3732 (defun c-safe-position (bufpos paren-state)
3733 ;; Return the closest "safe" position recorded on PAREN-STATE that
3734 ;; is higher up than BUFPOS. Return nil if PAREN-STATE doesn't
3735 ;; contain any. Return nil if BUFPOS is nil, which is useful to
3736 ;; find the closest limit before a given limit that might be nil.
3737 ;;
3738 ;; A "safe" position is a position at or after a recorded open
3739 ;; paren, or after a recorded close paren. The returned position is
3740 ;; thus either the first position after a close brace, or the first
3741 ;; position after an enclosing paren, or at the enclosing paren in
3742 ;; case BUFPOS is immediately after it.
3743 (when bufpos
3744 (let (elem)
3745 (catch 'done
3746 (while paren-state
3747 (setq elem (car paren-state))
3748 (if (consp elem)
3749 (cond ((< (cdr elem) bufpos)
3750 (throw 'done (cdr elem)))
3751 ((< (car elem) bufpos)
3752 ;; See below.
3753 (throw 'done (min (1+ (car elem)) bufpos))))
3754 (if (< elem bufpos)
3755 ;; elem is the position at and not after the opening paren, so
3756 ;; we can go forward one more step unless it's equal to
3757 ;; bufpos. This is useful in some cases avoid an extra paren
3758 ;; level between the safe position and bufpos.
3759 (throw 'done (min (1+ elem) bufpos))))
3760 (setq paren-state (cdr paren-state)))))))
3761
3762 (defun c-beginning-of-syntax ()
3763 ;; This is used for `font-lock-beginning-of-syntax-function'. It
3764 ;; goes to the closest previous point that is known to be outside
3765 ;; any string literal or comment. `c-state-cache' is used if it has
3766 ;; a position in the vicinity.
3767 (let* ((paren-state c-state-cache)
3768 elem
3769
3770 (pos (catch 'done
3771 ;; Note: Similar code in `c-safe-position'. The
3772 ;; difference is that we accept a safe position at
3773 ;; the point and don't bother to go forward past open
3774 ;; parens.
3775 (while paren-state
3776 (setq elem (car paren-state))
3777 (if (consp elem)
3778 (cond ((<= (cdr elem) (point))
3779 (throw 'done (cdr elem)))
3780 ((<= (car elem) (point))
3781 (throw 'done (car elem))))
3782 (if (<= elem (point))
3783 (throw 'done elem)))
3784 (setq paren-state (cdr paren-state)))
3785 (point-min))))
3786
3787 (if (> pos (- (point) 4000))
3788 (goto-char pos)
3789 ;; The position is far back. Try `c-beginning-of-defun-1'
3790 ;; (although we can't be entirely sure it will go to a position
3791 ;; outside a comment or string in current emacsen). FIXME:
3792 ;; Consult `syntax-ppss' here.
3793 (c-beginning-of-defun-1)
3794 (if (< (point) pos)
3795 (goto-char pos)))))
3796
3797 \f
3798 ;; Tools for scanning identifiers and other tokens.
3799
3800 (defun c-on-identifier ()
3801 "Return non-nil if the point is on or directly after an identifier.
3802 Keywords are recognized and not considered identifiers. If an
3803 identifier is detected, the returned value is its starting position.
3804 If an identifier ends at the point and another begins at it \(can only
3805 happen in Pike) then the point for the preceding one is returned.
3806
3807 Note that this function might do hidden buffer changes. See the
3808 comment at the start of cc-engine.el for more info."
3809
3810 ;; FIXME: Shouldn't this function handle "operator" in C++?
3811
3812 (save-excursion
3813 (skip-syntax-backward "w_")
3814
3815 (or
3816
3817 ;; Check for a normal (non-keyword) identifier.
3818 (and (looking-at c-symbol-start)
3819 (not (looking-at c-keywords-regexp))
3820 (point))
3821
3822 (when (c-major-mode-is 'pike-mode)
3823 ;; Handle the `<operator> syntax in Pike.
3824 (let ((pos (point)))
3825 (skip-chars-backward "-!%&*+/<=>^|~[]()")
3826 (and (if (< (skip-chars-backward "`") 0)
3827 t
3828 (goto-char pos)
3829 (eq (char-after) ?\`))
3830 (looking-at c-symbol-key)
3831 (>= (match-end 0) pos)
3832 (point))))
3833
3834 ;; Handle the "operator +" syntax in C++.
3835 (when (and c-overloadable-operators-regexp
3836 (= (c-backward-token-2 0) 0))
3837
3838 (cond ((and (looking-at c-overloadable-operators-regexp)
3839 (or (not c-opt-op-identifier-prefix)
3840 (and (= (c-backward-token-2 1) 0)
3841 (looking-at c-opt-op-identifier-prefix))))
3842 (point))
3843
3844 ((save-excursion
3845 (and c-opt-op-identifier-prefix
3846 (looking-at c-opt-op-identifier-prefix)
3847 (= (c-forward-token-2 1) 0)
3848 (looking-at c-overloadable-operators-regexp)))
3849 (point))))
3850
3851 )))
3852
3853 (defsubst c-simple-skip-symbol-backward ()
3854 ;; If the point is at the end of a symbol then skip backward to the
3855 ;; beginning of it. Don't move otherwise. Return non-nil if point
3856 ;; moved.
3857 ;;
3858 ;; This function might do hidden buffer changes.
3859 (or (< (skip-syntax-backward "w_") 0)
3860 (and (c-major-mode-is 'pike-mode)
3861 ;; Handle the `<operator> syntax in Pike.
3862 (let ((pos (point)))
3863 (if (and (< (skip-chars-backward "-!%&*+/<=>^|~[]()") 0)
3864 (< (skip-chars-backward "`") 0)
3865 (looking-at c-symbol-key)
3866 (>= (match-end 0) pos))
3867 t
3868 (goto-char pos)
3869 nil)))))
3870
3871 (defun c-beginning-of-current-token (&optional back-limit)
3872 ;; Move to the beginning of the current token. Do not move if not
3873 ;; in the middle of one. BACK-LIMIT may be used to bound the
3874 ;; backward search; if given it's assumed to be at the boundary
3875 ;; between two tokens. Return non-nil if the point is moved, nil
3876 ;; otherwise.
3877 ;;
3878 ;; This function might do hidden buffer changes.
3879 (let ((start (point)))
3880 (if (looking-at "\\w\\|\\s_")
3881 (skip-syntax-backward "w_" back-limit)
3882 (when (< (skip-syntax-backward ".()" back-limit) 0)
3883 (while (let ((pos (or (and (looking-at c-nonsymbol-token-regexp)
3884 (match-end 0))
3885 ;; `c-nonsymbol-token-regexp' should always match
3886 ;; since we've skipped backward over punctuation
3887 ;; or paren syntax, but consume one char in case
3888 ;; it doesn't so that we don't leave point before
3889 ;; some earlier incorrect token.
3890 (1+ (point)))))
3891 (if (<= pos start)
3892 (goto-char pos))))))
3893 (< (point) start)))
3894
3895 (defun c-end-of-current-token (&optional back-limit)
3896 ;; Move to the end of the current token. Do not move if not in the
3897 ;; middle of one. BACK-LIMIT may be used to bound the backward
3898 ;; search; if given it's assumed to be at the boundary between two
3899 ;; tokens. Return non-nil if the point is moved, nil otherwise.
3900 ;;
3901 ;; This function might do hidden buffer changes.
3902 (let ((start (point)))
3903 (cond ((< (skip-syntax-backward "w_" (1- start)) 0)
3904 (skip-syntax-forward "w_"))
3905 ((< (skip-syntax-backward ".()" back-limit) 0)
3906 (while (progn
3907 (if (looking-at c-nonsymbol-token-regexp)
3908 (goto-char (match-end 0))
3909 ;; `c-nonsymbol-token-regexp' should always match since
3910 ;; we've skipped backward over punctuation or paren
3911 ;; syntax, but move forward in case it doesn't so that
3912 ;; we don't leave point earlier than we started with.
3913 (forward-char))
3914 (< (point) start)))))
3915 (> (point) start)))
3916
3917 (defconst c-jump-syntax-balanced
3918 (if (memq 'gen-string-delim c-emacs-features)
3919 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\"\\|\\s|"
3920 "\\w\\|\\s_\\|\\s(\\|\\s)\\|\\s\""))
3921
3922 (defconst c-jump-syntax-unbalanced
3923 (if (memq 'gen-string-delim c-emacs-features)
3924 "\\w\\|\\s_\\|\\s\"\\|\\s|"
3925 "\\w\\|\\s_\\|\\s\""))
3926
3927 (defun c-forward-token-2 (&optional count balanced limit)
3928 "Move forward by tokens.
3929 A token is defined as all symbols and identifiers which aren't
3930 syntactic whitespace \(note that multicharacter tokens like \"==\" are
3931 treated properly). Point is always either left at the beginning of a
3932 token or not moved at all. COUNT specifies the number of tokens to
3933 move; a negative COUNT moves in the opposite direction. A COUNT of 0
3934 moves to the next token beginning only if not already at one. If
3935 BALANCED is true, move over balanced parens, otherwise move into them.
3936 Also, if BALANCED is true, never move out of an enclosing paren.
3937
3938 LIMIT sets the limit for the movement and defaults to the point limit.
3939 The case when LIMIT is set in the middle of a token, comment or macro
3940 is handled correctly, i.e. the point won't be left there.
3941
3942 Return the number of tokens left to move \(positive or negative). If
3943 BALANCED is true, a move over a balanced paren counts as one. Note
3944 that if COUNT is 0 and no appropriate token beginning is found, 1 will
3945 be returned. Thus, a return value of 0 guarantees that point is at
3946 the requested position and a return value less \(without signs) than
3947 COUNT guarantees that point is at the beginning of some token.
3948
3949 Note that this function might do hidden buffer changes. See the
3950 comment at the start of cc-engine.el for more info."
3951
3952 (or count (setq count 1))
3953 (if (< count 0)
3954 (- (c-backward-token-2 (- count) balanced limit))
3955
3956 (let ((jump-syntax (if balanced
3957 c-jump-syntax-balanced
3958 c-jump-syntax-unbalanced))
3959 (last (point))
3960 (prev (point)))
3961
3962 (if (zerop count)
3963 ;; If count is zero we should jump if in the middle of a token.
3964 (c-end-of-current-token))
3965
3966 (save-restriction
3967 (if limit (narrow-to-region (point-min) limit))
3968 (if (/= (point)
3969 (progn (c-forward-syntactic-ws) (point)))
3970 ;; Skip whitespace. Count this as a move if we did in
3971 ;; fact move.
3972 (setq count (max (1- count) 0)))
3973
3974 (if (eobp)
3975 ;; Moved out of bounds. Make sure the returned count isn't zero.
3976 (progn
3977 (if (zerop count) (setq count 1))
3978 (goto-char last))
3979
3980 ;; Use `condition-case' to avoid having the limit tests
3981 ;; inside the loop.
3982 (condition-case nil
3983 (while (and
3984 (> count 0)
3985 (progn
3986 (setq last (point))
3987 (cond ((looking-at jump-syntax)
3988 (goto-char (scan-sexps (point) 1))
3989 t)
3990 ((looking-at c-nonsymbol-token-regexp)
3991 (goto-char (match-end 0))
3992 t)
3993 ;; `c-nonsymbol-token-regexp' above should always
3994 ;; match if there are correct tokens. Try to
3995 ;; widen to see if the limit was set in the
3996 ;; middle of one, else fall back to treating
3997 ;; the offending thing as a one character token.
3998 ((and limit
3999 (save-restriction
4000 (widen)
4001 (looking-at c-nonsymbol-token-regexp)))
4002 nil)
4003 (t
4004 (forward-char)
4005 t))))
4006 (c-forward-syntactic-ws)
4007 (setq prev last
4008 count (1- count)))
4009 (error (goto-char last)))
4010
4011 (when (eobp)
4012 (goto-char prev)
4013 (setq count (1+ count)))))
4014
4015 count)))
4016
4017 (defun c-backward-token-2 (&optional count balanced limit)
4018 "Move backward by tokens.
4019 See `c-forward-token-2' for details."
4020
4021 (or count (setq count 1))
4022 (if (< count 0)
4023 (- (c-forward-token-2 (- count) balanced limit))
4024
4025 (or limit (setq limit (point-min)))
4026 (let ((jump-syntax (if balanced
4027 c-jump-syntax-balanced
4028 c-jump-syntax-unbalanced))
4029 (last (point)))
4030
4031 (if (zerop count)
4032 ;; The count is zero so try to skip to the beginning of the
4033 ;; current token.
4034 (if (> (point)
4035 (progn (c-beginning-of-current-token) (point)))
4036 (if (< (point) limit)
4037 ;; The limit is inside the same token, so return 1.
4038 (setq count 1))
4039
4040 ;; We're not in the middle of a token. If there's
4041 ;; whitespace after the point then we must move backward,
4042 ;; so set count to 1 in that case.
4043 (and (looking-at c-syntactic-ws-start)
4044 ;; If we're looking at a '#' that might start a cpp
4045 ;; directive then we have to do a more elaborate check.
4046 (or (/= (char-after) ?#)
4047 (not c-opt-cpp-prefix)
4048 (save-excursion
4049 (and (= (point)
4050 (progn (beginning-of-line)
4051 (looking-at "[ \t]*")
4052 (match-end 0)))
4053 (or (bobp)
4054 (progn (backward-char)
4055 (not (eq (char-before) ?\\)))))))
4056 (setq count 1))))
4057
4058 ;; Use `condition-case' to avoid having to check for buffer
4059 ;; limits in `backward-char', `scan-sexps' and `goto-char' below.
4060 (condition-case nil
4061 (while (and
4062 (> count 0)
4063 (progn
4064 (c-backward-syntactic-ws)
4065 (backward-char)
4066 (if (looking-at jump-syntax)
4067 (goto-char (scan-sexps (1+ (point)) -1))
4068 ;; This can be very inefficient if there's a long
4069 ;; sequence of operator tokens without any separation.
4070 ;; That doesn't happen in practice, anyway.
4071 (c-beginning-of-current-token))
4072 (>= (point) limit)))
4073 (setq last (point)
4074 count (1- count)))
4075 (error (goto-char last)))
4076
4077 (if (< (point) limit)
4078 (goto-char last))
4079
4080 count)))
4081
4082 (defun c-forward-token-1 (&optional count balanced limit)
4083 "Like `c-forward-token-2' but doesn't treat multicharacter operator
4084 tokens like \"==\" as single tokens, i.e. all sequences of symbol
4085 characters are jumped over character by character. This function is
4086 for compatibility only; it's only a wrapper over `c-forward-token-2'."
4087 (let ((c-nonsymbol-token-regexp "\\s."))
4088 (c-forward-token-2 count balanced limit)))
4089
4090 (defun c-backward-token-1 (&optional count balanced limit)
4091 "Like `c-backward-token-2' but doesn't treat multicharacter operator
4092 tokens like \"==\" as single tokens, i.e. all sequences of symbol
4093 characters are jumped over character by character. This function is
4094 for compatibility only; it's only a wrapper over `c-backward-token-2'."
4095 (let ((c-nonsymbol-token-regexp "\\s."))
4096 (c-backward-token-2 count balanced limit)))
4097
4098 \f
4099 ;; Tools for doing searches restricted to syntactically relevant text.
4100
4101 (defun c-syntactic-re-search-forward (regexp &optional bound noerror
4102 paren-level not-inside-token
4103 lookbehind-submatch)
4104 "Like `re-search-forward', but only report matches that are found
4105 in syntactically significant text. I.e. matches in comments, macros
4106 or string literals are ignored. The start point is assumed to be
4107 outside any comment, macro or string literal, or else the content of
4108 that region is taken as syntactically significant text.
4109
4110 If PAREN-LEVEL is non-nil, an additional restriction is added to
4111 ignore matches in nested paren sexps. The search will also not go
4112 outside the current list sexp, which has the effect that if the point
4113 should be moved to BOUND when no match is found \(i.e. NOERROR is
4114 neither nil nor t), then it will be at the closing paren if the end of
4115 the current list sexp is encountered first.
4116
4117 If NOT-INSIDE-TOKEN is non-nil, matches in the middle of tokens are
4118 ignored. Things like multicharacter operators and special symbols
4119 \(e.g. \"`()\" in Pike) are handled but currently not floating point
4120 constants.
4121
4122 If LOOKBEHIND-SUBMATCH is non-nil, it's taken as a number of a
4123 subexpression in REGEXP. The end of that submatch is used as the
4124 position to check for syntactic significance. If LOOKBEHIND-SUBMATCH
4125 isn't used or if that subexpression didn't match then the start
4126 position of the whole match is used instead. The \"look behind\"
4127 subexpression is never tested before the starting position, so it
4128 might be a good idea to include \\=\\= as a match alternative in it.
4129
4130 Optimization note: Matches might be missed if the \"look behind\"
4131 subexpression can match the end of nonwhite syntactic whitespace,
4132 i.e. the end of comments or cpp directives. This since the function
4133 skips over such things before resuming the search. It's on the other
4134 hand not safe to assume that the \"look behind\" subexpression never
4135 matches syntactic whitespace.
4136
4137 Bug: Unbalanced parens inside cpp directives are currently not handled
4138 correctly \(i.e. they don't get ignored as they should) when
4139 PAREN-LEVEL is set.
4140
4141 Note that this function might do hidden buffer changes. See the
4142 comment at the start of cc-engine.el for more info."
4143
4144 (or bound (setq bound (point-max)))
4145 (if paren-level (setq paren-level -1))
4146
4147 ;;(message "c-syntactic-re-search-forward %s %s %S" (point) bound regexp)
4148
4149 (let ((start (point))
4150 tmp
4151 ;; Start position for the last search.
4152 search-pos
4153 ;; The `parse-partial-sexp' state between the start position
4154 ;; and the point.
4155 state
4156 ;; The current position after the last state update. The next
4157 ;; `parse-partial-sexp' continues from here.
4158 (state-pos (point))
4159 ;; The position at which to check the state and the state
4160 ;; there. This is separate from `state-pos' since we might
4161 ;; need to back up before doing the next search round.
4162 check-pos check-state
4163 ;; Last position known to end a token.
4164 (last-token-end-pos (point-min))
4165 ;; Set when a valid match is found.
4166 found)
4167
4168 (condition-case err
4169 (while
4170 (and
4171 (progn
4172 (setq search-pos (point))
4173 (re-search-forward regexp bound noerror))
4174
4175 (progn
4176 (setq state (parse-partial-sexp
4177 state-pos (match-beginning 0) paren-level nil state)
4178 state-pos (point))
4179 (if (setq check-pos (and lookbehind-submatch
4180 (or (not paren-level)
4181 (>= (car state) 0))
4182 (match-end lookbehind-submatch)))
4183 (setq check-state (parse-partial-sexp
4184 state-pos check-pos paren-level nil state))
4185 (setq check-pos state-pos
4186 check-state state))
4187
4188 ;; NOTE: If we got a look behind subexpression and get
4189 ;; an insignificant match in something that isn't
4190 ;; syntactic whitespace (i.e. strings or in nested
4191 ;; parentheses), then we can never skip more than a
4192 ;; single character from the match start position
4193 ;; (i.e. `state-pos' here) before continuing the
4194 ;; search. That since the look behind subexpression
4195 ;; might match the end of the insignificant region in
4196 ;; the next search.
4197
4198 (cond
4199 ((elt check-state 7)
4200 ;; Match inside a line comment. Skip to eol. Use
4201 ;; `re-search-forward' instead of `skip-chars-forward' to get
4202 ;; the right bound behavior.
4203 (re-search-forward "[\n\r]" bound noerror))
4204
4205 ((elt check-state 4)
4206 ;; Match inside a block comment. Skip to the '*/'.
4207 (search-forward "*/" bound noerror))
4208
4209 ((and (not (elt check-state 5))
4210 (eq (char-before check-pos) ?/)
4211 (not (c-get-char-property (1- check-pos) 'syntax-table))
4212 (memq (char-after check-pos) '(?/ ?*)))
4213 ;; Match in the middle of the opener of a block or line
4214 ;; comment.
4215 (if (= (char-after check-pos) ?/)
4216 (re-search-forward "[\n\r]" bound noerror)
4217 (search-forward "*/" bound noerror)))
4218
4219 ;; The last `parse-partial-sexp' above might have
4220 ;; stopped short of the real check position if the end
4221 ;; of the current sexp was encountered in paren-level
4222 ;; mode. The checks above are always false in that
4223 ;; case, and since they can do better skipping in
4224 ;; lookbehind-submatch mode, we do them before
4225 ;; checking the paren level.
4226
4227 ((and paren-level
4228 (/= (setq tmp (car check-state)) 0))
4229 ;; Check the paren level first since we're short of the
4230 ;; syntactic checking position if the end of the
4231 ;; current sexp was encountered by `parse-partial-sexp'.
4232 (if (> tmp 0)
4233
4234 ;; Inside a nested paren sexp.
4235 (if lookbehind-submatch
4236 ;; See the NOTE above.
4237 (progn (goto-char state-pos) t)
4238 ;; Skip out of the paren quickly.
4239 (setq state (parse-partial-sexp state-pos bound 0 nil state)
4240 state-pos (point)))
4241
4242 ;; Have exited the current paren sexp.
4243 (if noerror
4244 (progn
4245 ;; The last `parse-partial-sexp' call above
4246 ;; has left us just after the closing paren
4247 ;; in this case, so we can modify the bound
4248 ;; to leave the point at the right position
4249 ;; upon return.
4250 (setq bound (1- (point)))
4251 nil)
4252 (signal 'search-failed (list regexp)))))
4253
4254 ((setq tmp (elt check-state 3))
4255 ;; Match inside a string.
4256 (if (or lookbehind-submatch
4257 (not (integerp tmp)))
4258 ;; See the NOTE above.
4259 (progn (goto-char state-pos) t)
4260 ;; Skip to the end of the string before continuing.
4261 (let ((ender (make-string 1 tmp)) (continue t))
4262 (while (if (search-forward ender bound noerror)
4263 (progn
4264 (setq state (parse-partial-sexp
4265 state-pos (point) nil nil state)
4266 state-pos (point))
4267 (elt state 3))
4268 (setq continue nil)))
4269 continue)))
4270
4271 ((save-excursion
4272 (save-match-data
4273 (c-beginning-of-macro start)))
4274 ;; Match inside a macro. Skip to the end of it.
4275 (c-end-of-macro)
4276 (cond ((<= (point) bound) t)
4277 (noerror nil)
4278 (t (signal 'search-failed (list regexp)))))
4279
4280 ((and not-inside-token
4281 (or (< check-pos last-token-end-pos)
4282 (< check-pos
4283 (save-excursion
4284 (goto-char check-pos)
4285 (save-match-data
4286 (c-end-of-current-token last-token-end-pos))
4287 (setq last-token-end-pos (point))))))
4288 ;; Inside a token.
4289 (if lookbehind-submatch
4290 ;; See the NOTE above.
4291 (goto-char state-pos)
4292 (goto-char (min last-token-end-pos bound))))
4293
4294 (t
4295 ;; A real match.
4296 (setq found t)
4297 nil)))
4298
4299 ;; Should loop to search again, but take care to avoid
4300 ;; looping on the same spot.
4301 (or (/= search-pos (point))
4302 (if (= (point) bound)
4303 (if noerror
4304 nil
4305 (signal 'search-failed (list regexp)))
4306 (forward-char)
4307 t))))
4308
4309 (error
4310 (goto-char start)
4311 (signal (car err) (cdr err))))
4312
4313 ;;(message "c-syntactic-re-search-forward done %s" (or (match-end 0) (point)))
4314
4315 (if found
4316 (progn
4317 (goto-char (match-end 0))
4318 (match-end 0))
4319
4320 ;; Search failed. Set point as appropriate.
4321 (if (eq noerror t)
4322 (goto-char start)
4323 (goto-char bound))
4324 nil)))
4325
4326 (defvar safe-pos-list) ; bound in c-syntactic-skip-backward
4327
4328 (defsubst c-ssb-lit-begin ()
4329 ;; Return the start of the literal point is in, or nil.
4330 ;; We read and write the variables `safe-pos', `safe-pos-list', `state'
4331 ;; bound in the caller.
4332
4333 ;; Use `parse-partial-sexp' from a safe position down to the point to check
4334 ;; if it's outside comments and strings.
4335 (save-excursion
4336 (let ((pos (point)) safe-pos state)
4337 ;; Pick a safe position as close to the point as possible.
4338 ;;
4339 ;; FIXME: Consult `syntax-ppss' here if our cache doesn't give a good
4340 ;; position.
4341
4342 (while (and safe-pos-list
4343 (> (car safe-pos-list) (point)))
4344 (setq safe-pos-list (cdr safe-pos-list)))
4345 (unless (setq safe-pos (car-safe safe-pos-list))
4346 (setq safe-pos (max (or (c-safe-position
4347 (point) (c-parse-state))
4348 0)
4349 (point-min))
4350 safe-pos-list (list safe-pos)))
4351
4352 ;; Cache positions along the way to use if we have to back up more. We
4353 ;; cache every closing paren on the same level. If the paren cache is
4354 ;; relevant in this region then we're typically already on the same
4355 ;; level as the target position. Note that we might cache positions
4356 ;; after opening parens in case safe-pos is in a nested list. That's
4357 ;; both uncommon and harmless.
4358 (while (progn
4359 (setq state (parse-partial-sexp
4360 safe-pos pos 0))
4361 (< (point) pos))
4362 (setq safe-pos (point)
4363 safe-pos-list (cons safe-pos safe-pos-list)))
4364
4365 ;; If the state contains the start of the containing sexp we cache that
4366 ;; position too, so that parse-partial-sexp in the next run has a bigger
4367 ;; chance of starting at the same level as the target position and thus
4368 ;; will get more good safe positions into the list.
4369 (if (elt state 1)
4370 (setq safe-pos (1+ (elt state 1))
4371 safe-pos-list (cons safe-pos safe-pos-list)))
4372
4373 (if (or (elt state 3) (elt state 4))
4374 ;; Inside string or comment. Continue search at the
4375 ;; beginning of it.
4376 (elt state 8)))))
4377
4378 (defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4379 "Like `skip-chars-backward' but only look at syntactically relevant chars,
4380 i.e. don't stop at positions inside syntactic whitespace or string
4381 literals. Preprocessor directives are also ignored, with the exception
4382 of the one that the point starts within, if any. If LIMIT is given,
4383 it's assumed to be at a syntactically relevant position.
4384
4385 If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4386 sexps, and the search will also not go outside the current paren sexp.
4387 However, if LIMIT or the buffer limit is reached inside a nested paren
4388 then the point will be left at the limit.
4389
4390 Non-nil is returned if the point moved, nil otherwise.
4391
4392 Note that this function might do hidden buffer changes. See the
4393 comment at the start of cc-engine.el for more info."
4394
4395 (c-self-bind-state-cache
4396 (let ((start (point))
4397 state-2
4398 ;; A list of syntactically relevant positions in descending
4399 ;; order. It's used to avoid scanning repeatedly over
4400 ;; potentially large regions with `parse-partial-sexp' to verify
4401 ;; each position. Used in `c-ssb-lit-begin'
4402 safe-pos-list
4403 ;; The result from `c-beginning-of-macro' at the start position or the
4404 ;; start position itself if it isn't within a macro. Evaluated on
4405 ;; demand.
4406 start-macro-beg
4407 ;; The earliest position after the current one with the same paren
4408 ;; level. Used only when `paren-level' is set.
4409 lit-beg
4410 (paren-level-pos (point)))
4411
4412 (while
4413 (progn
4414 ;; The next loop "tries" to find the end point each time round,
4415 ;; loops when it hasn't succeeded.
4416 (while
4417 (and
4418 (let ((pos (point)))
4419 (while (and
4420 (< (skip-chars-backward skip-chars limit) 0)
4421 ;; Don't stop inside a literal.
4422 (when (setq lit-beg (c-ssb-lit-begin))
4423 (goto-char lit-beg)
4424 t)))
4425 (< (point) pos))
4426
4427 (let ((pos (point)) state-2 pps-end-pos)
4428
4429 (cond
4430 ((and paren-level
4431 (save-excursion
4432 (setq state-2 (parse-partial-sexp
4433 pos paren-level-pos -1)
4434 pps-end-pos (point))
4435 (/= (car state-2) 0)))
4436 ;; Not at the right level.
4437
4438 (if (and (< (car state-2) 0)
4439 ;; We stop above if we go out of a paren.
4440 ;; Now check whether it precedes or is
4441 ;; nested in the starting sexp.
4442 (save-excursion
4443 (setq state-2
4444 (parse-partial-sexp
4445 pps-end-pos paren-level-pos
4446 nil nil state-2))
4447 (< (car state-2) 0)))
4448
4449 ;; We've stopped short of the starting position
4450 ;; so the hit was inside a nested list. Go up
4451 ;; until we are at the right level.
4452 (condition-case nil
4453 (progn
4454 (goto-char (scan-lists pos -1
4455 (- (car state-2))))
4456 (setq paren-level-pos (point))
4457 (if (and limit (>= limit paren-level-pos))
4458 (progn
4459 (goto-char limit)
4460 nil)
4461 t))
4462 (error
4463 (goto-char (or limit (point-min)))
4464 nil))
4465
4466 ;; The hit was outside the list at the start
4467 ;; position. Go to the start of the list and exit.
4468 (goto-char (1+ (elt state-2 1)))
4469 nil))
4470
4471 ((c-beginning-of-macro limit)
4472 ;; Inside a macro.
4473 (if (< (point)
4474 (or start-macro-beg
4475 (setq start-macro-beg
4476 (save-excursion
4477 (goto-char start)
4478 (c-beginning-of-macro limit)
4479 (point)))))
4480 t
4481
4482 ;; It's inside the same macro we started in so it's
4483 ;; a relevant match.
4484 (goto-char pos)
4485 nil))))))
4486
4487 (> (point)
4488 (progn
4489 ;; Skip syntactic ws afterwards so that we don't stop at the
4490 ;; end of a comment if `skip-chars' is something like "^/".
4491 (c-backward-syntactic-ws)
4492 (point)))))
4493
4494 ;; We might want to extend this with more useful return values in
4495 ;; the future.
4496 (/= (point) start))))
4497
4498 ;; The following is an alternative implementation of
4499 ;; `c-syntactic-skip-backward' that uses backward movement to keep
4500 ;; track of the syntactic context. It turned out to be generally
4501 ;; slower than the one above which uses forward checks from earlier
4502 ;; safe positions.
4503 ;;
4504 ;;(defconst c-ssb-stop-re
4505 ;; ;; The regexp matching chars `c-syntactic-skip-backward' needs to
4506 ;; ;; stop at to avoid going into comments and literals.
4507 ;; (concat
4508 ;; ;; Match comment end syntax and string literal syntax. Also match
4509 ;; ;; '/' for block comment endings (not covered by comment end
4510 ;; ;; syntax).
4511 ;; "\\s>\\|/\\|\\s\""
4512 ;; (if (memq 'gen-string-delim c-emacs-features)
4513 ;; "\\|\\s|"
4514 ;; "")
4515 ;; (if (memq 'gen-comment-delim c-emacs-features)
4516 ;; "\\|\\s!"
4517 ;; "")))
4518 ;;
4519 ;;(defconst c-ssb-stop-paren-re
4520 ;; ;; Like `c-ssb-stop-re' but also stops at paren chars.
4521 ;; (concat c-ssb-stop-re "\\|\\s(\\|\\s)"))
4522 ;;
4523 ;;(defconst c-ssb-sexp-end-re
4524 ;; ;; Regexp matching the ending syntax of a complex sexp.
4525 ;; (concat c-string-limit-regexp "\\|\\s)"))
4526 ;;
4527 ;;(defun c-syntactic-skip-backward (skip-chars &optional limit paren-level)
4528 ;; "Like `skip-chars-backward' but only look at syntactically relevant chars,
4529 ;;i.e. don't stop at positions inside syntactic whitespace or string
4530 ;;literals. Preprocessor directives are also ignored. However, if the
4531 ;;point is within a comment, string literal or preprocessor directory to
4532 ;;begin with, its contents is treated as syntactically relevant chars.
4533 ;;If LIMIT is given, it limits the backward search and the point will be
4534 ;;left there if no earlier position is found.
4535 ;;
4536 ;;If PAREN-LEVEL is non-nil, the function won't stop in nested paren
4537 ;;sexps, and the search will also not go outside the current paren sexp.
4538 ;;However, if LIMIT or the buffer limit is reached inside a nested paren
4539 ;;then the point will be left at the limit.
4540 ;;
4541 ;;Non-nil is returned if the point moved, nil otherwise.
4542 ;;
4543 ;;Note that this function might do hidden buffer changes. See the
4544 ;;comment at the start of cc-engine.el for more info."
4545 ;;
4546 ;; (save-restriction
4547 ;; (when limit
4548 ;; (narrow-to-region limit (point-max)))
4549 ;;
4550 ;; (let ((start (point)))
4551 ;; (catch 'done
4552 ;; (while (let ((last-pos (point))
4553 ;; (stop-pos (progn
4554 ;; (skip-chars-backward skip-chars)
4555 ;; (point))))
4556 ;;
4557 ;; ;; Skip back over the same region as
4558 ;; ;; `skip-chars-backward' above, but keep to
4559 ;; ;; syntactically relevant positions.
4560 ;; (goto-char last-pos)
4561 ;; (while (and
4562 ;; ;; `re-search-backward' with a single char regexp
4563 ;; ;; should be fast.
4564 ;; (re-search-backward
4565 ;; (if paren-level c-ssb-stop-paren-re c-ssb-stop-re)
4566 ;; stop-pos 'move)
4567 ;;
4568 ;; (progn
4569 ;; (cond
4570 ;; ((looking-at "\\s(")
4571 ;; ;; `paren-level' is set and we've found the
4572 ;; ;; start of the containing paren.
4573 ;; (forward-char)
4574 ;; (throw 'done t))
4575 ;;
4576 ;; ((looking-at c-ssb-sexp-end-re)
4577 ;; ;; We're at the end of a string literal or paren
4578 ;; ;; sexp (if `paren-level' is set).
4579 ;; (forward-char)
4580 ;; (condition-case nil
4581 ;; (c-backward-sexp)
4582 ;; (error
4583 ;; (goto-char limit)
4584 ;; (throw 'done t))))
4585 ;;
4586 ;; (t
4587 ;; (forward-char)
4588 ;; ;; At the end of some syntactic ws or possibly
4589 ;; ;; after a plain '/' operator.
4590 ;; (let ((pos (point)))
4591 ;; (c-backward-syntactic-ws)
4592 ;; (if (= pos (point))
4593 ;; ;; Was a plain '/' operator. Go past it.
4594 ;; (backward-char)))))
4595 ;;
4596 ;; (> (point) stop-pos))))
4597 ;;
4598 ;; ;; Now the point is either at `stop-pos' or at some
4599 ;; ;; position further back if `stop-pos' was at a
4600 ;; ;; syntactically irrelevant place.
4601 ;;
4602 ;; ;; Skip additional syntactic ws so that we don't stop
4603 ;; ;; at the end of a comment if `skip-chars' is
4604 ;; ;; something like "^/".
4605 ;; (c-backward-syntactic-ws)
4606 ;;
4607 ;; (< (point) stop-pos))))
4608 ;;
4609 ;; ;; We might want to extend this with more useful return values
4610 ;; ;; in the future.
4611 ;; (/= (point) start))))
4612
4613 \f
4614 ;; Tools for handling comments and string literals.
4615
4616 (defun c-in-literal (&optional lim detect-cpp)
4617 "Return the type of literal point is in, if any.
4618 The return value is `c' if in a C-style comment, `c++' if in a C++
4619 style comment, `string' if in a string literal, `pound' if DETECT-CPP
4620 is non-nil and in a preprocessor line, or nil if somewhere else.
4621 Optional LIM is used as the backward limit of the search. If omitted,
4622 or nil, `c-beginning-of-defun' is used.
4623
4624 The last point calculated is cached if the cache is enabled, i.e. if
4625 `c-in-literal-cache' is bound to a two element vector.
4626
4627 Note that this function might do hidden buffer changes. See the
4628 comment at the start of cc-engine.el for more info."
4629 (save-restriction
4630 (widen)
4631 (let* ((safe-place (c-state-semi-safe-place (point)))
4632 (lit (c-state-pp-to-literal safe-place (point))))
4633 (or (cadr lit)
4634 (and detect-cpp
4635 (save-excursion (c-beginning-of-macro))
4636 'pound)))))
4637
4638 (defun c-literal-limits (&optional lim near not-in-delimiter)
4639 "Return a cons of the beginning and end positions of the comment or
4640 string surrounding point (including both delimiters), or nil if point
4641 isn't in one. If LIM is non-nil, it's used as the \"safe\" position
4642 to start parsing from. If NEAR is non-nil, then the limits of any
4643 literal next to point is returned. \"Next to\" means there's only
4644 spaces and tabs between point and the literal. The search for such a
4645 literal is done first in forward direction. If NOT-IN-DELIMITER is
4646 non-nil, the case when point is inside a starting delimiter won't be
4647 recognized. This only has effect for comments which have starting
4648 delimiters with more than one character.
4649
4650 Note that this function might do hidden buffer changes. See the
4651 comment at the start of cc-engine.el for more info."
4652
4653 (save-excursion
4654 (let* ((pos (point))
4655 (lim (or lim (c-state-semi-safe-place pos)))
4656 (pp-to-lit (save-restriction
4657 (widen)
4658 (c-state-pp-to-literal lim pos not-in-delimiter)))
4659 (state (car pp-to-lit))
4660 (lit-limits (car (cddr pp-to-lit))))
4661
4662 (cond
4663 (lit-limits)
4664
4665 (near
4666 (goto-char pos)
4667 ;; Search forward for a literal.
4668 (skip-chars-forward " \t")
4669 (cond
4670 ((looking-at c-string-limit-regexp) ; String.
4671 (cons (point) (or (c-safe (c-forward-sexp 1) (point))
4672 (point-max))))
4673
4674 ((looking-at c-comment-start-regexp) ; Line or block comment.
4675 (cons (point) (progn (c-forward-single-comment) (point))))
4676
4677 (t
4678 ;; Search backward.
4679 (skip-chars-backward " \t")
4680
4681 (let ((end (point)) beg)
4682 (cond
4683 ((save-excursion
4684 (< (skip-syntax-backward c-string-syntax) 0)) ; String.
4685 (setq beg (c-safe (c-backward-sexp 1) (point))))
4686
4687 ((and (c-safe (forward-char -2) t)
4688 (looking-at "*/"))
4689 ;; Block comment. Due to the nature of line
4690 ;; comments, they will always be covered by the
4691 ;; normal case above.
4692 (goto-char end)
4693 (c-backward-single-comment)
4694 ;; If LIM is bogus, beg will be bogus.
4695 (setq beg (point))))
4696
4697 (if beg (cons beg end))))))
4698 ))))
4699
4700 ;; In case external callers use this; it did have a docstring.
4701 (defalias 'c-literal-limits-fast 'c-literal-limits)
4702
4703 (defun c-collect-line-comments (range)
4704 "If the argument is a cons of two buffer positions (such as returned by
4705 `c-literal-limits'), and that range contains a C++ style line comment,
4706 then an extended range is returned that contains all adjacent line
4707 comments (i.e. all comments that starts in the same column with no
4708 empty lines or non-whitespace characters between them). Otherwise the
4709 argument is returned.
4710
4711 Note that this function might do hidden buffer changes. See the
4712 comment at the start of cc-engine.el for more info."
4713
4714 (save-excursion
4715 (condition-case nil
4716 (if (and (consp range) (progn
4717 (goto-char (car range))
4718 (looking-at c-line-comment-starter)))
4719 (let ((col (current-column))
4720 (beg (point))
4721 (bopl (c-point 'bopl))
4722 (end (cdr range)))
4723 ;; Got to take care in the backward direction to handle
4724 ;; comments which are preceded by code.
4725 (while (and (c-backward-single-comment)
4726 (>= (point) bopl)
4727 (looking-at c-line-comment-starter)
4728 (= col (current-column)))
4729 (setq beg (point)
4730 bopl (c-point 'bopl)))
4731 (goto-char end)
4732 (while (and (progn (skip-chars-forward " \t")
4733 (looking-at c-line-comment-starter))
4734 (= col (current-column))
4735 (prog1 (zerop (forward-line 1))
4736 (setq end (point)))))
4737 (cons beg end))
4738 range)
4739 (error range))))
4740
4741 (defun c-literal-type (range)
4742 "Convenience function that given the result of `c-literal-limits',
4743 returns nil or the type of literal that the range surrounds, one
4744 of the symbols `c', `c++' or `string'. It's much faster than using
4745 `c-in-literal' and is intended to be used when you need both the
4746 type of a literal and its limits.
4747
4748 Note that this function might do hidden buffer changes. See the
4749 comment at the start of cc-engine.el for more info."
4750
4751 (if (consp range)
4752 (save-excursion
4753 (goto-char (car range))
4754 (cond ((looking-at c-string-limit-regexp) 'string)
4755 ((or (looking-at "//") ; c++ line comment
4756 (and (looking-at "\\s<") ; comment starter
4757 (looking-at "#"))) ; awk comment.
4758 'c++)
4759 (t 'c))) ; Assuming the range is valid.
4760 range))
4761
4762 (defsubst c-determine-limit-get-base (start try-size)
4763 ;; Get a "safe place" approximately TRY-SIZE characters before START.
4764 ;; This doesn't preserve point.
4765 (let* ((pos (max (- start try-size) (point-min)))
4766 (base (c-state-semi-safe-place pos))
4767 (s (parse-partial-sexp base pos)))
4768 (if (or (nth 4 s) (nth 3 s)) ; comment or string
4769 (nth 8 s)
4770 (point))))
4771
4772 (defun c-determine-limit (how-far-back &optional start try-size)
4773 ;; Return a buffer position HOW-FAR-BACK non-literal characters from START
4774 ;; (default point). This is done by going back further in the buffer then
4775 ;; searching forward for literals. The position found won't be in a
4776 ;; literal. We start searching for the sought position TRY-SIZE (default
4777 ;; twice HOW-FAR-BACK) bytes back from START. This function must be fast.
4778 ;; :-)
4779 (save-excursion
4780 (let* ((start (or start (point)))
4781 (try-size (or try-size (* 2 how-far-back)))
4782 (base (c-determine-limit-get-base start try-size))
4783 (pos base)
4784
4785 (s (parse-partial-sexp pos pos)) ; null state.
4786 stack elt size
4787 (count 0))
4788 (while (< pos start)
4789 ;; Move forward one literal each time round this loop.
4790 ;; Move forward to the start of a comment or string.
4791 (setq s (parse-partial-sexp
4792 pos
4793 start
4794 nil ; target-depth
4795 nil ; stop-before
4796 s ; state
4797 'syntax-table)) ; stop-comment
4798
4799 ;; Gather details of the non-literal-bit - starting pos and size.
4800 (setq size (- (if (or (nth 4 s) (nth 3 s))
4801 (nth 8 s)
4802 (point))
4803 pos))
4804 (if (> size 0)
4805 (setq stack (cons (cons pos size) stack)))
4806
4807 ;; Move forward to the end of the comment/string.
4808 (if (or (nth 4 s) (nth 3 s))
4809 (setq s (parse-partial-sexp
4810 (point)
4811 start
4812 nil ; target-depth
4813 nil ; stop-before
4814 s ; state
4815 'syntax-table))) ; stop-comment
4816 (setq pos (point)))
4817
4818 ;; Now try and find enough non-literal characters recorded on the stack.
4819 ;; Go back one recorded literal each time round this loop.
4820 (while (and (< count how-far-back)
4821 stack)
4822 (setq elt (car stack)
4823 stack (cdr stack))
4824 (setq count (+ count (cdr elt))))
4825
4826 ;; Have we found enough yet?
4827 (cond
4828 ((>= count how-far-back)
4829 (+ (car elt) (- count how-far-back)))
4830 ((eq base (point-min))
4831 (point-min))
4832 (t
4833 (c-determine-limit (- how-far-back count) base try-size))))))
4834
4835 (defun c-determine-+ve-limit (how-far &optional start-pos)
4836 ;; Return a buffer position about HOW-FAR non-literal characters forward
4837 ;; from START-POS (default point), which must not be inside a literal.
4838 (save-excursion
4839 (let ((pos (or start-pos (point)))
4840 (count how-far)
4841 (s (parse-partial-sexp (point) (point)))) ; null state
4842 (while (and (not (eobp))
4843 (> count 0))
4844 ;; Scan over counted characters.
4845 (setq s (parse-partial-sexp
4846 pos
4847 (min (+ pos count) (point-max))
4848 nil ; target-depth
4849 nil ; stop-before
4850 s ; state
4851 'syntax-table)) ; stop-comment
4852 (setq count (- count (- (point) pos) 1)
4853 pos (point))
4854 ;; Scan over literal characters.
4855 (if (nth 8 s)
4856 (setq s (parse-partial-sexp
4857 pos
4858 (point-max)
4859 nil ; target-depth
4860 nil ; stop-before
4861 s ; state
4862 'syntax-table) ; stop-comment
4863 pos (point))))
4864 (point))))
4865
4866 \f
4867 ;; `c-find-decl-spots' and accompanying stuff.
4868
4869 ;; Variables used in `c-find-decl-spots' to cache the search done for
4870 ;; the first declaration in the last call. When that function starts,
4871 ;; it needs to back up over syntactic whitespace to look at the last
4872 ;; token before the region being searched. That can sometimes cause
4873 ;; moves back and forth over a quite large region of comments and
4874 ;; macros, which would be repeated for each changed character when
4875 ;; we're called during fontification, since font-lock refontifies the
4876 ;; current line for each change. Thus it's worthwhile to cache the
4877 ;; first match.
4878 ;;
4879 ;; `c-find-decl-syntactic-pos' is a syntactically relevant position in
4880 ;; the syntactic whitespace less or equal to some start position.
4881 ;; There's no cached value if it's nil.
4882 ;;
4883 ;; `c-find-decl-match-pos' is the match position if
4884 ;; `c-find-decl-prefix-search' matched before the syntactic whitespace
4885 ;; at `c-find-decl-syntactic-pos', or nil if there's no such match.
4886 (defvar c-find-decl-syntactic-pos nil)
4887 (make-variable-buffer-local 'c-find-decl-syntactic-pos)
4888 (defvar c-find-decl-match-pos nil)
4889 (make-variable-buffer-local 'c-find-decl-match-pos)
4890
4891 (defsubst c-invalidate-find-decl-cache (change-min-pos)
4892 (and c-find-decl-syntactic-pos
4893 (< change-min-pos c-find-decl-syntactic-pos)
4894 (setq c-find-decl-syntactic-pos nil)))
4895
4896 ; (defface c-debug-decl-spot-face
4897 ; '((t (:background "Turquoise")))
4898 ; "Debug face to mark the spots where `c-find-decl-spots' stopped.")
4899 ; (defface c-debug-decl-sws-face
4900 ; '((t (:background "Khaki")))
4901 ; "Debug face to mark the syntactic whitespace between the declaration
4902 ; spots and the preceding token end.")
4903
4904 (defmacro c-debug-put-decl-spot-faces (match-pos decl-pos)
4905 (when (facep 'c-debug-decl-spot-face)
4906 `(c-save-buffer-state ((match-pos ,match-pos) (decl-pos ,decl-pos))
4907 (c-debug-add-face (max match-pos (point-min)) decl-pos
4908 'c-debug-decl-sws-face)
4909 (c-debug-add-face decl-pos (min (1+ decl-pos) (point-max))
4910 'c-debug-decl-spot-face))))
4911 (defmacro c-debug-remove-decl-spot-faces (beg end)
4912 (when (facep 'c-debug-decl-spot-face)
4913 `(c-save-buffer-state ()
4914 (c-debug-remove-face ,beg ,end 'c-debug-decl-spot-face)
4915 (c-debug-remove-face ,beg ,end 'c-debug-decl-sws-face))))
4916
4917 (defmacro c-find-decl-prefix-search ()
4918 ;; Macro used inside `c-find-decl-spots'. It ought to be a defun,
4919 ;; but it contains lots of free variables that refer to things
4920 ;; inside `c-find-decl-spots'. The point is left at `cfd-match-pos'
4921 ;; if there is a match, otherwise at `cfd-limit'.
4922 ;;
4923 ;; The macro moves point forward to the next putative start of a declaration
4924 ;; or cfd-limit. This decl start is the next token after a "declaration
4925 ;; prefix". The declaration prefix is the earlier of `cfd-prop-match' and
4926 ;; `cfd-re-match'. `cfd-match-pos' is set to the decl prefix.
4927 ;;
4928 ;; This macro might do hidden buffer changes.
4929
4930 '(progn
4931 ;; Find the next property match position if we haven't got one already.
4932 (unless cfd-prop-match
4933 (save-excursion
4934 (while (progn
4935 (goto-char (c-next-single-property-change
4936 (point) 'c-type nil cfd-limit))
4937 (and (< (point) cfd-limit)
4938 (not (eq (c-get-char-property (1- (point)) 'c-type)
4939 'c-decl-end)))))
4940 (setq cfd-prop-match (point))))
4941
4942 ;; Find the next `c-decl-prefix-or-start-re' match if we haven't
4943 ;; got one already.
4944 (unless cfd-re-match
4945
4946 (if (> cfd-re-match-end (point))
4947 (goto-char cfd-re-match-end))
4948
4949 ;; Each time round, the next `while' moves forward over a pseudo match
4950 ;; of `c-decl-prefix-or-start-re' which is either inside a literal, or
4951 ;; is a ":" not preceded by "public", etc.. `cfd-re-match' and
4952 ;; `cfd-re-match-end' get set.
4953 (while
4954 (progn
4955 (setq cfd-re-match-end (re-search-forward c-decl-prefix-or-start-re
4956 cfd-limit 'move))
4957 (cond
4958 ((null cfd-re-match-end)
4959 ;; No match. Finish up and exit the loop.
4960 (setq cfd-re-match cfd-limit)
4961 nil)
4962 ((c-got-face-at
4963 (if (setq cfd-re-match (match-end 1))
4964 ;; Matched the end of a token preceding a decl spot.
4965 (progn
4966 (goto-char cfd-re-match)
4967 (1- cfd-re-match))
4968 ;; Matched a token that start a decl spot.
4969 (goto-char (match-beginning 0))
4970 (point))
4971 c-literal-faces)
4972 ;; Pseudo match inside a comment or string literal. Skip out
4973 ;; of comments and string literals.
4974 (while (progn
4975 (goto-char (c-next-single-property-change
4976 (point) 'face nil cfd-limit))
4977 (and (< (point) cfd-limit)
4978 (c-got-face-at (point) c-literal-faces))))
4979 t) ; Continue the loop over pseudo matches.
4980 ((and (match-string 1)
4981 (string= (match-string 1) ":")
4982 (save-excursion
4983 (or (/= (c-backward-token-2 2) 0) ; no search limit. :-(
4984 (not (looking-at c-decl-start-colon-kwd-re)))))
4985 ;; Found a ":" which isn't part of "public:", etc.
4986 t)
4987 (t nil)))) ;; Found a real match. Exit the pseudo-match loop.
4988
4989 ;; If our match was at the decl start, we have to back up over the
4990 ;; preceding syntactic ws to set `cfd-match-pos' and to catch
4991 ;; any decl spots in the syntactic ws.
4992 (unless cfd-re-match
4993 (c-backward-syntactic-ws)
4994 (setq cfd-re-match (point))))
4995
4996 ;; Choose whichever match is closer to the start.
4997 (if (< cfd-re-match cfd-prop-match)
4998 (setq cfd-match-pos cfd-re-match
4999 cfd-re-match nil)
5000 (setq cfd-match-pos cfd-prop-match
5001 cfd-prop-match nil))
5002
5003 (goto-char cfd-match-pos)
5004
5005 (when (< cfd-match-pos cfd-limit)
5006 ;; Skip forward past comments only so we don't skip macros.
5007 (c-forward-comments)
5008 ;; Set the position to continue at. We can avoid going over
5009 ;; the comments skipped above a second time, but it's possible
5010 ;; that the comment skipping has taken us past `cfd-prop-match'
5011 ;; since the property might be used inside comments.
5012 (setq cfd-continue-pos (if cfd-prop-match
5013 (min cfd-prop-match (point))
5014 (point))))))
5015
5016 (defun c-find-decl-spots (cfd-limit cfd-decl-re cfd-face-checklist cfd-fun)
5017 ;; Call CFD-FUN for each possible spot for a declaration, cast or
5018 ;; label from the point to CFD-LIMIT.
5019 ;;
5020 ;; CFD-FUN is called with point at the start of the spot. It's passed two
5021 ;; arguments: The first is the end position of the token preceding the spot,
5022 ;; or 0 for the implicit match at bob. The second is a flag that is t when
5023 ;; the match is inside a macro. Point should be moved forward by at least
5024 ;; one token.
5025 ;;
5026 ;; If CFD-FUN adds `c-decl-end' properties somewhere below the current spot,
5027 ;; it should return non-nil to ensure that the next search will find them.
5028 ;;
5029 ;; Such a spot is:
5030 ;; o The first token after bob.
5031 ;; o The first token after the end of submatch 1 in
5032 ;; `c-decl-prefix-or-start-re' when that submatch matches. This
5033 ;; submatch is typically a (L or R) brace or paren, a ;, or a ,.
5034 ;; o The start of each `c-decl-prefix-or-start-re' match when
5035 ;; submatch 1 doesn't match. This is, for example, the keyword
5036 ;; "class" in Pike.
5037 ;; o The start of a previously recognized declaration; "recognized"
5038 ;; means that the last char of the previous token has a `c-type'
5039 ;; text property with the value `c-decl-end'; this only holds
5040 ;; when `c-type-decl-end-used' is set.
5041 ;;
5042 ;; Only a spot that match CFD-DECL-RE and whose face is in the
5043 ;; CFD-FACE-CHECKLIST list causes CFD-FUN to be called. The face
5044 ;; check is disabled if CFD-FACE-CHECKLIST is nil.
5045 ;;
5046 ;; If the match is inside a macro then the buffer is narrowed to the
5047 ;; end of it, so that CFD-FUN can investigate the following tokens
5048 ;; without matching something that begins inside a macro and ends
5049 ;; outside it. It's to avoid this work that the CFD-DECL-RE and
5050 ;; CFD-FACE-CHECKLIST checks exist.
5051 ;;
5052 ;; The spots are visited approximately in order from top to bottom.
5053 ;; It's however the positions where `c-decl-prefix-or-start-re'
5054 ;; matches and where `c-decl-end' properties are found that are in
5055 ;; order. Since the spots often are at the following token, they
5056 ;; might be visited out of order insofar as more spots are reported
5057 ;; later on within the syntactic whitespace between the match
5058 ;; positions and their spots.
5059 ;;
5060 ;; It's assumed that comments and strings are fontified in the
5061 ;; searched range.
5062 ;;
5063 ;; This is mainly used in fontification, and so has an elaborate
5064 ;; cache to handle repeated calls from the same start position; see
5065 ;; the variables above.
5066 ;;
5067 ;; All variables in this function begin with `cfd-' to avoid name
5068 ;; collision with the (dynamically bound) variables used in CFD-FUN.
5069 ;;
5070 ;; This function might do hidden buffer changes.
5071
5072 (let ((cfd-start-pos (point)) ; never changed
5073 (cfd-buffer-end (point-max))
5074 ;; The end of the token preceding the decl spot last found
5075 ;; with `c-decl-prefix-or-start-re'. `cfd-limit' if there's
5076 ;; no match.
5077 cfd-re-match
5078 ;; The end position of the last `c-decl-prefix-or-start-re'
5079 ;; match. If this is greater than `cfd-continue-pos', the
5080 ;; next regexp search is started here instead.
5081 (cfd-re-match-end (point-min))
5082 ;; The end of the last `c-decl-end' found by
5083 ;; `c-find-decl-prefix-search'. `cfd-limit' if there's no
5084 ;; match. If searching for the property isn't needed then we
5085 ;; disable it by setting it to `cfd-limit' directly.
5086 (cfd-prop-match (unless c-type-decl-end-used cfd-limit))
5087 ;; The end of the token preceding the decl spot last found by
5088 ;; `c-find-decl-prefix-search'. 0 for the implicit match at
5089 ;; bob. `cfd-limit' if there's no match. In other words,
5090 ;; this is the minimum of `cfd-re-match' and `cfd-prop-match'.
5091 (cfd-match-pos cfd-limit)
5092 ;; The position to continue searching at.
5093 cfd-continue-pos
5094 ;; The position of the last "real" token we've stopped at.
5095 ;; This can be greater than `cfd-continue-pos' when we get
5096 ;; hits inside macros or at `c-decl-end' positions inside
5097 ;; comments.
5098 (cfd-token-pos 0)
5099 ;; The end position of the last entered macro.
5100 (cfd-macro-end 0))
5101
5102 ;; Initialize by finding a syntactically relevant start position
5103 ;; before the point, and do the first `c-decl-prefix-or-start-re'
5104 ;; search unless we're at bob.
5105
5106 (let (start-in-literal start-in-macro syntactic-pos)
5107 ;; Must back up a bit since we look for the end of the previous
5108 ;; statement or declaration, which is earlier than the first
5109 ;; returned match.
5110
5111 ;; This `cond' moves back over any literals or macros. It has special
5112 ;; handling for when the region being searched is entirely within a
5113 ;; macro. It sets `cfd-continue-pos' (unless we've reached
5114 ;; `cfd-limit').
5115 (cond
5116 ;; First we need to move to a syntactically relevant position.
5117 ;; Begin by backing out of comment or string literals.
5118 ;;
5119 ;; This arm of the cond actually triggers if we're in a literal,
5120 ;; and cfd-limit is at most at BONL.
5121 ((and
5122 ;; This arm of the `and' moves backwards out of a literal when
5123 ;; the face at point is a literal face. In this case, its value
5124 ;; is always non-nil.
5125 (when (c-got-face-at (point) c-literal-faces)
5126 ;; Try to use the faces to back up to the start of the
5127 ;; literal. FIXME: What if the point is on a declaration
5128 ;; inside a comment?
5129 (while (and (not (bobp))
5130 (c-got-face-at (1- (point)) c-literal-faces))
5131 (goto-char (previous-single-property-change
5132 (point) 'face nil (point-min))))
5133
5134 ;; XEmacs doesn't fontify the quotes surrounding string
5135 ;; literals.
5136 (and (featurep 'xemacs)
5137 (eq (get-text-property (point) 'face)
5138 'font-lock-string-face)
5139 (not (bobp))
5140 (progn (backward-char)
5141 (not (looking-at c-string-limit-regexp)))
5142 (forward-char))
5143
5144 ;; Don't trust the literal to contain only literal faces
5145 ;; (the font lock package might not have fontified the
5146 ;; start of it at all, for instance) so check that we have
5147 ;; arrived at something that looks like a start or else
5148 ;; resort to `c-literal-limits'.
5149 (unless (looking-at c-literal-start-regexp)
5150 (let ((range (c-literal-limits)))
5151 (if range (goto-char (car range)))))
5152
5153 (setq start-in-literal (point))) ; end of `and' arm.
5154
5155 ;; The start is in a literal. If the limit is in the same
5156 ;; one we don't have to find a syntactic position etc. We
5157 ;; only check that if the limit is at or before bonl to save
5158 ;; time; it covers the by far most common case when font-lock
5159 ;; refontifies the current line only.
5160 (<= cfd-limit (c-point 'bonl cfd-start-pos))
5161 (save-excursion
5162 (goto-char cfd-start-pos)
5163 (while (progn
5164 (goto-char (c-next-single-property-change
5165 (point) 'face nil cfd-limit))
5166 (and (< (point) cfd-limit)
5167 (c-got-face-at (point) c-literal-faces))))
5168 (= (point) cfd-limit))) ; end of `cond' arm condition
5169
5170 ;; Completely inside a literal. Set up variables to trig the
5171 ;; (< cfd-continue-pos cfd-start-pos) case below and it'll
5172 ;; find a suitable start position.
5173 (setq cfd-continue-pos start-in-literal)) ; end of `cond' arm
5174
5175 ;; Check if the region might be completely inside a macro, to
5176 ;; optimize that like the completely-inside-literal above.
5177 ((save-excursion
5178 (and (= (forward-line 1) 0)
5179 (bolp) ; forward-line has funny behavior at eob.
5180 (>= (point) cfd-limit)
5181 (progn (backward-char)
5182 (eq (char-before) ?\\))))
5183 ;; (Maybe) completely inside a macro. Only need to trig the
5184 ;; (< cfd-continue-pos cfd-start-pos) case below to make it
5185 ;; set things up.
5186 (setq cfd-continue-pos (1- cfd-start-pos)
5187 start-in-macro t))
5188
5189 ;; The default arm of the `cond' moves back over any macro we're in
5190 ;; and over any syntactic WS. It sets `c-find-decl-syntactic-pos'.
5191 (t
5192 ;; Back out of any macro so we don't miss any declaration
5193 ;; that could follow after it.
5194 (when (c-beginning-of-macro)
5195 (setq start-in-macro t))
5196
5197 ;; Now we're at a proper syntactically relevant position so we
5198 ;; can use the cache. But first clear it if it applied
5199 ;; further down.
5200 (c-invalidate-find-decl-cache cfd-start-pos)
5201
5202 (setq syntactic-pos (point))
5203 (unless (eq syntactic-pos c-find-decl-syntactic-pos)
5204 ;; Don't have to do this if the cache is relevant here,
5205 ;; typically if the same line is refontified again. If
5206 ;; we're just some syntactic whitespace further down we can
5207 ;; still use the cache to limit the skipping.
5208 (c-backward-syntactic-ws c-find-decl-syntactic-pos))
5209
5210 ;; If we hit `c-find-decl-syntactic-pos' and
5211 ;; `c-find-decl-match-pos' is set then we install the cached
5212 ;; values. If we hit `c-find-decl-syntactic-pos' and
5213 ;; `c-find-decl-match-pos' is nil then we know there's no decl
5214 ;; prefix in the whitespace before `c-find-decl-syntactic-pos'
5215 ;; and so we can continue the search from this point. If we
5216 ;; didn't hit `c-find-decl-syntactic-pos' then we're now in
5217 ;; the right spot to begin searching anyway.
5218 (if (and (eq (point) c-find-decl-syntactic-pos)
5219 c-find-decl-match-pos)
5220 (setq cfd-match-pos c-find-decl-match-pos
5221 cfd-continue-pos syntactic-pos)
5222
5223 (setq c-find-decl-syntactic-pos syntactic-pos)
5224
5225 (when (if (bobp)
5226 ;; Always consider bob a match to get the first
5227 ;; declaration in the file. Do this separately instead of
5228 ;; letting `c-decl-prefix-or-start-re' match bob, so that
5229 ;; regexp always can consume at least one character to
5230 ;; ensure that we won't get stuck in an infinite loop.
5231 (setq cfd-re-match 0)
5232 (backward-char)
5233 (c-beginning-of-current-token)
5234 (< (point) cfd-limit))
5235 ;; Do an initial search now. In the bob case above it's
5236 ;; only done to search for a `c-decl-end' spot.
5237 (c-find-decl-prefix-search)) ; sets cfd-continue-pos
5238
5239 (setq c-find-decl-match-pos (and (< cfd-match-pos cfd-start-pos)
5240 cfd-match-pos))))) ; end of `cond'
5241
5242 ;; Advance `cfd-continue-pos' if it's before the start position.
5243 ;; The closest continue position that might have effect at or
5244 ;; after the start depends on what we started in. This also
5245 ;; finds a suitable start position in the special cases when the
5246 ;; region is completely within a literal or macro.
5247 (when (and cfd-continue-pos (< cfd-continue-pos cfd-start-pos))
5248
5249 (cond
5250 (start-in-macro
5251 ;; If we're in a macro then it's the closest preceding token
5252 ;; in the macro. Check this before `start-in-literal',
5253 ;; since if we're inside a literal in a macro, the preceding
5254 ;; token is earlier than any `c-decl-end' spot inside the
5255 ;; literal (comment).
5256 (goto-char (or start-in-literal cfd-start-pos))
5257 ;; The only syntactic ws in macros are comments.
5258 (c-backward-comments)
5259 (backward-char)
5260 (c-beginning-of-current-token))
5261
5262 (start-in-literal
5263 ;; If we're in a comment it can only be the closest
5264 ;; preceding `c-decl-end' position within that comment, if
5265 ;; any. Go back to the beginning of such a property so that
5266 ;; `c-find-decl-prefix-search' will find the end of it.
5267 ;; (Can't stop at the end and install it directly on
5268 ;; `cfd-prop-match' since that variable might be cleared
5269 ;; after `cfd-fun' below.)
5270 ;;
5271 ;; Note that if the literal is a string then the property
5272 ;; search will simply skip to the beginning of it right
5273 ;; away.
5274 (if (not c-type-decl-end-used)
5275 (goto-char start-in-literal)
5276 (goto-char cfd-start-pos)
5277 (while (progn
5278 (goto-char (previous-single-property-change
5279 (point) 'c-type nil start-in-literal))
5280 (and (> (point) start-in-literal)
5281 (not (eq (c-get-char-property (point) 'c-type)
5282 'c-decl-end))))))
5283
5284 (when (= (point) start-in-literal)
5285 ;; Didn't find any property inside the comment, so we can
5286 ;; skip it entirely. (This won't skip past a string, but
5287 ;; that'll be handled quickly by the next
5288 ;; `c-find-decl-prefix-search' anyway.)
5289 (c-forward-single-comment)
5290 (if (> (point) cfd-limit)
5291 (goto-char cfd-limit))))
5292
5293 (t
5294 ;; If we started in normal code, the only match that might
5295 ;; apply before the start is what we already got in
5296 ;; `cfd-match-pos' so we can continue at the start position.
5297 ;; (Note that we don't get here if the first match is below
5298 ;; it.)
5299 (goto-char cfd-start-pos))) ; end of `cond'
5300
5301 ;; Delete found matches if they are before our new continue
5302 ;; position, so that `c-find-decl-prefix-search' won't back up
5303 ;; to them later on.
5304 (setq cfd-continue-pos (point))
5305 (when (and cfd-re-match (< cfd-re-match cfd-continue-pos))
5306 (setq cfd-re-match nil))
5307 (when (and cfd-prop-match (< cfd-prop-match cfd-continue-pos))
5308 (setq cfd-prop-match nil))) ; end of `when'
5309
5310 (if syntactic-pos
5311 ;; This is the normal case and we got a proper syntactic
5312 ;; position. If there's a match then it's always outside
5313 ;; macros and comments, so advance to the next token and set
5314 ;; `cfd-token-pos'. The loop below will later go back using
5315 ;; `cfd-continue-pos' to fix declarations inside the
5316 ;; syntactic ws.
5317 (when (and cfd-match-pos (< cfd-match-pos syntactic-pos))
5318 (goto-char syntactic-pos)
5319 (c-forward-syntactic-ws)
5320 (and cfd-continue-pos
5321 (< cfd-continue-pos (point))
5322 (setq cfd-token-pos (point))))
5323
5324 ;; Have one of the special cases when the region is completely
5325 ;; within a literal or macro. `cfd-continue-pos' is set to a
5326 ;; good start position for the search, so do it.
5327 (c-find-decl-prefix-search)))
5328
5329 ;; Now loop, one decl spot per iteration. We already have the first
5330 ;; match in `cfd-match-pos'.
5331 (while (progn
5332 ;; Go forward over "false matches", one per iteration.
5333 (while (and
5334 (< cfd-match-pos cfd-limit)
5335
5336 (or
5337 ;; Kludge to filter out matches on the "<" that
5338 ;; aren't open parens, for the sake of languages
5339 ;; that got `c-recognize-<>-arglists' set.
5340 (and (eq (char-before cfd-match-pos) ?<)
5341 (not (c-get-char-property (1- cfd-match-pos)
5342 'syntax-table)))
5343
5344 ;; If `cfd-continue-pos' is less or equal to
5345 ;; `cfd-token-pos', we've got a hit inside a macro
5346 ;; that's in the syntactic whitespace before the last
5347 ;; "real" declaration we've checked. If they're equal
5348 ;; we've arrived at the declaration a second time, so
5349 ;; there's nothing to do.
5350 (= cfd-continue-pos cfd-token-pos)
5351
5352 (progn
5353 ;; If `cfd-continue-pos' is less than `cfd-token-pos'
5354 ;; we're still searching for declarations embedded in
5355 ;; the syntactic whitespace. In that case we need
5356 ;; only to skip comments and not macros, since they
5357 ;; can't be nested, and that's already been done in
5358 ;; `c-find-decl-prefix-search'.
5359 (when (> cfd-continue-pos cfd-token-pos)
5360 (c-forward-syntactic-ws)
5361 (setq cfd-token-pos (point)))
5362
5363 ;; Continue if the following token fails the
5364 ;; CFD-DECL-RE and CFD-FACE-CHECKLIST checks.
5365 (when (or (>= (point) cfd-limit)
5366 (not (looking-at cfd-decl-re))
5367 (and cfd-face-checklist
5368 (not (c-got-face-at
5369 (point) cfd-face-checklist))))
5370 (goto-char cfd-continue-pos)
5371 t)))
5372
5373 (< (point) cfd-limit)) ; end of "false matches" condition
5374 (c-find-decl-prefix-search)) ; end of "false matches" loop
5375
5376 (< (point) cfd-limit)) ; end of condition for "decl-spot" while
5377
5378 (when (and
5379 (>= (point) cfd-start-pos)
5380
5381 (progn
5382 ;; Narrow to the end of the macro if we got a hit inside
5383 ;; one, to avoid recognizing things that start inside the
5384 ;; macro and end outside it.
5385 (when (> cfd-match-pos cfd-macro-end)
5386 ;; Not in the same macro as in the previous round.
5387 (save-excursion
5388 (goto-char cfd-match-pos)
5389 (setq cfd-macro-end
5390 (if (save-excursion (and (c-beginning-of-macro)
5391 (< (point) cfd-match-pos)))
5392 (progn (c-end-of-macro)
5393 (point))
5394 0))))
5395
5396 (if (zerop cfd-macro-end)
5397 t
5398 (if (> cfd-macro-end (point))
5399 (progn (narrow-to-region (point-min) cfd-macro-end)
5400 t)
5401 ;; The matched token was the last thing in the macro,
5402 ;; so the whole match is bogus.
5403 (setq cfd-macro-end 0)
5404 nil)))) ; end of when condition
5405
5406 (c-debug-put-decl-spot-faces cfd-match-pos (point))
5407 (if (funcall cfd-fun cfd-match-pos (/= cfd-macro-end 0))
5408 (setq cfd-prop-match nil))
5409
5410 (when (/= cfd-macro-end 0)
5411 ;; Restore limits if we did macro narrowing above.
5412 (narrow-to-region (point-min) cfd-buffer-end)))
5413
5414 (goto-char cfd-continue-pos)
5415 (if (= cfd-continue-pos cfd-limit)
5416 (setq cfd-match-pos cfd-limit)
5417 (c-find-decl-prefix-search))))) ; Moves point, sets cfd-continue-pos,
5418 ; cfd-match-pos, etc.
5419
5420 \f
5421 ;; A cache for found types.
5422
5423 ;; Buffer local variable that contains an obarray with the types we've
5424 ;; found. If a declaration is recognized somewhere we record the
5425 ;; fully qualified identifier in it to recognize it as a type
5426 ;; elsewhere in the file too. This is not accurate since we do not
5427 ;; bother with the scoping rules of the languages, but in practice the
5428 ;; same name is seldom used as both a type and something else in a
5429 ;; file, and we only use this as a last resort in ambiguous cases (see
5430 ;; `c-forward-decl-or-cast-1').
5431 ;;
5432 ;; Not every type need be in this cache. However, things which have
5433 ;; ceased to be types must be removed from it.
5434 ;;
5435 ;; Template types in C++ are added here too but with the template
5436 ;; arglist replaced with "<>" in references or "<" for the one in the
5437 ;; primary type. E.g. the type "Foo<A,B>::Bar<C>" is stored as
5438 ;; "Foo<>::Bar<". This avoids storing very long strings (since C++
5439 ;; template specs can be fairly sized programs in themselves) and
5440 ;; improves the hit ratio (it's a type regardless of the template
5441 ;; args; it's just not the same type, but we're only interested in
5442 ;; recognizing types, not telling distinct types apart). Note that
5443 ;; template types in references are added here too; from the example
5444 ;; above there will also be an entry "Foo<".
5445 (defvar c-found-types nil)
5446 (make-variable-buffer-local 'c-found-types)
5447
5448 (defsubst c-clear-found-types ()
5449 ;; Clears `c-found-types'.
5450 (setq c-found-types (make-vector 53 0)))
5451
5452 (defun c-add-type (from to)
5453 ;; Add the given region as a type in `c-found-types'. If the region
5454 ;; doesn't match an existing type but there is a type which is equal
5455 ;; to the given one except that the last character is missing, then
5456 ;; the shorter type is removed. That's done to avoid adding all
5457 ;; prefixes of a type as it's being entered and font locked. This
5458 ;; doesn't cover cases like when characters are removed from a type
5459 ;; or added in the middle. We'd need the position of point when the
5460 ;; font locking is invoked to solve this well.
5461 ;;
5462 ;; This function might do hidden buffer changes.
5463 (let ((type (c-syntactic-content from to c-recognize-<>-arglists)))
5464 (unless (intern-soft type c-found-types)
5465 (unintern (substring type 0 -1) c-found-types)
5466 (intern type c-found-types))))
5467
5468 (defun c-unfind-type (name)
5469 ;; Remove the "NAME" from c-found-types, if present.
5470 (unintern name c-found-types))
5471
5472 (defsubst c-check-type (from to)
5473 ;; Return non-nil if the given region contains a type in
5474 ;; `c-found-types'.
5475 ;;
5476 ;; This function might do hidden buffer changes.
5477 (intern-soft (c-syntactic-content from to c-recognize-<>-arglists)
5478 c-found-types))
5479
5480 (defun c-list-found-types ()
5481 ;; Return all the types in `c-found-types' as a sorted list of
5482 ;; strings.
5483 (let (type-list)
5484 (mapatoms (lambda (type)
5485 (setq type-list (cons (symbol-name type)
5486 type-list)))
5487 c-found-types)
5488 (sort type-list 'string-lessp)))
5489
5490 ;; Shut up the byte compiler.
5491 (defvar c-maybe-stale-found-type)
5492
5493 (defun c-trim-found-types (beg end old-len)
5494 ;; An after change function which, in conjunction with the info in
5495 ;; c-maybe-stale-found-type (set in c-before-change), removes a type
5496 ;; from `c-found-types', should this type have become stale. For
5497 ;; example, this happens to "foo" when "foo \n bar();" becomes
5498 ;; "foo(); \n bar();". Such stale types, if not removed, foul up
5499 ;; the fontification.
5500 ;;
5501 ;; Have we, perhaps, added non-ws characters to the front/back of a found
5502 ;; type?
5503 (when (> end beg)
5504 (save-excursion
5505 (when (< end (point-max))
5506 (goto-char end)
5507 (if (and (c-beginning-of-current-token) ; only moves when we started in the middle
5508 (progn (goto-char end)
5509 (c-end-of-current-token)))
5510 (c-unfind-type (buffer-substring-no-properties
5511 end (point)))))
5512 (when (> beg (point-min))
5513 (goto-char beg)
5514 (if (and (c-end-of-current-token) ; only moves when we started in the middle
5515 (progn (goto-char beg)
5516 (c-beginning-of-current-token)))
5517 (c-unfind-type (buffer-substring-no-properties
5518 (point) beg))))))
5519
5520 (if c-maybe-stale-found-type ; e.g. (c-decl-id-start "foo" 97 107 " (* ooka) " "o")
5521 (cond
5522 ;; Changing the amount of (already existing) whitespace - don't do anything.
5523 ((and (c-partial-ws-p beg end)
5524 (or (= beg end) ; removal of WS
5525 (string-match "^[ \t\n\r\f\v]*$" (nth 5 c-maybe-stale-found-type)))))
5526
5527 ;; The syntactic relationship which defined a "found type" has been
5528 ;; destroyed.
5529 ((eq (car c-maybe-stale-found-type) 'c-decl-id-start)
5530 (c-unfind-type (cadr c-maybe-stale-found-type)))
5531 ;; ((eq (car c-maybe-stale-found-type) 'c-decl-type-start) FIXME!!!
5532 )))
5533
5534 \f
5535 ;; Setting and removing syntax properties on < and > in languages (C++
5536 ;; and Java) where they can be template/generic delimiters as well as
5537 ;; their normal meaning of "less/greater than".
5538
5539 ;; Normally, < and > have syntax 'punctuation'. When they are found to
5540 ;; be delimiters, they are marked as such with the category properties
5541 ;; c-<-as-paren-syntax, c->-as-paren-syntax respectively.
5542
5543 ;; STRATEGY:
5544 ;;
5545 ;; It is impossible to determine with certainty whether a <..> pair in
5546 ;; C++ is two comparison operators or is template delimiters, unless
5547 ;; one duplicates a lot of a C++ compiler. For example, the following
5548 ;; code fragment:
5549 ;;
5550 ;; foo (a < b, c > d) ;
5551 ;;
5552 ;; could be a function call with two integer parameters (each a
5553 ;; relational expression), or it could be a constructor for class foo
5554 ;; taking one parameter d of templated type "a < b, c >". They are
5555 ;; somewhat easier to distinguish in Java.
5556 ;;
5557 ;; The strategy now (2010-01) adopted is to mark and unmark < and
5558 ;; > IN MATCHING PAIRS ONLY. [Previously, they were marked
5559 ;; individually when their context so indicated. This gave rise to
5560 ;; intractable problems when one of a matching pair was deleted, or
5561 ;; pulled into a literal.]
5562 ;;
5563 ;; At each buffer change, the syntax-table properties are removed in a
5564 ;; before-change function and reapplied, when needed, in an
5565 ;; after-change function. It is far more important that the
5566 ;; properties get removed when they they are spurious than that they
5567 ;; be present when wanted.
5568 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5569 (defun c-clear-<-pair-props (&optional pos)
5570 ;; POS (default point) is at a < character. If it is marked with
5571 ;; open paren syntax-table text property, remove the property,
5572 ;; together with the close paren property on the matching > (if
5573 ;; any).
5574 (save-excursion
5575 (if pos
5576 (goto-char pos)
5577 (setq pos (point)))
5578 (when (equal (c-get-char-property (point) 'syntax-table)
5579 c-<-as-paren-syntax)
5580 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5581 (c-go-list-forward))
5582 (when (equal (c-get-char-property (1- (point)) 'syntax-table)
5583 c->-as-paren-syntax) ; should always be true.
5584 (c-unmark-<->-as-paren (1- (point))))
5585 (c-unmark-<->-as-paren pos))))
5586
5587 (defun c-clear->-pair-props (&optional pos)
5588 ;; POS (default point) is at a > character. If it is marked with
5589 ;; close paren syntax-table property, remove the property, together
5590 ;; with the open paren property on the matching < (if any).
5591 (save-excursion
5592 (if pos
5593 (goto-char pos)
5594 (setq pos (point)))
5595 (when (equal (c-get-char-property (point) 'syntax-table)
5596 c->-as-paren-syntax)
5597 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5598 (c-go-up-list-backward))
5599 (when (equal (c-get-char-property (point) 'syntax-table)
5600 c-<-as-paren-syntax) ; should always be true.
5601 (c-unmark-<->-as-paren (point)))
5602 (c-unmark-<->-as-paren pos))))
5603
5604 (defun c-clear-<>-pair-props (&optional pos)
5605 ;; POS (default point) is at a < or > character. If it has an
5606 ;; open/close paren syntax-table property, remove this property both
5607 ;; from the current character and its partner (which will also be
5608 ;; thusly marked).
5609 (cond
5610 ((eq (char-after) ?\<)
5611 (c-clear-<-pair-props pos))
5612 ((eq (char-after) ?\>)
5613 (c-clear->-pair-props pos))
5614 (t (c-benign-error
5615 "c-clear-<>-pair-props called from wrong position"))))
5616
5617 (defun c-clear-<-pair-props-if-match-after (lim &optional pos)
5618 ;; POS (default point) is at a < character. If it is both marked
5619 ;; with open/close paren syntax-table property, and has a matching >
5620 ;; (also marked) which is after LIM, remove the property both from
5621 ;; the current > and its partner. Return t when this happens, nil
5622 ;; when it doesn't.
5623 (save-excursion
5624 (if pos
5625 (goto-char pos)
5626 (setq pos (point)))
5627 (when (equal (c-get-char-property (point) 'syntax-table)
5628 c-<-as-paren-syntax)
5629 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5630 (c-go-list-forward))
5631 (when (and (>= (point) lim)
5632 (equal (c-get-char-property (1- (point)) 'syntax-table)
5633 c->-as-paren-syntax)) ; should always be true.
5634 (c-unmark-<->-as-paren (1- (point)))
5635 (c-unmark-<->-as-paren pos))
5636 t)))
5637
5638 (defun c-clear->-pair-props-if-match-before (lim &optional pos)
5639 ;; POS (default point) is at a > character. If it is both marked
5640 ;; with open/close paren syntax-table property, and has a matching <
5641 ;; (also marked) which is before LIM, remove the property both from
5642 ;; the current < and its partner. Return t when this happens, nil
5643 ;; when it doesn't.
5644 (save-excursion
5645 (if pos
5646 (goto-char pos)
5647 (setq pos (point)))
5648 (when (equal (c-get-char-property (point) 'syntax-table)
5649 c->-as-paren-syntax)
5650 (with-syntax-table c-no-parens-syntax-table ; ignore unbalanced [,{,(,..
5651 (c-go-up-list-backward))
5652 (when (and (<= (point) lim)
5653 (equal (c-get-char-property (point) 'syntax-table)
5654 c-<-as-paren-syntax)) ; should always be true.
5655 (c-unmark-<->-as-paren (point))
5656 (c-unmark-<->-as-paren pos))
5657 t)))
5658
5659 ;; Set by c-common-init in cc-mode.el.
5660 (defvar c-new-BEG)
5661 (defvar c-new-END)
5662 ;; Set by c-after-change in cc-mode.el.
5663 (defvar c-old-BEG)
5664 (defvar c-old-END)
5665
5666 (defun c-before-change-check-<>-operators (beg end)
5667 ;; Unmark certain pairs of "< .... >" which are currently marked as
5668 ;; template/generic delimiters. (This marking is via syntax-table text
5669 ;; properties), and expand the (c-new-BEG c-new-END) region to include all
5670 ;; unmarked < and > operators within the certain bounds (see below).
5671 ;;
5672 ;; These pairs are those which are in the current "statement" (i.e.,
5673 ;; the region between the {, }, or ; before BEG and the one after
5674 ;; END), and which enclose any part of the interval (BEG END).
5675 ;;
5676 ;; Note that in C++ (?and Java), template/generic parens cannot
5677 ;; enclose a brace or semicolon, so we use these as bounds on the
5678 ;; region we must work on.
5679 ;;
5680 ;; This function is called from before-change-functions (via
5681 ;; c-get-state-before-change-functions). Thus the buffer is widened,
5682 ;; and point is undefined, both at entry and exit.
5683 ;;
5684 ;; FIXME!!! This routine ignores the possibility of macros entirely.
5685 ;; 2010-01-29.
5686 (save-excursion
5687 (c-save-buffer-state
5688 ((beg-lit-limits (progn (goto-char beg) (c-literal-limits)))
5689 (end-lit-limits (progn (goto-char end) (c-literal-limits)))
5690 new-beg new-end beg-limit end-limit)
5691 ;; Locate the earliest < after the barrier before the changed region,
5692 ;; which isn't already marked as a paren.
5693 (goto-char (if beg-lit-limits (car beg-lit-limits) beg))
5694 (setq beg-limit (c-determine-limit 512))
5695
5696 ;; Remove the syntax-table/category properties from each pertinent <...>
5697 ;; pair. Firstly, the ones with the < before beg and > after beg....
5698 (while (progn (c-syntactic-skip-backward "^;{}<" beg-limit)
5699 (eq (char-before) ?<))
5700 (c-backward-token-2)
5701 (when (eq (char-after) ?<)
5702 (c-clear-<-pair-props-if-match-after beg)))
5703 (c-forward-syntactic-ws)
5704 (setq new-beg (point))
5705
5706 ;; ...Then the ones with < before end and > after end.
5707 (goto-char (if end-lit-limits (cdr end-lit-limits) end))
5708 (setq end-limit (c-determine-+ve-limit 512))
5709 (while (and (c-syntactic-re-search-forward "[;{}>]" end-limit 'end)
5710 (eq (char-before) ?>))
5711 (c-end-of-current-token)
5712 (when (eq (char-before) ?>)
5713 (c-clear->-pair-props-if-match-before end (1- (point)))))
5714 (c-backward-syntactic-ws)
5715 (setq new-end (point))
5716
5717 ;; Extend the fontification region, if needed.
5718 (and new-beg
5719 (< new-beg c-new-BEG)
5720 (setq c-new-BEG new-beg))
5721 (and new-end
5722 (> new-end c-new-END)
5723 (setq c-new-END new-end)))))
5724
5725 (defun c-after-change-check-<>-operators (beg end)
5726 ;; This is called from `after-change-functions' when
5727 ;; c-recognize-<>-arglists' is set. It ensures that no "<" or ">"
5728 ;; chars with paren syntax become part of another operator like "<<"
5729 ;; or ">=".
5730 ;;
5731 ;; This function might do hidden buffer changes.
5732
5733 (save-excursion
5734 (goto-char beg)
5735 (when (or (looking-at "[<>]")
5736 (< (skip-chars-backward "<>") 0))
5737
5738 (goto-char beg)
5739 (c-beginning-of-current-token)
5740 (when (and (< (point) beg)
5741 (looking-at c-<>-multichar-token-regexp)
5742 (< beg (setq beg (match-end 0))))
5743 (while (progn (skip-chars-forward "^<>" beg)
5744 (< (point) beg))
5745 (c-clear-<>-pair-props)
5746 (forward-char))))
5747
5748 (when (< beg end)
5749 (goto-char end)
5750 (when (or (looking-at "[<>]")
5751 (< (skip-chars-backward "<>") 0))
5752
5753 (goto-char end)
5754 (c-beginning-of-current-token)
5755 (when (and (< (point) end)
5756 (looking-at c-<>-multichar-token-regexp)
5757 (< end (setq end (match-end 0))))
5758 (while (progn (skip-chars-forward "^<>" end)
5759 (< (point) end))
5760 (c-clear-<>-pair-props)
5761 (forward-char)))))))
5762
5763 (defun c-restore-<>-properties (_beg _end _old-len)
5764 ;; This function is called as an after-change function. It restores the
5765 ;; category/syntax-table properties on template/generic <..> pairs between
5766 ;; c-new-BEG and c-new-END. It may do hidden buffer changes.
5767 (c-save-buffer-state ((c-parse-and-markup-<>-arglists t)
5768 c-restricted-<>-arglists lit-limits)
5769 (goto-char c-new-BEG)
5770 (if (setq lit-limits (c-literal-limits))
5771 (goto-char (cdr lit-limits)))
5772 (while (and (< (point) c-new-END)
5773 (c-syntactic-re-search-forward "<" c-new-END 'bound))
5774 (backward-char)
5775 (save-excursion
5776 (c-backward-token-2)
5777 (setq c-restricted-<>-arglists
5778 (and (not (looking-at c-opt-<>-sexp-key))
5779 (progn (c-backward-syntactic-ws) ; to ( or ,
5780 (and (memq (char-before) '(?\( ?,)) ; what about <?
5781 (not (eq (c-get-char-property (point) 'c-type)
5782 'c-decl-arg-start)))))))
5783 (or (c-forward-<>-arglist nil)
5784 (forward-char)))))
5785
5786 \f
5787 ;; Functions to handle C++ raw strings.
5788 ;;
5789 ;; A valid C++ raw string looks like
5790 ;; R"<id>(<contents>)<id>"
5791 ;; , where <id> is an identifier from 0 to 16 characters long, not containing
5792 ;; spaces, control characters, double quote or left/right paren. <contents>
5793 ;; can include anything which isn't the terminating )<id>", including new
5794 ;; lines, "s, parentheses, etc.
5795 ;;
5796 ;; CC Mode handles C++ raw strings by the use of `syntax-table' text
5797 ;; properties as follows:
5798 ;;
5799 ;; (i) On a validly terminated raw string, no `syntax-table' text properties
5800 ;; are applied to the opening and closing delimiters, but any " in the
5801 ;; contents is given the property value "punctuation" (`(1)') to prevent it
5802 ;; interacting with the "s in the delimiters.
5803 ;;
5804 ;; The font locking routine `c-font-lock-c++-raw-strings' (in cc-fonts.el)
5805 ;; recognizes valid raw strings, and fontifies the delimiters (apart from
5806 ;; the parentheses) with the default face and the parentheses and the
5807 ;; <contents> with font-lock-string-face.
5808 ;;
5809 ;; (ii) A valid, but unterminated, raw string opening delimiter gets the
5810 ;; "punctuation" value (`(1)') of the `syntax-table' text property, and the
5811 ;; open parenthesis gets the "string fence" value (`(15)').
5812 ;;
5813 ;; `c-font-lock-c++-raw-strings' puts c-font-lock-warning-face on the entire
5814 ;; unmatched opening delimiter (from the R up to the open paren), and allows
5815 ;; the rest of the buffer to get font-lock-string-face, caused by the
5816 ;; unmatched "string fence" `syntax-table' text property value.
5817 ;;
5818 ;; (iii) Inside a macro, a valid raw string is handled as in (i). An
5819 ;; unmatched opening delimiter is handled slightly differently. In addition
5820 ;; to the "punctuation" and "string fence" properties on the delimiter,
5821 ;; another "string fence" `syntax-table' property is applied to the last
5822 ;; possible character of the macro before the terminating linefeed (if there
5823 ;; is such a character after the "("). This "last possible" character is
5824 ;; never a backslash escaping the end of line. If the character preceding
5825 ;; this "last possible" character is itself a backslash, this preceding
5826 ;; character gets a "punctuation" `syntax-table' value. If the "(" is
5827 ;; already at the end of the macro, it gets the "punctuaion" value, and no
5828 ;; "string fence"s are used.
5829 ;;
5830 ;; The effect on the fontification of either of these tactics is that rest of
5831 ;; the macro (if any) after the "(" gets font-lock-string-face, but the rest
5832 ;; of the file is fontified normally.
5833
5834
5835 (defun c-raw-string-pos ()
5836 ;; Get POINT's relationship to any containing raw string.
5837 ;; If point isn't in a raw string, return nil.
5838 ;; Otherwise, return the following list:
5839 ;;
5840 ;; (POS B\" B\( E\) E\")
5841 ;;
5842 ;; , where POS is the symbol `open-delim' if point is in the opening
5843 ;; delimiter, the symbol `close-delim' if it's in the closing delimiter, and
5844 ;; nil if it's in the string body. B\", B\(, E\), E\" are the positions of
5845 ;; the opening and closing quotes and parentheses of a correctly terminated
5846 ;; raw string. (N.B.: E\) and E\" are NOT on the "outside" of these
5847 ;; characters.) If the raw string is not terminated, E\) and E\" are set to
5848 ;; nil.
5849 ;;
5850 ;; Note: this routine is dependant upon the correct syntax-table text
5851 ;; properties being set.
5852 (let* ((safe (c-state-semi-safe-place (point)))
5853 (state (c-state-pp-to-literal safe (point)))
5854 open-quote-pos open-paren-pos close-paren-pos close-quote-pos id)
5855 (save-excursion
5856 (when
5857 (and
5858 (cond
5859 ((null (cadr state))
5860 (or (eq (char-after) ?\")
5861 (search-backward "\"" (max (- (point) 17) (point-min)) t)))
5862 ((and (eq (cadr state) 'string)
5863 (goto-char (car (nth 2 state)))
5864 (or (eq (char-after) ?\")
5865 (search-backward "\"" (max (- (point) 17) (point-min)) t))
5866 (not (bobp)))))
5867 (eq (char-before) ?R)
5868 (looking-at "\"\\([^ ()\\\n\r\t]\\{,16\\}\\)("))
5869 (setq open-quote-pos (point)
5870 open-paren-pos (match-end 1)
5871 id (match-string-no-properties 1))
5872 (goto-char (1+ open-paren-pos))
5873 (when (and (not (c-get-char-property open-paren-pos 'syntax-table))
5874 (search-forward (concat ")" id "\"") nil t))
5875 (setq close-paren-pos (match-beginning 0)
5876 close-quote-pos (1- (point))))))
5877 (and open-quote-pos
5878 (list
5879 (cond
5880 ((<= (point) open-paren-pos)
5881 'open-delim)
5882 ((and close-paren-pos
5883 (> (point) close-paren-pos))
5884 'close-delim)
5885 (t nil))
5886 open-quote-pos open-paren-pos close-paren-pos close-quote-pos))))
5887
5888 (defun c-depropertize-raw-string (id open-quote open-paren bound)
5889 ;; Point is immediately after a raw string opening delimiter. Remove any
5890 ;; `syntax-table' text properties associated with the delimiter (if it's
5891 ;; unmatched) or the raw string.
5892 ;;
5893 ;; ID, a string, is the delimiter's identifier. OPEN-QUOTE and OPEN-PAREN
5894 ;; are the buffer positions of the delimiter's components. BOUND is the
5895 ;; bound for searching for a matching closing delimiter; it is usually nil,
5896 ;; but if we're inside a macro, it's the end of the macro.
5897 ;;
5898 ;; Point is moved to after the (terminated) raw string, or left after the
5899 ;; unmatched opening delimiter, as the case may be. The return value is of
5900 ;; no significance.
5901 (let ((open-paren-prop (c-get-char-property open-paren 'syntax-table)))
5902 (cond
5903 ((null open-paren-prop)
5904 ;; A terminated raw string
5905 (if (search-forward (concat ")" id "\"") nil t)
5906 (c-clear-char-property-with-value
5907 (1+ open-paren) (match-beginning 0) 'syntax-table '(1))))
5908 ((or (and (equal open-paren-prop '(15)) (null bound))
5909 (equal open-paren-prop '(1)))
5910 ;; An unterminated raw string either not in a macro, or in a macro with
5911 ;; the open parenthesis right up against the end of macro
5912 (c-clear-char-property open-quote 'syntax-table)
5913 (c-clear-char-property open-paren 'syntax-table))
5914 (t
5915 ;; An unterminated string in a macro, with at least one char after the
5916 ;; open paren
5917 (c-clear-char-property open-quote 'syntax-table)
5918 (c-clear-char-property open-paren 'syntax-table)
5919 (let ((after-string-fence-pos
5920 (save-excursion
5921 (goto-char (1+ open-paren))
5922 (c-search-forward-char-property 'syntax-table '(15) bound))))
5923 (when after-string-fence-pos
5924 (c-clear-char-property (1- after-string-fence-pos) 'syntax-table)))
5925 ))))
5926
5927 (defun c-depropertize-raw-strings-in-region (start finish)
5928 ;; Remove any `syntax-table' text properties associated with C++ raw strings
5929 ;; contained in the region (START FINISH). Point is undefined at entry and
5930 ;; exit, and the return value has no significance.
5931 (goto-char start)
5932 (while (and (< (point) finish)
5933 (re-search-forward
5934 (concat "\\(" ; 1
5935 c-anchored-cpp-prefix ; 2
5936 "\\)\\|\\(" ; 3
5937 "R\"\\([^ ()\\\n\r\t]\\{,16\\}\\)(" ; 4
5938 "\\)")
5939 finish t))
5940 (when (save-excursion
5941 (goto-char (match-beginning 0)) (not (c-in-literal)))
5942 (if (match-beginning 4) ; the id
5943 ;; We've found a raw string
5944 (c-depropertize-raw-string
5945 (match-string-no-properties 4) ; id
5946 (1+ (match-beginning 3)) ; open quote
5947 (match-end 4) ; open paren
5948 nil) ; bound
5949 ;; We've found a CPP construct. Search for raw strings within it.
5950 (goto-char (match-beginning 2)) ; the "#"
5951 (c-end-of-macro)
5952 (let ((eom (point)))
5953 (goto-char (match-end 2)) ; after the "#".
5954 (while (and (< (point) eom)
5955 (c-syntactic-re-search-forward
5956 "R\"\\([^ ()\\\n\r\t]\\{,16\\}\\)(" eom t))
5957 (c-depropertize-raw-string
5958 (match-string-no-properties 1) ; id
5959 (1+ (match-beginning 0)) ; open quote
5960 (match-end 1) ; open paren
5961 eom))))))) ; bound.
5962
5963 (defun c-before-change-check-raw-strings (beg end)
5964 ;; This function clears `syntax-table' text properties from C++ raw strings
5965 ;; in the region (c-new-BEG c-new-END). BEG and END are the standard
5966 ;; arguments supplied to any before-change function.
5967 ;;
5968 ;; Point is undefined on both entry and exit, and the return value has no
5969 ;; significance.
5970 ;;
5971 ;; This function is called as a before-change function solely due to its
5972 ;; membership of the C++ value of `c-get-state-before-change-functions'.
5973 (c-save-buffer-state
5974 ((beg-rs (progn (goto-char beg) (c-raw-string-pos)))
5975 (beg-plus (if (null beg-rs)
5976 beg
5977 (max beg
5978 (1+ (or (nth 4 beg-rs) (nth 2 beg-rs))))))
5979 (end-rs (progn (goto-char end) (c-raw-string-pos))) ; FIXME!!!
5980 ; Optimize this so that we don't call
5981 ; `c-raw-string-pos' twice when once
5982 ; will do. (2016-06-02).
5983 (end-minus (if (null end-rs)
5984 end
5985 (min end (cadr end-rs))))
5986 )
5987 (when beg-rs
5988 (setq c-new-BEG (min c-new-BEG (1- (cadr beg-rs)))))
5989 (c-depropertize-raw-strings-in-region c-new-BEG beg-plus)
5990
5991 (when end-rs
5992 (setq c-new-END (max c-new-END
5993 (1+ (or (nth 4 end-rs)
5994 (nth 2 end-rs))))))
5995 (c-depropertize-raw-strings-in-region end-minus c-new-END)))
5996
5997 (defun c-propertize-raw-string-opener (id open-quote open-paren bound)
5998 ;; Point is immediately after a raw string opening delimiter. Apply any
5999 ;; pertinent `syntax-table' text properties to the delimiter and also the
6000 ;; raw string, should there be a valid matching closing delimiter.
6001 ;;
6002 ;; ID, a string, is the delimiter's identifier. OPEN-QUOTE and OPEN-PAREN
6003 ;; are the buffer positions of the delimiter's components. BOUND is the
6004 ;; bound for searching for a matching closing delimiter; it is usually nil,
6005 ;; but if we're inside a macro, it's the end of the macro.
6006 ;;
6007 ;; Point is moved to after the (terminated) raw string, or left after the
6008 ;; unmatched opening delimiter, as the case may be. The return value is of
6009 ;; no significance.
6010 (if (search-forward (concat ")" id "\"") bound t)
6011 (let ((end-string (match-beginning 0))
6012 (after-quote (match-end 0)))
6013 (goto-char open-paren)
6014 (while (progn (skip-syntax-forward "^\"" end-string)
6015 (< (point) end-string))
6016 (c-put-char-property (point) 'syntax-table '(1)) ; punctuation
6017 (forward-char))
6018 (goto-char after-quote))
6019 (c-put-char-property open-quote 'syntax-table '(1)) ; punctuation
6020 (c-put-char-property open-paren 'syntax-table '(15)) ; generic string
6021 (when bound
6022 ;; In a CPP construct, we try to apply a generic-string `syntax-table'
6023 ;; text property to the last possible character in the string, so that
6024 ;; only characters within the macro get "stringed out".
6025 (goto-char bound)
6026 (if (save-restriction
6027 (narrow-to-region (1+ open-paren) (point-max))
6028 (re-search-backward
6029 (eval-when-compile
6030 ;; This regular expression matches either an escape pair (which
6031 ;; isn't an escaped NL) (submatch 5) or a non-escaped character
6032 ;; (which isn't itself a backslash) (submatch 10). The long
6033 ;; preambles to these (respectively submatches 2-4 and 6-9)
6034 ;; ensure that we have the correct parity for sequences of
6035 ;; backslashes, etc..
6036 (concat "\\(" ; 1
6037 "\\(\\`[^\\]?\\|[^\\][^\\]\\)\\(\\\\\\(.\\|\n\\)\\)*" ; 2-4
6038 "\\(\\\\.\\)" ; 5
6039 "\\|"
6040 "\\(\\`\\|[^\\]\\|\\(\\`[^\\]?\\|[^\\][^\\]\\)\\(\\\\\\(.\\|\n\\)\\)+\\)" ; 6-9
6041 "\\([^\\]\\)" ; 10
6042 "\\)"
6043 "\\(\\\\\n\\)*\\=")) ; 11
6044 (1+ open-paren) t))
6045 (if (match-beginning 10)
6046 (c-put-char-property (match-beginning 10) 'syntax-table '(15))
6047 (c-put-char-property (match-beginning 5) 'syntax-table '(1))
6048 (c-put-char-property (1+ (match-beginning 5)) 'syntax-table '(15)))
6049 (c-put-char-property open-paren 'syntax-table '(1)))
6050 (goto-char bound))))
6051
6052 (defun c-after-change-re-mark-raw-strings (beg end old-len)
6053 ;; This function applies `syntax-table' text properties to C++ raw strings
6054 ;; beginning in the region (c-new-BEG c-new-END). BEG, END, and OLD-LEN are
6055 ;; the standard arguments supplied to any after-change function.
6056 ;;
6057 ;; Point is undefined on both entry and exit, and the return value has no
6058 ;; significance.
6059 ;;
6060 ;; This function is called as an after-change function solely due to its
6061 ;; membership of the C++ value of `c-before-font-lock-functions'.
6062 (c-save-buffer-state ()
6063 ;; If the region (c-new-BEG c-new-END) has expanded, remove
6064 ;; `syntax-table' text-properties from the new piece(s).
6065 (when (< c-new-BEG c-old-BEG)
6066 (let ((beg-rs (progn (goto-char c-old-BEG) (c-raw-string-pos))))
6067 (c-depropertize-raw-strings-in-region
6068 c-new-BEG
6069 (if beg-rs
6070 (1+ (or (nth 4 beg-rs) (nth 2 beg-rs)))
6071 c-old-BEG))))
6072 (when (> c-new-END c-old-END)
6073 (let ((end-rs (progn (goto-char c-old-END) (c-raw-string-pos))))
6074 (c-depropertize-raw-strings-in-region
6075 (if end-rs
6076 (cadr end-rs)
6077 c-old-END)
6078 c-new-END)))
6079
6080 (goto-char c-new-BEG)
6081 (while (and (< (point) c-new-END)
6082 (re-search-forward
6083 (concat "\\(" ; 1
6084 c-anchored-cpp-prefix ; 2
6085 "\\)\\|\\(" ; 3
6086 "R\"\\([^ ()\\\n\r\t]\\{,16\\}\\)(" ; 4
6087 "\\)")
6088 c-new-END t))
6089 (when (save-excursion
6090 (goto-char (match-beginning 0)) (not (c-in-literal)))
6091 (if (match-beginning 4) ; the id
6092 ;; We've found a raw string.
6093 (c-propertize-raw-string-opener
6094 (match-string-no-properties 4) ; id
6095 (1+ (match-beginning 3)) ; open quote
6096 (match-end 4) ; open paren
6097 nil) ; bound
6098 ;; We've found a CPP construct. Search for raw strings within it.
6099 (goto-char (match-beginning 2)) ; the "#"
6100 (c-end-of-macro)
6101 (let ((eom (point)))
6102 (goto-char (match-end 2)) ; after the "#".
6103 (while (and (< (point) eom)
6104 (c-syntactic-re-search-forward
6105 "R\"\\([^ ()\\\n\r\t]\\{,16\\}\\)(" eom t))
6106 (c-propertize-raw-string-opener
6107 (match-string-no-properties 1) ; id
6108 (1+ (match-beginning 0)) ; open quote
6109 (match-end 1) ; open paren
6110 eom)))))))) ; bound
6111
6112 \f
6113 ;; Handling of small scale constructs like types and names.
6114
6115 ;; Dynamically bound variable that instructs `c-forward-type' to also
6116 ;; treat possible types (i.e. those that it normally returns 'maybe or
6117 ;; 'found for) as actual types (and always return 'found for them).
6118 ;; This means that it records them in `c-record-type-identifiers' if
6119 ;; that is set, and that it adds them to `c-found-types'.
6120 (defvar c-promote-possible-types nil)
6121
6122 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
6123 ;; mark up successfully parsed arglists with paren syntax properties on
6124 ;; the surrounding angle brackets and with `c-<>-arg-sep' in the
6125 ;; `c-type' property of each argument separating comma.
6126 ;;
6127 ;; Setting this variable also makes `c-forward-<>-arglist' recurse into
6128 ;; all arglists for side effects (i.e. recording types), otherwise it
6129 ;; exploits any existing paren syntax properties to quickly jump to the
6130 ;; end of already parsed arglists.
6131 ;;
6132 ;; Marking up the arglists is not the default since doing that correctly
6133 ;; depends on a proper value for `c-restricted-<>-arglists'.
6134 (defvar c-parse-and-markup-<>-arglists nil)
6135
6136 ;; Dynamically bound variable that instructs `c-forward-<>-arglist' to
6137 ;; not accept arglists that contain binary operators.
6138 ;;
6139 ;; This is primarily used to handle C++ template arglists. C++
6140 ;; disambiguates them by checking whether the preceding name is a
6141 ;; template or not. We can't do that, so we assume it is a template
6142 ;; if it can be parsed as one. That usually works well since
6143 ;; comparison expressions on the forms "a < b > c" or "a < b, c > d"
6144 ;; in almost all cases would be pointless.
6145 ;;
6146 ;; However, in function arglists, e.g. in "foo (a < b, c > d)", we
6147 ;; should let the comma separate the function arguments instead. And
6148 ;; in a context where the value of the expression is taken, e.g. in
6149 ;; "if (a < b || c > d)", it's probably not a template.
6150 (defvar c-restricted-<>-arglists nil)
6151
6152 ;; Dynamically bound variables that instructs
6153 ;; `c-forward-keyword-clause', `c-forward-<>-arglist',
6154 ;; `c-forward-name', `c-forward-type', `c-forward-decl-or-cast-1', and
6155 ;; `c-forward-label' to record the ranges of all the type and
6156 ;; reference identifiers they encounter. They will build lists on
6157 ;; these variables where each element is a cons of the buffer
6158 ;; positions surrounding each identifier. This recording is only
6159 ;; activated when `c-record-type-identifiers' is non-nil.
6160 ;;
6161 ;; All known types that can't be identifiers are recorded, and also
6162 ;; other possible types if `c-promote-possible-types' is set.
6163 ;; Recording is however disabled inside angle bracket arglists that
6164 ;; are encountered inside names and other angle bracket arglists.
6165 ;; Such occurrences are taken care of by `c-font-lock-<>-arglists'
6166 ;; instead.
6167 ;;
6168 ;; Only the names in C++ template style references (e.g. "tmpl" in
6169 ;; "tmpl<a,b>::foo") are recorded as references, other references
6170 ;; aren't handled here.
6171 ;;
6172 ;; `c-forward-label' records the label identifier(s) on
6173 ;; `c-record-ref-identifiers'.
6174 (defvar c-record-type-identifiers nil)
6175 (defvar c-record-ref-identifiers nil)
6176
6177 ;; This variable will receive a cons cell of the range of the last
6178 ;; single identifier symbol stepped over by `c-forward-name' if it's
6179 ;; successful. This is the range that should be put on one of the
6180 ;; record lists above by the caller. It's assigned nil if there's no
6181 ;; such symbol in the name.
6182 (defvar c-last-identifier-range nil)
6183
6184 (defmacro c-record-type-id (range)
6185 (if (eq (car-safe range) 'cons)
6186 ;; Always true.
6187 `(setq c-record-type-identifiers
6188 (cons ,range c-record-type-identifiers))
6189 `(let ((range ,range))
6190 (if range
6191 (setq c-record-type-identifiers
6192 (cons range c-record-type-identifiers))))))
6193
6194 (defmacro c-record-ref-id (range)
6195 (if (eq (car-safe range) 'cons)
6196 ;; Always true.
6197 `(setq c-record-ref-identifiers
6198 (cons ,range c-record-ref-identifiers))
6199 `(let ((range ,range))
6200 (if range
6201 (setq c-record-ref-identifiers
6202 (cons range c-record-ref-identifiers))))))
6203
6204 ;; Dynamically bound variable that instructs `c-forward-type' to
6205 ;; record the ranges of types that only are found. Behaves otherwise
6206 ;; like `c-record-type-identifiers'.
6207 (defvar c-record-found-types nil)
6208
6209 (defmacro c-forward-keyword-prefixed-id (type)
6210 ;; Used internally in `c-forward-keyword-clause' to move forward
6211 ;; over a type (if TYPE is 'type) or a name (otherwise) which
6212 ;; possibly is prefixed by keywords and their associated clauses.
6213 ;; Try with a type/name first to not trip up on those that begin
6214 ;; with a keyword. Return t if a known or found type is moved
6215 ;; over. The point is clobbered if nil is returned. If range
6216 ;; recording is enabled, the identifier is recorded on as a type
6217 ;; if TYPE is 'type or as a reference if TYPE is 'ref.
6218 ;;
6219 ;; This macro might do hidden buffer changes.
6220 `(let (res)
6221 (setq c-last-identifier-range nil)
6222 (while (if (setq res ,(if (eq type 'type)
6223 `(c-forward-type)
6224 `(c-forward-name)))
6225 nil
6226 (cond ((looking-at c-keywords-regexp)
6227 (c-forward-keyword-clause 1))
6228 ((and c-opt-cpp-prefix
6229 (looking-at c-noise-macro-with-parens-name-re))
6230 (c-forward-noise-clause)))))
6231 (when (memq res '(t known found prefix maybe))
6232 (when c-record-type-identifiers
6233 ,(if (eq type 'type)
6234 `(c-record-type-id c-last-identifier-range)
6235 `(c-record-ref-id c-last-identifier-range)))
6236 t)))
6237
6238 (defmacro c-forward-id-comma-list (type update-safe-pos)
6239 ;; Used internally in `c-forward-keyword-clause' to move forward
6240 ;; over a comma separated list of types or names using
6241 ;; `c-forward-keyword-prefixed-id'.
6242 ;;
6243 ;; This macro might do hidden buffer changes.
6244 `(while (and (progn
6245 ,(when update-safe-pos
6246 `(setq safe-pos (point)))
6247 (eq (char-after) ?,))
6248 (progn
6249 (forward-char)
6250 (c-forward-syntactic-ws)
6251 (c-forward-keyword-prefixed-id ,type)))))
6252
6253 (defun c-forward-noise-clause ()
6254 ;; Point is at a c-noise-macro-with-parens-names macro identifier. Go
6255 ;; forward over this name, any parenthesis expression which follows it, and
6256 ;; any syntactic WS, ending up at the next token. If there is an unbalanced
6257 ;; paren expression, leave point at it. Always Return t.
6258 (c-forward-token-2)
6259 (if (and (eq (char-after) ?\()
6260 (c-go-list-forward))
6261 (c-forward-syntactic-ws))
6262 t)
6263
6264 (defun c-forward-keyword-clause (match)
6265 ;; Submatch MATCH in the current match data is assumed to surround a
6266 ;; token. If it's a keyword, move over it and any immediately
6267 ;; following clauses associated with it, stopping at the start of
6268 ;; the next token. t is returned in that case, otherwise the point
6269 ;; stays and nil is returned. The kind of clauses that are
6270 ;; recognized are those specified by `c-type-list-kwds',
6271 ;; `c-ref-list-kwds', `c-colon-type-list-kwds',
6272 ;; `c-paren-nontype-kwds', `c-paren-type-kwds', `c-<>-type-kwds',
6273 ;; and `c-<>-arglist-kwds'.
6274 ;;
6275 ;; This function records identifier ranges on
6276 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6277 ;; `c-record-type-identifiers' is non-nil.
6278 ;;
6279 ;; Note that for `c-colon-type-list-kwds', which doesn't necessary
6280 ;; apply directly after the keyword, the type list is moved over
6281 ;; only when there is no unaccounted token before it (i.e. a token
6282 ;; that isn't moved over due to some other keyword list). The
6283 ;; identifier ranges in the list are still recorded if that should
6284 ;; be done, though.
6285 ;;
6286 ;; This function might do hidden buffer changes.
6287
6288 (let ((kwd-sym (c-keyword-sym (match-string match))) safe-pos pos
6289 ;; The call to `c-forward-<>-arglist' below is made after
6290 ;; `c-<>-sexp-kwds' keywords, so we're certain they actually
6291 ;; are angle bracket arglists and `c-restricted-<>-arglists'
6292 ;; should therefore be nil.
6293 (c-parse-and-markup-<>-arglists t)
6294 c-restricted-<>-arglists)
6295
6296 (when kwd-sym
6297 (goto-char (match-end match))
6298 (c-forward-syntactic-ws)
6299 (setq safe-pos (point))
6300
6301 (cond
6302 ((and (c-keyword-member kwd-sym 'c-type-list-kwds)
6303 (c-forward-keyword-prefixed-id type))
6304 ;; There's a type directly after a keyword in `c-type-list-kwds'.
6305 (c-forward-id-comma-list type t))
6306
6307 ((and (c-keyword-member kwd-sym 'c-ref-list-kwds)
6308 (c-forward-keyword-prefixed-id ref))
6309 ;; There's a name directly after a keyword in `c-ref-list-kwds'.
6310 (c-forward-id-comma-list ref t))
6311
6312 ((and (c-keyword-member kwd-sym 'c-paren-any-kwds)
6313 (eq (char-after) ?\())
6314 ;; There's an open paren after a keyword in `c-paren-any-kwds'.
6315
6316 (forward-char)
6317 (when (and (setq pos (c-up-list-forward))
6318 (eq (char-before pos) ?\)))
6319 (when (and c-record-type-identifiers
6320 (c-keyword-member kwd-sym 'c-paren-type-kwds))
6321 ;; Use `c-forward-type' on every identifier we can find
6322 ;; inside the paren, to record the types.
6323 (while (c-syntactic-re-search-forward c-symbol-start pos t)
6324 (goto-char (match-beginning 0))
6325 (unless (c-forward-type)
6326 (looking-at c-symbol-key) ; Always matches.
6327 (goto-char (match-end 0)))))
6328
6329 (goto-char pos)
6330 (c-forward-syntactic-ws)
6331 (setq safe-pos (point))))
6332
6333 ((and (c-keyword-member kwd-sym 'c-<>-sexp-kwds)
6334 (eq (char-after) ?<)
6335 (c-forward-<>-arglist (c-keyword-member kwd-sym 'c-<>-type-kwds)))
6336 (c-forward-syntactic-ws)
6337 (setq safe-pos (point)))
6338
6339 ((and (c-keyword-member kwd-sym 'c-nonsymbol-sexp-kwds)
6340 (not (looking-at c-symbol-start))
6341 (c-safe (c-forward-sexp) t))
6342 (c-forward-syntactic-ws)
6343 (setq safe-pos (point))))
6344
6345 (when (c-keyword-member kwd-sym 'c-colon-type-list-kwds)
6346 (if (eq (char-after) ?:)
6347 ;; If we are at the colon already, we move over the type
6348 ;; list after it.
6349 (progn
6350 (forward-char)
6351 (c-forward-syntactic-ws)
6352 (when (c-forward-keyword-prefixed-id type)
6353 (c-forward-id-comma-list type t)))
6354 ;; Not at the colon, so stop here. But the identifier
6355 ;; ranges in the type list later on should still be
6356 ;; recorded.
6357 (and c-record-type-identifiers
6358 (progn
6359 ;; If a keyword matched both one of the types above and
6360 ;; this one, we match `c-colon-type-list-re' after the
6361 ;; clause matched above.
6362 (goto-char safe-pos)
6363 (looking-at c-colon-type-list-re))
6364 (progn
6365 (goto-char (match-end 0))
6366 (c-forward-syntactic-ws)
6367 (c-forward-keyword-prefixed-id type))
6368 ;; There's a type after the `c-colon-type-list-re' match
6369 ;; after a keyword in `c-colon-type-list-kwds'.
6370 (c-forward-id-comma-list type nil))))
6371
6372 (goto-char safe-pos)
6373 t)))
6374
6375 ;; cc-mode requires cc-fonts.
6376 (declare-function c-fontify-recorded-types-and-refs "cc-fonts" ())
6377
6378 (defun c-forward-<>-arglist (all-types)
6379 ;; The point is assumed to be at a "<". Try to treat it as the open
6380 ;; paren of an angle bracket arglist and move forward to the
6381 ;; corresponding ">". If successful, the point is left after the
6382 ;; ">" and t is returned, otherwise the point isn't moved and nil is
6383 ;; returned. If ALL-TYPES is t then all encountered arguments in
6384 ;; the arglist that might be types are treated as found types.
6385 ;;
6386 ;; The variable `c-parse-and-markup-<>-arglists' controls how this
6387 ;; function handles text properties on the angle brackets and argument
6388 ;; separating commas.
6389 ;;
6390 ;; `c-restricted-<>-arglists' controls how lenient the template
6391 ;; arglist recognition should be.
6392 ;;
6393 ;; This function records identifier ranges on
6394 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6395 ;; `c-record-type-identifiers' is non-nil.
6396 ;;
6397 ;; This function might do hidden buffer changes.
6398
6399 (let ((start (point))
6400 ;; If `c-record-type-identifiers' is set then activate
6401 ;; recording of any found types that constitute an argument in
6402 ;; the arglist.
6403 (c-record-found-types (if c-record-type-identifiers t)))
6404 (if (catch 'angle-bracket-arglist-escape
6405 (setq c-record-found-types
6406 (c-forward-<>-arglist-recur all-types)))
6407 (progn
6408 (when (consp c-record-found-types)
6409 (setq c-record-type-identifiers
6410 ;; `nconc' doesn't mind that the tail of
6411 ;; `c-record-found-types' is t.
6412 (nconc c-record-found-types c-record-type-identifiers)))
6413 t)
6414
6415 (goto-char start)
6416 nil)))
6417
6418 (defun c-forward-<>-arglist-recur (all-types)
6419 ;; Recursive part of `c-forward-<>-arglist'.
6420 ;;
6421 ;; This function might do hidden buffer changes.
6422 (let ((start (point)) res pos
6423 ;; Cover this so that any recorded found type ranges are
6424 ;; automatically lost if it turns out to not be an angle
6425 ;; bracket arglist. It's propagated through the return value
6426 ;; on successful completion.
6427 (c-record-found-types c-record-found-types)
6428 ;; List that collects the positions after the argument
6429 ;; separating ',' in the arglist.
6430 arg-start-pos)
6431 ;; If the '<' has paren open syntax then we've marked it as an angle
6432 ;; bracket arglist before, so skip to the end.
6433 (if (and (not c-parse-and-markup-<>-arglists)
6434 (c-get-char-property (point) 'syntax-table))
6435
6436 (progn
6437 (forward-char)
6438 (if (and (c-go-up-list-forward)
6439 (eq (char-before) ?>))
6440 t
6441 ;; Got unmatched paren angle brackets. We don't clear the paren
6442 ;; syntax properties and retry, on the basis that it's very
6443 ;; unlikely that paren angle brackets become operators by code
6444 ;; manipulation. It's far more likely that it doesn't match due
6445 ;; to narrowing or some temporary change.
6446 (goto-char start)
6447 nil))
6448
6449 (forward-char) ; Forward over the opening '<'.
6450
6451 (unless (looking-at c-<-op-cont-regexp)
6452 ;; go forward one non-alphanumeric character (group) per iteration of
6453 ;; this loop.
6454 (while (and
6455 (progn
6456 (c-forward-syntactic-ws)
6457 (when (or (and c-record-type-identifiers all-types)
6458 (not (equal c-inside-<>-type-key "\\(\\<\\>\\)")))
6459 (c-forward-syntactic-ws)
6460 (cond
6461 ((eq (char-after) ??)
6462 (forward-char))
6463 ((and (looking-at c-identifier-start)
6464 (not (looking-at c-keywords-regexp)))
6465 (if (or (and all-types c-record-type-identifiers)
6466 (c-major-mode-is 'java-mode))
6467 ;; All encountered identifiers are types, so set the
6468 ;; promote flag and parse the type.
6469 (let ((c-promote-possible-types t)
6470 (c-record-found-types t))
6471 (c-forward-type))
6472 (c-forward-token-2))))
6473
6474 (c-forward-syntactic-ws)
6475
6476 (when (looking-at c-inside-<>-type-key)
6477 (goto-char (match-end 1))
6478 (c-forward-syntactic-ws)
6479 (let ((c-promote-possible-types t)
6480 (c-record-found-types t))
6481 (c-forward-type))
6482 (c-forward-syntactic-ws)))
6483
6484 (setq pos (point)) ; e.g. first token inside the '<'
6485
6486 ;; Note: These regexps exploit the match order in \| so
6487 ;; that "<>" is matched by "<" rather than "[^>:-]>".
6488 (c-syntactic-re-search-forward
6489 ;; Stop on ',', '|', '&', '+' and '-' to catch
6490 ;; common binary operators that could be between
6491 ;; two comparison expressions "a<b" and "c>d".
6492 ;; 2016-02-11: C++11 templates can now contain arithmetic
6493 ;; expressions, so template detection in C++ is now less
6494 ;; robust than it was.
6495 c-<>-notable-chars-re
6496 nil t t))
6497
6498 (cond
6499 ((eq (char-before) ?>)
6500 ;; Either an operator starting with '>' or the end of
6501 ;; the angle bracket arglist.
6502
6503 (if (save-excursion
6504 (c-backward-token-2)
6505 (looking-at c-multichar->-op-not->>-regexp))
6506 (progn
6507 (goto-char (match-end 0))
6508 t) ; Continue the loop.
6509
6510 ;; The angle bracket arglist is finished.
6511 (when c-parse-and-markup-<>-arglists
6512 (while arg-start-pos
6513 (c-put-c-type-property (1- (car arg-start-pos))
6514 'c-<>-arg-sep)
6515 (setq arg-start-pos (cdr arg-start-pos)))
6516 (c-mark-<-as-paren start)
6517 (c-mark->-as-paren (1- (point))))
6518 (setq res t)
6519 nil)) ; Exit the loop.
6520
6521 ((eq (char-before) ?<)
6522 ;; Either an operator starting with '<' or a nested arglist.
6523 (setq pos (point))
6524 (let (id-start id-end subres keyword-match)
6525 (cond
6526 ;; The '<' begins a multi-char operator.
6527 ((looking-at c-<-op-cont-regexp)
6528 (goto-char (match-end 0)))
6529 ;; We're at a nested <.....>
6530 ((progn
6531 (backward-char) ; to the '<'
6532 (and
6533 (save-excursion
6534 ;; There's always an identifier before an angle
6535 ;; bracket arglist, or a keyword in `c-<>-type-kwds'
6536 ;; or `c-<>-arglist-kwds'.
6537 (c-backward-syntactic-ws)
6538 (setq id-end (point))
6539 (c-simple-skip-symbol-backward)
6540 (when (or (setq keyword-match
6541 (looking-at c-opt-<>-sexp-key))
6542 (not (looking-at c-keywords-regexp)))
6543 (setq id-start (point))))
6544 (setq subres
6545 (let ((c-promote-possible-types t)
6546 (c-record-found-types t))
6547 (c-forward-<>-arglist-recur
6548 (and keyword-match
6549 (c-keyword-member
6550 (c-keyword-sym (match-string 1))
6551 'c-<>-type-kwds))))))
6552 (or subres (goto-char pos))
6553 subres)
6554 ;; It was an angle bracket arglist.
6555 (setq c-record-found-types subres)
6556
6557 ;; Record the identifier before the template as a type
6558 ;; or reference depending on whether the arglist is last
6559 ;; in a qualified identifier.
6560 (when (and c-record-type-identifiers
6561 (not keyword-match))
6562 (if (and c-opt-identifier-concat-key
6563 (progn
6564 (c-forward-syntactic-ws)
6565 (looking-at c-opt-identifier-concat-key)))
6566 (c-record-ref-id (cons id-start id-end))
6567 (c-record-type-id (cons id-start id-end)))))
6568
6569 ;; At a "less than" operator.
6570 (t
6571 ;; (forward-char) ; NO! We've already gone over the <.
6572 )))
6573 t) ; carry on looping.
6574
6575 ((and
6576 (eq (char-before) ?\()
6577 (c-go-up-list-forward)
6578 (eq (char-before) ?\))))
6579
6580 ((and (not c-restricted-<>-arglists)
6581 (or (and (eq (char-before) ?&)
6582 (not (eq (char-after) ?&)))
6583 (eq (char-before) ?,)))
6584 ;; Just another argument. Record the position. The
6585 ;; type check stuff that made us stop at it is at
6586 ;; the top of the loop.
6587 (setq arg-start-pos (cons (point) arg-start-pos)))
6588
6589 (t
6590 ;; Got a character that can't be in an angle bracket
6591 ;; arglist argument. Abort using `throw', since
6592 ;; it's useless to try to find a surrounding arglist
6593 ;; if we're nested.
6594 (throw 'angle-bracket-arglist-escape nil))))))
6595 (if res
6596 (or c-record-found-types t)))))
6597
6598 (defun c-backward-<>-arglist (all-types &optional limit)
6599 ;; The point is assumed to be directly after a ">". Try to treat it
6600 ;; as the close paren of an angle bracket arglist and move back to
6601 ;; the corresponding "<". If successful, the point is left at
6602 ;; the "<" and t is returned, otherwise the point isn't moved and
6603 ;; nil is returned. ALL-TYPES is passed on to
6604 ;; `c-forward-<>-arglist'.
6605 ;;
6606 ;; If the optional LIMIT is given, it bounds the backward search.
6607 ;; It's then assumed to be at a syntactically relevant position.
6608 ;;
6609 ;; This is a wrapper around `c-forward-<>-arglist'. See that
6610 ;; function for more details.
6611
6612 (let ((start (point)))
6613 (backward-char)
6614 (if (and (not c-parse-and-markup-<>-arglists)
6615 (c-get-char-property (point) 'syntax-table))
6616
6617 (if (and (c-go-up-list-backward)
6618 (eq (char-after) ?<))
6619 t
6620 ;; See corresponding note in `c-forward-<>-arglist'.
6621 (goto-char start)
6622 nil)
6623
6624 (while (progn
6625 (c-syntactic-skip-backward "^<;{}" limit t)
6626
6627 (and
6628 (if (eq (char-before) ?<)
6629 t
6630 ;; Stopped at bob or a char that isn't allowed in an
6631 ;; arglist, so we've failed.
6632 (goto-char start)
6633 nil)
6634
6635 (if (> (point)
6636 (progn (c-beginning-of-current-token)
6637 (point)))
6638 ;; If we moved then the "<" was part of some
6639 ;; multicharacter token.
6640 t
6641
6642 (backward-char)
6643 (let ((beg-pos (point)))
6644 (if (c-forward-<>-arglist all-types)
6645 (cond ((= (point) start)
6646 ;; Matched the arglist. Break the while.
6647 (goto-char beg-pos)
6648 nil)
6649 ((> (point) start)
6650 ;; We started from a non-paren ">" inside an
6651 ;; arglist.
6652 (goto-char start)
6653 nil)
6654 (t
6655 ;; Matched a shorter arglist. Can be a nested
6656 ;; one so continue looking.
6657 (goto-char beg-pos)
6658 t))
6659 t))))))
6660
6661 (/= (point) start))))
6662
6663 (defun c-forward-name ()
6664 ;; Move forward over a complete name if at the beginning of one,
6665 ;; stopping at the next following token. A keyword, as such,
6666 ;; doesn't count as a name. If the point is not at something that
6667 ;; is recognized as a name then it stays put.
6668 ;;
6669 ;; A name could be something as simple as "foo" in C or something as
6670 ;; complex as "X<Y<class A<int>::B, BIT_MAX >> b>, ::operator<> ::
6671 ;; Z<(a>b)> :: operator const X<&foo>::T Q::G<unsigned short
6672 ;; int>::*volatile const" in C++ (this function is actually little
6673 ;; more than a `looking-at' call in all modes except those that,
6674 ;; like C++, have `c-recognize-<>-arglists' set).
6675 ;;
6676 ;; Return
6677 ;; o - nil if no name is found;
6678 ;; o - 'template if it's an identifier ending with an angle bracket
6679 ;; arglist;
6680 ;; o - 'operator of it's an operator identifier;
6681 ;; o - t if it's some other kind of name.
6682 ;;
6683 ;; This function records identifier ranges on
6684 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6685 ;; `c-record-type-identifiers' is non-nil.
6686 ;;
6687 ;; This function might do hidden buffer changes.
6688
6689 (let ((pos (point)) (start (point)) res id-start id-end
6690 ;; Turn off `c-promote-possible-types' here since we might
6691 ;; call `c-forward-<>-arglist' and we don't want it to promote
6692 ;; every suspect thing in the arglist to a type. We're
6693 ;; typically called from `c-forward-type' in this case, and
6694 ;; the caller only wants the top level type that it finds to
6695 ;; be promoted.
6696 c-promote-possible-types)
6697 (while
6698 (and
6699 (looking-at c-identifier-key)
6700
6701 (progn
6702 ;; Check for keyword. We go to the last symbol in
6703 ;; `c-identifier-key' first.
6704 (goto-char (setq id-end (match-end 0)))
6705 (c-simple-skip-symbol-backward)
6706 (setq id-start (point))
6707
6708 (if (looking-at c-keywords-regexp)
6709 (when (and (c-major-mode-is 'c++-mode)
6710 (looking-at
6711 (cc-eval-when-compile
6712 (concat "\\(operator\\|\\(template\\)\\)"
6713 "\\(" (c-lang-const c-nonsymbol-key c++)
6714 "\\|$\\)")))
6715 (if (match-beginning 2)
6716 ;; "template" is only valid inside an
6717 ;; identifier if preceded by "::".
6718 (save-excursion
6719 (c-backward-syntactic-ws)
6720 (and (c-safe (backward-char 2) t)
6721 (looking-at "::")))
6722 t))
6723
6724 ;; Handle a C++ operator or template identifier.
6725 (goto-char id-end)
6726 (c-forward-syntactic-ws)
6727 (cond ((eq (char-before id-end) ?e)
6728 ;; Got "... ::template".
6729 (let ((subres (c-forward-name)))
6730 (when subres
6731 (setq pos (point)
6732 res subres))))
6733
6734 ((looking-at c-identifier-start)
6735 ;; Got a cast operator.
6736 (when (c-forward-type)
6737 (setq pos (point)
6738 res 'operator)
6739 ;; Now we should match a sequence of either
6740 ;; '*', '&' or a name followed by ":: *",
6741 ;; where each can be followed by a sequence
6742 ;; of `c-opt-type-modifier-key'.
6743 (while (cond ((looking-at "[*&]")
6744 (goto-char (match-end 0))
6745 t)
6746 ((looking-at c-identifier-start)
6747 (and (c-forward-name)
6748 (looking-at "::")
6749 (progn
6750 (goto-char (match-end 0))
6751 (c-forward-syntactic-ws)
6752 (eq (char-after) ?*))
6753 (progn
6754 (forward-char)
6755 t))))
6756 (while (progn
6757 (c-forward-syntactic-ws)
6758 (setq pos (point))
6759 (looking-at c-opt-type-modifier-key))
6760 (goto-char (match-end 1))))))
6761
6762 ((looking-at c-overloadable-operators-regexp)
6763 ;; Got some other operator.
6764 (setq c-last-identifier-range
6765 (cons (point) (match-end 0)))
6766 (goto-char (match-end 0))
6767 (c-forward-syntactic-ws)
6768 (setq pos (point)
6769 res 'operator)))
6770
6771 nil)
6772
6773 ;; `id-start' is equal to `id-end' if we've jumped over
6774 ;; an identifier that doesn't end with a symbol token.
6775 ;; That can occur e.g. for Java import directives on the
6776 ;; form "foo.bar.*".
6777 (when (and id-start (/= id-start id-end))
6778 (setq c-last-identifier-range
6779 (cons id-start id-end)))
6780 (goto-char id-end)
6781 (c-forward-syntactic-ws)
6782 (setq pos (point)
6783 res t)))
6784
6785 (progn
6786 (goto-char pos)
6787 (when (or c-opt-identifier-concat-key
6788 c-recognize-<>-arglists)
6789
6790 (cond
6791 ((and c-opt-identifier-concat-key
6792 (looking-at c-opt-identifier-concat-key))
6793 ;; Got a concatenated identifier. This handles the
6794 ;; cases with tricky syntactic whitespace that aren't
6795 ;; covered in `c-identifier-key'.
6796 (goto-char (match-end 0))
6797 (c-forward-syntactic-ws)
6798 t)
6799
6800 ((and c-recognize-<>-arglists
6801 (eq (char-after) ?<))
6802 ;; Maybe an angle bracket arglist.
6803 (when (let (c-last-identifier-range)
6804 (c-forward-<>-arglist nil))
6805
6806 (c-forward-syntactic-ws)
6807 (unless (eq (char-after) ?\()
6808 (setq c-last-identifier-range nil)
6809 (c-add-type start (1+ pos)))
6810 (setq pos (point))
6811
6812 (if (and c-opt-identifier-concat-key
6813 (looking-at c-opt-identifier-concat-key))
6814
6815 ;; Continue if there's an identifier concatenation
6816 ;; operator after the template argument.
6817 (progn
6818 (when (and c-record-type-identifiers id-start)
6819 (c-record-ref-id (cons id-start id-end)))
6820 (forward-char 2)
6821 (c-forward-syntactic-ws)
6822 t)
6823
6824 (when (and c-record-type-identifiers id-start
6825 (not (eq (char-after) ?\()))
6826 (c-record-type-id (cons id-start id-end)))
6827 (setq res 'template)
6828 nil)))
6829 )))))
6830
6831 (goto-char pos)
6832 res))
6833
6834 (defun c-forward-type (&optional brace-block-too)
6835 ;; Move forward over a type spec if at the beginning of one,
6836 ;; stopping at the next following token. The keyword "typedef"
6837 ;; isn't part of a type spec here.
6838 ;;
6839 ;; BRACE-BLOCK-TOO, when non-nil, means move over the brace block in
6840 ;; constructs like "struct foo {...} bar ;" or "struct {...} bar;".
6841 ;; The current (2009-03-10) intention is to convert all uses of
6842 ;; `c-forward-type' to call with this parameter set, then to
6843 ;; eliminate it.
6844 ;;
6845 ;; Return
6846 ;; o - t if it's a known type that can't be a name or other
6847 ;; expression;
6848 ;; o - 'known if it's an otherwise known type (according to
6849 ;; `*-font-lock-extra-types');
6850 ;; o - 'prefix if it's a known prefix of a type;
6851 ;; o - 'found if it's a type that matches one in `c-found-types';
6852 ;; o - 'maybe if it's an identifier that might be a type;
6853 ;; o - 'decltype if it's a decltype(variable) declaration; - or
6854 ;; o - nil if it can't be a type (the point isn't moved then).
6855 ;;
6856 ;; The point is assumed to be at the beginning of a token.
6857 ;;
6858 ;; Note that this function doesn't skip past the brace definition
6859 ;; that might be considered part of the type, e.g.
6860 ;; "enum {a, b, c} foo".
6861 ;;
6862 ;; This function records identifier ranges on
6863 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
6864 ;; `c-record-type-identifiers' is non-nil.
6865 ;;
6866 ;; This function might do hidden buffer changes.
6867 (when (and c-recognize-<>-arglists
6868 (looking-at "<"))
6869 (c-forward-<>-arglist t)
6870 (c-forward-syntactic-ws))
6871
6872 (let ((start (point)) pos res name-res id-start id-end id-range)
6873
6874 ;; Skip leading type modifiers. If any are found we know it's a
6875 ;; prefix of a type.
6876 (when c-opt-type-modifier-key ; e.g. "const" "volatile", but NOT "typedef"
6877 (while (looking-at c-opt-type-modifier-key)
6878 (goto-char (match-end 1))
6879 (c-forward-syntactic-ws)
6880 (setq res 'prefix)))
6881
6882 (cond
6883 ((looking-at c-typeof-key) ; e.g. C++'s "decltype".
6884 (goto-char (match-end 1))
6885 (c-forward-syntactic-ws)
6886 (setq res (and (eq (char-after) ?\()
6887 (c-safe (c-forward-sexp))
6888 'decltype))
6889 (if res
6890 (c-forward-syntactic-ws)
6891 (goto-char start)))
6892
6893 ((looking-at c-type-prefix-key) ; e.g. "struct", "class", but NOT
6894 ; "typedef".
6895 (goto-char (match-end 1))
6896 (c-forward-syntactic-ws)
6897
6898 (while (cond
6899 ((looking-at c-decl-hangon-key)
6900 (c-forward-keyword-clause 1))
6901 ((and c-opt-cpp-prefix
6902 (looking-at c-noise-macro-with-parens-name-re))
6903 (c-forward-noise-clause))))
6904
6905 (setq pos (point))
6906
6907 (setq name-res (c-forward-name))
6908 (setq res (not (null name-res)))
6909 (when (eq name-res t)
6910 ;; In many languages the name can be used without the
6911 ;; prefix, so we add it to `c-found-types'.
6912 (c-add-type pos (point))
6913 (when (and c-record-type-identifiers
6914 c-last-identifier-range)
6915 (c-record-type-id c-last-identifier-range)))
6916 (when (and brace-block-too
6917 (memq res '(t nil))
6918 (eq (char-after) ?\{)
6919 (save-excursion
6920 (c-safe
6921 (progn (c-forward-sexp)
6922 (c-forward-syntactic-ws)
6923 (setq pos (point))))))
6924 (goto-char pos)
6925 (setq res t))
6926 (unless res (goto-char start))) ; invalid syntax
6927
6928 ((progn
6929 (setq pos nil)
6930 (if (looking-at c-identifier-start)
6931 (save-excursion
6932 (setq id-start (point)
6933 name-res (c-forward-name))
6934 (when name-res
6935 (setq id-end (point)
6936 id-range c-last-identifier-range))))
6937 (and (cond ((looking-at c-primitive-type-key)
6938 (setq res t))
6939 ((c-with-syntax-table c-identifier-syntax-table
6940 (looking-at c-known-type-key))
6941 (setq res 'known)))
6942 (or (not id-end)
6943 (>= (save-excursion
6944 (save-match-data
6945 (goto-char (match-end 1))
6946 (c-forward-syntactic-ws)
6947 (setq pos (point))))
6948 id-end)
6949 (setq res nil))))
6950 ;; Looking at a primitive or known type identifier. We've
6951 ;; checked for a name first so that we don't go here if the
6952 ;; known type match only is a prefix of another name.
6953
6954 (setq id-end (match-end 1))
6955
6956 (when (and c-record-type-identifiers
6957 (or c-promote-possible-types (eq res t)))
6958 (c-record-type-id (cons (match-beginning 1) (match-end 1))))
6959
6960 (if (and c-opt-type-component-key
6961 (save-match-data
6962 (looking-at c-opt-type-component-key)))
6963 ;; There might be more keywords for the type.
6964 (let (safe-pos)
6965 (c-forward-keyword-clause 1)
6966 (while (progn
6967 (setq safe-pos (point))
6968 (looking-at c-opt-type-component-key))
6969 (when (and c-record-type-identifiers
6970 (looking-at c-primitive-type-key))
6971 (c-record-type-id (cons (match-beginning 1)
6972 (match-end 1))))
6973 (c-forward-keyword-clause 1))
6974 (if (looking-at c-primitive-type-key)
6975 (progn
6976 (when c-record-type-identifiers
6977 (c-record-type-id (cons (match-beginning 1)
6978 (match-end 1))))
6979 (c-forward-keyword-clause 1)
6980 (setq res t))
6981 (goto-char safe-pos)
6982 (setq res 'prefix)))
6983 (unless (save-match-data (c-forward-keyword-clause 1))
6984 (if pos
6985 (goto-char pos)
6986 (goto-char (match-end 1))
6987 (c-forward-syntactic-ws)))))
6988
6989 (name-res
6990 (cond ((eq name-res t)
6991 ;; A normal identifier.
6992 (goto-char id-end)
6993 (if (or res c-promote-possible-types)
6994 (progn
6995 (c-add-type id-start id-end)
6996 (when (and c-record-type-identifiers id-range)
6997 (c-record-type-id id-range))
6998 (unless res
6999 (setq res 'found)))
7000 (setq res (if (c-check-type id-start id-end)
7001 ;; It's an identifier that has been used as
7002 ;; a type somewhere else.
7003 'found
7004 ;; It's an identifier that might be a type.
7005 'maybe))))
7006 ((eq name-res 'template)
7007 ;; A template is sometimes a type.
7008 (goto-char id-end)
7009 (c-forward-syntactic-ws)
7010 (setq res
7011 (if (eq (char-after) ?\()
7012 (if (c-check-type id-start id-end)
7013 ;; It's an identifier that has been used as
7014 ;; a type somewhere else.
7015 'found
7016 ;; It's an identifier that might be a type.
7017 'maybe)
7018 t)))
7019 (t
7020 ;; Otherwise it's an operator identifier, which is not a type.
7021 (goto-char start)
7022 (setq res nil)))))
7023
7024 (when res
7025 ;; Skip trailing type modifiers. If any are found we know it's
7026 ;; a type.
7027 (when c-opt-type-modifier-key
7028 (while (looking-at c-opt-type-modifier-key) ; e.g. "const", "volatile"
7029 (goto-char (match-end 1))
7030 (c-forward-syntactic-ws)
7031 (setq res t)))
7032
7033 ;; Step over any type suffix operator. Do not let the existence
7034 ;; of these alter the classification of the found type, since
7035 ;; these operators typically are allowed in normal expressions
7036 ;; too.
7037 (when c-opt-type-suffix-key ; e.g. "..."
7038 (while (looking-at c-opt-type-suffix-key)
7039 (goto-char (match-end 1))
7040 (c-forward-syntactic-ws)))
7041
7042 (when c-opt-type-concat-key ; Only/mainly for pike.
7043 ;; Look for a trailing operator that concatenates the type
7044 ;; with a following one, and if so step past that one through
7045 ;; a recursive call. Note that we don't record concatenated
7046 ;; types in `c-found-types' - it's the component types that
7047 ;; are recorded when appropriate.
7048 (setq pos (point))
7049 (let* ((c-promote-possible-types (or (memq res '(t known))
7050 c-promote-possible-types))
7051 ;; If we can't promote then set `c-record-found-types' so that
7052 ;; we can merge in the types from the second part afterwards if
7053 ;; it turns out to be a known type there.
7054 (c-record-found-types (and c-record-type-identifiers
7055 (not c-promote-possible-types)))
7056 subres)
7057 (if (and (looking-at c-opt-type-concat-key)
7058
7059 (progn
7060 (goto-char (match-end 1))
7061 (c-forward-syntactic-ws)
7062 (setq subres (c-forward-type))))
7063
7064 (progn
7065 ;; If either operand certainly is a type then both are, but we
7066 ;; don't let the existence of the operator itself promote two
7067 ;; uncertain types to a certain one.
7068 (cond ((eq res t))
7069 ((eq subres t)
7070 (unless (eq name-res 'template)
7071 (c-add-type id-start id-end))
7072 (when (and c-record-type-identifiers id-range)
7073 (c-record-type-id id-range))
7074 (setq res t))
7075 ((eq res 'known))
7076 ((eq subres 'known)
7077 (setq res 'known))
7078 ((eq res 'found))
7079 ((eq subres 'found)
7080 (setq res 'found))
7081 (t
7082 (setq res 'maybe)))
7083
7084 (when (and (eq res t)
7085 (consp c-record-found-types))
7086 ;; Merge in the ranges of any types found by the second
7087 ;; `c-forward-type'.
7088 (setq c-record-type-identifiers
7089 ;; `nconc' doesn't mind that the tail of
7090 ;; `c-record-found-types' is t.
7091 (nconc c-record-found-types
7092 c-record-type-identifiers))))
7093
7094 (goto-char pos))))
7095
7096 (when (and c-record-found-types (memq res '(known found)) id-range)
7097 (setq c-record-found-types
7098 (cons id-range c-record-found-types))))
7099
7100 ;;(message "c-forward-type %s -> %s: %s" start (point) res)
7101
7102 res))
7103
7104 (defun c-forward-annotation ()
7105 ;; Used for Java code only at the moment. Assumes point is on the @, moves
7106 ;; forward an annotation and returns t. Leaves point unmoved and returns
7107 ;; nil if there is no annotation at point.
7108 (let ((pos (point)))
7109 (or
7110 (and (looking-at "@")
7111 (not (looking-at c-keywords-regexp))
7112 (progn (forward-char) t)
7113 (looking-at c-symbol-key)
7114 (progn (goto-char (match-end 0))
7115 (c-forward-syntactic-ws)
7116 t)
7117 (if (looking-at "(")
7118 (c-go-list-forward)
7119 t))
7120 (progn (goto-char pos) nil))))
7121
7122 (defmacro c-pull-open-brace (ps)
7123 ;; Pull the next open brace from PS (which has the form of paren-state),
7124 ;; skipping over any brace pairs. Returns NIL when PS is exhausted.
7125 `(progn
7126 (while (consp (car ,ps))
7127 (setq ,ps (cdr ,ps)))
7128 (prog1 (car ,ps)
7129 (setq ,ps (cdr ,ps)))))
7130
7131 (defun c-back-over-compound-identifier ()
7132 ;; Point is putatively just after a "compound identifier", i.e. something
7133 ;; looking (in C++) like this "FQN::of::base::Class". Move to the start of
7134 ;; this construct and return t. If the parsing fails, return nil, leaving
7135 ;; point unchanged.
7136 (let ((here (point))
7137 end
7138 )
7139 (if (not (c-simple-skip-symbol-backward))
7140 nil
7141 (while
7142 (progn
7143 (setq end (point))
7144 (c-backward-syntactic-ws)
7145 (c-backward-token-2)
7146 (and
7147 c-opt-identifier-concat-key
7148 (looking-at c-opt-identifier-concat-key)
7149 (progn
7150 (c-backward-syntactic-ws)
7151 (c-simple-skip-symbol-backward))))
7152 (setq end (point)))
7153 (goto-char end)
7154 t)))
7155
7156 (defun c-back-over-member-initializer-braces ()
7157 ;; Point is just after a closing brace/parenthesis. Try to parse this as a
7158 ;; C++ member initializer list, going back to just after the introducing ":"
7159 ;; and returning t. Otherwise return nil, leaving point unchanged.
7160 (let ((here (point)) res)
7161 (setq res
7162 (catch 'done
7163 (when (not (c-go-list-backward))
7164 (throw 'done nil))
7165 (c-backward-syntactic-ws)
7166 (when (not (c-back-over-compound-identifier))
7167 (throw 'done nil))
7168 (c-backward-syntactic-ws)
7169
7170 (while (eq (char-before) ?,)
7171 (backward-char)
7172 (c-backward-syntactic-ws)
7173 (when (not (memq (char-before) '(?\) ?})))
7174 (throw 'done nil))
7175 (when (not (c-go-list-backward))
7176 (throw 'done nil))
7177 (c-backward-syntactic-ws)
7178 (when (not (c-back-over-compound-identifier))
7179 (throw 'done nil))
7180 (c-backward-syntactic-ws))
7181
7182 (eq (char-before) ?:)))
7183 (or res (goto-char here))
7184 res))
7185
7186 (defmacro c-back-over-list-of-member-inits ()
7187 ;; Go back over a list of elements, each looking like:
7188 ;; <symbol> (<expression>) ,
7189 ;; or <symbol> {<expression>} ,
7190 ;; when we are putatively immediately after a comma. Stop when we don't see
7191 ;; a comma. If either of <symbol> or bracketed <expression> is missing,
7192 ;; throw nil to 'level. If the terminating } or ) is unmatched, throw nil
7193 ;; to 'done. This is not a general purpose macro!
7194 `(while (eq (char-before) ?,)
7195 (backward-char)
7196 (c-backward-syntactic-ws)
7197 (when (not (memq (char-before) '(?\) ?})))
7198 (throw 'level nil))
7199 (when (not (c-go-list-backward))
7200 (throw 'done nil))
7201 (c-backward-syntactic-ws)
7202 (when (not (c-back-over-compound-identifier))
7203 (throw 'level nil))
7204 (c-backward-syntactic-ws)))
7205
7206 (defun c-back-over-member-initializers ()
7207 ;; Test whether we are in a C++ member initializer list, and if so, go back
7208 ;; to the introducing ":", returning the position of the opening paren of
7209 ;; the function's arglist. Otherwise return nil, leaving point unchanged.
7210 (let ((here (point))
7211 (paren-state (c-parse-state))
7212 pos level-plausible at-top-level res)
7213 ;; Assume tentatively that we're at the top level. Try to go back to the
7214 ;; colon we seek.
7215 (setq res
7216 (catch 'done
7217 (setq level-plausible
7218 (catch 'level
7219 (c-backward-syntactic-ws)
7220 (when (memq (char-before) '(?\) ?}))
7221 (when (not (c-go-list-backward))
7222 (throw 'done nil))
7223 (c-backward-syntactic-ws))
7224 (when (c-back-over-compound-identifier)
7225 (c-backward-syntactic-ws))
7226 (c-back-over-list-of-member-inits)
7227 (and (eq (char-before) ?:)
7228 (save-excursion
7229 (c-backward-token-2)
7230 (not (looking-at c-:$-multichar-token-regexp)))
7231 (c-just-after-func-arglist-p))))
7232
7233 (while (and (not (and level-plausible
7234 (setq at-top-level (c-at-toplevel-p))))
7235 (setq pos (c-pull-open-brace paren-state))) ; might be a paren.
7236 (setq level-plausible
7237 (catch 'level
7238 (goto-char pos)
7239 (c-backward-syntactic-ws)
7240 (when (not (c-back-over-compound-identifier))
7241 (throw 'level nil))
7242 (c-backward-syntactic-ws)
7243 (c-back-over-list-of-member-inits)
7244 (and (eq (char-before) ?:)
7245 (save-excursion
7246 (c-backward-token-2)
7247 (not (looking-at c-:$-multichar-token-regexp)))
7248 (c-just-after-func-arglist-p)))))
7249
7250 (and at-top-level level-plausible)))
7251 (or res (goto-char here))
7252 res))
7253
7254 \f
7255 ;; Handling of large scale constructs like statements and declarations.
7256
7257 ;; Macro used inside `c-forward-decl-or-cast-1'. It ought to be a
7258 ;; defsubst or perhaps even a defun, but it contains lots of free
7259 ;; variables that refer to things inside `c-forward-decl-or-cast-1'.
7260 (defmacro c-fdoc-shift-type-backward (&optional short)
7261 ;; `c-forward-decl-or-cast-1' can consume an arbitrary length list
7262 ;; of types when parsing a declaration, which means that it
7263 ;; sometimes consumes the identifier in the declaration as a type.
7264 ;; This is used to "backtrack" and make the last type be treated as
7265 ;; an identifier instead.
7266 `(progn
7267 ,(unless short
7268 ;; These identifiers are bound only in the inner let.
7269 '(setq identifier-type at-type
7270 identifier-start type-start
7271 got-parens nil
7272 got-identifier t
7273 got-suffix t
7274 got-suffix-after-parens id-start
7275 paren-depth 0))
7276
7277 (if (setq at-type (if (eq backup-at-type 'prefix)
7278 t
7279 backup-at-type))
7280 (setq type-start backup-type-start
7281 id-start backup-id-start)
7282 (setq type-start start-pos
7283 id-start start-pos))
7284
7285 ;; When these flags already are set we've found specifiers that
7286 ;; unconditionally signal these attributes - backtracking doesn't
7287 ;; change that. So keep them set in that case.
7288 (or at-type-decl
7289 (setq at-type-decl backup-at-type-decl))
7290 (or maybe-typeless
7291 (setq maybe-typeless backup-maybe-typeless))
7292
7293 ,(unless short
7294 ;; This identifier is bound only in the inner let.
7295 '(setq start id-start))))
7296
7297 (defun c-forward-declarator (&optional limit accept-anon)
7298 ;; Assuming point is at the start of a declarator, move forward over it,
7299 ;; leaving point at the next token after it (e.g. a ) or a ; or a ,).
7300 ;;
7301 ;; Return a list (ID-START ID-END BRACKETS-AFTER-ID GOT-INIT), where ID-START and
7302 ;; ID-END are the bounds of the declarator's identifier, and
7303 ;; BRACKETS-AFTER-ID is non-nil if a [...] pair is present after the id.
7304 ;; GOT-INIT is non-nil when the declarator is followed by "=" or "(".
7305 ;;
7306 ;; If ACCEPT-ANON is non-nil, move forward over any "anonymous declarator",
7307 ;; i.e. something like the (*) in int (*), such as might be found in a
7308 ;; declaration. In such a case ID-START and ID-END in the return value are
7309 ;; both set to nil. A "null" "anonymous declarator" gives a non-nil result.
7310 ;;
7311 ;; If no declarator is found, leave point unmoved and return nil. LIMIT is
7312 ;; an optional limit for forward searching.
7313 ;;
7314 ;; Note that the global variable `c-last-identifier-range' is written to, so
7315 ;; the caller should bind it if necessary.
7316
7317 ;; Inside the following "condition form", we move forward over the
7318 ;; declarator's identifier up as far as any opening bracket (for array
7319 ;; size) or paren (for parameters of function-type) or brace (for
7320 ;; array/struct initialization) or "=" or terminating delimiter
7321 ;; (e.g. "," or ";" or "}").
7322 (let ((here (point))
7323 id-start id-end brackets-after-id paren-depth)
7324 (or limit (setq limit (point-max)))
7325 (if (and
7326 (< (point) limit)
7327
7328 ;; The following form moves forward over the declarator's
7329 ;; identifier (and what precedes it), returning t. If there
7330 ;; wasn't one, it returns nil.
7331 (let (got-identifier)
7332 (setq paren-depth 0)
7333 ;; Skip over type decl prefix operators, one for each iteration
7334 ;; of the while. These are, e.g. "*" in "int *foo" or "(" and
7335 ;; "*" in "int (*foo) (void)" (Note similar code in
7336 ;; `c-forward-decl-or-cast-1'.)
7337 (while
7338 (cond
7339 ((looking-at c-decl-hangon-key)
7340 (c-forward-keyword-clause 1))
7341 ((and c-opt-cpp-prefix
7342 (looking-at c-noise-macro-with-parens-name-re))
7343 (c-forward-noise-clause))
7344 ((and (looking-at c-type-decl-prefix-key)
7345 (if (and (c-major-mode-is 'c++-mode)
7346 (match-beginning 3))
7347 ;; If the third submatch matches in C++ then
7348 ;; we're looking at an identifier that's a
7349 ;; prefix only if it specifies a member pointer.
7350 (progn
7351 (setq id-start (point))
7352 (c-forward-name)
7353 (if (looking-at "\\(::\\)")
7354 ;; We only check for a trailing "::" and
7355 ;; let the "*" that should follow be
7356 ;; matched in the next round.
7357 t
7358 ;; It turned out to be the real identifier,
7359 ;; so flag that and stop.
7360 (setq got-identifier t)
7361 nil))
7362 t))
7363 (if (eq (char-after) ?\()
7364 (progn
7365 (setq paren-depth (1+ paren-depth))
7366 (forward-char))
7367 (goto-char (match-end 1)))
7368 (c-forward-syntactic-ws)
7369 t)))
7370
7371 ;; If we haven't passed the identifier already, do it now.
7372 (unless got-identifier
7373 (setq id-start (point)))
7374 (cond
7375 ((or got-identifier
7376 (c-forward-name))
7377 (save-excursion
7378 (c-backward-syntactic-ws)
7379 (setq id-end (point))))
7380 (accept-anon
7381 (setq id-start nil id-end nil)
7382 t)
7383 (t (/= (point) here))))
7384
7385 ;; Skip out of the parens surrounding the identifier. If closing
7386 ;; parens are missing, this form returns nil.
7387 (or (= paren-depth 0)
7388 (c-safe (goto-char (scan-lists (point) 1 paren-depth))))
7389
7390 (<= (point) limit)
7391
7392 ;; Skip over any trailing bit, such as "__attribute__".
7393 (progn
7394 (while (cond
7395 ((looking-at c-decl-hangon-key)
7396 (c-forward-keyword-clause 1))
7397 ((and c-opt-cpp-prefix
7398 (looking-at c-noise-macro-with-parens-name-re))
7399 (c-forward-noise-clause))))
7400 (<= (point) limit))
7401
7402 ;; Search syntactically to the end of the declarator (";",
7403 ;; ",", a closing paren, eob etc) or to the beginning of an
7404 ;; initializer or function prototype ("=" or "\\s\(").
7405 ;; Note that square brackets are now not also treated as
7406 ;; initializers, since this broke when there were also
7407 ;; initializing brace lists.
7408 (let (found)
7409 (while
7410 (and (setq found (c-syntactic-re-search-forward
7411 "[;,]\\|\\s)\\|\\'\\|\\(=\\|\\s(\\)" limit t t))
7412 (eq (char-before) ?\[)
7413 (c-go-up-list-forward))
7414 (setq brackets-after-id t))
7415 (backward-char)
7416 found))
7417 (list id-start id-end brackets-after-id (match-beginning 1))
7418
7419 (goto-char here)
7420 nil)))
7421
7422 (defun c-forward-decl-or-cast-1 (preceding-token-end context last-cast-end)
7423 ;; Move forward over a declaration or a cast if at the start of one.
7424 ;; The point is assumed to be at the start of some token. Nil is
7425 ;; returned if no declaration or cast is recognized, and the point
7426 ;; is clobbered in that case.
7427 ;;
7428 ;; If a declaration is parsed:
7429 ;;
7430 ;; The point is left at the first token after the first complete
7431 ;; declarator, if there is one. The return value is a list of 4 elements,
7432 ;; where the first is the position of the first token in the declarator.
7433 ;; (See below for the other three.)
7434 ;; Some examples:
7435 ;;
7436 ;; void foo (int a, char *b) stuff ...
7437 ;; car ^ ^ point
7438 ;; float (*a)[], b;
7439 ;; car ^ ^ point
7440 ;; unsigned int a = c_style_initializer, b;
7441 ;; car ^ ^ point
7442 ;; unsigned int a (cplusplus_style_initializer), b;
7443 ;; car ^ ^ point (might change)
7444 ;; class Foo : public Bar {}
7445 ;; car ^ ^ point
7446 ;; class PikeClass (int a, string b) stuff ...
7447 ;; car ^ ^ point
7448 ;; enum bool;
7449 ;; car ^ ^ point
7450 ;; enum bool flag;
7451 ;; car ^ ^ point
7452 ;; void cplusplus_function (int x) throw (Bad);
7453 ;; car ^ ^ point
7454 ;; Foo::Foo (int b) : Base (b) {}
7455 ;; car ^ ^ point
7456 ;;
7457 ;; auto foo = 5;
7458 ;; car ^ ^ point
7459 ;; auto cplusplus_11 (int a, char *b) -> decltype (bar):
7460 ;; car ^ ^ point
7461 ;;
7462 ;;
7463 ;;
7464 ;; The second element of the return value is non-nil when a
7465 ;; `c-typedef-decl-kwds' specifier is found in the declaration.
7466 ;; Specifically it is a dotted pair (A . B) where B is t when a
7467 ;; `c-typedef-kwds' ("typedef") is present, and A is t when some
7468 ;; other `c-typedef-decl-kwds' (e.g. class, struct, enum)
7469 ;; specifier is present. I.e., (some of) the declared
7470 ;; identifier(s) are types.
7471 ;;
7472 ;; The third element of the return value is non-nil when the declaration
7473 ;; parsed might be an expression. The fourth element is the position of
7474 ;; the start of the type identifier.
7475 ;;
7476 ;; If a cast is parsed:
7477 ;;
7478 ;; The point is left at the first token after the closing paren of
7479 ;; the cast. The return value is `cast'. Note that the start
7480 ;; position must be at the first token inside the cast parenthesis
7481 ;; to recognize it.
7482 ;;
7483 ;; PRECEDING-TOKEN-END is the first position after the preceding
7484 ;; token, i.e. on the other side of the syntactic ws from the point.
7485 ;; Use a value less than or equal to (point-min) if the point is at
7486 ;; the first token in (the visible part of) the buffer.
7487 ;;
7488 ;; CONTEXT is a symbol that describes the context at the point:
7489 ;; 'decl In a comma-separated declaration context (typically
7490 ;; inside a function declaration arglist).
7491 ;; '<> In an angle bracket arglist.
7492 ;; 'arglist Some other type of arglist.
7493 ;; nil Some other context or unknown context. Includes
7494 ;; within the parens of an if, for, ... construct.
7495 ;;
7496 ;; LAST-CAST-END is the first token after the closing paren of a
7497 ;; preceding cast, or nil if none is known. If
7498 ;; `c-forward-decl-or-cast-1' is used in succession, it should be
7499 ;; the position after the closest preceding call where a cast was
7500 ;; matched. In that case it's used to discover chains of casts like
7501 ;; "(a) (b) c".
7502 ;;
7503 ;; This function records identifier ranges on
7504 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
7505 ;; `c-record-type-identifiers' is non-nil.
7506 ;;
7507 ;; This function might do hidden buffer changes.
7508
7509 (let (;; `start-pos' is used below to point to the start of the
7510 ;; first type, i.e. after any leading specifiers. It might
7511 ;; also point at the beginning of the preceding syntactic
7512 ;; whitespace.
7513 (start-pos (point))
7514 ;; Set to the result of `c-forward-type'.
7515 at-type
7516 ;; The position of the first token in what we currently
7517 ;; believe is the type in the declaration or cast, after any
7518 ;; specifiers and their associated clauses.
7519 type-start
7520 ;; The position of the first token in what we currently
7521 ;; believe is the declarator for the first identifier. Set
7522 ;; when the type is found, and moved forward over any
7523 ;; `c-decl-hangon-kwds' and their associated clauses that
7524 ;; occurs after the type.
7525 id-start
7526 ;; These store `at-type', `type-start' and `id-start' of the
7527 ;; identifier before the one in those variables. The previous
7528 ;; identifier might turn out to be the real type in a
7529 ;; declaration if the last one has to be the declarator in it.
7530 ;; If `backup-at-type' is nil then the other variables have
7531 ;; undefined values.
7532 backup-at-type backup-type-start backup-id-start
7533 ;; This stores `kwd-sym' of the symbol before the current one.
7534 ;; This is needed to distinguish the C++11 version of "auto" from
7535 ;; the pre C++11 meaning.
7536 backup-kwd-sym
7537 ;; Set if we've found a specifier (apart from "typedef") that makes
7538 ;; the defined identifier(s) types.
7539 at-type-decl
7540 ;; Set if we've a "typedef" keyword.
7541 at-typedef
7542 ;; Set if we've found a specifier that can start a declaration
7543 ;; where there's no type.
7544 maybe-typeless
7545 ;; Save the value of kwd-sym between loops of the "Check for a
7546 ;; type" loop. Needed to distinguish a C++11 "auto" from a pre
7547 ;; C++11 one.
7548 prev-kwd-sym
7549 ;; If a specifier is found that also can be a type prefix,
7550 ;; these flags are set instead of those above. If we need to
7551 ;; back up an identifier, they are copied to the real flag
7552 ;; variables. Thus they only take effect if we fail to
7553 ;; interpret it as a type.
7554 backup-at-type-decl backup-maybe-typeless
7555 ;; Whether we've found a declaration or a cast. We might know
7556 ;; this before we've found the type in it. It's 'ids if we've
7557 ;; found two consecutive identifiers (usually a sure sign, but
7558 ;; we should allow that in labels too), and t if we've found a
7559 ;; specifier keyword (a 100% sure sign).
7560 at-decl-or-cast
7561 ;; Set when we need to back up to parse this as a declaration
7562 ;; but not as a cast.
7563 backup-if-not-cast
7564 ;; For casts, the return position.
7565 cast-end
7566 ;; Have we got a new-style C++11 "auto"?
7567 new-style-auto
7568 ;; Set when the symbol before `preceding-token-end' is known to
7569 ;; terminate the previous construct, or when we're at point-min.
7570 at-decl-start
7571 ;; Save `c-record-type-identifiers' and
7572 ;; `c-record-ref-identifiers' since ranges are recorded
7573 ;; speculatively and should be thrown away if it turns out
7574 ;; that it isn't a declaration or cast.
7575 (save-rec-type-ids c-record-type-identifiers)
7576 (save-rec-ref-ids c-record-ref-identifiers)
7577 ;; Set when we parse a declaration which might also be an expression,
7578 ;; such as "a *b". See CASE 16 and CASE 17.
7579 maybe-expression)
7580
7581 (save-excursion
7582 (goto-char preceding-token-end)
7583 (setq at-decl-start
7584 (or (bobp)
7585 (let ((tok-end (point)))
7586 (c-backward-token-2)
7587 (member (buffer-substring-no-properties (point) tok-end)
7588 c-pre-start-tokens)))))
7589
7590 (while (c-forward-annotation)
7591 (c-forward-syntactic-ws))
7592
7593 ;; Check for a type. Unknown symbols are treated as possible
7594 ;; types, but they could also be specifiers disguised through
7595 ;; macros like __INLINE__, so we recognize both types and known
7596 ;; specifiers after them too.
7597 (while
7598 (let* ((start (point)) kwd-sym kwd-clause-end found-type noise-start)
7599
7600 (cond
7601 ;; Look for a specifier keyword clause.
7602 ((or (looking-at c-prefix-spec-kwds-re)
7603 (and (c-major-mode-is 'java-mode)
7604 (looking-at "@[A-Za-z0-9]+")))
7605 (save-match-data
7606 (if (looking-at c-typedef-key)
7607 (setq at-typedef t)))
7608 (setq kwd-sym (c-keyword-sym (match-string 1)))
7609 (save-excursion
7610 (c-forward-keyword-clause 1)
7611 (setq kwd-clause-end (point))))
7612 ((and c-opt-cpp-prefix
7613 (looking-at c-noise-macro-with-parens-name-re))
7614 (setq noise-start (point))
7615 (c-forward-noise-clause)
7616 (setq kwd-clause-end (point))))
7617
7618 (when (setq found-type (c-forward-type t)) ; brace-block-too
7619 ;; Found a known or possible type or a prefix of a known type.
7620 (when (and (c-major-mode-is 'c++-mode) ; C++11 style "auto"?
7621 (eq prev-kwd-sym (c-keyword-sym "auto"))
7622 (looking-at "[=(]")) ; FIXME!!! proper regexp.
7623 (setq new-style-auto t)
7624 (setq found-type nil)
7625 (goto-char start)) ; position of foo in "auto foo"
7626
7627 (when at-type
7628 ;; Got two identifiers with nothing but whitespace
7629 ;; between them. That can only happen in declarations.
7630 (setq at-decl-or-cast 'ids)
7631
7632 (when (eq at-type 'found)
7633 ;; If the previous identifier is a found type we
7634 ;; record it as a real one; it might be some sort of
7635 ;; alias for a prefix like "unsigned".
7636 (save-excursion
7637 (goto-char type-start)
7638 (let ((c-promote-possible-types t))
7639 (c-forward-type)))))
7640
7641 (setq backup-at-type at-type
7642 backup-type-start type-start
7643 backup-id-start id-start
7644 backup-kwd-sym kwd-sym
7645 at-type found-type
7646 type-start start
7647 id-start (point)
7648 ;; The previous ambiguous specifier/type turned out
7649 ;; to be a type since we've parsed another one after
7650 ;; it, so clear these backup flags.
7651 backup-at-type-decl nil
7652 backup-maybe-typeless nil))
7653
7654 (if (or kwd-sym noise-start)
7655 (progn
7656 ;; Handle known specifier keywords and
7657 ;; `c-decl-hangon-kwds' which can occur after known
7658 ;; types.
7659
7660 (if (or (c-keyword-member kwd-sym 'c-decl-hangon-kwds)
7661 noise-start)
7662 ;; It's a hang-on keyword or noise clause that can occur
7663 ;; anywhere.
7664 (progn
7665 (if at-type
7666 ;; Move the identifier start position if
7667 ;; we've passed a type.
7668 (setq id-start kwd-clause-end)
7669 ;; Otherwise treat this as a specifier and
7670 ;; move the fallback position.
7671 (setq start-pos kwd-clause-end))
7672 (goto-char kwd-clause-end))
7673
7674 ;; It's an ordinary specifier so we know that
7675 ;; anything before this can't be the type.
7676 (setq backup-at-type nil
7677 start-pos kwd-clause-end)
7678
7679 (if found-type
7680 ;; It's ambiguous whether this keyword is a
7681 ;; specifier or a type prefix, so set the backup
7682 ;; flags. (It's assumed that `c-forward-type'
7683 ;; moved further than `c-forward-keyword-clause'.)
7684 (progn
7685 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
7686 (setq backup-at-type-decl t))
7687 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
7688 (setq backup-maybe-typeless t)))
7689
7690 (when (c-keyword-member kwd-sym 'c-typedef-decl-kwds)
7691 ;; This test only happens after we've scanned a type.
7692 ;; So, with valid syntax, kwd-sym can't be 'typedef.
7693 (setq at-type-decl t))
7694 (when (c-keyword-member kwd-sym 'c-typeless-decl-kwds)
7695 (setq maybe-typeless t))
7696
7697 ;; Haven't matched a type so it's an unambiguous
7698 ;; specifier keyword and we know we're in a
7699 ;; declaration.
7700 (setq at-decl-or-cast t)
7701 (setq prev-kwd-sym kwd-sym)
7702
7703 (goto-char kwd-clause-end))))
7704
7705 ;; If the type isn't known we continue so that we'll jump
7706 ;; over all specifiers and type identifiers. The reason
7707 ;; to do this for a known type prefix is to make things
7708 ;; like "unsigned INT16" work.
7709 (and found-type (not (eq found-type t))))))
7710
7711 (cond
7712 ((eq at-type t)
7713 ;; If a known type was found, we still need to skip over any
7714 ;; hangon keyword clauses after it. Otherwise it has already
7715 ;; been done in the loop above.
7716 (while
7717 (cond ((looking-at c-decl-hangon-key)
7718 (c-forward-keyword-clause 1))
7719 ((and c-opt-cpp-prefix
7720 (looking-at c-noise-macro-with-parens-name-re))
7721 (c-forward-noise-clause))))
7722 (setq id-start (point)))
7723
7724 ((eq at-type 'prefix)
7725 ;; A prefix type is itself a primitive type when it's not
7726 ;; followed by another type.
7727 (setq at-type t))
7728
7729 ((not at-type)
7730 ;; Got no type but set things up to continue anyway to handle
7731 ;; the various cases when a declaration doesn't start with a
7732 ;; type.
7733 (setq id-start start-pos))
7734
7735 ((and (eq at-type 'maybe)
7736 (c-major-mode-is 'c++-mode))
7737 ;; If it's C++ then check if the last "type" ends on the form
7738 ;; "foo::foo" or "foo::~foo", i.e. if it's the name of a
7739 ;; (con|de)structor.
7740 (save-excursion
7741 (let (name end-2 end-1)
7742 (goto-char id-start)
7743 (c-backward-syntactic-ws)
7744 (setq end-2 (point))
7745 (when (and
7746 (c-simple-skip-symbol-backward)
7747 (progn
7748 (setq name
7749 (buffer-substring-no-properties (point) end-2))
7750 ;; Cheating in the handling of syntactic ws below.
7751 (< (skip-chars-backward ":~ \t\n\r\v\f") 0))
7752 (progn
7753 (setq end-1 (point))
7754 (c-simple-skip-symbol-backward))
7755 (>= (point) type-start)
7756 (equal (buffer-substring-no-properties (point) end-1)
7757 name))
7758 ;; It is a (con|de)structor name. In that case the
7759 ;; declaration is typeless so zap out any preceding
7760 ;; identifier(s) that we might have taken as types.
7761 (goto-char type-start)
7762 (setq at-type nil
7763 backup-at-type nil
7764 id-start type-start))))))
7765
7766 ;; Check for and step over a type decl expression after the thing
7767 ;; that is or might be a type. This can't be skipped since we
7768 ;; need the correct end position of the declarator for
7769 ;; `max-type-decl-end-*'.
7770 (let ((start (point)) (paren-depth 0) pos
7771 ;; True if there's a non-open-paren match of
7772 ;; `c-type-decl-prefix-key'.
7773 got-prefix
7774 ;; True if the declarator is surrounded by a parenthesis pair.
7775 got-parens
7776 ;; True if there is an identifier in the declarator.
7777 got-identifier
7778 ;; True if there's a non-close-paren match of
7779 ;; `c-type-decl-suffix-key'.
7780 got-suffix
7781 ;; True if there's a prefix match outside the outermost
7782 ;; paren pair that surrounds the declarator.
7783 got-prefix-before-parens
7784 ;; True if there's a suffix match outside the outermost
7785 ;; paren pair that surrounds the declarator. The value is
7786 ;; the position of the first suffix match.
7787 got-suffix-after-parens
7788 ;; True if we've parsed the type decl to a token that is
7789 ;; known to end declarations in this context.
7790 at-decl-end
7791 ;; The earlier values of `at-type' and `type-start' if we've
7792 ;; shifted the type backwards.
7793 identifier-type identifier-start
7794 ;; If `c-parse-and-markup-<>-arglists' is set we need to
7795 ;; turn it off during the name skipping below to avoid
7796 ;; getting `c-type' properties that might be bogus. That
7797 ;; can happen since we don't know if
7798 ;; `c-restricted-<>-arglists' will be correct inside the
7799 ;; arglist paren that gets entered.
7800 c-parse-and-markup-<>-arglists
7801 ;; Start of the identifier for which `got-identifier' was set.
7802 name-start)
7803
7804 (goto-char id-start)
7805
7806 ;; Skip over type decl prefix operators. (Note similar code in
7807 ;; `c-forward-declarator'.)
7808 (if (and c-recognize-typeless-decls
7809 (equal c-type-decl-prefix-key "\\<\\>"))
7810 (when (eq (char-after) ?\()
7811 (progn
7812 (setq paren-depth (1+ paren-depth))
7813 (forward-char)))
7814 (while (and (looking-at c-type-decl-prefix-key)
7815 (if (and (c-major-mode-is 'c++-mode)
7816 (match-beginning 3))
7817 ;; If the third submatch matches in C++ then
7818 ;; we're looking at an identifier that's a
7819 ;; prefix only if it specifies a member pointer.
7820 (when (progn (setq pos (point))
7821 (setq got-identifier (c-forward-name)))
7822 (setq name-start pos)
7823 (if (looking-at "\\(::\\)")
7824 ;; We only check for a trailing "::" and
7825 ;; let the "*" that should follow be
7826 ;; matched in the next round.
7827 (progn (setq got-identifier nil) t)
7828 ;; It turned out to be the real identifier,
7829 ;; so stop.
7830 nil))
7831 t))
7832
7833 (if (eq (char-after) ?\()
7834 (progn
7835 (setq paren-depth (1+ paren-depth))
7836 (forward-char))
7837 (unless got-prefix-before-parens
7838 (setq got-prefix-before-parens (= paren-depth 0)))
7839 (setq got-prefix t)
7840 (goto-char (match-end 1)))
7841 (c-forward-syntactic-ws)))
7842
7843 (setq got-parens (> paren-depth 0))
7844
7845 ;; Skip over an identifier.
7846 (or got-identifier
7847 (and (looking-at c-identifier-start)
7848 (setq pos (point))
7849 (setq got-identifier (c-forward-name))
7850 (setq name-start pos)))
7851
7852 ;; Skip over type decl suffix operators and trailing noise macros.
7853 (while
7854 (cond
7855 ((and c-opt-cpp-prefix
7856 (looking-at c-noise-macro-with-parens-name-re))
7857 (c-forward-noise-clause))
7858
7859 ((looking-at c-type-decl-suffix-key)
7860 (if (eq (char-after) ?\))
7861 (when (> paren-depth 0)
7862 (setq paren-depth (1- paren-depth))
7863 (forward-char)
7864 t)
7865 (when (if (save-match-data (looking-at "\\s("))
7866 (c-safe (c-forward-sexp 1) t)
7867 (goto-char (match-end 1))
7868 t)
7869 (when (and (not got-suffix-after-parens)
7870 (= paren-depth 0))
7871 (setq got-suffix-after-parens (match-beginning 0)))
7872 (setq got-suffix t))))
7873
7874 (t
7875 ;; No suffix matched. We might have matched the
7876 ;; identifier as a type and the open paren of a
7877 ;; function arglist as a type decl prefix. In that
7878 ;; case we should "backtrack": Reinterpret the last
7879 ;; type as the identifier, move out of the arglist and
7880 ;; continue searching for suffix operators.
7881 ;;
7882 ;; Do this even if there's no preceding type, to cope
7883 ;; with old style function declarations in K&R C,
7884 ;; (con|de)structors in C++ and `c-typeless-decl-kwds'
7885 ;; style declarations. That isn't applicable in an
7886 ;; arglist context, though.
7887 (when (and (= paren-depth 1)
7888 (not got-prefix-before-parens)
7889 (not (eq at-type t))
7890 (or backup-at-type
7891 maybe-typeless
7892 backup-maybe-typeless
7893 (when c-recognize-typeless-decls
7894 (not context)))
7895 (setq pos (c-up-list-forward (point)))
7896 (eq (char-before pos) ?\)))
7897 (c-fdoc-shift-type-backward)
7898 (goto-char pos)
7899 t)))
7900
7901 (c-forward-syntactic-ws))
7902
7903 (when (or (and new-style-auto
7904 (looking-at c-auto-ops-re))
7905 (and (or maybe-typeless backup-maybe-typeless)
7906 (not got-identifier)
7907 (not got-prefix)
7908 at-type))
7909 ;; Have found no identifier but `c-typeless-decl-kwds' has
7910 ;; matched so we know we're inside a declaration. The
7911 ;; preceding type must be the identifier instead.
7912 (c-fdoc-shift-type-backward))
7913
7914 ;; Prepare the "-> type;" for fontification later on.
7915 (when (and new-style-auto
7916 (looking-at c-haskell-op-re))
7917 (save-excursion
7918 (goto-char (match-end 0))
7919 (c-forward-syntactic-ws)
7920 (setq type-start (point))
7921 (setq at-type (c-forward-type))))
7922
7923 (setq
7924 at-decl-or-cast
7925 (catch 'at-decl-or-cast
7926
7927 ;; CASE 1
7928 (when (> paren-depth 0)
7929 ;; Encountered something inside parens that isn't matched by
7930 ;; the `c-type-decl-*' regexps, so it's not a type decl
7931 ;; expression. Try to skip out to the same paren depth to
7932 ;; not confuse the cast check below.
7933 (c-safe (goto-char (scan-lists (point) 1 paren-depth)))
7934 ;; If we've found a specifier keyword then it's a
7935 ;; declaration regardless.
7936 (throw 'at-decl-or-cast (eq at-decl-or-cast t)))
7937
7938 (setq at-decl-end
7939 (looking-at (cond ((eq context '<>) "[,>]")
7940 (context "[,)]")
7941 (t "[,;]"))))
7942
7943 ;; Now we've collected info about various characteristics of
7944 ;; the construct we're looking at. Below follows a decision
7945 ;; tree based on that. It's ordered to check more certain
7946 ;; signs before less certain ones.
7947
7948 (if got-identifier
7949 (progn
7950
7951 ;; CASE 2
7952 (when (and (or at-type maybe-typeless)
7953 (not (or got-prefix got-parens)))
7954 ;; Got another identifier directly after the type, so it's a
7955 ;; declaration.
7956 (throw 'at-decl-or-cast t))
7957
7958 (when (and got-parens
7959 (not got-prefix)
7960 ;; (not got-suffix-after-parens)
7961 (or backup-at-type
7962 maybe-typeless
7963 backup-maybe-typeless
7964 (eq at-decl-or-cast t)
7965 (save-excursion
7966 (goto-char name-start)
7967 (not (memq (c-forward-type) '(nil maybe))))))
7968 ;; Got a declaration of the form "foo bar (gnu);" or "bar
7969 ;; (gnu);" where we've recognized "bar" as the type and "gnu"
7970 ;; as the declarator. In this case it's however more likely
7971 ;; that "bar" is the declarator and "gnu" a function argument
7972 ;; or initializer (if `c-recognize-paren-inits' is set),
7973 ;; since the parens around "gnu" would be superfluous if it's
7974 ;; a declarator. Shift the type one step backward.
7975 (c-fdoc-shift-type-backward)))
7976
7977 ;; Found no identifier.
7978
7979 (if backup-at-type
7980 (progn
7981
7982 ;; CASE 3
7983 (when (= (point) start)
7984 ;; Got a plain list of identifiers. If a colon follows it's
7985 ;; a valid label, or maybe a bitfield. Otherwise the last
7986 ;; one probably is the declared identifier and we should
7987 ;; back up to the previous type, providing it isn't a cast.
7988 (if (and (eq (char-after) ?:)
7989 (not (c-major-mode-is 'java-mode)))
7990 (cond
7991 ;; If we've found a specifier keyword then it's a
7992 ;; declaration regardless.
7993 ((eq at-decl-or-cast t)
7994 (throw 'at-decl-or-cast t))
7995 ((and c-has-bitfields
7996 (eq at-decl-or-cast 'ids)) ; bitfield.
7997 (setq backup-if-not-cast t)
7998 (throw 'at-decl-or-cast t)))
7999
8000 (setq backup-if-not-cast t)
8001 (throw 'at-decl-or-cast t)))
8002
8003 ;; CASE 4
8004 (when (and got-suffix
8005 (not got-prefix)
8006 (not got-parens))
8007 ;; Got a plain list of identifiers followed by some suffix.
8008 ;; If this isn't a cast then the last identifier probably is
8009 ;; the declared one and we should back up to the previous
8010 ;; type.
8011 (setq backup-if-not-cast t)
8012 (throw 'at-decl-or-cast t)))
8013
8014 ;; CASE 5
8015 (when (eq at-type t)
8016 ;; If the type is known we know that there can't be any
8017 ;; identifier somewhere else, and it's only in declarations in
8018 ;; e.g. function prototypes and in casts that the identifier may
8019 ;; be left out.
8020 (throw 'at-decl-or-cast t))
8021
8022 (when (= (point) start)
8023 ;; Only got a single identifier (parsed as a type so far).
8024 ;; CASE 6
8025 (if (and
8026 ;; Check that the identifier isn't at the start of an
8027 ;; expression.
8028 at-decl-end
8029 (cond
8030 ((eq context 'decl)
8031 ;; Inside an arglist that contains declarations. If K&R
8032 ;; style declarations and parenthesis style initializers
8033 ;; aren't allowed then the single identifier must be a
8034 ;; type, else we require that it's known or found
8035 ;; (primitive types are handled above).
8036 (or (and (not c-recognize-knr-p)
8037 (not c-recognize-paren-inits))
8038 (memq at-type '(known found))))
8039 ((eq context '<>)
8040 ;; Inside a template arglist. Accept known and found
8041 ;; types; other identifiers could just as well be
8042 ;; constants in C++.
8043 (memq at-type '(known found)))))
8044 (throw 'at-decl-or-cast t)
8045 ;; CASE 7
8046 ;; Can't be a valid declaration or cast, but if we've found a
8047 ;; specifier it can't be anything else either, so treat it as
8048 ;; an invalid/unfinished declaration or cast.
8049 (throw 'at-decl-or-cast at-decl-or-cast))))
8050
8051 (if (and got-parens
8052 (not got-prefix)
8053 (not context)
8054 (not (eq at-type t))
8055 (or backup-at-type
8056 maybe-typeless
8057 backup-maybe-typeless
8058 (when c-recognize-typeless-decls
8059 (or (not got-suffix)
8060 (not (looking-at
8061 c-after-suffixed-type-maybe-decl-key))))))
8062 ;; Got an empty paren pair and a preceding type that probably
8063 ;; really is the identifier. Shift the type backwards to make
8064 ;; the last one the identifier. This is analogous to the
8065 ;; "backtracking" done inside the `c-type-decl-suffix-key' loop
8066 ;; above.
8067 ;;
8068 ;; Exception: In addition to the conditions in that
8069 ;; "backtracking" code, do not shift backward if we're not
8070 ;; looking at either `c-after-suffixed-type-decl-key' or "[;,]".
8071 ;; Since there's no preceding type, the shift would mean that
8072 ;; the declaration is typeless. But if the regexp doesn't match
8073 ;; then we will simply fall through in the tests below and not
8074 ;; recognize it at all, so it's better to try it as an abstract
8075 ;; declarator instead.
8076 (c-fdoc-shift-type-backward)
8077
8078 ;; Still no identifier.
8079 ;; CASE 8
8080 (when (and got-prefix (or got-parens got-suffix))
8081 ;; Require `got-prefix' together with either `got-parens' or
8082 ;; `got-suffix' to recognize it as an abstract declarator:
8083 ;; `got-parens' only is probably an empty function call.
8084 ;; `got-suffix' only can build an ordinary expression together
8085 ;; with the preceding identifier which we've taken as a type.
8086 ;; We could actually accept on `got-prefix' only, but that can
8087 ;; easily occur temporarily while writing an expression so we
8088 ;; avoid that case anyway. We could do a better job if we knew
8089 ;; the point when the fontification was invoked.
8090 (throw 'at-decl-or-cast t))
8091
8092 ;; CASE 9
8093 (when (and at-type
8094 (not got-prefix)
8095 (not got-parens)
8096 got-suffix-after-parens
8097 (eq (char-after got-suffix-after-parens) ?\())
8098 ;; Got a type, no declarator but a paren suffix. I.e. it's a
8099 ;; normal function call after all (or perhaps a C++ style object
8100 ;; instantiation expression).
8101 (throw 'at-decl-or-cast nil))))
8102
8103 ;; CASE 10
8104 (when at-decl-or-cast
8105 ;; By now we've located the type in the declaration that we know
8106 ;; we're in.
8107 (throw 'at-decl-or-cast t))
8108
8109 ;; CASE 11
8110 (when (and got-identifier
8111 (not context)
8112 (looking-at c-after-suffixed-type-decl-key)
8113 (if (and got-parens
8114 (not got-prefix)
8115 (not got-suffix)
8116 (not (eq at-type t)))
8117 ;; Shift the type backward in the case that there's a
8118 ;; single identifier inside parens. That can only
8119 ;; occur in K&R style function declarations so it's
8120 ;; more likely that it really is a function call.
8121 ;; Therefore we only do this after
8122 ;; `c-after-suffixed-type-decl-key' has matched.
8123 (progn (c-fdoc-shift-type-backward) t)
8124 got-suffix-after-parens))
8125 ;; A declaration according to `c-after-suffixed-type-decl-key'.
8126 (throw 'at-decl-or-cast t))
8127
8128 ;; CASE 12
8129 (when (and (or got-prefix (not got-parens))
8130 (memq at-type '(t known)))
8131 ;; It's a declaration if a known type precedes it and it can't be a
8132 ;; function call.
8133 (throw 'at-decl-or-cast t))
8134
8135 ;; If we get here we can't tell if this is a type decl or a normal
8136 ;; expression by looking at it alone. (That's under the assumption
8137 ;; that normal expressions always can look like type decl expressions,
8138 ;; which isn't really true but the cases where it doesn't hold are so
8139 ;; uncommon (e.g. some placements of "const" in C++) it's not worth
8140 ;; the effort to look for them.)
8141
8142 ;;; 2008-04-16: commented out the next form, to allow the function to recognize
8143 ;;; "foo (int bar)" in CC (an implicit type (in class foo) without a semicolon)
8144 ;;; as a(n almost complete) declaration, enabling it to be fontified.
8145 ;; CASE 13
8146 ;; (unless (or at-decl-end (looking-at "=[^=]"))
8147 ;; If this is a declaration it should end here or its initializer(*)
8148 ;; should start here, so check for allowed separation tokens. Note
8149 ;; that this rule doesn't work e.g. with a K&R arglist after a
8150 ;; function header.
8151 ;;
8152 ;; *) Don't check for C++ style initializers using parens
8153 ;; since those already have been matched as suffixes.
8154 ;;
8155 ;; If `at-decl-or-cast' is then we've found some other sign that
8156 ;; it's a declaration or cast, so then it's probably an
8157 ;; invalid/unfinished one.
8158 ;; (throw 'at-decl-or-cast at-decl-or-cast))
8159
8160 ;; Below are tests that only should be applied when we're certain to
8161 ;; not have parsed halfway through an expression.
8162
8163 ;; CASE 14
8164 (when (memq at-type '(t known))
8165 ;; The expression starts with a known type so treat it as a
8166 ;; declaration.
8167 (throw 'at-decl-or-cast t))
8168
8169 ;; CASE 15
8170 (when (and (c-major-mode-is 'c++-mode)
8171 ;; In C++ we check if the identifier is a known type, since
8172 ;; (con|de)structors use the class name as identifier.
8173 ;; We've always shifted over the identifier as a type and
8174 ;; then backed up again in this case.
8175 identifier-type
8176 (or (memq identifier-type '(found known))
8177 (and (eq (char-after identifier-start) ?~)
8178 ;; `at-type' probably won't be 'found for
8179 ;; destructors since the "~" is then part of the
8180 ;; type name being checked against the list of
8181 ;; known types, so do a check without that
8182 ;; operator.
8183 (or (save-excursion
8184 (goto-char (1+ identifier-start))
8185 (c-forward-syntactic-ws)
8186 (c-with-syntax-table
8187 c-identifier-syntax-table
8188 (looking-at c-known-type-key)))
8189 (save-excursion
8190 (goto-char (1+ identifier-start))
8191 ;; We have already parsed the type earlier,
8192 ;; so it'd be possible to cache the end
8193 ;; position instead of redoing it here, but
8194 ;; then we'd need to keep track of another
8195 ;; position everywhere.
8196 (c-check-type (point)
8197 (progn (c-forward-type)
8198 (point))))))))
8199 (throw 'at-decl-or-cast t))
8200
8201 (if got-identifier
8202 (progn
8203 ;; CASE 16
8204 (when (and got-prefix-before-parens
8205 at-type
8206 (or at-decl-end (looking-at "=[^=]"))
8207 (not context)
8208 (or (not got-suffix)
8209 at-decl-start))
8210 ;; Got something like "foo * bar;". Since we're not inside
8211 ;; an arglist it would be a meaningless expression because
8212 ;; the result isn't used. We therefore choose to recognize
8213 ;; it as a declaration. We only allow a suffix (which makes
8214 ;; the construct look like a function call) when
8215 ;; `at-decl-start' provides additional evidence that we do
8216 ;; have a declaration.
8217 (setq maybe-expression t)
8218 (throw 'at-decl-or-cast t))
8219
8220 ;; CASE 17
8221 (when (and (or got-suffix-after-parens
8222 (looking-at "=[^=]"))
8223 (eq at-type 'found)
8224 (not (eq context 'arglist)))
8225 ;; Got something like "a (*b) (c);" or "a (b) = c;". It could
8226 ;; be an odd expression or it could be a declaration. Treat
8227 ;; it as a declaration if "a" has been used as a type
8228 ;; somewhere else (if it's a known type we won't get here).
8229 (setq maybe-expression t)
8230 (throw 'at-decl-or-cast t)))
8231
8232 ;; CASE 18
8233 (when (and context
8234 (or got-prefix
8235 (and (eq context 'decl)
8236 (not c-recognize-paren-inits)
8237 (or got-parens got-suffix))))
8238 ;; Got a type followed by an abstract declarator. If `got-prefix'
8239 ;; is set it's something like "a *" without anything after it. If
8240 ;; `got-parens' or `got-suffix' is set it's "a()", "a[]", "a()[]",
8241 ;; or similar, which we accept only if the context rules out
8242 ;; expressions.
8243 (throw 'at-decl-or-cast t)))
8244
8245 ;; If we had a complete symbol table here (which rules out
8246 ;; `c-found-types') we should return t due to the disambiguation rule
8247 ;; (in at least C++) that anything that can be parsed as a declaration
8248 ;; is a declaration. Now we're being more defensive and prefer to
8249 ;; highlight things like "foo (bar);" as a declaration only if we're
8250 ;; inside an arglist that contains declarations.
8251 ;; CASE 19
8252 (eq context 'decl))))
8253
8254 ;; The point is now after the type decl expression.
8255
8256 (cond
8257 ;; Check for a cast.
8258 ((save-excursion
8259 (and
8260 c-cast-parens
8261
8262 ;; Should be the first type/identifier in a cast paren.
8263 (> preceding-token-end (point-min))
8264 (memq (char-before preceding-token-end) c-cast-parens)
8265
8266 ;; The closing paren should follow.
8267 (progn
8268 (c-forward-syntactic-ws)
8269 (looking-at "\\s)"))
8270
8271 ;; There should be a primary expression after it.
8272 (let (pos)
8273 (forward-char)
8274 (c-forward-syntactic-ws)
8275 (setq cast-end (point))
8276 (and (looking-at c-primary-expr-regexp)
8277 (progn
8278 (setq pos (match-end 0))
8279 (or
8280 ;; Check if the expression begins with a prefix keyword.
8281 (match-beginning 2)
8282 (if (match-beginning 1)
8283 ;; Expression begins with an ambiguous operator. Treat
8284 ;; it as a cast if it's a type decl or if we've
8285 ;; recognized the type somewhere else.
8286 (or at-decl-or-cast
8287 (memq at-type '(t known found)))
8288 ;; Unless it's a keyword, it's the beginning of a primary
8289 ;; expression.
8290 (not (looking-at c-keywords-regexp)))))
8291 ;; If `c-primary-expr-regexp' matched a nonsymbol token, check
8292 ;; that it matched a whole one so that we don't e.g. confuse
8293 ;; the operator '-' with '->'. It's ok if it matches further,
8294 ;; though, since it e.g. can match the float '.5' while the
8295 ;; operator regexp only matches '.'.
8296 (or (not (looking-at c-nonsymbol-token-regexp))
8297 (<= (match-end 0) pos))))
8298
8299 ;; There should either be a cast before it or something that isn't an
8300 ;; identifier or close paren.
8301 (> preceding-token-end (point-min))
8302 (progn
8303 (goto-char (1- preceding-token-end))
8304 (or (eq (point) last-cast-end)
8305 (progn
8306 (c-backward-syntactic-ws)
8307 (if (< (skip-syntax-backward "w_") 0)
8308 ;; It's a symbol. Accept it only if it's one of the
8309 ;; keywords that can precede an expression (without
8310 ;; surrounding parens).
8311 (looking-at c-simple-stmt-key)
8312 (and
8313 ;; Check that it isn't a close paren (block close is ok,
8314 ;; though).
8315 (not (memq (char-before) '(?\) ?\])))
8316 ;; Check that it isn't a nonsymbol identifier.
8317 (not (c-on-identifier)))))))))
8318
8319 ;; Handle the cast.
8320 (when (and c-record-type-identifiers at-type (not (eq at-type t)))
8321 (let ((c-promote-possible-types t))
8322 (goto-char type-start)
8323 (c-forward-type)))
8324
8325 (goto-char cast-end)
8326 'cast)
8327
8328 (at-decl-or-cast
8329 ;; We're at a declaration. Highlight the type and the following
8330 ;; declarators.
8331
8332 (when backup-if-not-cast
8333 (c-fdoc-shift-type-backward t))
8334
8335 (when (and (eq context 'decl) (looking-at ","))
8336 ;; Make sure to propagate the `c-decl-arg-start' property to
8337 ;; the next argument if it's set in this one, to cope with
8338 ;; interactive refontification.
8339 (c-put-c-type-property (point) 'c-decl-arg-start))
8340
8341 ;; Record the type's coordinates in `c-record-type-identifiers' for
8342 ;; later fontification.
8343 (when (and c-record-type-identifiers at-type ;; (not (eq at-type t))
8344 ;; There seems no reason to exclude a token from
8345 ;; fontification just because it's "a known type that can't
8346 ;; be a name or other expression". 2013-09-18.
8347 )
8348 (let ((c-promote-possible-types t))
8349 (save-excursion
8350 (goto-char type-start)
8351 (c-forward-type))))
8352
8353 (list id-start
8354 (and (or at-type-decl at-typedef)
8355 (cons at-type-decl at-typedef))
8356 maybe-expression
8357 type-start))
8358
8359 (t
8360 ;; False alarm. Restore the recorded ranges.
8361 (setq c-record-type-identifiers save-rec-type-ids
8362 c-record-ref-identifiers save-rec-ref-ids)
8363 nil))))
8364
8365 (defun c-forward-label (&optional assume-markup preceding-token-end limit)
8366 ;; Assuming that point is at the beginning of a token, check if it starts a
8367 ;; label and if so move over it and return non-nil (t in default situations,
8368 ;; specific symbols (see below) for interesting situations), otherwise don't
8369 ;; move and return nil. "Label" here means "most things with a colon".
8370 ;;
8371 ;; More precisely, a "label" is regarded as one of:
8372 ;; (i) a goto target like "foo:" - returns the symbol `goto-target';
8373 ;; (ii) A case label - either the entire construct "case FOO:", or just the
8374 ;; bare "case", should the colon be missing. We return t;
8375 ;; (iii) a keyword which needs a colon, like "default:" or "private:"; We
8376 ;; return t;
8377 ;; (iv) One of QT's "extended" C++ variants of
8378 ;; "private:"/"protected:"/"public:"/"more:" looking like "public slots:".
8379 ;; Returns the symbol `qt-2kwds-colon'.
8380 ;; (v) QT's construct "signals:". Returns the symbol `qt-1kwd-colon'.
8381 ;; (vi) One of the keywords matched by `c-opt-extra-label-key' (without any
8382 ;; colon). Currently (2006-03), this applies only to Objective C's
8383 ;; keywords "@private", "@protected", and "@public". Returns t.
8384 ;;
8385 ;; One of the things which will NOT be recognized as a label is a bit-field
8386 ;; element of a struct, something like "int foo:5".
8387 ;;
8388 ;; The end of the label is taken to be just after the colon, or the end of
8389 ;; the first submatch in `c-opt-extra-label-key'. The point is directly
8390 ;; after the end on return. The terminating char gets marked with
8391 ;; `c-decl-end' to improve recognition of the following declaration or
8392 ;; statement.
8393 ;;
8394 ;; If ASSUME-MARKUP is non-nil, it's assumed that the preceding
8395 ;; label, if any, has already been marked up like that.
8396 ;;
8397 ;; If PRECEDING-TOKEN-END is given, it should be the first position
8398 ;; after the preceding token, i.e. on the other side of the
8399 ;; syntactic ws from the point. Use a value less than or equal to
8400 ;; (point-min) if the point is at the first token in (the visible
8401 ;; part of) the buffer.
8402 ;;
8403 ;; The optional LIMIT limits the forward scan for the colon.
8404 ;;
8405 ;; This function records the ranges of the label symbols on
8406 ;; `c-record-ref-identifiers' if `c-record-type-identifiers' (!) is
8407 ;; non-nil.
8408 ;;
8409 ;; This function might do hidden buffer changes.
8410
8411 (let ((start (point))
8412 label-end
8413 qt-symbol-idx
8414 macro-start ; if we're in one.
8415 label-type
8416 kwd)
8417 (cond
8418 ;; "case" or "default" (Doesn't apply to AWK).
8419 ((looking-at c-label-kwds-regexp)
8420 (let ((kwd-end (match-end 1)))
8421 ;; Record only the keyword itself for fontification, since in
8422 ;; case labels the following is a constant expression and not
8423 ;; a label.
8424 (when c-record-type-identifiers
8425 (c-record-ref-id (cons (match-beginning 1) kwd-end)))
8426
8427 ;; Find the label end.
8428 (goto-char kwd-end)
8429 (setq label-type
8430 (if (and (c-syntactic-re-search-forward
8431 ;; Stop on chars that aren't allowed in expressions,
8432 ;; and on operator chars that would be meaningless
8433 ;; there. FIXME: This doesn't cope with ?: operators.
8434 "[;{=,@]\\|\\(\\=\\|[^:]\\):\\([^:]\\|\\'\\)"
8435 limit t t nil 1)
8436 (match-beginning 2))
8437
8438 (progn ; there's a proper :
8439 (goto-char (match-beginning 2)) ; just after the :
8440 (c-put-c-type-property (1- (point)) 'c-decl-end)
8441 t)
8442
8443 ;; It's an unfinished label. We consider the keyword enough
8444 ;; to recognize it as a label, so that it gets fontified.
8445 ;; Leave the point at the end of it, but don't put any
8446 ;; `c-decl-end' marker.
8447 (goto-char kwd-end)
8448 t))))
8449
8450 ;; @private, @protected, @public, in Objective C, or similar.
8451 ((and c-opt-extra-label-key
8452 (looking-at c-opt-extra-label-key))
8453 ;; For a `c-opt-extra-label-key' match, we record the whole
8454 ;; thing for fontification. That's to get the leading '@' in
8455 ;; Objective-C protection labels fontified.
8456 (goto-char (match-end 1))
8457 (when c-record-type-identifiers
8458 (c-record-ref-id (cons (match-beginning 1) (point))))
8459 (c-put-c-type-property (1- (point)) 'c-decl-end)
8460 (setq label-type t))
8461
8462 ;; All other cases of labels.
8463 ((and c-recognize-colon-labels ; nil for AWK and IDL, otherwise t.
8464
8465 ;; A colon label must have something before the colon.
8466 (not (eq (char-after) ?:))
8467
8468 ;; Check that we're not after a token that can't precede a label.
8469 (or
8470 ;; Trivially succeeds when there's no preceding token.
8471 ;; Succeeds when we're at a virtual semicolon.
8472 (if preceding-token-end
8473 (<= preceding-token-end (point-min))
8474 (save-excursion
8475 (c-backward-syntactic-ws)
8476 (setq preceding-token-end (point))
8477 (or (bobp)
8478 (c-at-vsemi-p))))
8479
8480 ;; Check if we're after a label, if we're after a closing
8481 ;; paren that belong to statement, and with
8482 ;; `c-label-prefix-re'. It's done in different order
8483 ;; depending on `assume-markup' since the checks have
8484 ;; different expensiveness.
8485 (if assume-markup
8486 (or
8487 (eq (c-get-char-property (1- preceding-token-end) 'c-type)
8488 'c-decl-end)
8489
8490 (save-excursion
8491 (goto-char (1- preceding-token-end))
8492 (c-beginning-of-current-token)
8493 (or (looking-at c-label-prefix-re)
8494 (looking-at c-block-stmt-1-key)))
8495
8496 (and (eq (char-before preceding-token-end) ?\))
8497 (c-after-conditional)))
8498
8499 (or
8500 (save-excursion
8501 (goto-char (1- preceding-token-end))
8502 (c-beginning-of-current-token)
8503 (or (looking-at c-label-prefix-re)
8504 (looking-at c-block-stmt-1-key)))
8505
8506 (cond
8507 ((eq (char-before preceding-token-end) ?\))
8508 (c-after-conditional))
8509
8510 ((eq (char-before preceding-token-end) ?:)
8511 ;; Might be after another label, so check it recursively.
8512 (save-restriction
8513 (save-excursion
8514 (goto-char (1- preceding-token-end))
8515 ;; Essentially the same as the
8516 ;; `c-syntactic-re-search-forward' regexp below.
8517 (setq macro-start
8518 (save-excursion (and (c-beginning-of-macro)
8519 (point))))
8520 (if macro-start (narrow-to-region macro-start (point-max)))
8521 (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+" nil t)
8522 ;; Note: the following should work instead of the
8523 ;; narrow-to-region above. Investigate why not,
8524 ;; sometime. ACM, 2006-03-31.
8525 ;; (c-syntactic-skip-backward "^-]:?;}=*/%&|,<>!@+"
8526 ;; macro-start t)
8527 (let ((pte (point))
8528 ;; If the caller turned on recording for us,
8529 ;; it shouldn't apply when we check the
8530 ;; preceding label.
8531 c-record-type-identifiers)
8532 ;; A label can't start at a cpp directive. Check for
8533 ;; this, since c-forward-syntactic-ws would foul up on it.
8534 (unless (and c-opt-cpp-prefix (looking-at c-opt-cpp-prefix))
8535 (c-forward-syntactic-ws)
8536 (c-forward-label nil pte start))))))))))
8537
8538 ;; Point is still at the beginning of the possible label construct.
8539 ;;
8540 ;; Check that the next nonsymbol token is ":", or that we're in one
8541 ;; of QT's "slots" declarations. Allow '(' for the sake of macro
8542 ;; arguments. FIXME: Should build this regexp from the language
8543 ;; constants.
8544 (cond
8545 ;; public: protected: private:
8546 ((and
8547 (c-major-mode-is 'c++-mode)
8548 (search-forward-regexp
8549 "\\=p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\>[^_]" nil t)
8550 (progn (backward-char)
8551 (c-forward-syntactic-ws limit)
8552 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon.
8553 (forward-char)
8554 (setq label-type t))
8555 ;; QT double keyword like "protected slots:" or goto target.
8556 ((progn (goto-char start) nil))
8557 ((when (c-syntactic-re-search-forward
8558 "[ \t\n[:?;{=*/%&|,<>!@+-]" limit t t) ; not at EOB
8559 (backward-char)
8560 (setq label-end (point))
8561 (setq qt-symbol-idx
8562 (and (c-major-mode-is 'c++-mode)
8563 (string-match
8564 "\\(p\\(r\\(ivate\\|otected\\)\\|ublic\\)\\|more\\)\\>"
8565 (buffer-substring start (point)))))
8566 (c-forward-syntactic-ws limit)
8567 (cond
8568 ((looking-at ":\\([^:]\\|\\'\\)") ; A single colon.
8569 (forward-char)
8570 (setq label-type
8571 (if (or (string= "signals" ; Special QT macro
8572 (setq kwd (buffer-substring-no-properties start label-end)))
8573 (string= "Q_SIGNALS" kwd))
8574 'qt-1kwd-colon
8575 'goto-target)))
8576 ((and qt-symbol-idx
8577 (search-forward-regexp "\\=\\(slots\\|Q_SLOTS\\)\\>" limit t)
8578 (progn (c-forward-syntactic-ws limit)
8579 (looking-at ":\\([^:]\\|\\'\\)"))) ; A single colon
8580 (forward-char)
8581 (setq label-type 'qt-2kwds-colon)))))))
8582
8583 (save-restriction
8584 (narrow-to-region start (point))
8585
8586 ;; Check that `c-nonlabel-token-key' doesn't match anywhere.
8587 (catch 'check-label
8588 (goto-char start)
8589 (while (progn
8590 (when (looking-at c-nonlabel-token-key)
8591 (goto-char start)
8592 (setq label-type nil)
8593 (throw 'check-label nil))
8594 (and (c-safe (c-forward-sexp)
8595 (c-forward-syntactic-ws)
8596 t)
8597 (not (eobp)))))
8598
8599 ;; Record the identifiers in the label for fontification, unless
8600 ;; it begins with `c-label-kwds' in which case the following
8601 ;; identifiers are part of a (constant) expression that
8602 ;; shouldn't be fontified.
8603 (when (and c-record-type-identifiers
8604 (progn (goto-char start)
8605 (not (looking-at c-label-kwds-regexp))))
8606 (while (c-syntactic-re-search-forward c-symbol-key nil t)
8607 (c-record-ref-id (cons (match-beginning 0)
8608 (match-end 0)))))
8609
8610 (c-put-c-type-property (1- (point-max)) 'c-decl-end)
8611 (goto-char (point-max)))))
8612
8613 (t
8614 ;; Not a label.
8615 (goto-char start)))
8616 label-type))
8617
8618 (defun c-forward-objc-directive ()
8619 ;; Assuming the point is at the beginning of a token, try to move
8620 ;; forward to the end of the Objective-C directive that starts
8621 ;; there. Return t if a directive was fully recognized, otherwise
8622 ;; the point is moved as far as one could be successfully parsed and
8623 ;; nil is returned.
8624 ;;
8625 ;; This function records identifier ranges on
8626 ;; `c-record-type-identifiers' and `c-record-ref-identifiers' if
8627 ;; `c-record-type-identifiers' is non-nil.
8628 ;;
8629 ;; This function might do hidden buffer changes.
8630
8631 (let ((start (point))
8632 start-char
8633 (c-promote-possible-types t)
8634 lim
8635 ;; Turn off recognition of angle bracket arglists while parsing
8636 ;; types here since the protocol reference list might then be
8637 ;; considered part of the preceding name or superclass-name.
8638 c-recognize-<>-arglists)
8639
8640 (if (or
8641 (when (looking-at
8642 (eval-when-compile
8643 (c-make-keywords-re t
8644 (append (c-lang-const c-protection-kwds objc)
8645 '("@end"))
8646 'objc-mode)))
8647 (goto-char (match-end 1))
8648 t)
8649
8650 (and
8651 (looking-at
8652 (eval-when-compile
8653 (c-make-keywords-re t
8654 '("@interface" "@implementation" "@protocol")
8655 'objc-mode)))
8656
8657 ;; Handle the name of the class itself.
8658 (progn
8659 ;; (c-forward-token-2) ; 2006/1/13 This doesn't move if the token's
8660 ;; at EOB.
8661 (goto-char (match-end 0))
8662 (setq lim (point))
8663 (c-skip-ws-forward)
8664 (c-forward-type))
8665
8666 (catch 'break
8667 ;; Look for ": superclass-name" or "( category-name )".
8668 (when (looking-at "[:(]")
8669 (setq start-char (char-after))
8670 (forward-char)
8671 (c-forward-syntactic-ws)
8672 (unless (c-forward-type) (throw 'break nil))
8673 (when (eq start-char ?\()
8674 (unless (eq (char-after) ?\)) (throw 'break nil))
8675 (forward-char)
8676 (c-forward-syntactic-ws)))
8677
8678 ;; Look for a protocol reference list.
8679 (if (eq (char-after) ?<)
8680 (let ((c-recognize-<>-arglists t)
8681 (c-parse-and-markup-<>-arglists t)
8682 c-restricted-<>-arglists)
8683 (c-forward-<>-arglist t))
8684 t))))
8685
8686 (progn
8687 (c-backward-syntactic-ws lim)
8688 (c-clear-c-type-property start (1- (point)) 'c-decl-end)
8689 (c-put-c-type-property (1- (point)) 'c-decl-end)
8690 t)
8691
8692 (c-clear-c-type-property start (point) 'c-decl-end)
8693 nil)))
8694
8695 (defun c-beginning-of-inheritance-list (&optional lim)
8696 ;; Go to the first non-whitespace after the colon that starts a
8697 ;; multiple inheritance introduction. Optional LIM is the farthest
8698 ;; back we should search.
8699 ;;
8700 ;; This function might do hidden buffer changes.
8701 (c-with-syntax-table c++-template-syntax-table
8702 (c-backward-token-2 0 t lim)
8703 (while (and (or (looking-at c-symbol-start)
8704 (looking-at "[<,]\\|::"))
8705 (zerop (c-backward-token-2 1 t lim))))))
8706
8707 (defun c-in-method-def-p ()
8708 ;; Return nil if we aren't in a method definition, otherwise the
8709 ;; position of the initial [+-].
8710 ;;
8711 ;; This function might do hidden buffer changes.
8712 (save-excursion
8713 (beginning-of-line)
8714 (and c-opt-method-key
8715 (looking-at c-opt-method-key)
8716 (point))
8717 ))
8718
8719 ;; Contributed by Kevin Ryde <user42@zip.com.au>.
8720 (defun c-in-gcc-asm-p ()
8721 ;; Return non-nil if point is within a gcc \"asm\" block.
8722 ;;
8723 ;; This should be called with point inside an argument list.
8724 ;;
8725 ;; Only one level of enclosing parentheses is considered, so for
8726 ;; instance nil is returned when in a function call within an asm
8727 ;; operand.
8728 ;;
8729 ;; This function might do hidden buffer changes.
8730
8731 (and c-opt-asm-stmt-key
8732 (save-excursion
8733 (beginning-of-line)
8734 (backward-up-list 1)
8735 (c-beginning-of-statement-1 (point-min) nil t)
8736 (looking-at c-opt-asm-stmt-key))))
8737
8738 (defun c-at-toplevel-p ()
8739 "Return a determination as to whether point is \"at the top level\".
8740 Informally, \"at the top level\" is anywhere where you can write
8741 a function.
8742
8743 More precisely, being at the top-level means that point is either
8744 outside any enclosing block (such as a function definition), or
8745 directly inside a class, namespace or other block that contains
8746 another declaration level.
8747
8748 If point is not at the top-level (e.g. it is inside a method
8749 definition), then nil is returned. Otherwise, if point is at a
8750 top-level not enclosed within a class definition, t is returned.
8751 Otherwise, a 2-vector is returned where the zeroth element is the
8752 buffer position of the start of the class declaration, and the first
8753 element is the buffer position of the enclosing class's opening
8754 brace.
8755
8756 Note that this function might do hidden buffer changes. See the
8757 comment at the start of cc-engine.el for more info."
8758 ;; Note to maintainers: this function consumes a great mass of CPU cycles.
8759 ;; Its use should thus be minimized as far as possible.
8760 (let ((paren-state (c-parse-state)))
8761 (or (not (c-most-enclosing-brace paren-state))
8762 (c-search-uplist-for-classkey paren-state))))
8763
8764 (defun c-just-after-func-arglist-p (&optional lim)
8765 ;; Return non-nil if the point is in the region after the argument
8766 ;; list of a function and its opening brace (or semicolon in case it
8767 ;; got no body). If there are K&R style argument declarations in
8768 ;; that region, the point has to be inside the first one for this
8769 ;; function to recognize it.
8770 ;;
8771 ;; If successful, the point is moved to the first token after the
8772 ;; function header (see `c-forward-decl-or-cast-1' for details) and
8773 ;; the position of the opening paren of the function arglist is
8774 ;; returned.
8775 ;;
8776 ;; The point is clobbered if not successful.
8777 ;;
8778 ;; LIM is used as bound for backward buffer searches.
8779 ;;
8780 ;; This function might do hidden buffer changes.
8781
8782 (let ((beg (point)) id-start)
8783 (and
8784 (eq (c-beginning-of-statement-1 lim) 'same)
8785
8786 (not (and (c-major-mode-is 'objc-mode)
8787 (c-forward-objc-directive)))
8788
8789 (setq id-start
8790 (car-safe (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil)))
8791 (< id-start beg)
8792
8793 ;; There should not be a '=' or ',' between beg and the
8794 ;; start of the declaration since that means we were in the
8795 ;; "expression part" of the declaration.
8796 (or (> (point) beg)
8797 (not (looking-at "[=,]")))
8798
8799 (save-excursion
8800 ;; Check that there's an arglist paren in the
8801 ;; declaration.
8802 (goto-char id-start)
8803 (cond ((eq (char-after) ?\()
8804 ;; The declarator is a paren expression, so skip past it
8805 ;; so that we don't get stuck on that instead of the
8806 ;; function arglist.
8807 (c-forward-sexp))
8808 ((and c-opt-op-identifier-prefix
8809 (looking-at c-opt-op-identifier-prefix))
8810 ;; Don't trip up on "operator ()".
8811 (c-forward-token-2 2 t)))
8812 (and (< (point) beg)
8813 (c-syntactic-re-search-forward "(" beg t t)
8814 (1- (point)))))))
8815
8816 (defun c-in-knr-argdecl (&optional lim)
8817 ;; Return the position of the first argument declaration if point is
8818 ;; inside a K&R style argument declaration list, nil otherwise.
8819 ;; `c-recognize-knr-p' is not checked. If LIM is non-nil, it's a
8820 ;; position that bounds the backward search for the argument list. This
8821 ;; function doesn't move point.
8822 ;;
8823 ;; Point must be within a possible K&R region, e.g. just before a top-level
8824 ;; "{". It must be outside of parens and brackets. The test can return
8825 ;; false positives otherwise.
8826 ;;
8827 ;; This function might do hidden buffer changes.
8828 (save-excursion
8829 (save-restriction
8830 ;; If we're in a macro, our search range is restricted to it. Narrow to
8831 ;; the searchable range.
8832 (let* ((macro-start (save-excursion (and (c-beginning-of-macro) (point))))
8833 (macro-end (save-excursion (and macro-start (c-end-of-macro) (point))))
8834 (low-lim (max (or lim (point-min)) (or macro-start (point-min))))
8835 before-lparen after-rparen
8836 (here (point))
8837 (pp-count-out 20) ; Max number of paren/brace constructs before
8838 ; we give up.
8839 ids ; List of identifiers in the parenthesized list.
8840 id-start after-prec-token decl-or-cast decl-res
8841 c-last-identifier-range identifier-ok)
8842 (narrow-to-region low-lim (or macro-end (point-max)))
8843
8844 ;; Search backwards for the defun's argument list. We give up if we
8845 ;; encounter a "}" (end of a previous defun) an "=" (which can't be in
8846 ;; a knr region) or BOB.
8847 ;;
8848 ;; The criterion for a paren structure being the arg list is:
8849 ;; o - there is non-WS stuff after it but before any "{"; AND
8850 ;; o - the token after it isn't a ";" AND
8851 ;; o - it is preceded by either an identifier (the function name) or
8852 ;; a macro expansion like "DEFUN (...)"; AND
8853 ;; o - its content is a non-empty comma-separated list of identifiers
8854 ;; (an empty arg list won't have a knr region).
8855 ;;
8856 ;; The following snippet illustrates these rules:
8857 ;; int foo (bar, baz, yuk)
8858 ;; int bar [] ;
8859 ;; int (*baz) (my_type) ;
8860 ;; int (*(* yuk) (void)) (void) ;
8861 ;; {
8862 ;;
8863 ;; Additionally, for a knr list to be recognized:
8864 ;; o - The identifier of each declarator up to and including the
8865 ;; one "near" point must be contained in the arg list.
8866
8867 (catch 'knr
8868 (while (> pp-count-out 0) ; go back one paren/bracket pair each time.
8869 (setq pp-count-out (1- pp-count-out))
8870 (c-syntactic-skip-backward "^)]}=")
8871 (cond ((eq (char-before) ?\))
8872 (setq after-rparen (point)))
8873 ((eq (char-before) ?\])
8874 (setq after-rparen nil))
8875 (t ; either } (hit previous defun) or = or no more
8876 ; parens/brackets.
8877 (throw 'knr nil)))
8878
8879 (if after-rparen
8880 ;; We're inside a paren. Could it be our argument list....?
8881 (if
8882 (and
8883 (progn
8884 (goto-char after-rparen)
8885 (unless (c-go-list-backward) (throw 'knr nil)) ;
8886 ;; FIXME!!! What about macros between the parens? 2007/01/20
8887 (setq before-lparen (point)))
8888
8889 ;; It can't be the arg list if next token is ; or {
8890 (progn (goto-char after-rparen)
8891 (c-forward-syntactic-ws)
8892 (not (memq (char-after) '(?\; ?\{ ?\=))))
8893
8894 ;; Is the thing preceding the list an identifier (the
8895 ;; function name), or a macro expansion?
8896 (progn
8897 (goto-char before-lparen)
8898 (eq (c-backward-token-2) 0)
8899 (or (eq (c-on-identifier) (point))
8900 (and (eq (char-after) ?\))
8901 (c-go-up-list-backward)
8902 (eq (c-backward-token-2) 0)
8903 (eq (c-on-identifier) (point)))))
8904
8905 ;; Have we got a non-empty list of comma-separated
8906 ;; identifiers?
8907 (progn
8908 (goto-char before-lparen)
8909 (c-forward-token-2) ; to first token inside parens
8910 (and
8911 (setq id-start (c-on-identifier)) ; Must be at least one.
8912 (catch 'id-list
8913 (while
8914 (progn
8915 (forward-char)
8916 (c-end-of-current-token)
8917 (push (buffer-substring-no-properties id-start
8918 (point))
8919 ids)
8920 (c-forward-syntactic-ws)
8921 (eq (char-after) ?\,))
8922 (c-forward-token-2)
8923 (unless (setq id-start (c-on-identifier))
8924 (throw 'id-list nil)))
8925 (eq (char-after) ?\)))))
8926
8927 ;; Are all the identifiers in the k&r list up to the
8928 ;; current one also in the argument list?
8929 (progn
8930 (forward-char) ; over the )
8931 (setq after-prec-token after-rparen)
8932 (c-forward-syntactic-ws)
8933 (while (and
8934 (or (consp (setq decl-or-cast
8935 (c-forward-decl-or-cast-1
8936 after-prec-token
8937 nil ; Or 'arglist ???
8938 nil)))
8939 (progn
8940 (goto-char after-prec-token)
8941 (c-forward-syntactic-ws)
8942 (setq identifier-ok (eq (char-after) ?{))
8943 nil))
8944 (eq (char-after) ?\;)
8945 (setq after-prec-token (1+ (point)))
8946 (goto-char (car decl-or-cast))
8947 (setq decl-res (c-forward-declarator))
8948 (setq identifier-ok
8949 (member (buffer-substring-no-properties
8950 (car decl-res) (cadr decl-res))
8951 ids))
8952 (progn
8953 (goto-char after-prec-token)
8954 (prog1 (< (point) here)
8955 (c-forward-syntactic-ws))))
8956 (setq identifier-ok nil))
8957 identifier-ok))
8958 ;; ...Yes. We've identified the function's argument list.
8959 (throw 'knr
8960 (progn (goto-char after-rparen)
8961 (c-forward-syntactic-ws)
8962 (point)))
8963 ;; ...No. The current parens aren't the function's arg list.
8964 (goto-char before-lparen))
8965
8966 (or (c-go-list-backward) ; backwards over [ .... ]
8967 (throw 'knr nil)))))))))
8968
8969 (defun c-skip-conditional ()
8970 ;; skip forward over conditional at point, including any predicate
8971 ;; statements in parentheses. No error checking is performed.
8972 ;;
8973 ;; This function might do hidden buffer changes.
8974 (c-forward-sexp (cond
8975 ;; else if()
8976 ((looking-at (concat "\\<else"
8977 "\\([ \t\n]\\|\\\\\n\\)+"
8978 "if\\>\\([^_]\\|$\\)"))
8979 3)
8980 ;; do, else, try, finally
8981 ((looking-at (concat "\\<\\("
8982 "do\\|else\\|try\\|finally"
8983 "\\)\\>\\([^_]\\|$\\)"))
8984 1)
8985 ;; for, if, while, switch, catch, synchronized, foreach
8986 (t 2))))
8987
8988 (defun c-after-conditional (&optional lim)
8989 ;; If looking at the token after a conditional then return the
8990 ;; position of its start, otherwise return nil.
8991 ;;
8992 ;; This function might do hidden buffer changes.
8993 (save-excursion
8994 (and (zerop (c-backward-token-2 1 t lim))
8995 (or (looking-at c-block-stmt-1-key)
8996 (and (eq (char-after) ?\()
8997 (zerop (c-backward-token-2 1 t lim))
8998 (or (looking-at c-block-stmt-2-key)
8999 (looking-at c-block-stmt-1-2-key))))
9000 (point))))
9001
9002 (defun c-after-special-operator-id (&optional lim)
9003 ;; If the point is after an operator identifier that isn't handled
9004 ;; like an ordinary symbol (i.e. like "operator =" in C++) then the
9005 ;; position of the start of that identifier is returned. nil is
9006 ;; returned otherwise. The point may be anywhere in the syntactic
9007 ;; whitespace after the last token of the operator identifier.
9008 ;;
9009 ;; This function might do hidden buffer changes.
9010 (save-excursion
9011 (and c-overloadable-operators-regexp
9012 (zerop (c-backward-token-2 1 nil lim))
9013 (looking-at c-overloadable-operators-regexp)
9014 (or (not c-opt-op-identifier-prefix)
9015 (and
9016 (zerop (c-backward-token-2 1 nil lim))
9017 (looking-at c-opt-op-identifier-prefix)))
9018 (point))))
9019
9020 (defsubst c-backward-to-block-anchor (&optional lim)
9021 ;; Assuming point is at a brace that opens a statement block of some
9022 ;; kind, move to the proper anchor point for that block. It might
9023 ;; need to be adjusted further by c-add-stmt-syntax, but the
9024 ;; position at return is suitable as start position for that
9025 ;; function.
9026 ;;
9027 ;; This function might do hidden buffer changes.
9028 (unless (= (point) (c-point 'boi))
9029 (let ((start (c-after-conditional lim)))
9030 (if start
9031 (goto-char start)))))
9032
9033 (defsubst c-backward-to-decl-anchor (&optional lim)
9034 ;; Assuming point is at a brace that opens the block of a top level
9035 ;; declaration of some kind, move to the proper anchor point for
9036 ;; that block.
9037 ;;
9038 ;; This function might do hidden buffer changes.
9039 (unless (= (point) (c-point 'boi))
9040 (c-beginning-of-statement-1 lim)))
9041
9042 (defun c-search-decl-header-end ()
9043 ;; Search forward for the end of the "header" of the current
9044 ;; declaration. That's the position where the definition body
9045 ;; starts, or the first variable initializer, or the ending
9046 ;; semicolon. I.e. search forward for the closest following
9047 ;; (syntactically relevant) '{', '=' or ';' token. Point is left
9048 ;; _after_ the first found token, or at point-max if none is found.
9049 ;;
9050 ;; This function might do hidden buffer changes.
9051
9052 (let ((base (point)))
9053 (if (c-major-mode-is 'c++-mode)
9054
9055 ;; In C++ we need to take special care to handle operator
9056 ;; tokens and those pesky template brackets.
9057 (while (and
9058 (c-syntactic-re-search-forward "[;{<=]" nil 'move t t)
9059 (or
9060 (c-end-of-current-token base)
9061 ;; Handle operator identifiers, i.e. ignore any
9062 ;; operator token preceded by "operator".
9063 (save-excursion
9064 (and (c-safe (c-backward-sexp) t)
9065 (looking-at c-opt-op-identifier-prefix)))
9066 (and (eq (char-before) ?<)
9067 (c-with-syntax-table c++-template-syntax-table
9068 (if (c-safe (goto-char (c-up-list-forward (point))))
9069 t
9070 (goto-char (point-max))
9071 nil)))))
9072 (setq base (point)))
9073
9074 (while (and
9075 (c-syntactic-re-search-forward "[;{=]" nil 'move t t)
9076 (c-end-of-current-token base))
9077 (setq base (point))))))
9078
9079 (defun c-beginning-of-decl-1 (&optional lim)
9080 ;; Go to the beginning of the current declaration, or the beginning
9081 ;; of the previous one if already at the start of it. Point won't
9082 ;; be moved out of any surrounding paren. Return a cons cell of the
9083 ;; form (MOVE . KNR-POS). MOVE is like the return value from
9084 ;; `c-beginning-of-statement-1'. If point skipped over some K&R
9085 ;; style argument declarations (and they are to be recognized) then
9086 ;; KNR-POS is set to the start of the first such argument
9087 ;; declaration, otherwise KNR-POS is nil. If LIM is non-nil, it's a
9088 ;; position that bounds the backward search.
9089 ;;
9090 ;; NB: Cases where the declaration continues after the block, as in
9091 ;; "struct foo { ... } bar;", are currently recognized as two
9092 ;; declarations, e.g. "struct foo { ... }" and "bar;" in this case.
9093 ;;
9094 ;; This function might do hidden buffer changes.
9095 (catch 'return
9096 (let* ((start (point))
9097 (last-stmt-start (point))
9098 (move (c-beginning-of-statement-1 lim nil t)))
9099
9100 ;; `c-beginning-of-statement-1' stops at a block start, but we
9101 ;; want to continue if the block doesn't begin a top level
9102 ;; construct, i.e. if it isn't preceded by ';', '}', ':', bob,
9103 ;; or an open paren.
9104 (let ((beg (point)) tentative-move)
9105 ;; Go back one "statement" each time round the loop until we're just
9106 ;; after a ;, }, or :, or at BOB or the start of a macro or start of
9107 ;; an ObjC method. This will move over a multiple declaration whose
9108 ;; components are comma separated.
9109 (while (and
9110 ;; Must check with c-opt-method-key in ObjC mode.
9111 (not (and c-opt-method-key
9112 (looking-at c-opt-method-key)))
9113 (/= last-stmt-start (point))
9114 (progn
9115 (c-backward-syntactic-ws lim)
9116 (not (memq (char-before) '(?\; ?} ?: nil))))
9117 (save-excursion
9118 (backward-char)
9119 (not (looking-at "\\s(")))
9120 ;; Check that we don't move from the first thing in a
9121 ;; macro to its header.
9122 (not (eq (setq tentative-move
9123 (c-beginning-of-statement-1 lim nil t))
9124 'macro)))
9125 (setq last-stmt-start beg
9126 beg (point)
9127 move tentative-move))
9128 (goto-char beg))
9129
9130 (when c-recognize-knr-p
9131 (let ((fallback-pos (point)) knr-argdecl-start)
9132 ;; Handle K&R argdecls. Back up after the "statement" jumped
9133 ;; over by `c-beginning-of-statement-1', unless it was the
9134 ;; function body, in which case we're sitting on the opening
9135 ;; brace now. Then test if we're in a K&R argdecl region and
9136 ;; that we started at the other side of the first argdecl in
9137 ;; it.
9138 (unless (eq (char-after) ?{)
9139 (goto-char last-stmt-start))
9140 (if (and (setq knr-argdecl-start (c-in-knr-argdecl lim))
9141 (< knr-argdecl-start start)
9142 (progn
9143 (goto-char knr-argdecl-start)
9144 (not (eq (c-beginning-of-statement-1 lim nil t) 'macro))))
9145 (throw 'return
9146 (cons (if (eq (char-after fallback-pos) ?{)
9147 'previous
9148 'same)
9149 knr-argdecl-start))
9150 (goto-char fallback-pos))))
9151
9152 ;; `c-beginning-of-statement-1' counts each brace block as a separate
9153 ;; statement, so the result will be 'previous if we've moved over any.
9154 ;; So change our result back to 'same if necessary.
9155 ;;
9156 ;; If they were brace list initializers we might not have moved over a
9157 ;; declaration boundary though, so change it to 'same if we've moved
9158 ;; past a '=' before '{', but not ';'. (This ought to be integrated
9159 ;; into `c-beginning-of-statement-1', so we avoid this extra pass which
9160 ;; potentially can search over a large amount of text.). Take special
9161 ;; pains not to get mislead by C++'s "operator=", and the like.
9162 (if (and (eq move 'previous)
9163 (c-with-syntax-table (if (c-major-mode-is 'c++-mode)
9164 c++-template-syntax-table
9165 (syntax-table))
9166 (save-excursion
9167 (and
9168 (progn
9169 (while ; keep going back to "[;={"s until we either find
9170 ; no more, or get to one which isn't an "operator ="
9171 (and (c-syntactic-re-search-forward "[;={]" start t t t)
9172 (eq (char-before) ?=)
9173 c-overloadable-operators-regexp
9174 c-opt-op-identifier-prefix
9175 (save-excursion
9176 (eq (c-backward-token-2) 0)
9177 (looking-at c-overloadable-operators-regexp)
9178 (eq (c-backward-token-2) 0)
9179 (looking-at c-opt-op-identifier-prefix))))
9180 (eq (char-before) ?=))
9181 (c-syntactic-re-search-forward "[;{]" start t t)
9182 (eq (char-before) ?{)
9183 (c-safe (goto-char (c-up-list-forward (point))) t)
9184 (not (c-syntactic-re-search-forward ";" start t t))))))
9185 (cons 'same nil)
9186 (cons move nil)))))
9187
9188 (defun c-end-of-decl-1 ()
9189 ;; Assuming point is at the start of a declaration (as detected by
9190 ;; e.g. `c-beginning-of-decl-1'), go to the end of it. Unlike
9191 ;; `c-beginning-of-decl-1', this function handles the case when a
9192 ;; block is followed by identifiers in e.g. struct declarations in C
9193 ;; or C++. If a proper end was found then t is returned, otherwise
9194 ;; point is moved as far as possible within the current sexp and nil
9195 ;; is returned. This function doesn't handle macros; use
9196 ;; `c-end-of-macro' instead in those cases.
9197 ;;
9198 ;; This function might do hidden buffer changes.
9199 (let ((start (point))
9200 (decl-syntax-table (if (c-major-mode-is 'c++-mode)
9201 c++-template-syntax-table
9202 (syntax-table))))
9203 (catch 'return
9204 (c-search-decl-header-end)
9205
9206 (when (and c-recognize-knr-p
9207 (eq (char-before) ?\;)
9208 (c-in-knr-argdecl start))
9209 ;; Stopped at the ';' in a K&R argdecl section which is
9210 ;; detected using the same criteria as in
9211 ;; `c-beginning-of-decl-1'. Move to the following block
9212 ;; start.
9213 (c-syntactic-re-search-forward "{" nil 'move t))
9214
9215 (when (eq (char-before) ?{)
9216 ;; Encountered a block in the declaration. Jump over it.
9217 (condition-case nil
9218 (goto-char (c-up-list-forward (point)))
9219 (error (goto-char (point-max))
9220 (throw 'return nil)))
9221 (if (or (not c-opt-block-decls-with-vars-key)
9222 (save-excursion
9223 (c-with-syntax-table decl-syntax-table
9224 (let ((lim (point)))
9225 (goto-char start)
9226 (not (and
9227 ;; Check for `c-opt-block-decls-with-vars-key'
9228 ;; before the first paren.
9229 (c-syntactic-re-search-forward
9230 (concat "[;=([{]\\|\\("
9231 c-opt-block-decls-with-vars-key
9232 "\\)")
9233 lim t t t)
9234 (match-beginning 1)
9235 (not (eq (char-before) ?_))
9236 ;; Check that the first following paren is
9237 ;; the block.
9238 (c-syntactic-re-search-forward "[;=([{]"
9239 lim t t t)
9240 (eq (char-before) ?{)))))))
9241 ;; The declaration doesn't have any of the
9242 ;; `c-opt-block-decls-with-vars' keywords in the
9243 ;; beginning, so it ends here at the end of the block.
9244 (throw 'return t)))
9245
9246 (c-with-syntax-table decl-syntax-table
9247 (while (progn
9248 (if (eq (char-before) ?\;)
9249 (throw 'return t))
9250 (c-syntactic-re-search-forward ";" nil 'move t))))
9251 nil)))
9252
9253 (defun c-looking-at-decl-block (containing-sexp goto-start &optional limit)
9254 ;; Assuming the point is at an open brace, check if it starts a
9255 ;; block that contains another declaration level, i.e. that isn't a
9256 ;; statement block or a brace list, and if so return non-nil.
9257 ;;
9258 ;; If the check is successful, the return value is the start of the
9259 ;; keyword that tells what kind of construct it is, i.e. typically
9260 ;; what `c-decl-block-key' matched. Also, if GOTO-START is set then
9261 ;; the point will be at the start of the construct, before any
9262 ;; leading specifiers, otherwise it's at the returned position.
9263 ;;
9264 ;; The point is clobbered if the check is unsuccessful.
9265 ;;
9266 ;; CONTAINING-SEXP is the position of the open of the surrounding
9267 ;; paren, or nil if none.
9268 ;;
9269 ;; The optional LIMIT limits the backward search for the start of
9270 ;; the construct. It's assumed to be at a syntactically relevant
9271 ;; position.
9272 ;;
9273 ;; If any template arglists are found in the searched region before
9274 ;; the open brace, they get marked with paren syntax.
9275 ;;
9276 ;; This function might do hidden buffer changes.
9277
9278 (let ((open-brace (point)) kwd-start first-specifier-pos)
9279 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9280
9281 (when (and c-recognize-<>-arglists
9282 (eq (char-before) ?>))
9283 ;; Could be at the end of a template arglist.
9284 (let ((c-parse-and-markup-<>-arglists t))
9285 (while (and
9286 (c-backward-<>-arglist nil limit)
9287 (progn
9288 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9289 (eq (char-before) ?>))))))
9290
9291 ;; Skip back over noise clauses.
9292 (while (and
9293 c-opt-cpp-prefix
9294 (eq (char-before) ?\))
9295 (let ((after-paren (point)))
9296 (if (and (c-go-list-backward)
9297 (progn (c-backward-syntactic-ws)
9298 (c-simple-skip-symbol-backward))
9299 (or (looking-at c-paren-nontype-key)
9300 (looking-at c-noise-macro-with-parens-name-re)))
9301 (progn
9302 (c-syntactic-skip-backward c-block-prefix-charset limit t)
9303 t)
9304 (goto-char after-paren)
9305 nil))))
9306
9307 ;; Note: Can't get bogus hits inside template arglists below since they
9308 ;; have gotten paren syntax above.
9309 (when (and
9310 ;; If `goto-start' is set we begin by searching for the
9311 ;; first possible position of a leading specifier list.
9312 ;; The `c-decl-block-key' search continues from there since
9313 ;; we know it can't match earlier.
9314 (if goto-start
9315 (when (c-syntactic-re-search-forward c-symbol-start
9316 open-brace t t)
9317 (goto-char (setq first-specifier-pos (match-beginning 0)))
9318 t)
9319 t)
9320
9321 (cond
9322 ((c-syntactic-re-search-forward c-decl-block-key open-brace t t t)
9323 (goto-char (setq kwd-start (match-beginning 0)))
9324 (and
9325 ;; Exclude cases where we matched what would ordinarily
9326 ;; be a block declaration keyword, except where it's not
9327 ;; legal because it's part of a "compound keyword" like
9328 ;; "enum class". Of course, if c-after-brace-list-key
9329 ;; is nil, we can skip the test.
9330 (or (equal c-after-brace-list-key "\\<\\>")
9331 (save-match-data
9332 (save-excursion
9333 (not
9334 (and
9335 (looking-at c-after-brace-list-key)
9336 (= (c-backward-token-2 1 t) 0)
9337 (looking-at c-brace-list-key))))))
9338 (or
9339 ;; Found a keyword that can't be a type?
9340 (match-beginning 1)
9341
9342 ;; Can be a type too, in which case it's the return type of a
9343 ;; function (under the assumption that no declaration level
9344 ;; block construct starts with a type).
9345 (not (c-forward-type))
9346
9347 ;; Jumped over a type, but it could be a declaration keyword
9348 ;; followed by the declared identifier that we've jumped over
9349 ;; instead (e.g. in "class Foo {"). If it indeed is a type
9350 ;; then we should be at the declarator now, so check for a
9351 ;; valid declarator start.
9352 ;;
9353 ;; Note: This doesn't cope with the case when a declared
9354 ;; identifier is followed by e.g. '(' in a language where '('
9355 ;; also might be part of a declarator expression. Currently
9356 ;; there's no such language.
9357 (not (or (looking-at c-symbol-start)
9358 (looking-at c-type-decl-prefix-key))))))
9359
9360 ;; In Pike a list of modifiers may be followed by a brace
9361 ;; to make them apply to many identifiers. Note that the
9362 ;; match data will be empty on return in this case.
9363 ((and (c-major-mode-is 'pike-mode)
9364 (progn
9365 (goto-char open-brace)
9366 (= (c-backward-token-2) 0))
9367 (looking-at c-specifier-key)
9368 ;; Use this variant to avoid yet another special regexp.
9369 (c-keyword-member (c-keyword-sym (match-string 1))
9370 'c-modifier-kwds))
9371 (setq kwd-start (point))
9372 t)))
9373
9374 ;; Got a match.
9375
9376 (if goto-start
9377 ;; Back up over any preceding specifiers and their clauses
9378 ;; by going forward from `first-specifier-pos', which is the
9379 ;; earliest possible position where the specifier list can
9380 ;; start.
9381 (progn
9382 (goto-char first-specifier-pos)
9383
9384 (while (< (point) kwd-start)
9385 (if (looking-at c-symbol-key)
9386 ;; Accept any plain symbol token on the ground that
9387 ;; it's a specifier masked through a macro (just
9388 ;; like `c-forward-decl-or-cast-1' skip forward over
9389 ;; such tokens).
9390 ;;
9391 ;; Could be more restrictive wrt invalid keywords,
9392 ;; but that'd only occur in invalid code so there's
9393 ;; no use spending effort on it.
9394 (let ((end (match-end 0)))
9395 (unless (c-forward-keyword-clause 0)
9396 (goto-char end)
9397 (c-forward-syntactic-ws)))
9398
9399 ;; Can't parse a declaration preamble and is still
9400 ;; before `kwd-start'. That means `first-specifier-pos'
9401 ;; was in some earlier construct. Search again.
9402 (if (c-syntactic-re-search-forward c-symbol-start
9403 kwd-start 'move t)
9404 (goto-char (setq first-specifier-pos (match-beginning 0)))
9405 ;; Got no preamble before the block declaration keyword.
9406 (setq first-specifier-pos kwd-start))))
9407
9408 (goto-char first-specifier-pos))
9409 (goto-char kwd-start))
9410
9411 kwd-start)))
9412
9413 (defun c-search-uplist-for-classkey (paren-state)
9414 ;; Check if the closest containing paren sexp is a declaration
9415 ;; block, returning a 2 element vector in that case. Aref 0
9416 ;; contains the bufpos at boi of the class key line, and aref 1
9417 ;; contains the bufpos of the open brace. This function is an
9418 ;; obsolete wrapper for `c-looking-at-decl-block'.
9419 ;;
9420 ;; This function might do hidden buffer changes.
9421 (let ((open-paren-pos (c-most-enclosing-brace paren-state)))
9422 (when open-paren-pos
9423 (save-excursion
9424 (goto-char open-paren-pos)
9425 (when (and (eq (char-after) ?{)
9426 (c-looking-at-decl-block
9427 (c-safe-position open-paren-pos paren-state)
9428 nil))
9429 (back-to-indentation)
9430 (vector (point) open-paren-pos))))))
9431
9432 (defun c-most-enclosing-decl-block (paren-state)
9433 ;; Return the buffer position of the most enclosing decl-block brace (in the
9434 ;; sense of c-looking-at-decl-block) in the PAREN-STATE structure, or nil if
9435 ;; none was found.
9436 (let* ((open-brace (c-pull-open-brace paren-state))
9437 (next-open-brace (c-pull-open-brace paren-state)))
9438 (while (and open-brace
9439 (save-excursion
9440 (goto-char open-brace)
9441 (not (c-looking-at-decl-block next-open-brace nil))))
9442 (setq open-brace next-open-brace
9443 next-open-brace (c-pull-open-brace paren-state)))
9444 open-brace))
9445
9446 (defun c-cheap-inside-bracelist-p (paren-state)
9447 ;; Return the position of the L-brace if point is inside a brace list
9448 ;; initialization of an array, etc. This is an approximate function,
9449 ;; designed for speed over accuracy. It will not find every bracelist, but
9450 ;; a non-nil result is reliable. We simply search for "= {" (naturally with
9451 ;; syntactic whitespace allowed). PAREN-STATE is the normal thing that it
9452 ;; is everywhere else.
9453 (let (b-pos)
9454 (save-excursion
9455 (while
9456 (and (setq b-pos (c-pull-open-brace paren-state))
9457 (progn (goto-char b-pos)
9458 (c-backward-sws)
9459 (c-backward-token-2)
9460 (not (looking-at "=")))))
9461 b-pos)))
9462
9463 (defun c-backward-typed-enum-colon ()
9464 ;; We're at a "{" which might be the opening brace of a enum which is
9465 ;; strongly typed (by a ":" followed by a type). If this is the case, leave
9466 ;; point before the colon and return t. Otherwise leave point unchanged and return nil.
9467 ;; Match data will be clobbered.
9468 (let ((here (point))
9469 (colon-pos nil))
9470 (save-excursion
9471 (while
9472 (and (eql (c-backward-token-2) 0)
9473 (or (not (looking-at "\\s)"))
9474 (c-go-up-list-backward))
9475 (cond
9476 ((and (eql (char-after) ?:)
9477 (save-excursion
9478 (c-backward-syntactic-ws)
9479 (c-on-identifier)))
9480 (setq colon-pos (point))
9481 (forward-char)
9482 (c-forward-syntactic-ws)
9483 (or (and (c-forward-type)
9484 (progn (c-forward-syntactic-ws)
9485 (eq (point) here)))
9486 (setq colon-pos nil))
9487 nil)
9488 ((eql (char-after) ?\()
9489 t)
9490 ((looking-at c-symbol-key)
9491 t)
9492 (t nil)))))
9493 (when colon-pos
9494 (goto-char colon-pos)
9495 t)))
9496
9497 (defun c-backward-over-enum-header ()
9498 ;; We're at a "{". Move back to the enum-like keyword that starts this
9499 ;; declaration and return t, otherwise don't move and return nil.
9500 (let ((here (point))
9501 up-sexp-pos before-identifier)
9502 (when c-recognize-post-brace-list-type-p
9503 (c-backward-typed-enum-colon))
9504 (while
9505 (and
9506 (eq (c-backward-token-2) 0)
9507 (or (not (looking-at "\\s)"))
9508 (c-go-up-list-backward))
9509 (cond
9510 ((and (looking-at c-symbol-key) (c-on-identifier)
9511 (not before-identifier))
9512 (setq before-identifier t))
9513 ((and before-identifier
9514 (or (eql (char-after) ?,)
9515 (looking-at c-postfix-decl-spec-key)))
9516 (setq before-identifier nil)
9517 t)
9518 ((looking-at c-after-brace-list-key) t)
9519 ((looking-at c-brace-list-key) nil)
9520 ((eq (char-after) ?\()
9521 (and (eq (c-backward-token-2) 0)
9522 (or (looking-at c-decl-hangon-key)
9523 (and c-opt-cpp-prefix
9524 (looking-at c-noise-macro-with-parens-name-re)))))
9525
9526 ((and c-recognize-<>-arglists
9527 (eq (char-after) ?<)
9528 (looking-at "\\s("))
9529 t)
9530 (t nil))))
9531 (or (looking-at c-brace-list-key)
9532 (progn (goto-char here) nil))))
9533
9534 (defun c-inside-bracelist-p (containing-sexp paren-state)
9535 ;; return the buffer position of the beginning of the brace list
9536 ;; statement if we're inside a brace list, otherwise return nil.
9537 ;; CONTAINING-SEXP is the buffer pos of the innermost containing
9538 ;; paren. PAREN-STATE is the remainder of the state of enclosing
9539 ;; braces
9540 ;;
9541 ;; N.B.: This algorithm can potentially get confused by cpp macros
9542 ;; placed in inconvenient locations. It's a trade-off we make for
9543 ;; speed.
9544 ;;
9545 ;; This function might do hidden buffer changes.
9546 (or
9547 ;; This will pick up brace list declarations.
9548 (save-excursion
9549 (goto-char containing-sexp)
9550 (c-backward-over-enum-header))
9551 ;; this will pick up array/aggregate init lists, even if they are nested.
9552 (save-excursion
9553 (let ((class-key
9554 ;; Pike can have class definitions anywhere, so we must
9555 ;; check for the class key here.
9556 (and (c-major-mode-is 'pike-mode)
9557 c-decl-block-key))
9558 bufpos braceassignp lim next-containing macro-start)
9559 (while (and (not bufpos)
9560 containing-sexp)
9561 (when paren-state
9562 (if (consp (car paren-state))
9563 (setq lim (cdr (car paren-state))
9564 paren-state (cdr paren-state))
9565 (setq lim (car paren-state)))
9566 (when paren-state
9567 (setq next-containing (car paren-state)
9568 paren-state (cdr paren-state))))
9569 (goto-char containing-sexp)
9570 (if (c-looking-at-inexpr-block next-containing next-containing)
9571 ;; We're in an in-expression block of some kind. Do not
9572 ;; check nesting. We deliberately set the limit to the
9573 ;; containing sexp, so that c-looking-at-inexpr-block
9574 ;; doesn't check for an identifier before it.
9575 (setq containing-sexp nil)
9576 ;; see if the open brace is preceded by = or [...] in
9577 ;; this statement, but watch out for operator=
9578 (setq braceassignp 'dontknow)
9579 (c-backward-token-2 1 t lim)
9580 ;; Checks to do only on the first sexp before the brace.
9581 (when (and c-opt-inexpr-brace-list-key
9582 (eq (char-after) ?\[))
9583 ;; In Java, an initialization brace list may follow
9584 ;; directly after "new Foo[]", so check for a "new"
9585 ;; earlier.
9586 (while (eq braceassignp 'dontknow)
9587 (setq braceassignp
9588 (cond ((/= (c-backward-token-2 1 t lim) 0) nil)
9589 ((looking-at c-opt-inexpr-brace-list-key) t)
9590 ((looking-at "\\sw\\|\\s_\\|[.[]")
9591 ;; Carry on looking if this is an
9592 ;; identifier (may contain "." in Java)
9593 ;; or another "[]" sexp.
9594 'dontknow)
9595 (t nil)))))
9596 ;; Checks to do on all sexps before the brace, up to the
9597 ;; beginning of the statement.
9598 (while (eq braceassignp 'dontknow)
9599 (cond ((eq (char-after) ?\;)
9600 (setq braceassignp nil))
9601 ((and class-key
9602 (looking-at class-key))
9603 (setq braceassignp nil))
9604 ((eq (char-after) ?=)
9605 ;; We've seen a =, but must check earlier tokens so
9606 ;; that it isn't something that should be ignored.
9607 (setq braceassignp 'maybe)
9608 (while (and (eq braceassignp 'maybe)
9609 (zerop (c-backward-token-2 1 t lim)))
9610 (setq braceassignp
9611 (cond
9612 ;; Check for operator =
9613 ((and c-opt-op-identifier-prefix
9614 (looking-at c-opt-op-identifier-prefix))
9615 nil)
9616 ;; Check for `<opchar>= in Pike.
9617 ((and (c-major-mode-is 'pike-mode)
9618 (or (eq (char-after) ?`)
9619 ;; Special case for Pikes
9620 ;; `[]=, since '[' is not in
9621 ;; the punctuation class.
9622 (and (eq (char-after) ?\[)
9623 (eq (char-before) ?`))))
9624 nil)
9625 ((looking-at "\\s.") 'maybe)
9626 ;; make sure we're not in a C++ template
9627 ;; argument assignment
9628 ((and
9629 (c-major-mode-is 'c++-mode)
9630 (save-excursion
9631 (let ((here (point))
9632 (pos< (progn
9633 (skip-chars-backward "^<>")
9634 (point))))
9635 (and (eq (char-before) ?<)
9636 (not (c-crosses-statement-barrier-p
9637 pos< here))
9638 (not (c-in-literal))
9639 ))))
9640 nil)
9641 (t t))))))
9642 (if (and (eq braceassignp 'dontknow)
9643 (/= (c-backward-token-2 1 t lim) 0))
9644 (setq braceassignp nil)))
9645 (cond
9646 (braceassignp
9647 ;; We've hit the beginning of the aggregate list.
9648 (c-beginning-of-statement-1
9649 (c-most-enclosing-brace paren-state))
9650 (setq bufpos (point)))
9651 ((eq (char-after) ?\;)
9652 ;; Brace lists can't contain a semicolon, so we're done.
9653 (setq containing-sexp nil))
9654 ((and (setq macro-start (point))
9655 (c-forward-to-cpp-define-body)
9656 (eq (point) containing-sexp))
9657 ;; We've a macro whose expansion starts with the '{'.
9658 ;; Heuristically, if we have a ';' in it we've not got a
9659 ;; brace list, otherwise we have.
9660 (let ((macro-end (progn (c-end-of-macro) (point))))
9661 (goto-char containing-sexp)
9662 (forward-char)
9663 (if (and (c-syntactic-re-search-forward "[;,]" macro-end t t)
9664 (eq (char-before) ?\;))
9665 (setq bufpos nil
9666 containing-sexp nil)
9667 (setq bufpos macro-start))))
9668 (t
9669 ;; Go up one level
9670 (setq containing-sexp next-containing
9671 lim nil
9672 next-containing nil)))))
9673
9674 bufpos))
9675 ))
9676
9677 (defun c-looking-at-special-brace-list (&optional lim)
9678 ;; If we're looking at the start of a pike-style list, i.e., `({ })',
9679 ;; `([ ])', `(< >)', etc., a cons of a cons of its starting and ending
9680 ;; positions and its entry in c-special-brace-lists is returned, nil
9681 ;; otherwise. The ending position is nil if the list is still open.
9682 ;; LIM is the limit for forward search. The point may either be at
9683 ;; the `(' or at the following paren character. Tries to check the
9684 ;; matching closer, but assumes it's correct if no balanced paren is
9685 ;; found (i.e. the case `({ ... } ... )' is detected as _not_ being
9686 ;; a special brace list).
9687 ;;
9688 ;; This function might do hidden buffer changes.
9689 (if c-special-brace-lists
9690 (condition-case ()
9691 (save-excursion
9692 (let ((beg (point))
9693 inner-beg end type)
9694 (c-forward-syntactic-ws)
9695 (if (eq (char-after) ?\()
9696 (progn
9697 (forward-char 1)
9698 (c-forward-syntactic-ws)
9699 (setq inner-beg (point))
9700 (setq type (assq (char-after) c-special-brace-lists)))
9701 (if (setq type (assq (char-after) c-special-brace-lists))
9702 (progn
9703 (setq inner-beg (point))
9704 (c-backward-syntactic-ws)
9705 (forward-char -1)
9706 (setq beg (if (eq (char-after) ?\()
9707 (point)
9708 nil)))))
9709 (if (and beg type)
9710 (if (and (c-safe
9711 (goto-char beg)
9712 (c-forward-sexp 1)
9713 (setq end (point))
9714 (= (char-before) ?\)))
9715 (c-safe
9716 (goto-char inner-beg)
9717 (if (looking-at "\\s(")
9718 ;; Check balancing of the inner paren
9719 ;; below.
9720 (progn
9721 (c-forward-sexp 1)
9722 t)
9723 ;; If the inner char isn't a paren then
9724 ;; we can't check balancing, so just
9725 ;; check the char before the outer
9726 ;; closing paren.
9727 (goto-char end)
9728 (backward-char)
9729 (c-backward-syntactic-ws)
9730 (= (char-before) (cdr type)))))
9731 (if (or (/= (char-syntax (char-before)) ?\))
9732 (= (progn
9733 (c-forward-syntactic-ws)
9734 (point))
9735 (1- end)))
9736 (cons (cons beg end) type))
9737 (cons (list beg) type)))))
9738 (error nil))))
9739
9740 (defun c-looking-at-bos (&optional lim)
9741 ;; Return non-nil if between two statements or declarations, assuming
9742 ;; point is not inside a literal or comment.
9743 ;;
9744 ;; Obsolete - `c-at-statement-start-p' or `c-at-expression-start-p'
9745 ;; are recommended instead.
9746 ;;
9747 ;; This function might do hidden buffer changes.
9748 (c-at-statement-start-p))
9749 (make-obsolete 'c-looking-at-bos 'c-at-statement-start-p "22.1")
9750
9751 (defun c-looking-at-inexpr-block (lim containing-sexp &optional check-at-end)
9752 ;; Return non-nil if we're looking at the beginning of a block
9753 ;; inside an expression. The value returned is actually a cons of
9754 ;; either 'inlambda, 'inexpr-statement or 'inexpr-class and the
9755 ;; position of the beginning of the construct.
9756 ;;
9757 ;; LIM limits the backward search. CONTAINING-SEXP is the start
9758 ;; position of the closest containing list. If it's nil, the
9759 ;; containing paren isn't used to decide whether we're inside an
9760 ;; expression or not. If both LIM and CONTAINING-SEXP are used, LIM
9761 ;; needs to be farther back.
9762 ;;
9763 ;; If CHECK-AT-END is non-nil then extra checks at the end of the
9764 ;; brace block might be done. It should only be used when the
9765 ;; construct can be assumed to be complete, i.e. when the original
9766 ;; starting position was further down than that.
9767 ;;
9768 ;; This function might do hidden buffer changes.
9769
9770 (save-excursion
9771 (let ((res 'maybe) passed-paren
9772 (closest-lim (or containing-sexp lim (point-min)))
9773 ;; Look at the character after point only as a last resort
9774 ;; when we can't disambiguate.
9775 (block-follows (and (eq (char-after) ?{) (point))))
9776
9777 (while (and (eq res 'maybe)
9778 (progn (c-backward-syntactic-ws)
9779 (> (point) closest-lim))
9780 (not (bobp))
9781 (progn (backward-char)
9782 (looking-at "[]).]\\|\\w\\|\\s_"))
9783 (c-safe (forward-char)
9784 (goto-char (scan-sexps (point) -1))))
9785
9786 (setq res
9787 (if (looking-at c-keywords-regexp)
9788 (let ((kw-sym (c-keyword-sym (match-string 1))))
9789 (cond
9790 ((and block-follows
9791 (c-keyword-member kw-sym 'c-inexpr-class-kwds))
9792 (and (not (eq passed-paren ?\[))
9793 (or (not (looking-at c-class-key))
9794 ;; If the class definition is at the start of
9795 ;; a statement, we don't consider it an
9796 ;; in-expression class.
9797 (let ((prev (point)))
9798 (while (and
9799 (= (c-backward-token-2 1 nil closest-lim) 0)
9800 (eq (char-syntax (char-after)) ?w))
9801 (setq prev (point)))
9802 (goto-char prev)
9803 (not (c-at-statement-start-p)))
9804 ;; Also, in Pike we treat it as an
9805 ;; in-expression class if it's used in an
9806 ;; object clone expression.
9807 (save-excursion
9808 (and check-at-end
9809 (c-major-mode-is 'pike-mode)
9810 (progn (goto-char block-follows)
9811 (zerop (c-forward-token-2 1 t)))
9812 (eq (char-after) ?\())))
9813 (cons 'inexpr-class (point))))
9814 ((c-keyword-member kw-sym 'c-inexpr-block-kwds)
9815 (when (not passed-paren)
9816 (cons 'inexpr-statement (point))))
9817 ((c-keyword-member kw-sym 'c-lambda-kwds)
9818 (when (or (not passed-paren)
9819 (eq passed-paren ?\())
9820 (cons 'inlambda (point))))
9821 ((c-keyword-member kw-sym 'c-block-stmt-kwds)
9822 nil)
9823 (t
9824 'maybe)))
9825
9826 (if (looking-at "\\s(")
9827 (if passed-paren
9828 (if (and (eq passed-paren ?\[)
9829 (eq (char-after) ?\[))
9830 ;; Accept several square bracket sexps for
9831 ;; Java array initializations.
9832 'maybe)
9833 (setq passed-paren (char-after))
9834 'maybe)
9835 'maybe))))
9836
9837 (if (eq res 'maybe)
9838 (when (and c-recognize-paren-inexpr-blocks
9839 block-follows
9840 containing-sexp
9841 (eq (char-after containing-sexp) ?\())
9842 (goto-char containing-sexp)
9843 (if (or (save-excursion
9844 (c-backward-syntactic-ws lim)
9845 (while (and (eq (char-before) ?>)
9846 (c-get-char-property (1- (point))
9847 'syntax-table)
9848 (c-go-list-backward nil lim))
9849 (c-backward-syntactic-ws lim))
9850 (and (> (point) (or lim (point-min)))
9851 (c-on-identifier)))
9852 (and c-special-brace-lists
9853 (c-looking-at-special-brace-list)))
9854 nil
9855 (cons 'inexpr-statement (point))))
9856
9857 res))))
9858
9859 (defun c-looking-at-inexpr-block-backward (paren-state)
9860 ;; Returns non-nil if we're looking at the end of an in-expression
9861 ;; block, otherwise the same as `c-looking-at-inexpr-block'.
9862 ;; PAREN-STATE is the paren state relevant at the current position.
9863 ;;
9864 ;; This function might do hidden buffer changes.
9865 (save-excursion
9866 ;; We currently only recognize a block.
9867 (let ((here (point))
9868 (elem (car-safe paren-state))
9869 containing-sexp)
9870 (when (and (consp elem)
9871 (progn (goto-char (cdr elem))
9872 (c-forward-syntactic-ws here)
9873 (= (point) here)))
9874 (goto-char (car elem))
9875 (if (setq paren-state (cdr paren-state))
9876 (setq containing-sexp (car-safe paren-state)))
9877 (c-looking-at-inexpr-block (c-safe-position containing-sexp
9878 paren-state)
9879 containing-sexp)))))
9880
9881 (defun c-at-macro-vsemi-p (&optional pos)
9882 ;; Is there a "virtual semicolon" at POS or point?
9883 ;; (See cc-defs.el for full details of "virtual semicolons".)
9884 ;;
9885 ;; This is true when point is at the last non syntactic WS position on the
9886 ;; line, there is a macro call last on the line, and this particular macro's
9887 ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
9888 ;; semicolon.
9889 (save-excursion
9890 (save-restriction
9891 (widen)
9892 (if pos
9893 (goto-char pos)
9894 (setq pos (point)))
9895 (and
9896 c-macro-with-semi-re
9897 (eq (skip-chars-backward " \t") 0)
9898
9899 ;; Check we've got nothing after this except comments and empty lines
9900 ;; joined by escaped EOLs.
9901 (skip-chars-forward " \t") ; always returns non-nil.
9902 (progn
9903 (while ; go over 1 block comment per iteration.
9904 (and
9905 (looking-at "\\(\\\\[\n\r][ \t]*\\)*")
9906 (goto-char (match-end 0))
9907 (cond
9908 ((looking-at c-block-comment-start-regexp)
9909 (and (forward-comment 1)
9910 (skip-chars-forward " \t"))) ; always returns non-nil
9911 ((looking-at c-line-comment-start-regexp)
9912 (end-of-line)
9913 nil)
9914 (t nil))))
9915 (eolp))
9916
9917 (goto-char pos)
9918 (progn (c-backward-syntactic-ws)
9919 (eq (point) pos))
9920
9921 ;; Check for one of the listed macros being before point.
9922 (or (not (eq (char-before) ?\)))
9923 (when (c-go-list-backward)
9924 (c-backward-syntactic-ws)
9925 t))
9926 (c-simple-skip-symbol-backward)
9927 (looking-at c-macro-with-semi-re)
9928 (goto-char pos)
9929 (not (c-in-literal)))))) ; The most expensive check last.
9930
9931 (defun c-macro-vsemi-status-unknown-p () t) ; See cc-defs.el.
9932
9933 \f
9934 ;; `c-guess-basic-syntax' and the functions that precedes it below
9935 ;; implements the main decision tree for determining the syntactic
9936 ;; analysis of the current line of code.
9937
9938 ;; Dynamically bound to t when `c-guess-basic-syntax' is called during
9939 ;; auto newline analysis.
9940 (defvar c-auto-newline-analysis nil)
9941
9942 (defun c-brace-anchor-point (bracepos)
9943 ;; BRACEPOS is the position of a brace in a construct like "namespace
9944 ;; Bar {". Return the anchor point in this construct; this is the
9945 ;; earliest symbol on the brace's line which isn't earlier than
9946 ;; "namespace".
9947 ;;
9948 ;; Currently (2007-08-17), "like namespace" means "matches
9949 ;; c-other-block-decl-kwds". It doesn't work with "class" or "struct"
9950 ;; or anything like that.
9951 (save-excursion
9952 (let ((boi (c-point 'boi bracepos)))
9953 (goto-char bracepos)
9954 (while (and (> (point) boi)
9955 (not (looking-at c-other-decl-block-key)))
9956 (c-backward-token-2))
9957 (if (> (point) boi) (point) boi))))
9958
9959 (defsubst c-add-syntax (symbol &rest args)
9960 ;; A simple function to prepend a new syntax element to
9961 ;; `c-syntactic-context'. Using `setq' on it is unsafe since it
9962 ;; should always be dynamically bound but since we read it first
9963 ;; we'll fail properly anyway if this function is misused.
9964 (setq c-syntactic-context (cons (cons symbol args)
9965 c-syntactic-context)))
9966
9967 (defsubst c-append-syntax (symbol &rest args)
9968 ;; Like `c-add-syntax' but appends to the end of the syntax list.
9969 ;; (Normally not necessary.)
9970 (setq c-syntactic-context (nconc c-syntactic-context
9971 (list (cons symbol args)))))
9972
9973 (defun c-add-stmt-syntax (syntax-symbol
9974 syntax-extra-args
9975 stop-at-boi-only
9976 containing-sexp
9977 paren-state)
9978 ;; Add the indicated SYNTAX-SYMBOL to `c-syntactic-context', extending it as
9979 ;; needed with further syntax elements of the types `substatement',
9980 ;; `inexpr-statement', `arglist-cont-nonempty', `statement-block-intro', and
9981 ;; `defun-block-intro'.
9982 ;;
9983 ;; Do the generic processing to anchor the given syntax symbol on
9984 ;; the preceding statement: Skip over any labels and containing
9985 ;; statements on the same line, and then search backward until we
9986 ;; find a statement or block start that begins at boi without a
9987 ;; label or comment.
9988 ;;
9989 ;; Point is assumed to be at the prospective anchor point for the
9990 ;; given SYNTAX-SYMBOL. More syntax entries are added if we need to
9991 ;; skip past open parens and containing statements. Most of the added
9992 ;; syntax elements will get the same anchor point - the exception is
9993 ;; for an anchor in a construct like "namespace"[*] - this is as early
9994 ;; as possible in the construct but on the same line as the {.
9995 ;;
9996 ;; [*] i.e. with a keyword matching c-other-block-decl-kwds.
9997 ;;
9998 ;; SYNTAX-EXTRA-ARGS are a list of the extra arguments for the
9999 ;; syntax symbol. They are appended after the anchor point.
10000 ;;
10001 ;; If STOP-AT-BOI-ONLY is nil, we can stop in the middle of the line
10002 ;; if the current statement starts there.
10003 ;;
10004 ;; Note: It's not a problem if PAREN-STATE "overshoots"
10005 ;; CONTAINING-SEXP, i.e. contains info about parens further down.
10006 ;;
10007 ;; This function might do hidden buffer changes.
10008
10009 (if (= (point) (c-point 'boi))
10010 ;; This is by far the most common case, so let's give it special
10011 ;; treatment.
10012 (apply 'c-add-syntax syntax-symbol (point) syntax-extra-args)
10013
10014 (let ((syntax-last c-syntactic-context)
10015 (boi (c-point 'boi))
10016 ;; Set when we're on a label, so that we don't stop there.
10017 ;; FIXME: To be complete we should check if we're on a label
10018 ;; now at the start.
10019 on-label)
10020
10021 ;; Use point as the anchor point for "namespace", "extern", etc.
10022 (apply 'c-add-syntax syntax-symbol
10023 (if (rassq syntax-symbol c-other-decl-block-key-in-symbols-alist)
10024 (point) nil)
10025 syntax-extra-args)
10026
10027 ;; Loop while we have to back out of containing blocks.
10028 (while
10029 (and
10030 (catch 'back-up-block
10031
10032 ;; Loop while we have to back up statements.
10033 (while (or (/= (point) boi)
10034 on-label
10035 (looking-at c-comment-start-regexp))
10036
10037 ;; Skip past any comments that stands between the
10038 ;; statement start and boi.
10039 (let ((savepos (point)))
10040 (while (and (/= savepos boi)
10041 (c-backward-single-comment))
10042 (setq savepos (point)
10043 boi (c-point 'boi)))
10044 (goto-char savepos))
10045
10046 ;; Skip to the beginning of this statement or backward
10047 ;; another one.
10048 (let ((old-pos (point))
10049 (old-boi boi)
10050 (step-type (c-beginning-of-statement-1 containing-sexp)))
10051 (setq boi (c-point 'boi)
10052 on-label (eq step-type 'label))
10053
10054 (cond ((= (point) old-pos)
10055 ;; If we didn't move we're at the start of a block and
10056 ;; have to continue outside it.
10057 (throw 'back-up-block t))
10058
10059 ((and (eq step-type 'up)
10060 (>= (point) old-boi)
10061 (looking-at "else\\>[^_]")
10062 (save-excursion
10063 (goto-char old-pos)
10064 (looking-at "if\\>[^_]")))
10065 ;; Special case to avoid deeper and deeper indentation
10066 ;; of "else if" clauses.
10067 )
10068
10069 ((and (not stop-at-boi-only)
10070 (/= old-pos old-boi)
10071 (memq step-type '(up previous)))
10072 ;; If stop-at-boi-only is nil, we shouldn't back up
10073 ;; over previous or containing statements to try to
10074 ;; reach boi, so go back to the last position and
10075 ;; exit.
10076 (goto-char old-pos)
10077 (throw 'back-up-block nil))
10078
10079 (t
10080 (if (and (not stop-at-boi-only)
10081 (memq step-type '(up previous beginning)))
10082 ;; If we've moved into another statement then we
10083 ;; should no longer try to stop in the middle of a
10084 ;; line.
10085 (setq stop-at-boi-only t))
10086
10087 ;; Record this as a substatement if we skipped up one
10088 ;; level.
10089 (when (eq step-type 'up)
10090 (c-add-syntax 'substatement nil))))
10091 )))
10092
10093 containing-sexp)
10094
10095 ;; Now we have to go out of this block.
10096 (goto-char containing-sexp)
10097
10098 ;; Don't stop in the middle of a special brace list opener
10099 ;; like "({".
10100 (when c-special-brace-lists
10101 (let ((special-list (c-looking-at-special-brace-list)))
10102 (when (and special-list
10103 (< (car (car special-list)) (point)))
10104 (setq containing-sexp (car (car special-list)))
10105 (goto-char containing-sexp))))
10106
10107 (setq paren-state (c-whack-state-after containing-sexp paren-state)
10108 containing-sexp (c-most-enclosing-brace paren-state)
10109 boi (c-point 'boi))
10110
10111 ;; Analyze the construct in front of the block we've stepped out
10112 ;; from and add the right syntactic element for it.
10113 (let ((paren-pos (point))
10114 (paren-char (char-after))
10115 step-type)
10116
10117 (if (eq paren-char ?\()
10118 ;; Stepped out of a parenthesis block, so we're in an
10119 ;; expression now.
10120 (progn
10121 (when (/= paren-pos boi)
10122 (if (and c-recognize-paren-inexpr-blocks
10123 (progn
10124 (c-backward-syntactic-ws containing-sexp)
10125 (or (not (looking-at "\\>"))
10126 (not (c-on-identifier))))
10127 (save-excursion
10128 (goto-char (1+ paren-pos))
10129 (c-forward-syntactic-ws)
10130 (eq (char-after) ?{)))
10131 ;; Stepped out of an in-expression statement. This
10132 ;; syntactic element won't get an anchor pos.
10133 (c-add-syntax 'inexpr-statement)
10134
10135 ;; A parenthesis normally belongs to an arglist.
10136 (c-add-syntax 'arglist-cont-nonempty nil paren-pos)))
10137
10138 (goto-char (max boi
10139 (if containing-sexp
10140 (1+ containing-sexp)
10141 (point-min))))
10142 (setq step-type 'same
10143 on-label nil))
10144
10145 ;; Stepped out of a brace block.
10146 (setq step-type (c-beginning-of-statement-1 containing-sexp)
10147 on-label (eq step-type 'label))
10148
10149 (if (and (eq step-type 'same)
10150 (/= paren-pos (point)))
10151 (let (inexpr)
10152 (cond
10153 ((save-excursion
10154 (goto-char paren-pos)
10155 (setq inexpr (c-looking-at-inexpr-block
10156 (c-safe-position containing-sexp paren-state)
10157 containing-sexp)))
10158 (c-add-syntax (if (eq (car inexpr) 'inlambda)
10159 'defun-block-intro
10160 'statement-block-intro)
10161 nil))
10162 ((looking-at c-other-decl-block-key)
10163 (c-add-syntax
10164 (cdr (assoc (match-string 1)
10165 c-other-decl-block-key-in-symbols-alist))
10166 (max (c-point 'boi paren-pos) (point))))
10167 (t (c-add-syntax 'defun-block-intro nil))))
10168
10169 (c-add-syntax 'statement-block-intro nil)))
10170
10171 (if (= paren-pos boi)
10172 ;; Always done if the open brace was at boi. The
10173 ;; c-beginning-of-statement-1 call above is necessary
10174 ;; anyway, to decide the type of block-intro to add.
10175 (goto-char paren-pos)
10176 (setq boi (c-point 'boi)))
10177 ))
10178
10179 ;; Fill in the current point as the anchor for all the symbols
10180 ;; added above.
10181 (let ((p c-syntactic-context) q)
10182 (while (not (eq p syntax-last))
10183 (setq q (cdr (car p))) ; e.g. (nil 28) [from (arglist-cont-nonempty nil 28)]
10184 (while q
10185 (unless (car q)
10186 (setcar q (point)))
10187 (setq q (cdr q)))
10188 (setq p (cdr p))))
10189 )))
10190
10191 (defun c-add-class-syntax (symbol
10192 containing-decl-open
10193 containing-decl-start
10194 containing-decl-kwd
10195 paren-state)
10196 ;; The inclass and class-close syntactic symbols are added in
10197 ;; several places and some work is needed to fix everything.
10198 ;; Therefore it's collected here.
10199 ;;
10200 ;; This function might do hidden buffer changes.
10201 (goto-char containing-decl-open)
10202 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi)))
10203 (progn
10204 (c-add-syntax symbol containing-decl-open)
10205 containing-decl-open)
10206 (goto-char containing-decl-start)
10207 ;; Ought to use `c-add-stmt-syntax' instead of backing up to boi
10208 ;; here, but we have to do like this for compatibility.
10209 (back-to-indentation)
10210 (c-add-syntax symbol (point))
10211 (if (and (c-keyword-member containing-decl-kwd
10212 'c-inexpr-class-kwds)
10213 (/= containing-decl-start (c-point 'boi containing-decl-start)))
10214 (c-add-syntax 'inexpr-class))
10215 (point)))
10216
10217 (defun c-guess-continued-construct (indent-point
10218 char-after-ip
10219 beg-of-same-or-containing-stmt
10220 containing-sexp
10221 paren-state)
10222 ;; This function contains the decision tree reached through both
10223 ;; cases 18 and 10. It's a continued statement or top level
10224 ;; construct of some kind.
10225 ;;
10226 ;; This function might do hidden buffer changes.
10227
10228 (let (special-brace-list placeholder)
10229 (goto-char indent-point)
10230 (skip-chars-forward " \t")
10231
10232 (cond
10233 ;; (CASE A removed.)
10234 ;; CASE B: open braces for class or brace-lists
10235 ((setq special-brace-list
10236 (or (and c-special-brace-lists
10237 (c-looking-at-special-brace-list))
10238 (eq char-after-ip ?{)))
10239
10240 (cond
10241 ;; CASE B.1: class-open
10242 ((save-excursion
10243 (and (eq (char-after) ?{)
10244 (c-looking-at-decl-block containing-sexp t)
10245 (setq beg-of-same-or-containing-stmt (point))))
10246 (c-add-syntax 'class-open beg-of-same-or-containing-stmt))
10247
10248 ;; CASE B.2: brace-list-open
10249 ((or (consp special-brace-list)
10250 (save-excursion
10251 (goto-char beg-of-same-or-containing-stmt)
10252 (c-syntactic-re-search-forward "=\\([^=]\\|$\\)"
10253 indent-point t t t)))
10254 ;; The most semantically accurate symbol here is
10255 ;; brace-list-open, but we normally report it simply as a
10256 ;; statement-cont. The reason is that one normally adjusts
10257 ;; brace-list-open for brace lists as top-level constructs,
10258 ;; and brace lists inside statements is a completely different
10259 ;; context. C.f. case 5A.3.
10260 (c-beginning-of-statement-1 containing-sexp)
10261 (c-add-stmt-syntax (if c-auto-newline-analysis
10262 ;; Turn off the dwim above when we're
10263 ;; analyzing the nature of the brace
10264 ;; for the auto newline feature.
10265 'brace-list-open
10266 'statement-cont)
10267 nil nil
10268 containing-sexp paren-state))
10269
10270 ;; CASE B.3: The body of a function declared inside a normal
10271 ;; block. Can occur e.g. in Pike and when using gcc
10272 ;; extensions, but watch out for macros followed by blocks.
10273 ;; C.f. cases E, 16F and 17G.
10274 ((and (not (c-at-statement-start-p))
10275 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
10276 'same)
10277 (save-excursion
10278 (let ((c-recognize-typeless-decls nil))
10279 ;; Turn off recognition of constructs that lacks a
10280 ;; type in this case, since that's more likely to be
10281 ;; a macro followed by a block.
10282 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10283 (c-add-stmt-syntax 'defun-open nil t
10284 containing-sexp paren-state))
10285
10286 ;; CASE B.4: Continued statement with block open. The most
10287 ;; accurate analysis is perhaps `statement-cont' together with
10288 ;; `block-open' but we play DWIM and use `substatement-open'
10289 ;; instead. The rationale is that this typically is a macro
10290 ;; followed by a block which makes it very similar to a
10291 ;; statement with a substatement block.
10292 (t
10293 (c-add-stmt-syntax 'substatement-open nil nil
10294 containing-sexp paren-state))
10295 ))
10296
10297 ;; CASE C: iostream insertion or extraction operator
10298 ((and (looking-at "\\(<<\\|>>\\)\\([^=]\\|$\\)")
10299 (save-excursion
10300 (goto-char beg-of-same-or-containing-stmt)
10301 ;; If there is no preceding streamop in the statement
10302 ;; then indent this line as a normal statement-cont.
10303 (when (c-syntactic-re-search-forward
10304 "\\(<<\\|>>\\)\\([^=]\\|$\\)" indent-point 'move t t)
10305 (c-add-syntax 'stream-op (c-point 'boi))
10306 t))))
10307
10308 ;; CASE E: In the "K&R region" of a function declared inside a
10309 ;; normal block. C.f. case B.3.
10310 ((and (save-excursion
10311 ;; Check that the next token is a '{'. This works as
10312 ;; long as no language that allows nested function
10313 ;; definitions allows stuff like member init lists, K&R
10314 ;; declarations or throws clauses there.
10315 ;;
10316 ;; Note that we do a forward search for something ahead
10317 ;; of the indentation line here. That's not good since
10318 ;; the user might not have typed it yet. Unfortunately
10319 ;; it's exceedingly tricky to recognize a function
10320 ;; prototype in a code block without resorting to this.
10321 (c-forward-syntactic-ws)
10322 (eq (char-after) ?{))
10323 (not (c-at-statement-start-p))
10324 (eq (c-beginning-of-statement-1 containing-sexp nil nil t)
10325 'same)
10326 (save-excursion
10327 (let ((c-recognize-typeless-decls nil))
10328 ;; Turn off recognition of constructs that lacks a
10329 ;; type in this case, since that's more likely to be
10330 ;; a macro followed by a block.
10331 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
10332 (c-add-stmt-syntax 'func-decl-cont nil t
10333 containing-sexp paren-state))
10334
10335 ;;CASE F: continued statement and the only preceding items are
10336 ;;annotations.
10337 ((and (c-major-mode-is 'java-mode)
10338 (setq placeholder (point))
10339 (c-beginning-of-statement-1)
10340 (progn
10341 (while (and (c-forward-annotation)
10342 (< (point) placeholder))
10343 (c-forward-syntactic-ws))
10344 t)
10345 (prog1
10346 (>= (point) placeholder)
10347 (goto-char placeholder)))
10348 (c-beginning-of-statement-1 containing-sexp)
10349 (c-add-syntax 'annotation-var-cont (point)))
10350
10351 ;; CASE G: a template list continuation?
10352 ;; Mostly a duplication of case 5D.3 to fix templates-19:
10353 ((and (c-major-mode-is 'c++-mode)
10354 (save-excursion
10355 (goto-char indent-point)
10356 (c-with-syntax-table c++-template-syntax-table
10357 (setq placeholder (c-up-list-backward)))
10358 (and placeholder
10359 (eq (char-after placeholder) ?<)
10360 (/= (char-before placeholder) ?<)
10361 (progn
10362 (goto-char (1+ placeholder))
10363 (not (looking-at c-<-op-cont-regexp))))))
10364 (c-with-syntax-table c++-template-syntax-table
10365 (goto-char placeholder)
10366 (c-beginning-of-statement-1 containing-sexp t))
10367 (if (save-excursion
10368 (c-backward-syntactic-ws containing-sexp)
10369 (eq (char-before) ?<))
10370 ;; In a nested template arglist.
10371 (progn
10372 (goto-char placeholder)
10373 (c-syntactic-skip-backward "^,;" containing-sexp t)
10374 (c-forward-syntactic-ws))
10375 (back-to-indentation))
10376 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
10377 ;; template aware.
10378 (c-add-syntax 'template-args-cont (point) placeholder))
10379
10380 ;; CASE D: continued statement.
10381 (t
10382 (c-beginning-of-statement-1 containing-sexp)
10383 (c-add-stmt-syntax 'statement-cont nil nil
10384 containing-sexp paren-state))
10385 )))
10386
10387 ;; The next autoload was added by RMS on 2005/8/9 - don't know why (ACM,
10388 ;; 2005/11/29).
10389 ;;;###autoload
10390 (defun c-guess-basic-syntax ()
10391 "Return the syntactic context of the current line."
10392 (save-excursion
10393 (beginning-of-line)
10394 (c-save-buffer-state
10395 ((indent-point (point))
10396 (case-fold-search nil)
10397 ;; A whole ugly bunch of various temporary variables. Have
10398 ;; to declare them here since it's not possible to declare
10399 ;; a variable with only the scope of a cond test and the
10400 ;; following result clauses, and most of this function is a
10401 ;; single gigantic cond. :P
10402 literal char-before-ip before-ws-ip char-after-ip macro-start
10403 in-macro-expr c-syntactic-context placeholder c-in-literal-cache
10404 step-type tmpsymbol keyword injava-inher special-brace-list tmp-pos
10405 containing-<
10406 ;; The following record some positions for the containing
10407 ;; declaration block if we're directly within one:
10408 ;; `containing-decl-open' is the position of the open
10409 ;; brace. `containing-decl-start' is the start of the
10410 ;; declaration. `containing-decl-kwd' is the keyword
10411 ;; symbol of the keyword that tells what kind of block it
10412 ;; is.
10413 containing-decl-open
10414 containing-decl-start
10415 containing-decl-kwd
10416 ;; The open paren of the closest surrounding sexp or nil if
10417 ;; there is none.
10418 containing-sexp
10419 ;; The position after the closest preceding brace sexp
10420 ;; (nested sexps are ignored), or the position after
10421 ;; `containing-sexp' if there is none, or (point-min) if
10422 ;; `containing-sexp' is nil.
10423 lim
10424 ;; The paren state outside `containing-sexp', or at
10425 ;; `indent-point' if `containing-sexp' is nil.
10426 (paren-state (c-parse-state))
10427 ;; There's always at most one syntactic element which got
10428 ;; an anchor pos. It's stored in syntactic-relpos.
10429 syntactic-relpos
10430 (c-stmt-delim-chars c-stmt-delim-chars))
10431
10432 ;; Check if we're directly inside an enclosing declaration
10433 ;; level block.
10434 (when (and (setq containing-sexp
10435 (c-most-enclosing-brace paren-state))
10436 (progn
10437 (goto-char containing-sexp)
10438 (eq (char-after) ?{))
10439 (setq placeholder
10440 (c-looking-at-decl-block
10441 (c-most-enclosing-brace paren-state
10442 containing-sexp)
10443 t)))
10444 (setq containing-decl-open containing-sexp
10445 containing-decl-start (point)
10446 containing-sexp nil)
10447 (goto-char placeholder)
10448 (setq containing-decl-kwd (and (looking-at c-keywords-regexp)
10449 (c-keyword-sym (match-string 1)))))
10450
10451 ;; Init some position variables.
10452 (if paren-state
10453 (progn
10454 (setq containing-sexp (car paren-state)
10455 paren-state (cdr paren-state))
10456 (if (consp containing-sexp)
10457 (save-excursion
10458 (goto-char (cdr containing-sexp))
10459 (if (and (c-major-mode-is 'c++-mode)
10460 (c-back-over-member-initializer-braces))
10461 (c-syntactic-skip-backward "^}" nil t))
10462 (setq lim (point))
10463 (if paren-state
10464 ;; Ignore balanced paren. The next entry
10465 ;; can't be another one.
10466 (setq containing-sexp (car paren-state)
10467 paren-state (cdr paren-state))
10468 ;; If there is no surrounding open paren then
10469 ;; put the last balanced pair back on paren-state.
10470 (setq paren-state (cons containing-sexp paren-state)
10471 containing-sexp nil)))
10472 (setq lim (1+ containing-sexp))))
10473 (setq lim (point-min)))
10474
10475 ;; If we're in a parenthesis list then ',' delimits the
10476 ;; "statements" rather than being an operator (with the
10477 ;; exception of the "for" clause). This difference is
10478 ;; typically only noticeable when statements are used in macro
10479 ;; arglists.
10480 (when (and containing-sexp
10481 (eq (char-after containing-sexp) ?\())
10482 (setq c-stmt-delim-chars c-stmt-delim-chars-with-comma))
10483 ;; cache char before and after indent point, and move point to
10484 ;; the most likely position to perform the majority of tests
10485 (goto-char indent-point)
10486 (c-backward-syntactic-ws lim)
10487 (setq before-ws-ip (point)
10488 char-before-ip (char-before))
10489 (goto-char indent-point)
10490 (skip-chars-forward " \t")
10491 (setq char-after-ip (char-after))
10492
10493 ;; are we in a literal?
10494 (setq literal (c-in-literal lim))
10495
10496 ;; now figure out syntactic qualities of the current line
10497 (cond
10498
10499 ;; CASE 1: in a string.
10500 ((eq literal 'string)
10501 (c-add-syntax 'string (c-point 'bopl)))
10502
10503 ;; CASE 2: in a C or C++ style comment.
10504 ((and (memq literal '(c c++))
10505 ;; This is a kludge for XEmacs where we use
10506 ;; `buffer-syntactic-context', which doesn't correctly
10507 ;; recognize "\*/" to end a block comment.
10508 ;; `parse-partial-sexp' which is used by
10509 ;; `c-literal-limits' will however do that in most
10510 ;; versions, which results in that we get nil from
10511 ;; `c-literal-limits' even when `c-in-literal' claims
10512 ;; we're inside a comment.
10513 (setq placeholder (c-literal-limits lim)))
10514 (c-add-syntax literal (car placeholder)))
10515
10516 ;; CASE 3: in a cpp preprocessor macro continuation.
10517 ((and (save-excursion
10518 (when (c-beginning-of-macro)
10519 (setq macro-start (point))))
10520 (/= macro-start (c-point 'boi))
10521 (progn
10522 (setq tmpsymbol 'cpp-macro-cont)
10523 (or (not c-syntactic-indentation-in-macros)
10524 (save-excursion
10525 (goto-char macro-start)
10526 ;; If at the beginning of the body of a #define
10527 ;; directive then analyze as cpp-define-intro
10528 ;; only. Go on with the syntactic analysis
10529 ;; otherwise. in-macro-expr is set if we're in a
10530 ;; cpp expression, i.e. before the #define body
10531 ;; or anywhere in a non-#define directive.
10532 (if (c-forward-to-cpp-define-body)
10533 (let ((indent-boi (c-point 'boi indent-point)))
10534 (setq in-macro-expr (> (point) indent-boi)
10535 tmpsymbol 'cpp-define-intro)
10536 (= (point) indent-boi))
10537 (setq in-macro-expr t)
10538 nil)))))
10539 (c-add-syntax tmpsymbol macro-start)
10540 (setq macro-start nil))
10541
10542 ;; CASE 11: an else clause?
10543 ((looking-at "else\\>[^_]")
10544 (c-beginning-of-statement-1 containing-sexp)
10545 (c-add-stmt-syntax 'else-clause nil t
10546 containing-sexp paren-state))
10547
10548 ;; CASE 12: while closure of a do/while construct?
10549 ((and (looking-at "while\\>[^_]")
10550 (save-excursion
10551 (prog1 (eq (c-beginning-of-statement-1 containing-sexp)
10552 'beginning)
10553 (setq placeholder (point)))))
10554 (goto-char placeholder)
10555 (c-add-stmt-syntax 'do-while-closure nil t
10556 containing-sexp paren-state))
10557
10558 ;; CASE 13: A catch or finally clause? This case is simpler
10559 ;; than if-else and do-while, because a block is required
10560 ;; after every try, catch and finally.
10561 ((save-excursion
10562 (and (cond ((c-major-mode-is 'c++-mode)
10563 (looking-at "catch\\>[^_]"))
10564 ((c-major-mode-is 'java-mode)
10565 (looking-at "\\(catch\\|finally\\)\\>[^_]")))
10566 (and (c-safe (c-backward-syntactic-ws)
10567 (c-backward-sexp)
10568 t)
10569 (eq (char-after) ?{)
10570 (c-safe (c-backward-syntactic-ws)
10571 (c-backward-sexp)
10572 t)
10573 (if (eq (char-after) ?\()
10574 (c-safe (c-backward-sexp) t)
10575 t))
10576 (looking-at "\\(try\\|catch\\)\\>[^_]")
10577 (setq placeholder (point))))
10578 (goto-char placeholder)
10579 (c-add-stmt-syntax 'catch-clause nil t
10580 containing-sexp paren-state))
10581
10582 ;; CASE 18: A substatement we can recognize by keyword.
10583 ((save-excursion
10584 (and c-opt-block-stmt-key
10585 (not (eq char-before-ip ?\;))
10586 (not (c-at-vsemi-p before-ws-ip))
10587 (not (memq char-after-ip '(?\) ?\] ?,)))
10588 (or (not (eq char-before-ip ?}))
10589 (c-looking-at-inexpr-block-backward c-state-cache))
10590 (> (point)
10591 (progn
10592 ;; Ought to cache the result from the
10593 ;; c-beginning-of-statement-1 calls here.
10594 (setq placeholder (point))
10595 (while (eq (setq step-type
10596 (c-beginning-of-statement-1 lim))
10597 'label))
10598 (if (eq step-type 'previous)
10599 (goto-char placeholder)
10600 (setq placeholder (point))
10601 (if (and (eq step-type 'same)
10602 (not (looking-at c-opt-block-stmt-key)))
10603 ;; Step up to the containing statement if we
10604 ;; stayed in the same one.
10605 (let (step)
10606 (while (eq
10607 (setq step
10608 (c-beginning-of-statement-1 lim))
10609 'label))
10610 (if (eq step 'up)
10611 (setq placeholder (point))
10612 ;; There was no containing statement after all.
10613 (goto-char placeholder)))))
10614 placeholder))
10615 (if (looking-at c-block-stmt-2-key)
10616 ;; Require a parenthesis after these keywords.
10617 ;; Necessary to catch e.g. synchronized in Java,
10618 ;; which can be used both as statement and
10619 ;; modifier.
10620 (and (zerop (c-forward-token-2 1 nil))
10621 (eq (char-after) ?\())
10622 (looking-at c-opt-block-stmt-key))))
10623
10624 (if (eq step-type 'up)
10625 ;; CASE 18A: Simple substatement.
10626 (progn
10627 (goto-char placeholder)
10628 (cond
10629 ((eq char-after-ip ?{)
10630 (c-add-stmt-syntax 'substatement-open nil nil
10631 containing-sexp paren-state))
10632 ((save-excursion
10633 (goto-char indent-point)
10634 (back-to-indentation)
10635 (c-forward-label))
10636 (c-add-stmt-syntax 'substatement-label nil nil
10637 containing-sexp paren-state))
10638 (t
10639 (c-add-stmt-syntax 'substatement nil nil
10640 containing-sexp paren-state))))
10641
10642 ;; CASE 18B: Some other substatement. This is shared
10643 ;; with case 10.
10644 (c-guess-continued-construct indent-point
10645 char-after-ip
10646 placeholder
10647 lim
10648 paren-state)))
10649
10650 ;; CASE 14: A case or default label
10651 ((save-excursion
10652 (and (looking-at c-label-kwds-regexp)
10653 (or (c-major-mode-is 'idl-mode)
10654 (and
10655 containing-sexp
10656 (goto-char containing-sexp)
10657 (eq (char-after) ?{)
10658 (progn (c-backward-syntactic-ws) t)
10659 (eq (char-before) ?\))
10660 (c-go-list-backward)
10661 (progn (c-backward-syntactic-ws) t)
10662 (c-simple-skip-symbol-backward)
10663 (looking-at c-block-stmt-2-key)))))
10664 (if containing-sexp
10665 (progn
10666 (goto-char containing-sexp)
10667 (setq lim (c-most-enclosing-brace c-state-cache
10668 containing-sexp))
10669 (c-backward-to-block-anchor lim)
10670 (c-add-stmt-syntax 'case-label nil t lim paren-state))
10671 ;; Got a bogus label at the top level. In lack of better
10672 ;; alternatives, anchor it on (point-min).
10673 (c-add-syntax 'case-label (point-min))))
10674
10675 ;; CASE 15: any other label
10676 ((save-excursion
10677 (back-to-indentation)
10678 (and (not (looking-at c-syntactic-ws-start))
10679 (not (looking-at c-label-kwds-regexp))
10680 (c-forward-label)))
10681 (cond (containing-decl-open
10682 (setq placeholder (c-add-class-syntax 'inclass
10683 containing-decl-open
10684 containing-decl-start
10685 containing-decl-kwd
10686 paren-state))
10687 ;; Append access-label with the same anchor point as
10688 ;; inclass gets.
10689 (c-append-syntax 'access-label placeholder))
10690
10691 (containing-sexp
10692 (goto-char containing-sexp)
10693 (setq lim (c-most-enclosing-brace c-state-cache
10694 containing-sexp))
10695 (save-excursion
10696 (setq tmpsymbol
10697 (if (and (eq (c-beginning-of-statement-1 lim) 'up)
10698 (looking-at "switch\\>[^_]"))
10699 ;; If the surrounding statement is a switch then
10700 ;; let's analyze all labels as switch labels, so
10701 ;; that they get lined up consistently.
10702 'case-label
10703 'label)))
10704 (c-backward-to-block-anchor lim)
10705 (c-add-stmt-syntax tmpsymbol nil t lim paren-state))
10706
10707 (t
10708 ;; A label on the top level. Treat it as a class
10709 ;; context. (point-min) is the closest we get to the
10710 ;; class open brace.
10711 (c-add-syntax 'access-label (point-min)))))
10712
10713 ;; CASE 4: In-expression statement. C.f. cases 7B, 16A and
10714 ;; 17E.
10715 ((setq placeholder (c-looking-at-inexpr-block
10716 (c-safe-position containing-sexp paren-state)
10717 containing-sexp
10718 ;; Have to turn on the heuristics after
10719 ;; the point even though it doesn't work
10720 ;; very well. C.f. test case class-16.pike.
10721 t))
10722 (setq tmpsymbol (assq (car placeholder)
10723 '((inexpr-class . class-open)
10724 (inexpr-statement . block-open))))
10725 (if tmpsymbol
10726 ;; It's a statement block or an anonymous class.
10727 (setq tmpsymbol (cdr tmpsymbol))
10728 ;; It's a Pike lambda. Check whether we are between the
10729 ;; lambda keyword and the argument list or at the defun
10730 ;; opener.
10731 (setq tmpsymbol (if (eq char-after-ip ?{)
10732 'inline-open
10733 'lambda-intro-cont)))
10734 (goto-char (cdr placeholder))
10735 (back-to-indentation)
10736 (c-add-stmt-syntax tmpsymbol nil t
10737 (c-most-enclosing-brace c-state-cache (point))
10738 paren-state)
10739 (unless (eq (point) (cdr placeholder))
10740 (c-add-syntax (car placeholder))))
10741
10742 ;; CASE 5: Line is inside a declaration level block or at top level.
10743 ((or containing-decl-open (null containing-sexp))
10744 (cond
10745
10746 ;; CASE 5A: we are looking at a defun, brace list, class,
10747 ;; or inline-inclass method opening brace
10748 ((setq special-brace-list
10749 (or (and c-special-brace-lists
10750 (c-looking-at-special-brace-list))
10751 (eq char-after-ip ?{)))
10752 (cond
10753
10754 ;; CASE 5A.1: Non-class declaration block open.
10755 ((save-excursion
10756 (let (tmp)
10757 (and (eq char-after-ip ?{)
10758 (setq tmp (c-looking-at-decl-block containing-sexp t))
10759 (progn
10760 (setq placeholder (point))
10761 (goto-char tmp)
10762 (looking-at c-symbol-key))
10763 (c-keyword-member
10764 (c-keyword-sym (setq keyword (match-string 0)))
10765 'c-other-block-decl-kwds))))
10766 (goto-char placeholder)
10767 (c-add-stmt-syntax
10768 (if (string-equal keyword "extern")
10769 ;; Special case for extern-lang-open.
10770 'extern-lang-open
10771 (intern (concat keyword "-open")))
10772 nil t containing-sexp paren-state))
10773
10774 ;; CASE 5A.2: we are looking at a class opening brace
10775 ((save-excursion
10776 (goto-char indent-point)
10777 (skip-chars-forward " \t")
10778 (and (eq (char-after) ?{)
10779 (c-looking-at-decl-block containing-sexp t)
10780 (setq placeholder (point))))
10781 (c-add-syntax 'class-open placeholder))
10782
10783 ;; CASE 5A.3: brace list open
10784 ((save-excursion
10785 (c-beginning-of-decl-1 lim)
10786 (while (cond
10787 ((looking-at c-specifier-key)
10788 (c-forward-keyword-clause 1))
10789 ((and c-opt-cpp-prefix
10790 (looking-at c-noise-macro-with-parens-name-re))
10791 (c-forward-noise-clause))))
10792 (setq placeholder (c-point 'boi))
10793 (or (consp special-brace-list)
10794 (and (or (save-excursion
10795 (goto-char indent-point)
10796 (setq tmpsymbol nil)
10797 (while (and (> (point) placeholder)
10798 (zerop (c-backward-token-2 1 t))
10799 (not (looking-at "=\\([^=]\\|$\\)")))
10800 (and c-opt-inexpr-brace-list-key
10801 (not tmpsymbol)
10802 (looking-at c-opt-inexpr-brace-list-key)
10803 (setq tmpsymbol 'topmost-intro-cont)))
10804 (looking-at "=\\([^=]\\|$\\)"))
10805 (looking-at c-brace-list-key))
10806 (save-excursion
10807 (while (and (< (point) indent-point)
10808 (zerop (c-forward-token-2 1 t))
10809 (not (memq (char-after) '(?\; ?\()))))
10810 (not (memq (char-after) '(?\; ?\()))
10811 ))))
10812 (if (and (not c-auto-newline-analysis)
10813 (c-major-mode-is 'java-mode)
10814 (eq tmpsymbol 'topmost-intro-cont))
10815 ;; We're in Java and have found that the open brace
10816 ;; belongs to a "new Foo[]" initialization list,
10817 ;; which means the brace list is part of an
10818 ;; expression and not a top level definition. We
10819 ;; therefore treat it as any topmost continuation
10820 ;; even though the semantically correct symbol still
10821 ;; is brace-list-open, on the same grounds as in
10822 ;; case B.2.
10823 (progn
10824 (c-beginning-of-statement-1 lim)
10825 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
10826 (c-add-syntax 'brace-list-open placeholder)))
10827
10828 ;; CASE 5A.4: inline defun open
10829 ((and containing-decl-open
10830 (not (c-keyword-member containing-decl-kwd
10831 'c-other-block-decl-kwds)))
10832 (c-add-syntax 'inline-open)
10833 (c-add-class-syntax 'inclass
10834 containing-decl-open
10835 containing-decl-start
10836 containing-decl-kwd
10837 paren-state))
10838
10839 ;; CASE 5A.5: ordinary defun open
10840 (t
10841 (save-excursion
10842 (c-beginning-of-decl-1 lim)
10843 (while (cond
10844 ((looking-at c-specifier-key)
10845 (c-forward-keyword-clause 1))
10846 ((and c-opt-cpp-prefix
10847 (looking-at c-noise-macro-with-parens-name-re))
10848 (c-forward-noise-clause))))
10849 (c-add-syntax 'defun-open (c-point 'boi))
10850 ;; Bogus to use bol here, but it's the legacy. (Resolved,
10851 ;; 2007-11-09)
10852 ))))
10853
10854 ;; CASE 5R: Member init list. (Used to be part of CASE 5B.1)
10855 ;; Note there is no limit on the backward search here, since member
10856 ;; init lists can, in practice, be very large.
10857 ((save-excursion
10858 (when (and (c-major-mode-is 'c++-mode)
10859 (setq placeholder (c-back-over-member-initializers)))
10860 (setq tmp-pos (point))))
10861 (if (= (c-point 'bosws) (1+ tmp-pos))
10862 (progn
10863 ;; There is no preceding member init clause.
10864 ;; Indent relative to the beginning of indentation
10865 ;; for the topmost-intro line that contains the
10866 ;; prototype's open paren.
10867 (goto-char placeholder)
10868 (c-add-syntax 'member-init-intro (c-point 'boi)))
10869 ;; Indent relative to the first member init clause.
10870 (goto-char (1+ tmp-pos))
10871 (c-forward-syntactic-ws)
10872 (c-add-syntax 'member-init-cont (point))))
10873
10874 ;; CASE 5B: After a function header but before the body (or
10875 ;; the ending semicolon if there's no body).
10876 ((save-excursion
10877 (when (setq placeholder (c-just-after-func-arglist-p
10878 (max lim (c-determine-limit 500))))
10879 (setq tmp-pos (point))))
10880 (cond
10881
10882 ;; CASE 5B.1: Member init list.
10883 ((eq (char-after tmp-pos) ?:)
10884 ;; There is no preceding member init clause.
10885 ;; Indent relative to the beginning of indentation
10886 ;; for the topmost-intro line that contains the
10887 ;; prototype's open paren.
10888 (goto-char placeholder)
10889 (c-add-syntax 'member-init-intro (c-point 'boi)))
10890
10891 ;; CASE 5B.2: K&R arg decl intro
10892 ((and c-recognize-knr-p
10893 (c-in-knr-argdecl lim))
10894 (c-beginning-of-statement-1 lim)
10895 (c-add-syntax 'knr-argdecl-intro (c-point 'boi))
10896 (if containing-decl-open
10897 (c-add-class-syntax 'inclass
10898 containing-decl-open
10899 containing-decl-start
10900 containing-decl-kwd
10901 paren-state)))
10902
10903 ;; CASE 5B.4: Nether region after a C++ or Java func
10904 ;; decl, which could include a `throws' declaration.
10905 (t
10906 (c-beginning-of-statement-1 lim)
10907 (c-add-syntax 'func-decl-cont (c-point 'boi))
10908 )))
10909
10910 ;; CASE 5C: inheritance line. could be first inheritance
10911 ;; line, or continuation of a multiple inheritance
10912 ((or (and (c-major-mode-is 'c++-mode)
10913 (progn
10914 (when (eq char-after-ip ?,)
10915 (skip-chars-forward " \t")
10916 (forward-char))
10917 (looking-at c-opt-postfix-decl-spec-key)))
10918 (and (or (eq char-before-ip ?:)
10919 ;; watch out for scope operator
10920 (save-excursion
10921 (and (eq char-after-ip ?:)
10922 (c-safe (forward-char 1) t)
10923 (not (eq (char-after) ?:))
10924 )))
10925 (save-excursion
10926 (c-beginning-of-statement-1 lim)
10927 (when (looking-at c-opt-<>-sexp-key)
10928 (goto-char (match-end 1))
10929 (c-forward-syntactic-ws)
10930 (c-forward-<>-arglist nil)
10931 (c-forward-syntactic-ws))
10932 (looking-at c-class-key)))
10933 ;; for Java
10934 (and (c-major-mode-is 'java-mode)
10935 (let ((fence (save-excursion
10936 (c-beginning-of-statement-1 lim)
10937 (point)))
10938 cont done)
10939 (save-excursion
10940 (while (not done)
10941 (cond ((looking-at c-opt-postfix-decl-spec-key)
10942 (setq injava-inher (cons cont (point))
10943 done t))
10944 ((or (not (c-safe (c-forward-sexp -1) t))
10945 (<= (point) fence))
10946 (setq done t))
10947 )
10948 (setq cont t)))
10949 injava-inher)
10950 (not (c-crosses-statement-barrier-p (cdr injava-inher)
10951 (point)))
10952 ))
10953 (cond
10954
10955 ;; CASE 5C.1: non-hanging colon on an inher intro
10956 ((eq char-after-ip ?:)
10957 (c-beginning-of-statement-1 lim)
10958 (c-add-syntax 'inher-intro (c-point 'boi))
10959 ;; don't add inclass symbol since relative point already
10960 ;; contains any class offset
10961 )
10962
10963 ;; CASE 5C.2: hanging colon on an inher intro
10964 ((eq char-before-ip ?:)
10965 (c-beginning-of-statement-1 lim)
10966 (c-add-syntax 'inher-intro (c-point 'boi))
10967 (if containing-decl-open
10968 (c-add-class-syntax 'inclass
10969 containing-decl-open
10970 containing-decl-start
10971 containing-decl-kwd
10972 paren-state)))
10973
10974 ;; CASE 5C.3: in a Java implements/extends
10975 (injava-inher
10976 (let ((where (cdr injava-inher))
10977 (cont (car injava-inher)))
10978 (goto-char where)
10979 (cond ((looking-at "throws\\>[^_]")
10980 (c-add-syntax 'func-decl-cont
10981 (progn (c-beginning-of-statement-1 lim)
10982 (c-point 'boi))))
10983 (cont (c-add-syntax 'inher-cont where))
10984 (t (c-add-syntax 'inher-intro
10985 (progn (goto-char (cdr injava-inher))
10986 (c-beginning-of-statement-1 lim)
10987 (point))))
10988 )))
10989
10990 ;; CASE 5C.4: a continued inheritance line
10991 (t
10992 (c-beginning-of-inheritance-list lim)
10993 (c-add-syntax 'inher-cont (point))
10994 ;; don't add inclass symbol since relative point already
10995 ;; contains any class offset
10996 )))
10997
10998 ;; CASE 5P: AWK pattern or function or continuation
10999 ;; thereof.
11000 ((c-major-mode-is 'awk-mode)
11001 (setq placeholder (point))
11002 (c-add-stmt-syntax
11003 (if (and (eq (c-beginning-of-statement-1) 'same)
11004 (/= (point) placeholder))
11005 'topmost-intro-cont
11006 'topmost-intro)
11007 nil nil
11008 containing-sexp paren-state))
11009
11010 ;; CASE 5D: this could be a top-level initialization, a
11011 ;; member init list continuation, or a template argument
11012 ;; list continuation.
11013 ((save-excursion
11014 ;; Note: We use the fact that lim is always after any
11015 ;; preceding brace sexp.
11016 (if c-recognize-<>-arglists
11017 (while (and
11018 (progn
11019 (c-syntactic-skip-backward "^;,=<>" lim t)
11020 (> (point) lim))
11021 (or
11022 (when c-overloadable-operators-regexp
11023 (when (setq placeholder (c-after-special-operator-id lim))
11024 (goto-char placeholder)
11025 t))
11026 (cond
11027 ((eq (char-before) ?>)
11028 (or (c-backward-<>-arglist nil lim)
11029 (backward-char))
11030 t)
11031 ((eq (char-before) ?<)
11032 (backward-char)
11033 (if (save-excursion
11034 (c-forward-<>-arglist nil))
11035 (progn (forward-char)
11036 nil)
11037 t))
11038 (t nil)))))
11039 ;; NB: No c-after-special-operator-id stuff in this
11040 ;; clause - we assume only C++ needs it.
11041 (c-syntactic-skip-backward "^;,=" lim t))
11042 (memq (char-before) '(?, ?= ?<)))
11043 (cond
11044
11045 ;; CASE 5D.3: perhaps a template list continuation?
11046 ((and (c-major-mode-is 'c++-mode)
11047 (save-excursion
11048 (save-restriction
11049 (c-with-syntax-table c++-template-syntax-table
11050 (goto-char indent-point)
11051 (setq placeholder (c-up-list-backward))
11052 (and placeholder
11053 (eq (char-after placeholder) ?<))))))
11054 (c-with-syntax-table c++-template-syntax-table
11055 (goto-char placeholder)
11056 (c-beginning-of-statement-1 lim t))
11057 (if (save-excursion
11058 (c-backward-syntactic-ws lim)
11059 (eq (char-before) ?<))
11060 ;; In a nested template arglist.
11061 (progn
11062 (goto-char placeholder)
11063 (c-syntactic-skip-backward "^,;" lim t)
11064 (c-forward-syntactic-ws))
11065 (back-to-indentation))
11066 ;; FIXME: Should use c-add-stmt-syntax, but it's not yet
11067 ;; template aware.
11068 (c-add-syntax 'template-args-cont (point) placeholder))
11069
11070 ;; CASE 5D.4: perhaps a multiple inheritance line?
11071 ((and (c-major-mode-is 'c++-mode)
11072 (save-excursion
11073 (c-beginning-of-statement-1 lim)
11074 (setq placeholder (point))
11075 (if (looking-at "static\\>[^_]")
11076 (c-forward-token-2 1 nil indent-point))
11077 (and (looking-at c-class-key)
11078 (zerop (c-forward-token-2 2 nil indent-point))
11079 (if (eq (char-after) ?<)
11080 (c-with-syntax-table c++-template-syntax-table
11081 (zerop (c-forward-token-2 1 t indent-point)))
11082 t)
11083 (eq (char-after) ?:))))
11084 (goto-char placeholder)
11085 (c-add-syntax 'inher-cont (c-point 'boi)))
11086
11087 ;; CASE 5D.5: Continuation of the "expression part" of a
11088 ;; top level construct. Or, perhaps, an unrecognized construct.
11089 (t
11090 (while (and (setq placeholder (point))
11091 (eq (car (c-beginning-of-decl-1 containing-sexp)) ; Can't use `lim' here.
11092 'same)
11093 (save-excursion
11094 (c-backward-syntactic-ws)
11095 (eq (char-before) ?}))
11096 (< (point) placeholder)))
11097 (c-add-stmt-syntax
11098 (cond
11099 ((eq (point) placeholder) 'statement) ; unrecognized construct
11100 ;; A preceding comma at the top level means that a
11101 ;; new variable declaration starts here. Use
11102 ;; topmost-intro-cont for it, for consistency with
11103 ;; the first variable declaration. C.f. case 5N.
11104 ((eq char-before-ip ?,) 'topmost-intro-cont)
11105 (t 'statement-cont))
11106 nil nil containing-sexp paren-state))
11107 ))
11108
11109 ;; CASE 5F: Close of a non-class declaration level block.
11110 ((and (eq char-after-ip ?})
11111 (c-keyword-member containing-decl-kwd
11112 'c-other-block-decl-kwds))
11113 ;; This is inconsistent: Should use `containing-decl-open'
11114 ;; here if it's at boi, like in case 5J.
11115 (goto-char containing-decl-start)
11116 (c-add-stmt-syntax
11117 (if (string-equal (symbol-name containing-decl-kwd) "extern")
11118 ;; Special case for compatibility with the
11119 ;; extern-lang syntactic symbols.
11120 'extern-lang-close
11121 (intern (concat (symbol-name containing-decl-kwd)
11122 "-close")))
11123 nil t
11124 (c-most-enclosing-brace paren-state (point))
11125 paren-state))
11126
11127 ;; CASE 5G: we are looking at the brace which closes the
11128 ;; enclosing nested class decl
11129 ((and containing-sexp
11130 (eq char-after-ip ?})
11131 (eq containing-decl-open containing-sexp))
11132 (c-add-class-syntax 'class-close
11133 containing-decl-open
11134 containing-decl-start
11135 containing-decl-kwd
11136 paren-state))
11137
11138 ;; CASE 5H: we could be looking at subsequent knr-argdecls
11139 ((and c-recognize-knr-p
11140 (not containing-sexp) ; can't be knr inside braces.
11141 (not (eq char-before-ip ?}))
11142 (save-excursion
11143 (setq placeholder (cdr (c-beginning-of-decl-1 lim)))
11144 (and placeholder
11145 ;; Do an extra check to avoid tripping up on
11146 ;; statements that occur in invalid contexts
11147 ;; (e.g. in macro bodies where we don't really
11148 ;; know the context of what we're looking at).
11149 (not (and c-opt-block-stmt-key
11150 (looking-at c-opt-block-stmt-key)))))
11151 (< placeholder indent-point))
11152 (goto-char placeholder)
11153 (c-add-syntax 'knr-argdecl (point)))
11154
11155 ;; CASE 5I: ObjC method definition.
11156 ((and c-opt-method-key
11157 (looking-at c-opt-method-key))
11158 (c-beginning-of-statement-1 nil t)
11159 (if (= (point) indent-point)
11160 ;; Handle the case when it's the first (non-comment)
11161 ;; thing in the buffer. Can't look for a 'same return
11162 ;; value from cbos1 since ObjC directives currently
11163 ;; aren't recognized fully, so that we get 'same
11164 ;; instead of 'previous if it moved over a preceding
11165 ;; directive.
11166 (goto-char (point-min)))
11167 (c-add-syntax 'objc-method-intro (c-point 'boi)))
11168
11169 ;; CASE 5N: At a variable declaration that follows a class
11170 ;; definition or some other block declaration that doesn't
11171 ;; end at the closing '}'. C.f. case 5D.5.
11172 ((progn
11173 (c-backward-syntactic-ws lim)
11174 (and (eq (char-before) ?})
11175 (save-excursion
11176 (let ((start (point)))
11177 (if (and c-state-cache
11178 (consp (car c-state-cache))
11179 (eq (cdar c-state-cache) (point)))
11180 ;; Speed up the backward search a bit.
11181 (goto-char (caar c-state-cache)))
11182 (c-beginning-of-decl-1 containing-sexp) ; Can't use `lim' here.
11183 (setq placeholder (point))
11184 (if (= start (point))
11185 ;; The '}' is unbalanced.
11186 nil
11187 (c-end-of-decl-1)
11188 (>= (point) indent-point))))))
11189 (goto-char placeholder)
11190 (c-add-stmt-syntax 'topmost-intro-cont nil nil
11191 containing-sexp paren-state))
11192
11193 ;; NOTE: The point is at the end of the previous token here.
11194
11195 ;; CASE 5J: we are at the topmost level, make
11196 ;; sure we skip back past any access specifiers
11197 ((and
11198 ;; A macro continuation line is never at top level.
11199 (not (and macro-start
11200 (> indent-point macro-start)))
11201 (save-excursion
11202 (setq placeholder (point))
11203 (or (memq char-before-ip '(?\; ?{ ?} nil))
11204 (c-at-vsemi-p before-ws-ip)
11205 (when (and (eq char-before-ip ?:)
11206 (eq (c-beginning-of-statement-1 lim)
11207 'label))
11208 (c-backward-syntactic-ws lim)
11209 (setq placeholder (point)))
11210 (and (c-major-mode-is 'objc-mode)
11211 (catch 'not-in-directive
11212 (c-beginning-of-statement-1 lim)
11213 (setq placeholder (point))
11214 (while (and (c-forward-objc-directive)
11215 (< (point) indent-point))
11216 (c-forward-syntactic-ws)
11217 (if (>= (point) indent-point)
11218 (throw 'not-in-directive t))
11219 (setq placeholder (point)))
11220 nil)))))
11221 ;; For historic reasons we anchor at bol of the last
11222 ;; line of the previous declaration. That's clearly
11223 ;; highly bogus and useless, and it makes our lives hard
11224 ;; to remain compatible. :P
11225 (goto-char placeholder)
11226 (c-add-syntax 'topmost-intro (c-point 'bol))
11227 (if containing-decl-open
11228 (if (c-keyword-member containing-decl-kwd
11229 'c-other-block-decl-kwds)
11230 (progn
11231 (goto-char (c-brace-anchor-point containing-decl-open))
11232 (c-add-stmt-syntax
11233 (if (string-equal (symbol-name containing-decl-kwd)
11234 "extern")
11235 ;; Special case for compatibility with the
11236 ;; extern-lang syntactic symbols.
11237 'inextern-lang
11238 (intern (concat "in"
11239 (symbol-name containing-decl-kwd))))
11240 nil t
11241 (c-most-enclosing-brace paren-state (point))
11242 paren-state))
11243 (c-add-class-syntax 'inclass
11244 containing-decl-open
11245 containing-decl-start
11246 containing-decl-kwd
11247 paren-state)))
11248 (when (and c-syntactic-indentation-in-macros
11249 macro-start
11250 (/= macro-start (c-point 'boi indent-point)))
11251 (c-add-syntax 'cpp-define-intro)
11252 (setq macro-start nil)))
11253
11254 ;; CASE 5K: we are at an ObjC method definition
11255 ;; continuation line.
11256 ((and c-opt-method-key
11257 (save-excursion
11258 (c-beginning-of-statement-1 lim)
11259 (beginning-of-line)
11260 (when (looking-at c-opt-method-key)
11261 (setq placeholder (point)))))
11262 (c-add-syntax 'objc-method-args-cont placeholder))
11263
11264 ;; CASE 5L: we are at the first argument of a template
11265 ;; arglist that begins on the previous line.
11266 ((and c-recognize-<>-arglists
11267 (eq (char-before) ?<)
11268 (not (and c-overloadable-operators-regexp
11269 (c-after-special-operator-id lim))))
11270 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
11271 (c-add-syntax 'template-args-cont (c-point 'boi)))
11272
11273 ;; CASE 5Q: we are at a statement within a macro.
11274 (macro-start
11275 (c-beginning-of-statement-1 containing-sexp)
11276 (c-add-stmt-syntax 'statement nil t containing-sexp paren-state))
11277
11278 ;;CASE 5N: We are at a topmost continuation line and the only
11279 ;;preceding items are annotations.
11280 ((and (c-major-mode-is 'java-mode)
11281 (setq placeholder (point))
11282 (c-beginning-of-statement-1)
11283 (progn
11284 (while (and (c-forward-annotation))
11285 (c-forward-syntactic-ws))
11286 t)
11287 (prog1
11288 (>= (point) placeholder)
11289 (goto-char placeholder)))
11290 (c-add-syntax 'annotation-top-cont (c-point 'boi)))
11291
11292 ;; CASE 5M: we are at a topmost continuation line
11293 (t
11294 (c-beginning-of-statement-1 (c-safe-position (point) paren-state))
11295 (when (c-major-mode-is 'objc-mode)
11296 (setq placeholder (point))
11297 (while (and (c-forward-objc-directive)
11298 (< (point) indent-point))
11299 (c-forward-syntactic-ws)
11300 (setq placeholder (point)))
11301 (goto-char placeholder))
11302 (c-add-syntax 'topmost-intro-cont (c-point 'boi)))
11303 ))
11304
11305 ;; (CASE 6 has been removed.)
11306
11307 ;; CASE 7: line is an expression, not a statement. Most
11308 ;; likely we are either in a function prototype or a function
11309 ;; call argument list
11310 ((not (or (and c-special-brace-lists
11311 (save-excursion
11312 (goto-char containing-sexp)
11313 (c-looking-at-special-brace-list)))
11314 (eq (char-after containing-sexp) ?{)))
11315 (cond
11316
11317 ;; CASE 7A: we are looking at the arglist closing paren.
11318 ;; C.f. case 7F.
11319 ((memq char-after-ip '(?\) ?\]))
11320 (goto-char containing-sexp)
11321 (setq placeholder (c-point 'boi))
11322 (if (and (c-safe (backward-up-list 1) t)
11323 (>= (point) placeholder))
11324 (progn
11325 (forward-char)
11326 (skip-chars-forward " \t"))
11327 (goto-char placeholder))
11328 (c-add-stmt-syntax 'arglist-close (list containing-sexp) t
11329 (c-most-enclosing-brace paren-state (point))
11330 paren-state))
11331
11332 ;; CASE 7B: Looking at the opening brace of an
11333 ;; in-expression block or brace list. C.f. cases 4, 16A
11334 ;; and 17E.
11335 ((and (eq char-after-ip ?{)
11336 (progn
11337 (setq placeholder (c-inside-bracelist-p (point)
11338 paren-state))
11339 (if placeholder
11340 (setq tmpsymbol '(brace-list-open . inexpr-class))
11341 (setq tmpsymbol '(block-open . inexpr-statement)
11342 placeholder
11343 (cdr-safe (c-looking-at-inexpr-block
11344 (c-safe-position containing-sexp
11345 paren-state)
11346 containing-sexp)))
11347 ;; placeholder is nil if it's a block directly in
11348 ;; a function arglist. That makes us skip out of
11349 ;; this case.
11350 )))
11351 (goto-char placeholder)
11352 (back-to-indentation)
11353 (c-add-stmt-syntax (car tmpsymbol) nil t
11354 (c-most-enclosing-brace paren-state (point))
11355 paren-state)
11356 (if (/= (point) placeholder)
11357 (c-add-syntax (cdr tmpsymbol))))
11358
11359 ;; CASE 7C: we are looking at the first argument in an empty
11360 ;; argument list. Use arglist-close if we're actually
11361 ;; looking at a close paren or bracket.
11362 ((memq char-before-ip '(?\( ?\[))
11363 (goto-char containing-sexp)
11364 (setq placeholder (c-point 'boi))
11365 (if (and (c-safe (backward-up-list 1) t)
11366 (>= (point) placeholder))
11367 (progn
11368 (forward-char)
11369 (skip-chars-forward " \t"))
11370 (goto-char placeholder))
11371 (c-add-stmt-syntax 'arglist-intro (list containing-sexp) t
11372 (c-most-enclosing-brace paren-state (point))
11373 paren-state))
11374
11375 ;; CASE 7D: we are inside a conditional test clause. treat
11376 ;; these things as statements
11377 ((progn
11378 (goto-char containing-sexp)
11379 (and (c-safe (c-forward-sexp -1) t)
11380 (looking-at "\\<for\\>[^_]")))
11381 (goto-char (1+ containing-sexp))
11382 (c-forward-syntactic-ws indent-point)
11383 (if (eq char-before-ip ?\;)
11384 (c-add-syntax 'statement (point))
11385 (c-add-syntax 'statement-cont (point))
11386 ))
11387
11388 ;; CASE 7E: maybe a continued ObjC method call. This is the
11389 ;; case when we are inside a [] bracketed exp, and what
11390 ;; precede the opening bracket is not an identifier.
11391 ((and c-opt-method-key
11392 (eq (char-after containing-sexp) ?\[)
11393 (progn
11394 (goto-char (1- containing-sexp))
11395 (c-backward-syntactic-ws (c-point 'bod))
11396 (if (not (looking-at c-symbol-key))
11397 (c-add-syntax 'objc-method-call-cont containing-sexp))
11398 )))
11399
11400 ;; CASE 7F: we are looking at an arglist continuation line,
11401 ;; but the preceding argument is on the same line as the
11402 ;; opening paren. This case includes multi-line
11403 ;; mathematical paren groupings, but we could be on a
11404 ;; for-list continuation line. C.f. case 7A.
11405 ((progn
11406 (goto-char (1+ containing-sexp))
11407 (< (save-excursion
11408 (c-forward-syntactic-ws)
11409 (point))
11410 (c-point 'bonl)))
11411 (goto-char containing-sexp) ; paren opening the arglist
11412 (setq placeholder (c-point 'boi))
11413 (if (and (c-safe (backward-up-list 1) t)
11414 (>= (point) placeholder))
11415 (progn
11416 (forward-char)
11417 (skip-chars-forward " \t"))
11418 (goto-char placeholder))
11419 (c-add-stmt-syntax 'arglist-cont-nonempty (list containing-sexp) t
11420 (c-most-enclosing-brace c-state-cache (point))
11421 paren-state))
11422
11423 ;; CASE 7G: we are looking at just a normal arglist
11424 ;; continuation line
11425 (t (c-forward-syntactic-ws indent-point)
11426 (c-add-syntax 'arglist-cont (c-point 'boi)))
11427 ))
11428
11429 ;; CASE 8: func-local multi-inheritance line
11430 ((and (c-major-mode-is 'c++-mode)
11431 (save-excursion
11432 (goto-char indent-point)
11433 (skip-chars-forward " \t")
11434 (looking-at c-opt-postfix-decl-spec-key)))
11435 (goto-char indent-point)
11436 (skip-chars-forward " \t")
11437 (cond
11438
11439 ;; CASE 8A: non-hanging colon on an inher intro
11440 ((eq char-after-ip ?:)
11441 (c-backward-syntactic-ws lim)
11442 (c-add-syntax 'inher-intro (c-point 'boi)))
11443
11444 ;; CASE 8B: hanging colon on an inher intro
11445 ((eq char-before-ip ?:)
11446 (c-add-syntax 'inher-intro (c-point 'boi)))
11447
11448 ;; CASE 8C: a continued inheritance line
11449 (t
11450 (c-beginning-of-inheritance-list lim)
11451 (c-add-syntax 'inher-cont (point))
11452 )))
11453
11454 ;; CASE 9: we are inside a brace-list
11455 ((and (not (c-major-mode-is 'awk-mode)) ; Maybe this isn't needed (ACM, 2002/3/29)
11456 (setq special-brace-list
11457 (or (and c-special-brace-lists ;;;; ALWAYS NIL FOR AWK!!
11458 (save-excursion
11459 (goto-char containing-sexp)
11460 (c-looking-at-special-brace-list)))
11461 (c-inside-bracelist-p containing-sexp paren-state))))
11462 (cond
11463
11464 ;; CASE 9A: In the middle of a special brace list opener.
11465 ((and (consp special-brace-list)
11466 (save-excursion
11467 (goto-char containing-sexp)
11468 (eq (char-after) ?\())
11469 (eq char-after-ip (car (cdr special-brace-list))))
11470 (goto-char (car (car special-brace-list)))
11471 (skip-chars-backward " \t")
11472 (if (and (bolp)
11473 (assoc 'statement-cont
11474 (setq placeholder (c-guess-basic-syntax))))
11475 (setq c-syntactic-context placeholder)
11476 (c-beginning-of-statement-1
11477 (c-safe-position (1- containing-sexp) paren-state))
11478 (c-forward-token-2 0)
11479 (while (cond
11480 ((looking-at c-specifier-key)
11481 (c-forward-keyword-clause 1))
11482 ((and c-opt-cpp-prefix
11483 (looking-at c-noise-macro-with-parens-name-re))
11484 (c-forward-noise-clause))))
11485 (c-add-syntax 'brace-list-open (c-point 'boi))))
11486
11487 ;; CASE 9B: brace-list-close brace
11488 ((if (consp special-brace-list)
11489 ;; Check special brace list closer.
11490 (progn
11491 (goto-char (car (car special-brace-list)))
11492 (save-excursion
11493 (goto-char indent-point)
11494 (back-to-indentation)
11495 (or
11496 ;; We were between the special close char and the `)'.
11497 (and (eq (char-after) ?\))
11498 (eq (1+ (point)) (cdr (car special-brace-list))))
11499 ;; We were before the special close char.
11500 (and (eq (char-after) (cdr (cdr special-brace-list)))
11501 (zerop (c-forward-token-2))
11502 (eq (1+ (point)) (cdr (car special-brace-list)))))))
11503 ;; Normal brace list check.
11504 (and (eq char-after-ip ?})
11505 (c-safe (goto-char (c-up-list-backward (point))) t)
11506 (= (point) containing-sexp)))
11507 (if (eq (point) (c-point 'boi))
11508 (c-add-syntax 'brace-list-close (point))
11509 (setq lim (c-most-enclosing-brace c-state-cache (point)))
11510 (c-beginning-of-statement-1 lim nil nil t)
11511 (c-add-stmt-syntax 'brace-list-close nil t lim paren-state)))
11512
11513 (t
11514 ;; Prepare for the rest of the cases below by going to the
11515 ;; token following the opening brace
11516 (if (consp special-brace-list)
11517 (progn
11518 (goto-char (car (car special-brace-list)))
11519 (c-forward-token-2 1 nil indent-point))
11520 (goto-char containing-sexp))
11521 (forward-char)
11522 (let ((start (point)))
11523 (c-forward-syntactic-ws indent-point)
11524 (goto-char (max start (c-point 'bol))))
11525 (c-skip-ws-forward indent-point)
11526 (cond
11527
11528 ;; CASE 9C: we're looking at the first line in a brace-list
11529 ((= (point) indent-point)
11530 (if (consp special-brace-list)
11531 (goto-char (car (car special-brace-list)))
11532 (goto-char containing-sexp))
11533 (if (eq (point) (c-point 'boi))
11534 (c-add-syntax 'brace-list-intro (point))
11535 (setq lim (c-most-enclosing-brace c-state-cache (point)))
11536 (c-beginning-of-statement-1 lim)
11537 (c-add-stmt-syntax 'brace-list-intro nil t lim paren-state)))
11538
11539 ;; CASE 9D: this is just a later brace-list-entry or
11540 ;; brace-entry-open
11541 (t (if (or (eq char-after-ip ?{)
11542 (and c-special-brace-lists
11543 (save-excursion
11544 (goto-char indent-point)
11545 (c-forward-syntactic-ws (c-point 'eol))
11546 (c-looking-at-special-brace-list (point)))))
11547 (c-add-syntax 'brace-entry-open (point))
11548 (c-add-syntax 'brace-list-entry (point))
11549 ))
11550 ))))
11551
11552 ;; CASE 10: A continued statement or top level construct.
11553 ((and (not (memq char-before-ip '(?\; ?:)))
11554 (not (c-at-vsemi-p before-ws-ip))
11555 (or (not (eq char-before-ip ?}))
11556 (c-looking-at-inexpr-block-backward c-state-cache))
11557 (> (point)
11558 (save-excursion
11559 (c-beginning-of-statement-1 containing-sexp)
11560 (setq placeholder (point))))
11561 (/= placeholder containing-sexp))
11562 ;; This is shared with case 18.
11563 (c-guess-continued-construct indent-point
11564 char-after-ip
11565 placeholder
11566 containing-sexp
11567 paren-state))
11568
11569 ;; CASE 16: block close brace, possibly closing the defun or
11570 ;; the class
11571 ((eq char-after-ip ?})
11572 ;; From here on we have the next containing sexp in lim.
11573 (setq lim (c-most-enclosing-brace paren-state))
11574 (goto-char containing-sexp)
11575 (cond
11576
11577 ;; CASE 16E: Closing a statement block? This catches
11578 ;; cases where it's preceded by a statement keyword,
11579 ;; which works even when used in an "invalid" context,
11580 ;; e.g. a macro argument.
11581 ((c-after-conditional)
11582 (c-backward-to-block-anchor lim)
11583 (c-add-stmt-syntax 'block-close nil t lim paren-state))
11584
11585 ;; CASE 16A: closing a lambda defun or an in-expression
11586 ;; block? C.f. cases 4, 7B and 17E.
11587 ((setq placeholder (c-looking-at-inexpr-block
11588 (c-safe-position containing-sexp paren-state)
11589 nil))
11590 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
11591 'inline-close
11592 'block-close))
11593 (goto-char containing-sexp)
11594 (back-to-indentation)
11595 (if (= containing-sexp (point))
11596 (c-add-syntax tmpsymbol (point))
11597 (goto-char (cdr placeholder))
11598 (back-to-indentation)
11599 (c-add-stmt-syntax tmpsymbol nil t
11600 (c-most-enclosing-brace paren-state (point))
11601 paren-state)
11602 (if (/= (point) (cdr placeholder))
11603 (c-add-syntax (car placeholder)))))
11604
11605 ;; CASE 16B: does this close an inline or a function in
11606 ;; a non-class declaration level block?
11607 ((save-excursion
11608 (and lim
11609 (progn
11610 (goto-char lim)
11611 (c-looking-at-decl-block
11612 (c-most-enclosing-brace paren-state lim)
11613 nil))
11614 (setq placeholder (point))))
11615 (c-backward-to-decl-anchor lim)
11616 (back-to-indentation)
11617 (if (save-excursion
11618 (goto-char placeholder)
11619 (looking-at c-other-decl-block-key))
11620 (c-add-syntax 'defun-close (point))
11621 (c-add-syntax 'inline-close (point))))
11622
11623 ;; CASE 16F: Can be a defun-close of a function declared
11624 ;; in a statement block, e.g. in Pike or when using gcc
11625 ;; extensions, but watch out for macros followed by
11626 ;; blocks. Let it through to be handled below.
11627 ;; C.f. cases B.3 and 17G.
11628 ((save-excursion
11629 (and (not (c-at-statement-start-p))
11630 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
11631 (setq placeholder (point))
11632 (let ((c-recognize-typeless-decls nil))
11633 ;; Turn off recognition of constructs that
11634 ;; lacks a type in this case, since that's more
11635 ;; likely to be a macro followed by a block.
11636 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
11637 (back-to-indentation)
11638 (if (/= (point) containing-sexp)
11639 (goto-char placeholder))
11640 (c-add-stmt-syntax 'defun-close nil t lim paren-state))
11641
11642 ;; CASE 16C: If there is an enclosing brace then this is
11643 ;; a block close since defun closes inside declaration
11644 ;; level blocks have been handled above.
11645 (lim
11646 ;; If the block is preceded by a case/switch label on
11647 ;; the same line, we anchor at the first preceding label
11648 ;; at boi. The default handling in c-add-stmt-syntax
11649 ;; really fixes it better, but we do like this to keep
11650 ;; the indentation compatible with version 5.28 and
11651 ;; earlier. C.f. case 17H.
11652 (while (and (/= (setq placeholder (point)) (c-point 'boi))
11653 (eq (c-beginning-of-statement-1 lim) 'label)))
11654 (goto-char placeholder)
11655 (if (looking-at c-label-kwds-regexp)
11656 (c-add-syntax 'block-close (point))
11657 (goto-char containing-sexp)
11658 ;; c-backward-to-block-anchor not necessary here; those
11659 ;; situations are handled in case 16E above.
11660 (c-add-stmt-syntax 'block-close nil t lim paren-state)))
11661
11662 ;; CASE 16D: Only top level defun close left.
11663 (t
11664 (goto-char containing-sexp)
11665 (c-backward-to-decl-anchor lim)
11666 (c-add-stmt-syntax 'defun-close nil nil
11667 (c-most-enclosing-brace paren-state)
11668 paren-state))
11669 ))
11670
11671 ;; CASE 19: line is an expression, not a statement, and is directly
11672 ;; contained by a template delimiter. Most likely, we are in a
11673 ;; template arglist within a statement. This case is based on CASE
11674 ;; 7. At some point in the future, we may wish to create more
11675 ;; syntactic symbols such as `template-intro',
11676 ;; `template-cont-nonempty', etc., and distinguish between them as we
11677 ;; do for `arglist-intro' etc. (2009-12-07).
11678 ((and c-recognize-<>-arglists
11679 (setq containing-< (c-up-list-backward indent-point containing-sexp))
11680 (eq (char-after containing-<) ?\<))
11681 (setq placeholder (c-point 'boi containing-<))
11682 (goto-char containing-sexp) ; Most nested Lbrace/Lparen (but not
11683 ; '<') before indent-point.
11684 (if (>= (point) placeholder)
11685 (progn
11686 (forward-char)
11687 (skip-chars-forward " \t"))
11688 (goto-char placeholder))
11689 (c-add-stmt-syntax 'template-args-cont (list containing-<) t
11690 (c-most-enclosing-brace c-state-cache (point))
11691 paren-state))
11692
11693 ;; CASE 17: Statement or defun catchall.
11694 (t
11695 (goto-char indent-point)
11696 ;; Back up statements until we find one that starts at boi.
11697 (while (let* ((prev-point (point))
11698 (last-step-type (c-beginning-of-statement-1
11699 containing-sexp)))
11700 (if (= (point) prev-point)
11701 (progn
11702 (setq step-type (or step-type last-step-type))
11703 nil)
11704 (setq step-type last-step-type)
11705 (/= (point) (c-point 'boi)))))
11706 (cond
11707
11708 ;; CASE 17B: continued statement
11709 ((and (eq step-type 'same)
11710 (/= (point) indent-point))
11711 (c-add-stmt-syntax 'statement-cont nil nil
11712 containing-sexp paren-state))
11713
11714 ;; CASE 17A: After a case/default label?
11715 ((progn
11716 (while (and (eq step-type 'label)
11717 (not (looking-at c-label-kwds-regexp)))
11718 (setq step-type
11719 (c-beginning-of-statement-1 containing-sexp)))
11720 (eq step-type 'label))
11721 (c-add-stmt-syntax (if (eq char-after-ip ?{)
11722 'statement-case-open
11723 'statement-case-intro)
11724 nil t containing-sexp paren-state))
11725
11726 ;; CASE 17D: any old statement
11727 ((progn
11728 (while (eq step-type 'label)
11729 (setq step-type
11730 (c-beginning-of-statement-1 containing-sexp)))
11731 (eq step-type 'previous))
11732 (c-add-stmt-syntax 'statement nil t
11733 containing-sexp paren-state)
11734 (if (eq char-after-ip ?{)
11735 (c-add-syntax 'block-open)))
11736
11737 ;; CASE 17I: Inside a substatement block.
11738 ((progn
11739 ;; The following tests are all based on containing-sexp.
11740 (goto-char containing-sexp)
11741 ;; From here on we have the next containing sexp in lim.
11742 (setq lim (c-most-enclosing-brace paren-state containing-sexp))
11743 (c-after-conditional))
11744 (c-backward-to-block-anchor lim)
11745 (c-add-stmt-syntax 'statement-block-intro nil t
11746 lim paren-state)
11747 (if (eq char-after-ip ?{)
11748 (c-add-syntax 'block-open)))
11749
11750 ;; CASE 17E: first statement in an in-expression block.
11751 ;; C.f. cases 4, 7B and 16A.
11752 ((setq placeholder (c-looking-at-inexpr-block
11753 (c-safe-position containing-sexp paren-state)
11754 nil))
11755 (setq tmpsymbol (if (eq (car placeholder) 'inlambda)
11756 'defun-block-intro
11757 'statement-block-intro))
11758 (back-to-indentation)
11759 (if (= containing-sexp (point))
11760 (c-add-syntax tmpsymbol (point))
11761 (goto-char (cdr placeholder))
11762 (back-to-indentation)
11763 (c-add-stmt-syntax tmpsymbol nil t
11764 (c-most-enclosing-brace c-state-cache (point))
11765 paren-state)
11766 (if (/= (point) (cdr placeholder))
11767 (c-add-syntax (car placeholder))))
11768 (if (eq char-after-ip ?{)
11769 (c-add-syntax 'block-open)))
11770
11771 ;; CASE 17F: first statement in an inline, or first
11772 ;; statement in a top-level defun. we can tell this is it
11773 ;; if there are no enclosing braces that haven't been
11774 ;; narrowed out by a class (i.e. don't use bod here).
11775 ((save-excursion
11776 (or (not (setq placeholder (c-most-enclosing-brace
11777 paren-state)))
11778 (and (progn
11779 (goto-char placeholder)
11780 (eq (char-after) ?{))
11781 (c-looking-at-decl-block (c-most-enclosing-brace
11782 paren-state (point))
11783 nil))))
11784 (c-backward-to-decl-anchor lim)
11785 (back-to-indentation)
11786 (c-add-syntax 'defun-block-intro (point)))
11787
11788 ;; CASE 17G: First statement in a function declared inside
11789 ;; a normal block. This can occur in Pike and with
11790 ;; e.g. the gcc extensions, but watch out for macros
11791 ;; followed by blocks. C.f. cases B.3 and 16F.
11792 ((save-excursion
11793 (and (not (c-at-statement-start-p))
11794 (eq (c-beginning-of-statement-1 lim nil nil t) 'same)
11795 (setq placeholder (point))
11796 (let ((c-recognize-typeless-decls nil))
11797 ;; Turn off recognition of constructs that lacks
11798 ;; a type in this case, since that's more likely
11799 ;; to be a macro followed by a block.
11800 (c-forward-decl-or-cast-1 (c-point 'bosws) nil nil))))
11801 (back-to-indentation)
11802 (if (/= (point) containing-sexp)
11803 (goto-char placeholder))
11804 (c-add-stmt-syntax 'defun-block-intro nil t
11805 lim paren-state))
11806
11807 ;; CASE 17H: First statement in a block.
11808 (t
11809 ;; If the block is preceded by a case/switch label on the
11810 ;; same line, we anchor at the first preceding label at
11811 ;; boi. The default handling in c-add-stmt-syntax is
11812 ;; really fixes it better, but we do like this to keep the
11813 ;; indentation compatible with version 5.28 and earlier.
11814 ;; C.f. case 16C.
11815 (while (and (/= (setq placeholder (point)) (c-point 'boi))
11816 (eq (c-beginning-of-statement-1 lim) 'label)))
11817 (goto-char placeholder)
11818 (if (looking-at c-label-kwds-regexp)
11819 (c-add-syntax 'statement-block-intro (point))
11820 (goto-char containing-sexp)
11821 ;; c-backward-to-block-anchor not necessary here; those
11822 ;; situations are handled in case 17I above.
11823 (c-add-stmt-syntax 'statement-block-intro nil t
11824 lim paren-state))
11825 (if (eq char-after-ip ?{)
11826 (c-add-syntax 'block-open)))
11827 ))
11828 )
11829
11830 ;; now we need to look at any modifiers
11831 (goto-char indent-point)
11832 (skip-chars-forward " \t")
11833
11834 ;; are we looking at a comment only line?
11835 (when (and (looking-at c-comment-start-regexp)
11836 (/= (c-forward-token-2 0 nil (c-point 'eol)) 0))
11837 (c-append-syntax 'comment-intro))
11838
11839 ;; we might want to give additional offset to friends (in C++).
11840 (when (and c-opt-friend-key
11841 (looking-at c-opt-friend-key))
11842 (c-append-syntax 'friend))
11843
11844 ;; Set syntactic-relpos.
11845 (let ((p c-syntactic-context))
11846 (while (and p
11847 (if (integerp (c-langelem-pos (car p)))
11848 (progn
11849 (setq syntactic-relpos (c-langelem-pos (car p)))
11850 nil)
11851 t))
11852 (setq p (cdr p))))
11853
11854 ;; Start of or a continuation of a preprocessor directive?
11855 (if (and macro-start
11856 (eq macro-start (c-point 'boi))
11857 (not (and (c-major-mode-is 'pike-mode)
11858 (eq (char-after (1+ macro-start)) ?\"))))
11859 (c-append-syntax 'cpp-macro)
11860 (when (and c-syntactic-indentation-in-macros macro-start)
11861 (if in-macro-expr
11862 (when (or
11863 (< syntactic-relpos macro-start)
11864 (not (or
11865 (assq 'arglist-intro c-syntactic-context)
11866 (assq 'arglist-cont c-syntactic-context)
11867 (assq 'arglist-cont-nonempty c-syntactic-context)
11868 (assq 'arglist-close c-syntactic-context))))
11869 ;; If inside a cpp expression, i.e. anywhere in a
11870 ;; cpp directive except a #define body, we only let
11871 ;; through the syntactic analysis that is internal
11872 ;; in the expression. That means the arglist
11873 ;; elements, if they are anchored inside the cpp
11874 ;; expression.
11875 (setq c-syntactic-context nil)
11876 (c-add-syntax 'cpp-macro-cont macro-start))
11877 (when (and (eq macro-start syntactic-relpos)
11878 (not (assq 'cpp-define-intro c-syntactic-context))
11879 (save-excursion
11880 (goto-char macro-start)
11881 (or (not (c-forward-to-cpp-define-body))
11882 (<= (point) (c-point 'boi indent-point)))))
11883 ;; Inside a #define body and the syntactic analysis is
11884 ;; anchored on the start of the #define. In this case
11885 ;; we add cpp-define-intro to get the extra
11886 ;; indentation of the #define body.
11887 (c-add-syntax 'cpp-define-intro)))))
11888
11889 ;; return the syntax
11890 c-syntactic-context)))
11891
11892 \f
11893 ;; Indentation calculation.
11894
11895 (defun c-evaluate-offset (offset langelem symbol)
11896 ;; offset can be a number, a function, a variable, a list, or one of
11897 ;; the symbols + or -
11898 ;;
11899 ;; This function might do hidden buffer changes.
11900 (let ((res
11901 (cond
11902 ((numberp offset) offset)
11903 ((vectorp offset) offset)
11904 ((null offset) nil)
11905
11906 ((eq offset '+) c-basic-offset)
11907 ((eq offset '-) (- c-basic-offset))
11908 ((eq offset '++) (* 2 c-basic-offset))
11909 ((eq offset '--) (* 2 (- c-basic-offset)))
11910 ((eq offset '*) (/ c-basic-offset 2))
11911 ((eq offset '/) (/ (- c-basic-offset) 2))
11912
11913 ((functionp offset)
11914 (c-evaluate-offset
11915 (funcall offset
11916 (cons (c-langelem-sym langelem)
11917 (c-langelem-pos langelem)))
11918 langelem symbol))
11919
11920 ((listp offset)
11921 (cond
11922 ((eq (car offset) 'quote)
11923 (c-benign-error "The offset %S for %s was mistakenly quoted"
11924 offset symbol)
11925 nil)
11926
11927 ((memq (car offset) '(min max))
11928 (let (res val (method (car offset)))
11929 (setq offset (cdr offset))
11930 (while offset
11931 (setq val (c-evaluate-offset (car offset) langelem symbol))
11932 (cond
11933 ((not val))
11934 ((not res)
11935 (setq res val))
11936 ((integerp val)
11937 (if (vectorp res)
11938 (c-benign-error "\
11939 Error evaluating offset %S for %s: \
11940 Cannot combine absolute offset %S with relative %S in `%s' method"
11941 (car offset) symbol res val method)
11942 (setq res (funcall method res val))))
11943 (t
11944 (if (integerp res)
11945 (c-benign-error "\
11946 Error evaluating offset %S for %s: \
11947 Cannot combine relative offset %S with absolute %S in `%s' method"
11948 (car offset) symbol res val method)
11949 (setq res (vector (funcall method (aref res 0)
11950 (aref val 0)))))))
11951 (setq offset (cdr offset)))
11952 res))
11953
11954 ((eq (car offset) 'add)
11955 (let (res val)
11956 (setq offset (cdr offset))
11957 (while offset
11958 (setq val (c-evaluate-offset (car offset) langelem symbol))
11959 (cond
11960 ((not val))
11961 ((not res)
11962 (setq res val))
11963 ((integerp val)
11964 (if (vectorp res)
11965 (setq res (vector (+ (aref res 0) val)))
11966 (setq res (+ res val))))
11967 (t
11968 (if (vectorp res)
11969 (c-benign-error "\
11970 Error evaluating offset %S for %s: \
11971 Cannot combine absolute offsets %S and %S in `add' method"
11972 (car offset) symbol res val)
11973 (setq res val)))) ; Override.
11974 (setq offset (cdr offset)))
11975 res))
11976
11977 (t
11978 (let (res)
11979 (when (eq (car offset) 'first)
11980 (setq offset (cdr offset)))
11981 (while (and (not res) offset)
11982 (setq res (c-evaluate-offset (car offset) langelem symbol)
11983 offset (cdr offset)))
11984 res))))
11985
11986 ((and (symbolp offset) (boundp offset))
11987 (symbol-value offset))
11988
11989 (t
11990 (c-benign-error "Unknown offset format %S for %s" offset symbol)
11991 nil))))
11992
11993 (if (or (null res) (integerp res)
11994 (and (vectorp res) (= (length res) 1) (integerp (aref res 0))))
11995 res
11996 (c-benign-error "Error evaluating offset %S for %s: Got invalid value %S"
11997 offset symbol res)
11998 nil)))
11999
12000 (defun c-calc-offset (langelem)
12001 ;; Get offset from LANGELEM which is a list beginning with the
12002 ;; syntactic symbol and followed by any analysis data it provides.
12003 ;; That data may be zero or more elements, but if at least one is
12004 ;; given then the first is the anchor position (or nil). The symbol
12005 ;; is matched against `c-offsets-alist' and the offset calculated
12006 ;; from that is returned.
12007 ;;
12008 ;; This function might do hidden buffer changes.
12009 (let* ((symbol (c-langelem-sym langelem))
12010 (match (assq symbol c-offsets-alist))
12011 (offset (cdr-safe match)))
12012 (if match
12013 (setq offset (c-evaluate-offset offset langelem symbol))
12014 (if c-strict-syntax-p
12015 (c-benign-error "No offset found for syntactic symbol %s" symbol))
12016 (setq offset 0))
12017 (if (vectorp offset)
12018 offset
12019 (or (and (numberp offset) offset)
12020 (and (symbolp offset) (symbol-value offset))
12021 0))
12022 ))
12023
12024 (defun c-get-offset (langelem)
12025 ;; This is a compatibility wrapper for `c-calc-offset' in case
12026 ;; someone is calling it directly. It takes an old style syntactic
12027 ;; element on the form (SYMBOL . ANCHOR-POS) and converts it to the
12028 ;; new list form.
12029 ;;
12030 ;; This function might do hidden buffer changes.
12031 (if (c-langelem-pos langelem)
12032 (c-calc-offset (list (c-langelem-sym langelem)
12033 (c-langelem-pos langelem)))
12034 (c-calc-offset langelem)))
12035
12036 (defun c-get-syntactic-indentation (langelems)
12037 ;; Calculate the syntactic indentation from a syntactic description
12038 ;; as returned by `c-guess-syntax'.
12039 ;;
12040 ;; Note that topmost-intro always has an anchor position at bol, for
12041 ;; historical reasons. It's often used together with other symbols
12042 ;; that has more sane positions. Since we always use the first
12043 ;; found anchor position, we rely on that these other symbols always
12044 ;; precede topmost-intro in the LANGELEMS list.
12045 ;;
12046 ;; This function might do hidden buffer changes.
12047 (let ((indent 0) anchor)
12048
12049 (while langelems
12050 (let* ((c-syntactic-element (car langelems))
12051 (res (c-calc-offset c-syntactic-element)))
12052
12053 (if (vectorp res)
12054 ;; Got an absolute column that overrides any indentation
12055 ;; we've collected so far, but not the relative
12056 ;; indentation we might get for the nested structures
12057 ;; further down the langelems list.
12058 (setq indent (elt res 0)
12059 anchor (point-min)) ; A position at column 0.
12060
12061 ;; Got a relative change of the current calculated
12062 ;; indentation.
12063 (setq indent (+ indent res))
12064
12065 ;; Use the anchor position from the first syntactic
12066 ;; element with one.
12067 (unless anchor
12068 (setq anchor (c-langelem-pos (car langelems)))))
12069
12070 (setq langelems (cdr langelems))))
12071
12072 (if anchor
12073 (+ indent (save-excursion
12074 (goto-char anchor)
12075 (current-column)))
12076 indent)))
12077
12078 \f
12079 (cc-provide 'cc-engine)
12080
12081 ;; Local Variables:
12082 ;; indent-tabs-mode: t
12083 ;; tab-width: 8
12084 ;; End:
12085 ;;; cc-engine.el ends here