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

/external/v8/src/compiler/
H A Dlinkage.h32 class LinkageLocation { class in namespace:v8::internal::compiler
34 bool operator==(const LinkageLocation& other) const {
38 bool operator!=(const LinkageLocation& other) const {
42 static LinkageLocation ForAnyRegister(
44 return LinkageLocation(REGISTER, ANY_REGISTER, type);
47 static LinkageLocation ForRegister(int32_t reg,
50 return LinkageLocation(REGISTER, reg, type);
53 static LinkageLocation ForCallerFrameSlot(int32_t slot, MachineType type) {
55 return LinkageLocation(STACK_SLOT, slot, type);
58 static LinkageLocation ForCalleeFrameSlo
115 LinkageLocation(LocationType type, int32_t location, function in class:v8::internal::compiler::LinkageLocation
[all...]

Completed in 218 milliseconds