Searched refs:block (Results 226 - 238 of 238) sorted by relevance

12345678910

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp1128 void LIRGenerator::trace_block_entry(BlockBegin* block) { argument
1129 __ move(LIR_OprFact::intConst(block->block_id()), FrameMap::O0_opr);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp1267 void LIRGenerator::trace_block_entry(BlockBegin* block) { argument
1268 store_stack_parameter(LIR_OprFact::intConst(block->block_id()), in_ByteSize(0));
H A Dc1_LIRAssembler_x86.cpp383 // is coming at the end after block reordering) the return address
474 // is coming at the end after block reordering) the return address
1419 assert(op->block() == NULL || op->block()->label() == op->label(), "wrong label");
1420 if (op->block() != NULL) _branch_target_blocks.append(op->block());
/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.hpp278 virtual MachNode *peephole( Block *block, int block_index, PhaseRegAlloc *ra_, int &deleted, Compile* C );
715 uint _argsize; // Size of argument block on stack
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java242 " allClassesLink.style.display = \"block\";" + DocletConstants.NL +
2364 div = HtmlTree.DIV(HtmlStyle.block, italic);
2368 div = HtmlTree.DIV(HtmlStyle.block, result);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java1462 * try block if there are no resources to manage.
1476 private JCBlock makeTwrBlock(List<JCTree> resources, JCBlock block, int depth) { argument
1478 return block;
1480 // Add resource declaration or expression to block statements
1529 make.at(TreeInfo.endPos(block));
1532 JCTry outerTry = make.Try(makeTwrBlock(resources.tail, block, depth + 1),
2323 // Return empty block {} as a placeholder for an inner class.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java2 * reserved comment block
2562 short block = fCurrentElemDecl.fBlock;
2564 block |= ((XSComplexTypeDecl) fCurrentType).fBlock;
2565 if (!XSConstraints.checkTypeDerivationOk(type, fCurrentType, block))
H A DSchemaGrammar.java2 * reserved comment block
1189 short block, short contentType,
1187 setValues(String name, String targetNamespace, XSTypeDefinition baseType, short derivedBy, short schemaFinal, short block, short contentType, boolean isAbstract, XSAttributeGroupDecl attrGrp, XSSimpleType simpleType, XSParticleDecl particle) argument
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java3059 private String toHexString(byte[] block) { argument
3061 int len = block.length;
3063 byte2hex(block[i], buf);
/openjdk7/hotspot/src/share/vm/ci/
H A DbcEscapeAnalyzer.cpp160 // Merge new state into already processed block.
723 assert(_methodBlocks->is_block_start(dest_bci), "branch destination must start a block");
724 assert(s.next_bci() == limit_bci, "branch must end block");
738 assert(_methodBlocks->is_block_start(dest_bci), "branch destination must start a block");
739 assert(s.next_bci() == limit_bci, "branch must end block");
749 assert(_methodBlocks->is_block_start(dest_bci), "branch destination must start a block");
750 assert(s.next_bci() == limit_bci, "branch must end block");
757 assert(_methodBlocks->is_block_start(dest_bci), "branch destination must start a block");
758 assert(s.next_bci() == limit_bci, "branch must end block");
766 assert(_methodBlocks->is_block_start(dest_bci), "branch destination must start a block");
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.cpp1593 // Add the decomposed "code" sections of an encoding's code-block
1598 // Add the decomposed "replacement variables" of an encoding's code-block
1647 // Output the code block
1899 RewriteRule::RewriteRule(char* params, char* block) argument
1900 : _tempParams(params), _tempBlock(block) { }; // Constructor
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp131 CALL_VM(SafepointSynchronize::block(THREAD), handle_exception); \
2631 // locks were properly block structured. If we find that they were not
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp784 // Otherwise, the new location is region->destination + block offset + the
788 // Fill in the block table if necessary. This is unsynchronized, so multiple
789 // threads may fill the block table for a region (harmless, since it is
2692 // Write a histogram of the number of times the block table was filled for a
3041 // Find the first live object or block of dead space that *starts* in this
3058 // A live object or block of dead space starts in this range of Regions.
3440 // Fill in the block table elements for the specified region. Each block
3442 // left of the first object that starts in the block. Thus only blocks in
3447 // found, if it's the first to start in the block tha
[all...]

Completed in 172 milliseconds

12345678910