Home
last modified time | relevance | path

Searched refs:high_bound (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dframes.h729 Address high_bound) : in JavaScriptFrameIteratorTemp() argument
730 iterator_(fp, sp, low_bound, high_bound) { in JavaScriptFrameIteratorTemp()
738 Address high_bound) : in JavaScriptFrameIteratorTemp() argument
739 iterator_(isolate, fp, sp, low_bound, high_bound) { in JavaScriptFrameIteratorTemp()
785 Address low_bound, Address high_bound);
800 Address low_bound, Address high_bound, Address addr) { in IsWithinBounds() argument
801 return low_bound <= addr && addr <= high_bound; in IsWithinBounds()
807 StackAddressValidator(Address low_bound, Address high_bound) in StackAddressValidator() argument
808 : low_bound_(low_bound), high_bound_(high_bound) { } in StackAddressValidator()
821 ExitFrameValidator(Address low_bound, Address high_bound) in ExitFrameValidator() argument
[all …]
Dframes.cc273 Address fp, Address sp, Address low_bound, Address high_bound) : in SafeStackFrameIterator() argument
275 stack_validator_(low_bound, high_bound), in SafeStackFrameIterator()
276 is_valid_top_(IsValidTop(isolate, low_bound, high_bound)), in SafeStackFrameIterator()
277 is_valid_fp_(IsWithinBounds(low_bound, high_bound, fp)), in SafeStackFrameIterator()
289 Address low_bound, Address high_bound) { in IsValidTop() argument
292 ExitFrameValidator validator(low_bound, high_bound); in IsValidTop()
370 Address fp, Address sp, Address low_bound, Address high_bound) : in SafeStackTraceFrameIterator() argument
371 SafeJavaScriptFrameIterator(isolate, fp, sp, low_bound, high_bound) { in SafeStackTraceFrameIterator()