Searched defs:flow (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkFunction.hpp49 ciTypeFlow* flow,
51 SharkFunction function(env, builder, flow, name);
58 ciTypeFlow* flow,
60 : SharkTargetInvariants(env, builder, flow) { initialize(name); }
76 return flow()->block_count();
92 return flow()->is_osr_flow();
47 build(ciEnv* env, SharkBuilder* builder, ciTypeFlow* flow, const char* name) argument
56 SharkFunction(ciEnv* env, SharkBuilder* builder, ciTypeFlow* flow, const char* name) argument
H A DsharkInvariants.hpp121 SharkTargetInvariants(ciEnv* env, SharkBuilder* builder, ciTypeFlow* flow) argument
123 _target(flow->method()),
124 _flow(flow),
155 ciTypeFlow* flow() const { function in class:SharkTargetInvariants
H A DsharkCompiler.cpp153 ciTypeFlow *flow; local
155 flow = target->get_flow_analysis();
157 flow = target->get_osr_flow_analysis(entry_bci);
158 if (flow->failing())
162 flow->print_on(tty);
184 Function *function = SharkFunction::build(env, &builder, flow, name);
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DTestIBMDB.java406 static boolean check(CharsetDecoder dec, byte[] bytes, boolean direct, int[] flow) { argument
407 int inPos = flow[0];
408 int inLen = flow[1];
409 int outPos = flow[2];
410 int outLen = flow[3];
411 int expedInPos = flow[4];
412 int expedOutPos = flow[5];
413 CoderResult expedCR = (flow[6]==0)?CoderResult.UNDERFLOW
433 for (int i:flow) System.out.print(" " + i);
483 for (int[] flow
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DTestEUC_TW.java314 static boolean check(CharsetDecoder dec, byte[] bytes, boolean direct, int[] flow) { argument
315 int inPos = flow[0];
316 int inLen = flow[1];
317 int outPos = flow[2];
318 int outLen = flow[3];
319 int expedInPos = flow[4];
320 int expedOutPos = flow[5];
321 CoderResult expedCR = (flow[6]==0)?CoderResult.UNDERFLOW
341 for (int i:flow) System.out.print(" " + i);
410 for (int[] flow
[all...]
H A DTestUTF8.java345 static boolean check(CharsetDecoder dec, byte[] utf8s, boolean direct, int[] flow) { argument
346 int inPos = flow[0];
347 int inLen = flow[1];
348 int outPos = flow[2];
349 int outLen = flow[3];
350 int expedInPos = flow[4];
351 int expedOutPos = flow[5];
352 CoderResult expedCR = (flow[6]==0)?CoderResult.UNDERFLOW
372 for (int i:flow) System.out.print(" " + i);
422 for (int[] flow
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp110 void merge( OopFlow *flow, int max_reg );
112 // Copy a 'flow' over an existing flow
113 void clone( OopFlow *flow, int max_size);
118 // Build an oopmap from the current flow info
181 // Merge the given flow into the 'this' flow
182 void OopFlow::merge( OopFlow *flow, int max_reg ) { argument
183 assert( _b == NULL, "merging into a happy flow" );
184 assert( flow
201 clone( OopFlow *flow, int max_size ) argument
212 OopFlow *flow = new (A) OopFlow(callees+1, defs+1, C); local
630 OopFlow *flow = NULL; // Flag for finding optimized flow local
[all...]
H A Dparse.hpp163 int _num_successors; // Includes only normal control flow.
178 ciTypeFlow::Block* flow() const { return _flow; } function in class:Parse::Block
215 int start() const { return flow()->start(); }
216 int limit() const { return flow()->limit(); }
217 int rpo() const { return flow()->rpo(); }
218 int start_sp() const { return flow()->stack_size(); }
220 bool is_loop_head() const { return flow()->is_loop_head(); }
221 bool is_SEL_head() const { return flow()->is_single_entry_loop_head(); }
225 if (!jvms->is_loc(i) || flow()->outer()->has_irreducible_entry()) return false;
226 return flow()
364 ciTypeFlow* flow() const { return _flow; } function in class:Parse
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp373 ciTypeFlow* flow = new (env->arena()) ciTypeFlow(env, this, osr_bci); local
374 flow->do_flow();
375 return flow;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java124 * Control how the compiler's latter phases (attr, flow, desugar, generate)
130 * errors, although not aggressively so. flow, desugar, etc become no-ops
142 * Just attribute and do flow analysis on the parse trees.
148 * Attribute everything, then do flow analysis for everything,
259 /** The flow analyzer.
261 protected Flow flow; field in class:JavaCompiler
353 flow = Flow.instance(context);
853 flow(attribute(todo));
857 generate(desugar(flow(attribute(todo))));
863 generate(desugar(flow(attribut
1205 public Queue<Env<AttrContext>> flow(Queue<Env<AttrContext>> envs) { method in class:JavaCompiler
1216 public Queue<Env<AttrContext>> flow(Env<AttrContext> env) { method in class:JavaCompiler
1225 protected void flow(Env<AttrContext> env, Queue<Env<AttrContext>> results) { method in class:JavaCompiler
[all...]

Completed in 1322 milliseconds