Home
last modified time | relevance | path

Searched full:environment (Results 1 – 25 of 2849) sorted by relevance

12345678910>>...114

/external/v8/src/compiler/
Dcontrol-builders.cc14 else_environment_ = environment()->CopyForConditional(); in If()
23 then_environment_ = environment(); in Else()
30 then_environment_->Merge(environment()); in End()
36 loop_environment_ = environment()->CopyForLoop(assigned, is_osr); in BeginLoop()
37 continue_environment_ = environment()->CopyAsUnreachable(); in BeginLoop()
38 break_environment_ = environment()->CopyAsUnreachable(); in BeginLoop()
43 continue_environment_->Merge(environment()); in Continue()
44 environment()->MarkAsUnreachable(); in Continue()
49 break_environment_->Merge(environment()); in Break()
50 environment()->MarkAsUnreachable(); in Break()
[all …]
Dcontrol-builders.h28 typedef AstGraphBuilder::Environment Environment; typedef
31 Environment* environment() { return builder_->environment(); } in environment() function
32 void set_environment(Environment* env) { builder_->set_environment(env); } in set_environment()
54 Environment* then_environment_; // Environment after the 'then' body.
55 Environment* else_environment_; // Environment for the 'else' body.
82 Environment* loop_environment_; // Environment of the loop header.
83 Environment* continue_environment_; // Environment after the loop body.
84 Environment* break_environment_; // Environment after the loop exits.
114 Environment* body_environment_; // Environment after last case body.
115 Environment* label_environment_; // Environment for next label condition.
[all …]
Dbytecode-graph-builder.cc27 frame_state_before_ = builder_->environment()->Checkpoint( in FrameStateBeforeAndAfter()
34 DCHECK(builder_->environment()->StateValuesAreUpToDate(output_poke_offset_, in ~FrameStateBeforeAndAfter()
39 friend class Environment;
50 builder_->environment()->Checkpoint(id_after_, combine); in AddToNode()
81 BytecodeGraphBuilder::Environment::Environment(BytecodeGraphBuilder* builder, in Environment() function in v8::internal::compiler::BytecodeGraphBuilder::Environment
123 BytecodeGraphBuilder::Environment::Environment( in Environment() function in v8::internal::compiler::BytecodeGraphBuilder::Environment
124 const BytecodeGraphBuilder::Environment* other) in Environment()
141 int BytecodeGraphBuilder::Environment::RegisterToValuesIndex( in RegisterToValuesIndex()
151 Node* BytecodeGraphBuilder::Environment::LookupAccumulator() const { in LookupAccumulator()
156 Node* BytecodeGraphBuilder::Environment::LookupRegister( in LookupRegister()
[all …]
Dast-graph-builder.cc57 Environment* environment() const { return owner_->environment(); } in environment() function in v8::internal::compiler::BASE_EMBEDDED
117 depth_(builder_->environment()->context_chain_length()) { in ContextScope()
118 builder_->environment()->PushContext(context); // Push. in ContextScope()
124 builder_->environment()->PopContext(); in ~ContextScope()
125 CHECK_EQ(depth_, builder_->environment()->context_chain_length()); in ~ContextScope()
151 context_length_(builder->environment()->context_chain_length()), in ControlScope()
152 stack_height_(builder->environment()->stack_height()) { in ControlScope()
176 // this also drops extra operands from the environment for each skipped scope.
197 Environment* environment() { return builder_->environment(); } in environment() function in v8::internal::compiler::BASE_EMBEDDED
398 : builder_->environment()->Checkpoint(id_before); in FrameStateBeforeAndAfter()
[all …]
/external/v8/tools/gcmole/
Dgcmole.cc275 class Environment;
289 static ExprEffect NoneWithEnv(Environment* env) { in NoneWithEnv()
298 Environment* env() { in env()
299 return reinterpret_cast<Environment*>(effect_ & ~kAllEffects); in env()
307 ExprEffect(int effect, Environment* env) in ExprEffect()
319 class Environment { class
321 Environment() { } in Environment() function in __anond932a49f0111::Environment
323 static Environment Unreachable() { in Unreachable()
324 Environment env; in Unreachable()
329 static Environment Merge(const Environment& l, in Merge()
[all …]
/external/opencv3/3rdparty/jinja2/
Dlexer.py189 def compile_rules(environment): argument
190 """Compiles all the rules from the environment into a list of rules."""
193 (len(environment.comment_start_string), 'comment',
194 e(environment.comment_start_string)),
195 (len(environment.block_start_string), 'block',
196 e(environment.block_start_string)),
197 (len(environment.variable_start_string), 'variable',
198 e(environment.variable_start_string))
201 if environment.line_statement_prefix is not None:
202 rules.append((len(environment.line_statement_prefix), 'linestatement',
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/beanstalk/
Dlayer1.py203 :param environment_id: The ID of the environment used with this
242 """Launches an environment for the application using a configuration.
250 :param environment_name: A unique name for the deployment environment.
256 Default: If the CNAME parameter is not specified, the environment
289 :param cname_prefix: If specified, the environment attempts to use this
291 environment uses the environment name.
294 :param description: Describes this environment.
299 configuration set for the new environment. These override the
310 environment.
444 environment. Updating a running environment with any
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DEnvironment.h1 //== Environment.h - Map from Stmt* to Locations/Values ---------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
30 /// An entry in the environment consists of a Stmt and an LocationContext.
31 /// This allows the environment to manage context-sensitive bindings,
55 class Environment {
65 Environment(BindingsTy eb) in Environment() function
76 /// Environment.
79 /// Profile - Profile the contents of an Environment object for use
81 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) { in Profile()
91 bool operator==(const Environment& RHS) const {
[all …]
/external/v8/src/crankshaft/
Dhydrogen-osr.cc44 HEnvironment *environment = builder_->environment(); in BuildOsrLoopEntry() local
45 int first_expression_index = environment->first_expression_index(); in BuildOsrLoopEntry()
46 int length = environment->length(); in BuildOsrLoopEntry()
51 = builder_->Add<HUnknownOSRValue>(environment, i); in BuildOsrLoopEntry()
52 environment->Bind(i, osr_value); in BuildOsrLoopEntry()
57 environment->Drop(length - first_expression_index); in BuildOsrLoopEntry()
60 = builder_->Add<HUnknownOSRValue>(environment, i); in BuildOsrLoopEntry()
61 environment->Push(osr_value); in BuildOsrLoopEntry()
67 environment->local_count() + environment->push_count(); in BuildOsrLoopEntry()
69 // Keep a copy of the old environment, since the OSR values need it in BuildOsrLoopEntry()
[all …]
/external/autotest/client/site_tests/graphics_PiglitBVT/piglit_logs/other/all/
Dgnawty_15796319_results.json.bz2
Dexpresso_15788030_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dparrot_15692554_results.json.bz2
Dkip_15792084_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dwolf_15767514_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dleon_15769039_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dbutterfly_15756947_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dclapper_15784794_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dquawks_15786471_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dtricky_15726150_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dpeppy_15764089_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dpanther_15705391_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dstout_15758473_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dsquawks_15778848_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...
Dswanky_15723103_results.json.bz2
Dlink_15752965_results.json.bz21{ 2 "results_version": 1, 3 "name": "graphics_Piglit", 4 "options": { 5 "profile": ...

12345678910>>...114