OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:heap_slots
(Results
1 - 6
of
6
) sorted by null
/external/v8/src/arm/
full-codegen-arm.cc
156
int
heap_slots
= scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
local
157
if (
heap_slots
> 0) {
161
if (
heap_slots
<= FastNewContextStub::kMaximumSlots) {
162
FastNewContextStub stub(
heap_slots
);
[
all
...]
lithium-codegen-arm.cc
168
int
heap_slots
= scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
local
169
if (
heap_slots
> 0) {
173
if (
heap_slots
<= FastNewContextStub::kMaximumSlots) {
174
FastNewContextStub stub(
heap_slots
);
[
all
...]
/external/v8/src/ia32/
full-codegen-ia32.cc
144
int
heap_slots
= scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
local
145
if (
heap_slots
> 0) {
149
if (
heap_slots
<= FastNewContextStub::kMaximumSlots) {
150
FastNewContextStub stub(
heap_slots
);
[
all
...]
lithium-codegen-ia32.cc
161
int
heap_slots
= scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
local
162
if (
heap_slots
> 0) {
166
if (
heap_slots
<= FastNewContextStub::kMaximumSlots) {
167
FastNewContextStub stub(
heap_slots
);
[
all
...]
/external/v8/src/x64/
full-codegen-x64.cc
143
int
heap_slots
= scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
local
144
if (
heap_slots
> 0) {
148
if (
heap_slots
<= FastNewContextStub::kMaximumSlots) {
149
FastNewContextStub stub(
heap_slots
);
[
all
...]
lithium-codegen-x64.cc
176
int
heap_slots
= scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
local
177
if (
heap_slots
> 0) {
181
if (
heap_slots
<= FastNewContextStub::kMaximumSlots) {
182
FastNewContextStub stub(
heap_slots
);
[
all
...]
Completed in 142 milliseconds