/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/ |
H A D | Compile.java | 80 public PhaseCFG cfg() { method in class:Compile
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | regalloc.cpp | 37 PhaseRegAlloc::PhaseRegAlloc( uint unique, PhaseCFG &cfg, argument 40 Phase(Register_Allocation), _cfg(cfg), _matcher(matcher),
|
H A D | live.cpp | 47 PhaseLive::PhaseLive( const PhaseCFG &cfg, LRG_List &names, Arena *arena ) : Phase(LIVE), _cfg(cfg), _names(names), _arena(arena), _live(0) { argument
|
H A D | buildOopMap.cpp | 376 if( t->isa_rawptr() && C->cfg()->_raw_oops.member(def) ) { 417 static void do_liveness( PhaseRegAlloc *regalloc, PhaseCFG *cfg, Block_List *worklist, int max_reg_ints, Arena *A, Dict *safehash ) { argument 418 int *live = NEW_ARENA_ARRAY(A, int, (cfg->_num_blocks+1) * max_reg_ints); 419 int *tmp_live = &live[cfg->_num_blocks * max_reg_ints]; 420 Node *root = cfg->C->root(); 427 memset( live, 0, cfg->_num_blocks * (max_reg_ints<<LogBytesPerInt) ); 430 worklist->push(cfg->_bbs[root->in(i)->_idx]); 541 worklist->push(cfg->_bbs[b->pred(l)->_idx]); 548 for( i=1; i<cfg->_num_blocks; i++ ) { 549 Block *b = cfg [all...] |
H A D | lcm.cpp | 61 void Block::implicit_null_check(PhaseCFG *cfg, Node *proj, Node *val, int allowed_reasons) { argument 237 Block *cb = cfg->_bbs[mach->_idx]; 262 Block *inb = cfg->_bbs[mach->in(j)->_idx]; 272 Block *mb = cfg->_bbs[mach->_idx]; 291 b = cfg->_bbs[b->pred(1)->_idx]; // Move up to predecessor block 304 cfg->_bbs[mach->_idx]->_dom_depth < cfg->_bbs[best->_idx]->_dom_depth ) { 319 Block *valb = cfg->_bbs[val->_idx]; 324 cfg->_bbs.map(val->_idx,this); 330 cfg 408 select(PhaseCFG *cfg, Node_List &worklist, GrowableArray<int> &ready_cnt, VectorSet &next_call, uint sched_slot) argument 667 schedule_local(PhaseCFG *cfg, Matcher &matcher, GrowableArray<int> &ready_cnt, VectorSet &next_call) argument [all...] |
H A D | chaitin.cpp | 149 PhaseChaitin::PhaseChaitin(uint unique, PhaseCFG &cfg, Matcher &matcher) argument 150 : PhaseRegAlloc(unique, cfg, matcher,
|
H A D | loopopts.cpp | 1420 Node *cfg = prev->_idx >= new_counter local 1424 cfg = prev->in(idx); // NOT in block of Phi itself 1425 if (cfg->is_top()) { // Use is dead? 1430 while( !loop->is_member( get_loop( cfg ) ) ) { 1431 prev = cfg; 1432 cfg = cfg->_idx >= new_counter ? cfg->in(2) : idom(cfg); 2431 // Set of cfg node [all...] |
H A D | loopnode.cpp | 150 assert(ctl->is_CFG(), "expensive input 0 must be cfg"); 2897 Node* cfg = NULL; // Find the One True Control User of m local 2901 { cfg = x; break; } 2903 assert(cfg != NULL, "must find the control user of m"); 2904 uint k = 0; // Probably cfg->in(0) 2905 while( cfg->in(k) != m ) k++; // But check incase cfg is a Region 2906 cfg->set_req( k, if_t ); // Now point to NeverBranch
|
H A D | compile.cpp | 2119 PhaseCFG cfg(node_arena(), root(), m); 2120 _cfg = &cfg; 2123 cfg.Dominators(); 2128 cfg.Estimate_Block_Frequency(); 2129 cfg.GlobalCodeMotion(m,unique(),proj_list); 2136 debug_only( cfg.verify(); ) 2140 PhaseChaitin regalloc(unique(),cfg,m); local 2164 cfg.remove_empty(); 2166 PhaseBlockLayout layout(cfg); 2168 cfg [all...] |
H A D | compile.hpp | 859 PhaseCFG* cfg() { return _cfg; } function in class:Compile
|
H A D | graphKit.cpp | 1249 Node *cfg = control(); local 1252 if( cfg->Opcode() == Op_IfTrue && 1253 cfg->in(0)->in(1) == tst ) { 1262 set_control(cfg); 1268 cfg = IfNode::up_one_dom(cfg, /*linear_only=*/ true); 1269 if (cfg == NULL) break; // Quit at region nodes
|
/openjdk7/hotspot/src/share/tools/ProjectCreator/ |
H A D | FileTreeCreator.java | 51 public boolean hasIgnore(BuildConfig cfg) { argument 52 return ignores.contains(cfg); 55 public void removeFromIgnored(BuildConfig cfg) { argument 56 ignores.remove(cfg); 63 public boolean hasDisablePch(BuildConfig cfg) { argument 64 return disablePch.contains(cfg); 67 public void removeFromDisablePch(BuildConfig cfg) { argument 68 disablePch.remove(cfg);
|
H A D | WinGammaPlatformVC7.java | 61 for (BuildConfig cfg : allConfigs) { 62 writeConfiguration(cfg); 80 for (BuildConfig cfg : configs) { 82 new String[] { "Name", (String) cfg.get("Name") }); 129 void writeConfiguration(BuildConfig cfg) { argument 130 startTag("Configuration", new String[] { "Name", cfg.get("Name"), 131 "OutputDirectory", cfg.get("OutputDir"), 132 "IntermediateDirectory", cfg.get("OutputDir"), 136 tagV("Tool", cfg.getV("CompilerFlags")); 140 tagV("Tool", cfg [all...] |
H A D | WinGammaPlatformVC10.java | 39 for (BuildConfig cfg : allConfigs) { 41 "Include", cfg.get("Name")); 42 tagData("Configuration", cfg.get("Id")); 43 tagData("Platform", cfg.get("PlatformName")); 56 for (BuildConfig cfg : allConfigs) { 57 startTag(cfg, "PropertyGroup", "Label", "Configuration"); 66 for (BuildConfig cfg : allConfigs) { 67 startTag(cfg, "ImportGroup", "Label", "PropertySheets"); 79 for (BuildConfig cfg : allConfigs) { 80 tagData(cfg, "OutDi 254 buildCond(BuildConfig cfg) argument 267 tagData(BuildConfig cfg, String name, String data) argument 271 tag(BuildConfig cfg, String name, String... attrs) argument 280 startTag(BuildConfig cfg, String name, String... attrs) argument [all...] |
H A D | BuildConfig.java | 285 static boolean appliesToTieredBuild(String cfg) { argument 286 return (cfg != null && 287 (cfg.startsWith("compiler1") || 288 cfg.startsWith("compiler2"))); 293 static boolean appliesToTieredBuild(String cfg, String key) { argument 294 return (appliesToTieredBuild(cfg))&& (key != null && !key.startsWith("Ignore")); 297 static String getTieredBuildCfg(String cfg) { argument 298 assert appliesToTieredBuild(cfg) : "illegal configuration " + cfg; 299 return "tiered" + cfg 302 getField(String cfg, String field) argument 311 getFieldString(String cfg, String field) argument 315 getFieldVector(String cfg, String field) argument 319 putField(String cfg, String field, Object value) argument 326 putFieldImpl(String cfg, String field, Object value) argument 341 getFieldHash(String cfg, String field, String name) argument 347 putFieldHash(String cfg, String field, String name, Object val) argument 354 putFieldHashImpl(String cfg, String field, String name, Object val) argument 365 addFieldVector(String cfg, String field, String element) argument 372 addFieldVectorImpl(String cfg, String field, String element) argument [all...] |
/openjdk7/jdk/test/sun/java2d/OpenGL/ |
H A D | CustomCompositeTest.java | 114 GraphicsConfiguration cfg = env.getDefaultScreenDevice().getDefaultConfiguration(); 116 testVolatileImage(cfg, true); 120 testVolatileImage(cfg, false); 124 private static void testVolatileImage(GraphicsConfiguration cfg, argument 129 dst = cfg.createCompatibleVolatileImage(640, 480,
|
/openjdk7/jdk/src/share/classes/sun/net/httpserver/ |
H A D | SSLStreams.java | 69 HttpsConfigurator cfg = server.getHttpsConfigurator(); 70 configureEngine (cfg, addr); 74 private void configureEngine(HttpsConfigurator cfg, InetSocketAddress addr){ argument 75 if (cfg != null) { 76 Parameters params = new Parameters (cfg, addr); 78 cfg.configure (params); 108 HttpsConfigurator cfg; field in class:SSLStreams.Parameters 110 Parameters (HttpsConfigurator cfg, InetSocketAddress addr) { argument 112 this.cfg = cfg; [all...] |