HomeSort by relevance Sort by last modified time
    Searched defs:jsgraph (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/v8/src/compiler/
simplified-operator-reducer.h 19 class JSGraph;
24 explicit SimplifiedOperatorReducer(JSGraph* jsgraph) : jsgraph_(jsgraph) {}
41 JSGraph* jsgraph() const { return jsgraph_; } function in class:v8::internal::compiler::FINAL
44 JSGraph* jsgraph_;
change-lowering.h 16 class JSGraph;
22 ChangeLowering(JSGraph* jsgraph, Linkage* linkage)
23 : jsgraph_(jsgraph), linkage_(linkage) {}
47 JSGraph* jsgraph() const { return jsgraph_; } function in class:v8::internal::compiler::FINAL
52 JSGraph* jsgraph_;
js-builtin-reducer.h 20 explicit JSBuiltinReducer(JSGraph* jsgraph)
21 : jsgraph_(jsgraph), simplified_(jsgraph->zone()) {}
27 JSGraph* jsgraph() const { return jsgraph_; } function in class:v8::internal::compiler::FINAL
37 JSGraph* jsgraph_;
machine-operator-reducer.h 17 class JSGraph;
24 explicit MachineOperatorReducer(JSGraph* jsgraph);
52 JSGraph* jsgraph() const { return jsgraph_; } function in class:v8::internal::compiler::FINAL
56 JSGraph* jsgraph_;
simplified-lowering.h 19 explicit SimplifiedLowering(JSGraph* jsgraph) : jsgraph_(jsgraph) {}
35 JSGraph* jsgraph_;
47 JSGraph* jsgraph() { return jsgraph_; } function in class:v8::internal::compiler::SimplifiedLowering
48 Graph* graph() { return jsgraph()->graph(); }
49 CommonOperatorBuilder* common() { return jsgraph()->common(); }
50 MachineOperatorBuilder* machine() { return jsgraph()->machine(); }
js-generic-lowering.h 29 JSGenericLowering(CompilationInfo* info, JSGraph* graph);
59 JSGraph* jsgraph() const { return jsgraph_; } function in class:v8::internal::compiler::JSGenericLowering
60 Graph* graph() const { return jsgraph()->graph(); }
63 CommonOperatorBuilder* common() const { return jsgraph()->common(); }
64 MachineOperatorBuilder* machine() const { return jsgraph()->machine(); }
68 JSGraph* jsgraph_;
js-typed-lowering.h 21 explicit JSTypedLowering(JSGraph* jsgraph)
22 : jsgraph_(jsgraph), simplified_(jsgraph->zone()) {}
27 JSGraph* jsgraph() { return jsgraph_; } function in class:v8::internal::compiler::FINAL
56 JSGraph* jsgraph_;
representation-change.h 23 RepresentationChanger(JSGraph* jsgraph, SimplifiedOperatorBuilder* simplified,
25 : jsgraph_(jsgraph),
79 return jsgraph()->Constant(static_cast<double>(value));
82 return jsgraph()->Constant(value);
84 return OpParameter<int32_t>(node) == 0 ? jsgraph()->FalseConstant()
85 : jsgraph()->TrueConstant();
90 return jsgraph()->Constant(OpParameter<double>(node));
111 return jsgraph()->graph()->NewNode(op, node);
118 return jsgraph()->Float64Constant(OpParameter<double>(node))
351 JSGraph* jsgraph() { return jsgraph_; } function in class:v8::internal::compiler::RepresentationChanger
    [all...]
pipeline.cc 122 explicit AstGraphBuilderWithPositions(CompilationInfo* info, JSGraph* jsgraph,
124 : AstGraphBuilder(info, jsgraph), source_positions_(source_positions) {}
186 JSGraph jsgraph(&graph, &common, &javascript, &typer, &machine);
191 AstGraphBuilderWithPositions graph_builder(info(), &jsgraph, local
214 JSContextSpecializer spec(info(), &jsgraph, context_node); local
222 JSInliner inliner(info(), &jsgraph); local
247 JSTypedLowering lowering(&jsgraph);
260 SimplifiedLowering lowering(&jsgraph);
297 JSGenericLowering lowering(info(), &jsgraph); local
    [all...]
ast-graph-builder.h 28 AstGraphBuilder(CompilationInfo* info, JSGraph* jsgraph);
117 JSGraph* jsgraph_;
134 JSGraph* jsgraph() { return jsgraph_; } function in class:v8::internal::compiler::AstGraphBuilder
js-typed-lowering.cc 73 jsgraph()->Int32Constant(0x1F)));
136 JSGraph* jsgraph() { return lowering_->jsgraph(); } function in class:v8::internal::compiler::JSBinopReduction
382 return ReplaceEagerly(node, invert ? jsgraph()->FalseConstant()
383 : jsgraph()->TrueConstant());
390 return ReplaceEagerly(node, invert ? jsgraph()->TrueConstant()
391 : jsgraph()->FalseConstant());
442 return ReplaceWith(jsgraph()->NaNConstant());
446 return ReplaceWith(jsgraph()->ZeroConstant())
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-changes-lowering.cc 35 jsgraph(this->graph(), this->common(), &javascript, &typer,
41 JSGraph jsgraph; member in class:ChangesLoweringTester
150 ChangeLowering lowering(&jsgraph, &linkage);
test-js-context-specialization.cc 35 JSGraph* jsgraph() { return &jsgraph_; } function in class:ContextSpecializationTester
44 JSGraph jsgraph_;
65 Node* const_context = t.jsgraph()->Constant(native);
66 Node* deep_const_context = t.jsgraph()->Constant(subcontext2);
68 JSContextSpecializer spec(t.info(), t.jsgraph(), const_context);
137 Node* const_context = t.jsgraph()->Constant(native);
138 Node* deep_const_context = t.jsgraph()->Constant(subcontext2);
140 JSContextSpecializer spec(t.info(), t.jsgraph(), const_context);
204 Node* const_context = t.jsgraph()->Constant(native)
    [all...]
test-representation-change.cc 38 JSGraph jsgraph_;
44 JSGraph* jsgraph() { return &jsgraph_; } function in class:v8::internal::compiler::RepresentationChangerTester
118 Node* true_node = r.jsgraph()->TrueConstant();
123 Node* false_node = r.jsgraph()->FalseConstant();
134 Node* node = r.jsgraph()->Int32Constant(i);
146 Node* n = r.jsgraph()->Float64Constant(double_inputs[i]);
152 Node* n = r.jsgraph()->Int32Constant(int32_inputs[i]);
159 Node* n = r.jsgraph()->Int32Constant(uint32_inputs[i]);
test-machine-operator-reducer.cc 60 jsgraph(&graph, &common, &javascript, &typer, &machine),
74 JSGraph jsgraph; member in class:ReducerTester
100 MachineOperatorReducer reducer(&jsgraph);
112 MachineOperatorReducer reducer(&jsgraph);
124 MachineOperatorReducer reducer(&jsgraph);
139 MachineOperatorReducer reducer(&jsgraph);
154 MachineOperatorReducer reducer(&jsgraph);
171 MachineOperatorReducer reducer(&jsgraph);
179 MachineOperatorReducer reducer(&jsgraph);
    [all...]
test-simplified-lowering.cc 40 jsgraph(this->graph(), this->common(), &javascript, &typer,
42 lowering(&jsgraph) {}
46 JSGraph jsgraph; member in class:SimplifiedLoweringTester
75 t.Return(t.jsgraph.TrueConstant());
103 t.Return(t.jsgraph.TrueConstant());
150 t.Return(t.jsgraph.TrueConstant());
246 t.Return(t.jsgraph.TrueConstant());
434 t.Return(t.jsgraph.TrueConstant());
456 t.Return(t.jsgraph.TrueConstant())
640 JSGraph jsgraph; member in class:TestingGraph
    [all...]

Completed in 300 milliseconds