Searched refs:instruction (Results 76 - 89 of 89) sorted by relevance

1234

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCInstructionFactoryImpl.java86 public SPARCInstruction newIllegalInstruction(int instruction) { argument
87 return new SPARCIllegalInstruction(instruction);
164 public SPARCInstruction newCoprocessorInstruction(int instruction, int cpopcode, int opcode, argument
166 return new SPARCIllegalInstruction(instruction);
H A DSPARCInstructionFactory.java61 public SPARCInstruction newIllegalInstruction(int instruction); argument
106 public SPARCInstruction newCoprocessorInstruction(int instruction, int cpopcode, int opc, argument
H A DSPARCV9InstructionFactoryImpl.java40 public SPARCInstruction newCoprocessorInstruction(int instruction, int cpopcode, int opc, argument
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dlinux_sparc.s25 # The "ld" at Fetch32 is potentially faulting instruction.
26 # If the instruction traps the trap handler will arrange
29 # instruction in the trap shadow.
40 # <-- Potentially faulting instruction
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dsolaris_sparc.s25 !! The "ld" at Fetch32 is potentially faulting instruction.
26 !! If the instruction traps the trap handler will arrange
29 !! instruction in the trap shadow.
46 ld [%g1], %o0 !! <-- Potentially faulting instruction
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionList.java93 * Create (empty) instruction list.
98 * Create instruction list containing one instruction.
99 * @param i initial instruction
106 * Create instruction list containing one instruction.
107 * @param i initial instruction
114 * Initialize list with (nonnull) compound instruction. Consumes argument
117 * @param c compound instruction (list)
129 * Find the target instruction (handl
[all...]
H A DMethodGen.java100 * instruction (handles) that are still referenced from this object.
113 * @param il instruction list associated with this method, may be null only for
386 * the start to the end of the instruction list.
425 * Give an instruction a line number corresponding to the source code line.
427 * @param ih instruction to tag
478 * instruction where the actual handling is done.
492 throw new ClassGenException("Exception handler target is null instruction");
702 * Remove all NOPs from the instruction list (if possible) and update every
857 * Computes stack usage of an instruction list by performing control flow analysis.
879 Instruction instruction
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.hpp113 // Compute the gen/kill effect of a single instruction.
114 void compute_gen_kill_single(ciBytecodeStream *instruction);
H A DmethodLiveness.cpp67 // 2. Instead of computing the effects of exceptions at every instruction, we
248 // Now we need to interpret the instruction's effect
490 assert( block != NULL, "invalid bytecode index; must be instruction index" );
648 void MethodLiveness::BasicBlock::compute_gen_kill_single(ciBytecodeStream *instruction) {
655 switch (instruction->cur_bc()) {
808 if (instruction->method()->intrinsic_id() == vmIntrinsics::_Object_init) {
818 load_two(instruction->get_index());
846 load_one(instruction->get_index());
875 store_two(localNum = instruction->get_index());
901 store_one(instruction
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s235 ! issue memory barrier instruction
240 BLD_B0 ! issue the 2nd block load instruction
255 ! issue memory barrier instruction
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.hpp100 Instruction* _cleanup_return_prev; // Instruction before return instruction
185 Instruction* _last; // the last instruction added
225 // instruction helpers
271 XHandlers* handle_exception(Instruction* instruction);
285 // - if the instruction unconditionally needs a full copy of the
288 // - if the instruction needs a full copy of the state only for
292 // - if the instruction needs either a full copy of the state for
H A Dc1_GraphBuilder.cpp1507 // save state before instruction for debug info when
2096 // Canonicalizer returned an instruction which was already
2102 // Lookup the instruction in the ValueMap and add it to the map if
2147 // set up exception handlers for this instruction if necessary
2187 XHandlers* GraphBuilder::handle_exception(Instruction* instruction) {
2188 if (!has_handler() && (!instruction->needs_exception_state() || instruction->exception_state() != NULL)) {
2189 assert(instruction->exception_state() == NULL
2190 || instruction->exception_state()->kind() == ValueStack::EmptyExceptionState
2191 || (instruction
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c257 int *code_data; /* offset to instruction number */
314 #define FLAG_REACHED 0x01 /* instruction reached */
319 flag_type and_flags; /* true for all paths to this instruction */
986 /* Run through the code. Mark the start of each instruction, and give
987 * the instruction a number */
992 CCerror(context, "Illegal instruction found at offset %d", offset);
994 CCerror(context, "Code stops in the middle of instruction "
1002 /* Allocate a structure to hold info about each instruction. */
1040 /* Set up first instruction, and start of exception handlers. */
1065 /* Look at a single instruction, an
1629 int instruction = *iptr; local
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java3781 public void processingInstruction(String name, String instruction) { argument
3783 pi.add(instruction);

Completed in 114 milliseconds

1234