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

/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGJITCompiler.h54 enum GPRReg { gpr0, gpr1, gpr2, gpr3, gpr4, gpr5, numberOfGPRs, InvalidGPRReg = 0xFFFFFFFF }; enum in namespace:JSC::DFG
57 // GPRReg/FPRReg are enum types to provide type checking at compile time, use these method to iterate.
58 inline GPRReg next(GPRReg& reg)
61 return reg = static_cast<GPRReg>(reg + 1);
130 // Temporary registers (these correspond to the temporary GPRReg/FPRReg
147 // These constants provide both RegisterID & GPRReg style names for the
149 static const GPRReg argumentGPR0 = gpr4;
150 static const GPRReg argumentGPR1 = gpr5;
151 static const GPRReg argumentGPR
[all...]

Completed in 61 milliseconds