%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// Copyright 2020 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file contains runtime implementations of a few macros that are defined // as external in Torque, so that generated runtime code can work. #ifndef V8_TORQUE_RUNTIME_MACRO_SHIMS_H_ #define V8_TORQUE_RUNTIME_MACRO_SHIMS_H_ #include <cstdint> namespace v8 { namespace internal { namespace TorqueRuntimeMacroShims { namespace CodeStubAssembler { inline bool BoolConstant(bool b) { return b; } inline intptr_t ChangeInt32ToIntPtr(int32_t i) { return i; } inline uintptr_t ChangeUint32ToWord(uint32_t u) { return u; } inline intptr_t IntPtrAdd(intptr_t a, intptr_t b) { return a + b; } inline intptr_t IntPtrMul(intptr_t a, intptr_t b) { return a * b; } inline intptr_t Signed(uintptr_t u) { return static_cast<intptr_t>(u); } template <typename Smi> inline int32_t SmiUntag(Smi s) { return s.value(); } inline bool UintPtrLessThan(uintptr_t a, uintptr_t b) { return a < b; } inline uint32_t Unsigned(int32_t s) { return static_cast<uint32_t>(s); } #if V8_HOST_ARCH_64_BIT inline uintptr_t Unsigned(intptr_t s) { return static_cast<uintptr_t>(s); } #endif inline bool Word32Equal(uint32_t a, uint32_t b) { return a == b; } inline bool Word32NotEqual(uint32_t a, uint32_t b) { return a != b; } } // namespace CodeStubAssembler } // namespace TorqueRuntimeMacroShims } // namespace internal } // namespace v8 #endif // V8_TORQUE_RUNTIME_MACRO_SHIMS_H_