OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:hydrogen_env
(Results
1 - 6
of
6
) sorted by null
/external/v8/src/arm/
lithium-arm.cc
707
HEnvironment*
hydrogen_env
= current_block_->last_environment();
local
708
instr->set_environment(CreateEnvironment(
hydrogen_env
));
999
LEnvironment* LChunkBuilder::CreateEnvironment(HEnvironment*
hydrogen_env
) {
1000
if (
hydrogen_env
== NULL) return NULL;
1002
LEnvironment* outer = CreateEnvironment(
hydrogen_env
->outer());
1003
int ast_id =
hydrogen_env
->ast_id();
1005
int value_count =
hydrogen_env
->length();
1006
LEnvironment* result = new LEnvironment(
hydrogen_env
->closure(),
1008
hydrogen_env
->parameter_count(),
1014
HValue* value =
hydrogen_env
->values()->at(i)
[
all
...]
lithium-arm.h
[
all
...]
/external/v8/src/ia32/
lithium-ia32.cc
701
HEnvironment*
hydrogen_env
= current_block_->last_environment();
local
702
instr->set_environment(CreateEnvironment(
hydrogen_env
));
992
LEnvironment* LChunkBuilder::CreateEnvironment(HEnvironment*
hydrogen_env
) {
993
if (
hydrogen_env
== NULL) return NULL;
995
LEnvironment* outer = CreateEnvironment(
hydrogen_env
->outer());
996
int ast_id =
hydrogen_env
->ast_id();
998
int value_count =
hydrogen_env
->length();
999
LEnvironment* result = new LEnvironment(
hydrogen_env
->closure(),
1001
hydrogen_env
->parameter_count(),
1007
HValue* value =
hydrogen_env
->values()->at(i)
[
all
...]
lithium-ia32.h
[
all
...]
/external/v8/src/x64/
lithium-x64.cc
702
HEnvironment*
hydrogen_env
= current_block_->last_environment();
local
703
instr->set_environment(CreateEnvironment(
hydrogen_env
));
994
LEnvironment* LChunkBuilder::CreateEnvironment(HEnvironment*
hydrogen_env
) {
995
if (
hydrogen_env
== NULL) return NULL;
997
LEnvironment* outer = CreateEnvironment(
hydrogen_env
->outer());
998
int ast_id =
hydrogen_env
->ast_id();
1000
int value_count =
hydrogen_env
->length();
1001
LEnvironment* result = new LEnvironment(
hydrogen_env
->closure(),
1003
hydrogen_env
->parameter_count(),
1009
HValue* value =
hydrogen_env
->values()->at(i)
[
all
...]
lithium-x64.h
[
all
...]
Completed in 425 milliseconds