Searched defs:LIR_List (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp1115 // LIR_List
1116 LIR_List::LIR_List(Compilation* compilation, BlockBegin* block) function in class:LIR_List
1130 void LIR_List::set_file_and_line(const char * file, int line) {
1144 void LIR_List::append(LIR_InsertionBuffer* buffer) {
1173 void LIR_List::oop2reg_patch(jobject o, LIR_Opr reg, CodeEmitInfo* info) {
1178 void LIR_List::load(LIR_Address* addr, LIR_Opr src, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1189 void LIR_List::volatile_load_mem_reg(LIR_Address* address, LIR_Opr dst, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1199 void LIR_List::volatile_load_unsafe_reg(LIR_Opr base, LIR_Opr offset, LIR_Opr dst, BasicType type, CodeEmitInfo* info, LIR_PatchCode patch_code) {
1210 void LIR_List
[all...]
H A Dc1_LIR.hpp1864 //--------------------------------LIR_List---------------------------------------------------
1865 // Maintains a list of LIR instructions (one instance of LIR_List per basic block)
1866 // The LIR instructions are appended by the LIR_List class itself;
1872 class LIR_List: public CompilationResourceObj { class in inherits:CompilationResourceObj
1906 LIR_List(Compilation* compilation, BlockBegin* block = NULL);
1919 // insert LIR_Ops in buffer to right places in LIR_List
1923 void insert_before(int i, LIR_List* op_list) { _operations.insert_before(i, op_list->instructions_list()); }
2167 LIR_List* _lir; // the lir list where ops of this buffer should be inserted later (NULL when uninitialized)
2188 void init(LIR_List* lir) { assert(!initialized(), "already initialized"); _lir = lir; _index_and_count.clear(); _ops.clear(); }
2190 // called automatically when the buffer is appended to the LIR_List
[all...]

Completed in 46 milliseconds