Changeset 129713 in webkit for trunk/Source/JavaScriptCore/bytecode
- Timestamp:
- Sep 26, 2012, 5:04:48 PM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore/bytecode
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/Instruction.h
r129453 r129713 34 34 #include "Opcode.h" 35 35 #include "PropertySlot.h" 36 #include "SpecialPointer.h" 36 37 #include "Structure.h" 37 38 #include "StructureChain.h" … … 196 197 Instruction(WriteBarrier<Unknown>* registerPointer) { u.registerPointer = registerPointer; } 197 198 199 Instruction(Special::Pointer pointer) { u.specialPointer = pointer; } 200 198 201 Instruction(bool* predicatePointer) { u.predicatePointer = predicatePointer; } 199 202 … … 205 208 WriteBarrierBase<JSCell> jsCell; 206 209 WriteBarrier<Unknown>* registerPointer; 210 Special::Pointer specialPointer; 207 211 PropertySlot::GetValueFunc getterFunc; 208 212 LLIntCallLinkInfo* callLinkInfo;
Note:
See TracChangeset
for help on using the changeset viewer.