OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:num_heap_slots
(Results
1 - 23
of
23
) sorted by null
/external/v8/src/ast/
scopes.h
367
DCHECK(!is_catch_scope() ||
num_heap_slots
() > 0);
368
DCHECK(!is_module_scope() ||
num_heap_slots
() > 0);
369
return is_with_scope() ||
num_heap_slots
() > 0;
514
int
num_heap_slots
() const { return num_heap_slots_; }
function in class:v8::internal::Scope
[
all
...]
scopeinfo.cc
216
DCHECK(scope->
num_heap_slots
() == scope_info->ContextLength() ||
217
(scope->
num_heap_slots
() == kVariablePartIndex &&
scopes.cc
[
all
...]
/external/v8/src/
compiler.h
169
int
num_heap_slots
() const;
compiler.cc
220
int CompilationInfo::
num_heap_slots
() const {
function in class:v8::internal::CompilationInfo
221
return has_scope() ? scope()->
num_heap_slots
() : 0;
[
all
...]
/external/v8/src/compiler/
ast-graph-builder.cc
547
if (info()->
num_heap_slots
() > 0) {
[
all
...]
/external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc
179
if (info->scope()->
num_heap_slots
() > 0) {
183
int slots = info->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc
168
if (info->scope()->
num_heap_slots
() > 0) {
171
int slots = info->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc
181
if (info->scope()->
num_heap_slots
() > 0) {
185
int slots = info->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/full-codegen/x64/
full-codegen-x64.cc
166
if (info->scope()->
num_heap_slots
() > 0) {
169
int slots = info->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/full-codegen/x87/
full-codegen-x87.cc
168
if (info->scope()->
num_heap_slots
() > 0) {
171
int slots = info->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/full-codegen/arm/
full-codegen-arm.cc
176
if (info->scope()->
num_heap_slots
() > 0) {
180
int slots = info->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/full-codegen/mips/
full-codegen-mips.cc
186
if (info->scope()->
num_heap_slots
() > 0) {
190
int slots = info->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc
185
if (info->scope()->
num_heap_slots
() > 0) {
189
int slots = info->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc
163
if (info()->scope()->
num_heap_slots
() > 0) {
167
int slots = info()->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc
645
if (info()->
num_heap_slots
() > 0) {
649
int slots = info()->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc
239
if (info_->
num_heap_slots
() > 0) {
243
int slots = info_->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc
183
if (info()->scope()->
num_heap_slots
() > 0) {
187
int slots = info()->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc
158
if (info()->scope()->
num_heap_slots
() > 0) {
162
int slots = info()->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc
169
if (info()->scope()->
num_heap_slots
() > 0) {
173
int slots = info()->scope()->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/x64/
lithium-codegen-x64.cc
178
if (info_->
num_heap_slots
() > 0) {
182
int slots = info_->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc
210
if (info_->
num_heap_slots
() > 0) {
214
int slots = info_->
num_heap_slots
() - Context::MIN_CONTEXT_SLOTS;
[
all
...]
/external/v8/src/crankshaft/
hydrogen.cc
[
all
...]
Completed in 1736 milliseconds