v8  3.14.5(node0.10.28)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
property.cc
Go to the documentation of this file.
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 
28 #include "v8.h"
29 
30 namespace v8 {
31 namespace internal {
32 
33 
34 void LookupResult::Iterate(ObjectVisitor* visitor) {
35  LookupResult* current = this; // Could be NULL.
36  while (current != NULL) {
37  visitor->VisitPointer(BitCast<Object**>(&current->holder_));
38  current = current->next_;
39  }
40 }
41 
42 
43 #ifdef OBJECT_PRINT
44 void LookupResult::Print(FILE* out) {
45  if (!IsFound()) {
46  PrintF(out, "Not Found\n");
47  return;
48  }
49 
50  PrintF(out, "LookupResult:\n");
51  PrintF(out, " -cacheable = %s\n", IsCacheable() ? "true" : "false");
52  PrintF(out, " -attributes = %x\n", GetAttributes());
53  switch (type()) {
54  case NORMAL:
55  PrintF(out, " -type = normal\n");
56  PrintF(out, " -entry = %d", GetDictionaryEntry());
57  break;
58  case CONSTANT_FUNCTION:
59  PrintF(out, " -type = constant function\n");
60  PrintF(out, " -function:\n");
61  GetConstantFunction()->Print(out);
62  PrintF(out, "\n");
63  break;
64  case FIELD:
65  PrintF(out, " -type = field\n");
66  PrintF(out, " -index = %d", GetFieldIndex());
67  PrintF(out, "\n");
68  break;
69  case CALLBACKS:
70  PrintF(out, " -type = call backs\n");
71  PrintF(out, " -callback object:\n");
72  GetCallbackObject()->Print(out);
73  break;
74  case HANDLER:
75  PrintF(out, " -type = lookup proxy\n");
76  break;
77  case INTERCEPTOR:
78  PrintF(out, " -type = lookup interceptor\n");
79  break;
80  case TRANSITION:
81  switch (GetTransitionDetails().type()) {
82  case FIELD:
83  PrintF(out, " -type = map transition\n");
84  PrintF(out, " -map:\n");
85  GetTransitionMap()->Print(out);
86  PrintF(out, "\n");
87  return;
88  case CONSTANT_FUNCTION:
89  PrintF(out, " -type = constant property transition\n");
90  PrintF(out, " -map:\n");
91  GetTransitionMap()->Print(out);
92  PrintF(out, "\n");
93  return;
94  case CALLBACKS:
95  PrintF(out, " -type = callbacks transition\n");
96  PrintF(out, " -callback object:\n");
97  GetCallbackObject()->Print(out);
98  return;
99  default:
100  UNREACHABLE();
101  return;
102  }
103  case NONEXISTENT:
104  UNREACHABLE();
105  break;
106  }
107 }
108 
109 
110 void Descriptor::Print(FILE* out) {
111  PrintF(out, "Descriptor ");
112  GetKey()->ShortPrint(out);
113  PrintF(out, " @ ");
114  GetValue()->ShortPrint(out);
115  PrintF(out, " %d\n", GetDetails().descriptor_index());
116 }
117 
118 
119 #endif
120 
121 
122 } } // namespace v8::internal
void PrintF(const char *format,...)
Definition: v8utils.cc:40
v8::Handle< v8::Value > Print(const v8::Arguments &args)
#define UNREACHABLE()
Definition: checks.h:50
activate correct semantics for inheriting readonliness enable harmony semantics for typeof enable harmony enable harmony proxies enable all harmony harmony_scoping harmony_proxies harmony_scoping tracks arrays with only smi values automatically unbox arrays of doubles use crankshaft use hydrogen range analysis use hydrogen global value numbering use function inlining maximum number of AST nodes considered for a single inlining loop invariant code motion print statistics for hydrogen trace generated IR for specified phases trace register allocator trace range analysis trace representation types environment for every instruction put a break point before deoptimizing polymorphic inlining perform array bounds checks elimination use dead code elimination trace on stack replacement optimize closures cache optimized code for closures functions with arguments object loop weight for representation inference allow uint32 values on optimize frames if they are used only in safe operations track parallel recompilation enable all profiler experiments number of stack frames inspected by the profiler call recompile stub directly when self optimizing trigger profiler ticks based on counting instead of timing weight back edges by jump distance for interrupt triggering percentage of ICs that must have type info to allow optimization watch_ic_patching retry_self_opt interrupt_at_exit extra verbose compilation tracing generate extra emit comments in code disassembly enable use of SSE3 instructions if available enable use of CMOV instruction if available enable use of SAHF instruction if enable use of VFP3 instructions if available this implies enabling ARMv7 and VFP2 enable use of VFP2 instructions if available enable use of SDIV and UDIV instructions if enable loading bit constant by means of movw movt instruction enable unaligned accesses for enable use of MIPS FPU instructions if NULL
Definition: flags.cc:301