OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fixed_register_count
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/interpreter/
bytecode-array-builder.h
60
int
fixed_register_count
() const { return context_count() + locals_count(); }
function in class:v8::internal::interpreter::final
bytecode-array-builder.cc
118
return Register(
fixed_register_count
());
124
return Register(
fixed_register_count
() + temporary_register_count_ - 1);
150
int register_count =
fixed_register_count
() + temporary_register_count_;
[
all
...]
/external/v8/test/unittests/interpreter/
bytecode-array-builder-unittest.cc
31
CHECK_EQ(builder.
fixed_register_count
(), 201);
287
builder.
fixed_register_count
() * kPointerSize);
Completed in 4530 milliseconds