Searched refs:instr (Results 51 - 65 of 65) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp361 for (Instruction* instr = block; instr != NULL; instr = instr->next()) {
362 if (instr->is_pinned()) do_root(instr);
372 // This is where the tree-walk starts; instr must be root;
373 void LIRGenerator::do_root(Value instr) { argument
376 InstructionMark im(compilation(), instr); local
378 assert(instr
389 walk(Value instr) argument
390 InstructionMark im(compilation(), instr); local
1064 rlock(Value instr) argument
[all...]
H A Dc1_LIRGenerator.hpp197 LIR_Opr rlock(Value instr); // lock a free register
198 LIR_Opr rlock_result(Value instr);
199 LIR_Opr rlock_result(Value instr, BasicType type);
387 void do_root (Instruction* instr);
388 void walk (Instruction* instr);
H A Dc1_Canonicalizer.cpp809 static bool match_index_and_scale(Instruction* instr, argument
816 Convert* convert = instr->as_Convert();
818 instr = convert->value();
821 ShiftOp* shift = instr->as_ShiftOp();
843 ArithmeticOp* arith = instr->as_ArithmeticOp();
H A Dc1_GraphBuilder.cpp1687 log->elem("call method='%d' instr='%s'",
2092 Instruction* GraphBuilder::append_with_bci(Instruction* instr, int bci) {
2093 Canonicalizer canon(compilation(), instr, bci);
2156 Instruction* GraphBuilder::append(Instruction* instr) {
2157 assert(instr->as_StateSplit() == NULL || instr->as_BlockEnd() != NULL, "wrong append used");
2158 return append_with_bci(instr, bci());
2162 Instruction* GraphBuilder::append_split(StateSplit* instr) {
2163 return append_with_bci(instr, bci());
H A Dc1_LinearScan.cpp854 Instruction* instr = gen()->instruction_for_vreg(i); local
855 tty->print_cr("* vreg %d (HIR instruction %c%d)", i, instr == NULL ? ' ' : instr->type()->tchar(), instr == NULL ? 0 : instr->id());
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.cpp62 InstructForm::InstructForm(const char *id, InstructForm *instr, MatchRule *rule) argument
64 _localNames(instr->_localNames),
65 _effects(instr->_effects),
72 _insencode = instr->_insencode;
73 _constant = instr->_constant;
74 _opcode = instr->_opcode;
75 _size = instr->_size;
76 _attribs = instr->_attribs;
77 _predicate = instr->_predicate;
78 _exprule = instr
1171 cisc_spills_to(ArchDesc &AD, InstructForm *instr) argument
[all...]
H A Dformssel.hpp118 InstructForm(const char *id, InstructForm *instr, MatchRule *rule);
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DStackMapWriter.java118 public void writeDetails(Instruction instr) { argument
119 writeDetails(instr.getPC());
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLContext.c899 GLint instr; local
901 GL_MAX_PROGRAM_INSTRUCTIONS_ARB, &instr);
902 if (instr > 512) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A Dsa.js544 visit: function (pc, instr) {
546 writeln(instr.asString(pc,
725 visit: function(curPc, instr) {
746 writeln(instr.asString(curPc,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86Disassembler.java1505 Instruction instr = null;
1549 instr = instrDecoder.decode(code, byteIndex, instrStartIndex, segmentOverride, prefixes, factory);
1550 visitor.visit(startPc + len, instr);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.cpp268 bool NativeFarCall::is_call_at(address instr) { argument
269 return nativeInstruction_at(instr)->is_sethi();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp1297 void record_jump(address target, address instr, const char* file, int line);
H A Dthread.cpp761 void JavaThread::record_jump(address target, address instr, const char* file, int line) { argument
770 _jmp_ring[index]._instruction = (intptr_t) instr;
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java717 // split instr to words according to capitalization,
720 static String splitToWords(String instr) { argument
721 return instr.replaceAll("([A-Z])", " $1");

Completed in 120 milliseconds

123